mirror of
https://activitypub.software/TransFem-org/Sharkey
synced 2024-11-22 14:05:12 +00:00
merge: fix type error for sidebarLogoUrl (!641)
View MR for information: https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/641 Approved-by: dakkar <dakkar@thenautilus.net> Approved-by: fEmber <acomputerdog@gmail.com>
This commit is contained in:
commit
b151d19325
3 changed files with 10 additions and 5 deletions
|
@ -160,6 +160,10 @@ export const packedMetaLiteSchema = {
|
|||
type: 'string',
|
||||
optional: false, nullable: true,
|
||||
},
|
||||
sidebarLogoUrl: {
|
||||
type: 'string',
|
||||
optional: false, nullable: true,
|
||||
},
|
||||
maxNoteTextLength: {
|
||||
type: 'number',
|
||||
optional: false, nullable: false,
|
||||
|
|
|
@ -4258,7 +4258,7 @@ declare module '../api.js' {
|
|||
): Promise<SwitchCaseResponseType<E, P>>;
|
||||
|
||||
/**
|
||||
* Get Sharkey GH Sponsors
|
||||
* Get Sharkey Sponsors
|
||||
*
|
||||
* **Credential required**: *No*
|
||||
*/
|
||||
|
|
|
@ -3673,7 +3673,7 @@ export type paths = {
|
|||
'/sponsors': {
|
||||
/**
|
||||
* sponsors
|
||||
* @description Get Sharkey GH Sponsors
|
||||
* @description Get Sharkey Sponsors
|
||||
*
|
||||
* **Credential required**: *No*
|
||||
*/
|
||||
|
@ -5061,6 +5061,7 @@ export type components = {
|
|||
infoImageUrl: string | null;
|
||||
notFoundImageUrl: string | null;
|
||||
iconUrl: string | null;
|
||||
sidebarLogoUrl: string | null;
|
||||
maxNoteTextLength: number;
|
||||
ads: {
|
||||
/**
|
||||
|
@ -5191,9 +5192,9 @@ export type operations = {
|
|||
infoImageUrl: string | null;
|
||||
notFoundImageUrl: string | null;
|
||||
iconUrl: string | null;
|
||||
sidebarLogoUrl: string | null;
|
||||
app192IconUrl: string | null;
|
||||
app512IconUrl: string | null;
|
||||
sidebarLogoUrl: string | null;
|
||||
enableEmail: boolean;
|
||||
enableServiceWorker: boolean;
|
||||
translatorAvailable: boolean;
|
||||
|
@ -9705,9 +9706,9 @@ export type operations = {
|
|||
infoImageUrl?: string | null;
|
||||
notFoundImageUrl?: string | null;
|
||||
iconUrl?: string | null;
|
||||
sidebarLogoUrl?: string | null;
|
||||
app192IconUrl?: string | null;
|
||||
app512IconUrl?: string | null;
|
||||
sidebarLogoUrl?: string | null;
|
||||
backgroundImageUrl?: string | null;
|
||||
logoImageUrl?: string | null;
|
||||
name?: string | null;
|
||||
|
@ -27990,7 +27991,7 @@ export type operations = {
|
|||
};
|
||||
/**
|
||||
* sponsors
|
||||
* @description Get Sharkey GH Sponsors
|
||||
* @description Get Sharkey Sponsors
|
||||
*
|
||||
* **Credential required**: *No*
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue