chore: run dev:generate-types (#11994)

This commit is contained in:
Germán Jabloñski
2025-04-08 17:25:29 -03:00
committed by GitHub
parent acae547ddf
commit 97e2e77ff4
50 changed files with 66 additions and 13 deletions

View File

@@ -64,6 +64,7 @@ export type SupportedTimezones =
| 'Asia/Singapore'
| 'Asia/Tokyo'
| 'Asia/Seoul'
| 'Australia/Brisbane'
| 'Australia/Sydney'
| 'Pacific/Guam'
| 'Pacific/Noumea'
@@ -166,9 +167,10 @@ export interface PagesCategory {
id: string;
title?: string | null;
relatedPages?: {
docs?: (string | Page)[] | null;
hasNextPage?: boolean | null;
} | null;
docs?: (string | Page)[];
hasNextPage?: boolean;
totalDocs?: number;
};
updatedAt: string;
createdAt: string;
}