Merge branch 'develop' into hazelnoot/following-timeline

This commit is contained in:
Hazel K 2024-10-02 12:18:29 -04:00
commit 7b2bc12ff9
2 changed files with 7 additions and 2 deletions

View file

@ -160,6 +160,10 @@ export const packedMetaLiteSchema = {
type: 'string', type: 'string',
optional: false, nullable: true, optional: false, nullable: true,
}, },
sidebarLogoUrl: {
type: 'string',
optional: false, nullable: true,
},
maxNoteTextLength: { maxNoteTextLength: {
type: 'number', type: 'number',
optional: false, nullable: false, optional: false, nullable: false,

View file

@ -5077,6 +5077,7 @@ export type components = {
infoImageUrl: string | null; infoImageUrl: string | null;
notFoundImageUrl: string | null; notFoundImageUrl: string | null;
iconUrl: string | null; iconUrl: string | null;
sidebarLogoUrl: string | null;
maxNoteTextLength: number; maxNoteTextLength: number;
ads: { ads: {
/** /**
@ -5207,9 +5208,9 @@ export type operations = {
infoImageUrl: string | null; infoImageUrl: string | null;
notFoundImageUrl: string | null; notFoundImageUrl: string | null;
iconUrl: string | null; iconUrl: string | null;
sidebarLogoUrl: string | null;
app192IconUrl: string | null; app192IconUrl: string | null;
app512IconUrl: string | null; app512IconUrl: string | null;
sidebarLogoUrl: string | null;
enableEmail: boolean; enableEmail: boolean;
enableServiceWorker: boolean; enableServiceWorker: boolean;
translatorAvailable: boolean; translatorAvailable: boolean;
@ -9721,9 +9722,9 @@ export type operations = {
infoImageUrl?: string | null; infoImageUrl?: string | null;
notFoundImageUrl?: string | null; notFoundImageUrl?: string | null;
iconUrl?: string | null; iconUrl?: string | null;
sidebarLogoUrl?: string | null;
app192IconUrl?: string | null; app192IconUrl?: string | null;
app512IconUrl?: string | null; app512IconUrl?: string | null;
sidebarLogoUrl?: string | null;
backgroundImageUrl?: string | null; backgroundImageUrl?: string | null;
logoImageUrl?: string | null; logoImageUrl?: string | null;
name?: string | null; name?: string | null;