@@ -79,6 +79,8 @@ export interface Config {
7979 'content-type' : ContentType ;
8080 'cyclical-relationship' : CyclicalRelationship ;
8181 media : Media ;
82+ sort : Sort ;
83+ 'payload-kv' : PayloadKv ;
8284 'payload-locked-documents' : PayloadLockedDocument ;
8385 'payload-preferences' : PayloadPreference ;
8486 'payload-migrations' : PayloadMigration ;
@@ -97,6 +99,8 @@ export interface Config {
9799 'content-type' : ContentTypeSelect < false > | ContentTypeSelect < true > ;
98100 'cyclical-relationship' : CyclicalRelationshipSelect < false > | CyclicalRelationshipSelect < true > ;
99101 media : MediaSelect < false > | MediaSelect < true > ;
102+ sort : SortSelect < false > | SortSelect < true > ;
103+ 'payload-kv' : PayloadKvSelect < false > | PayloadKvSelect < true > ;
100104 'payload-locked-documents' : PayloadLockedDocumentsSelect < false > | PayloadLockedDocumentsSelect < true > ;
101105 'payload-preferences' : PayloadPreferencesSelect < false > | PayloadPreferencesSelect < true > ;
102106 'payload-migrations' : PayloadMigrationsSelect < false > | PayloadMigrationsSelect < true > ;
@@ -333,6 +337,34 @@ export interface Media {
333337 focalX ?: number | null ;
334338 focalY ?: number | null ;
335339}
340+ /**
341+ * This interface was referenced by `Config`'s JSON-Schema
342+ * via the `definition` "sort".
343+ */
344+ export interface Sort {
345+ id : string ;
346+ title ?: string | null ;
347+ number ?: number | null ;
348+ updatedAt : string ;
349+ createdAt : string ;
350+ }
351+ /**
352+ * This interface was referenced by `Config`'s JSON-Schema
353+ * via the `definition` "payload-kv".
354+ */
355+ export interface PayloadKv {
356+ id : string ;
357+ key : string ;
358+ data :
359+ | {
360+ [ k : string ] : unknown ;
361+ }
362+ | unknown [ ]
363+ | string
364+ | number
365+ | boolean
366+ | null ;
367+ }
336368/**
337369 * This interface was referenced by `Config`'s JSON-Schema
338370 * via the `definition` "payload-locked-documents".
@@ -387,6 +419,10 @@ export interface PayloadLockedDocument {
387419 | ( {
388420 relationTo : 'media' ;
389421 value : string | Media ;
422+ } | null )
423+ | ( {
424+ relationTo : 'sort' ;
425+ value : string | Sort ;
390426 } | null ) ;
391427 globalSlug ?: string | null ;
392428 user : {
@@ -609,6 +645,24 @@ export interface MediaSelect<T extends boolean = true> {
609645 focalX ?: T ;
610646 focalY ?: T ;
611647}
648+ /**
649+ * This interface was referenced by `Config`'s JSON-Schema
650+ * via the `definition` "sort_select".
651+ */
652+ export interface SortSelect < T extends boolean = true > {
653+ title ?: T ;
654+ number ?: T ;
655+ updatedAt ?: T ;
656+ createdAt ?: T ;
657+ }
658+ /**
659+ * This interface was referenced by `Config`'s JSON-Schema
660+ * via the `definition` "payload-kv_select".
661+ */
662+ export interface PayloadKvSelect < T extends boolean = true > {
663+ key ?: T ;
664+ data ?: T ;
665+ }
612666/**
613667 * This interface was referenced by `Config`'s JSON-Schema
614668 * via the `definition` "payload-locked-documents_select".
0 commit comments