chore: make localeStatus an optional property again

This commit is contained in:
Jessica Chowdhury
2025-07-17 17:30:28 +01:00
parent 9c3316e8e3
commit 32bfb7bf3e

View File

@@ -411,7 +411,7 @@ export type CreateGlobalVersionArgs<T = TypeWithID> = {
autosave: boolean
createdAt: string
globalSlug: GlobalSlug
localeStatus: Record<string, 'draft' | 'published'>
localeStatus?: Record<string, 'draft' | 'published'>
/** ID of the parent document for which the version should be created for */
parent: number | string
publishedLocale?: string