chore: update generated types for all test suites (#9577)

This commit is contained in:
Alessio Gravili
2024-11-27 13:36:37 -07:00
committed by GitHub
parent 3c35d81fe5
commit c7138b9aab
48 changed files with 323 additions and 139 deletions

View File

@@ -345,6 +345,7 @@ export interface FieldsAndTopAccess {
secret?: string | null; secret?: string | null;
updatedAt: string; updatedAt: string;
createdAt: string; createdAt: string;
_status?: ('draft' | 'published') | null;
} }
/** /**
* This interface was referenced by `Config`'s JSON-Schema * This interface was referenced by `Config`'s JSON-Schema
@@ -954,6 +955,7 @@ export interface FieldsAndTopAccessSelect<T extends boolean = true> {
secret?: T; secret?: T;
updatedAt?: T; updatedAt?: T;
createdAt?: T; createdAt?: T;
_status?: T;
} }
/** /**
* This interface was referenced by `Config`'s JSON-Schema * This interface was referenced by `Config`'s JSON-Schema

View File

@@ -38,9 +38,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -34,9 +34,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -47,9 +47,9 @@ export interface Config {
| (PublicUser & { | (PublicUser & {
collection: 'public-users'; collection: 'public-users';
}); });
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {
@@ -304,7 +304,6 @@ export interface UsersSelect<T extends boolean = true> {
unnamedTabSaveToJWTString?: T; unnamedTabSaveToJWTString?: T;
unnamedTabSaveToJWTFalse?: T; unnamedTabSaveToJWTFalse?: T;
custom?: T; custom?: T;
authDebug?: T;
updatedAt?: T; updatedAt?: T;
createdAt?: T; createdAt?: T;
enableAPIKey?: T; enableAPIKey?: T;

View File

@@ -54,9 +54,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -48,9 +48,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -38,9 +38,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -32,9 +32,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -20,6 +20,8 @@ export interface Config {
places: Place; places: Place;
'fields-persistance': FieldsPersistance; 'fields-persistance': FieldsPersistance;
'custom-ids': CustomId; 'custom-ids': CustomId;
'fake-custom-ids': FakeCustomId;
'relationships-migration': RelationshipsMigration;
users: User; users: User;
'payload-locked-documents': PayloadLockedDocument; 'payload-locked-documents': PayloadLockedDocument;
'payload-preferences': PayloadPreference; 'payload-preferences': PayloadPreference;
@@ -36,6 +38,8 @@ export interface Config {
places: PlacesSelect<false> | PlacesSelect<true>; places: PlacesSelect<false> | PlacesSelect<true>;
'fields-persistance': FieldsPersistanceSelect<false> | FieldsPersistanceSelect<true>; 'fields-persistance': FieldsPersistanceSelect<false> | FieldsPersistanceSelect<true>;
'custom-ids': CustomIdsSelect<false> | CustomIdsSelect<true>; 'custom-ids': CustomIdsSelect<false> | CustomIdsSelect<true>;
'fake-custom-ids': FakeCustomIdsSelect<false> | FakeCustomIdsSelect<true>;
'relationships-migration': RelationshipsMigrationSelect<false> | RelationshipsMigrationSelect<true>;
users: UsersSelect<false> | UsersSelect<true>; users: UsersSelect<false> | UsersSelect<true>;
'payload-locked-documents': PayloadLockedDocumentsSelect<false> | PayloadLockedDocumentsSelect<true>; 'payload-locked-documents': PayloadLockedDocumentsSelect<false> | PayloadLockedDocumentsSelect<true>;
'payload-preferences': PayloadPreferencesSelect<false> | PayloadPreferencesSelect<true>; 'payload-preferences': PayloadPreferencesSelect<false> | PayloadPreferencesSelect<true>;
@@ -54,9 +58,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {
@@ -267,10 +271,41 @@ export interface FieldsPersistance {
*/ */
export interface CustomId { export interface CustomId {
id: string; id: string;
title?: string | null;
updatedAt: string; updatedAt: string;
createdAt: string; createdAt: string;
_status?: ('draft' | 'published') | null; _status?: ('draft' | 'published') | null;
} }
/**
* This interface was referenced by `Config`'s JSON-Schema
* via the `definition` "fake-custom-ids".
*/
export interface FakeCustomId {
id: string;
title?: string | null;
group?: {
id?: string | null;
};
myTab?: {
id?: string | null;
};
updatedAt: string;
createdAt: string;
}
/**
* This interface was referenced by `Config`'s JSON-Schema
* via the `definition` "relationships-migration".
*/
export interface RelationshipsMigration {
id: string;
relationship?: (string | null) | DefaultValue;
relationship_2?: {
relationTo: 'default-values';
value: string | DefaultValue;
} | null;
updatedAt: string;
createdAt: string;
}
/** /**
* This interface was referenced by `Config`'s JSON-Schema * This interface was referenced by `Config`'s JSON-Schema
* via the `definition` "users". * via the `definition` "users".
@@ -331,6 +366,14 @@ export interface PayloadLockedDocument {
relationTo: 'custom-ids'; relationTo: 'custom-ids';
value: string | CustomId; value: string | CustomId;
} | null) } | null)
| ({
relationTo: 'fake-custom-ids';
value: string | FakeCustomId;
} | null)
| ({
relationTo: 'relationships-migration';
value: string | RelationshipsMigration;
} | null)
| ({ | ({
relationTo: 'users'; relationTo: 'users';
value: string | User; value: string | User;
@@ -537,10 +580,40 @@ export interface FieldsPersistanceSelect<T extends boolean = true> {
*/ */
export interface CustomIdsSelect<T extends boolean = true> { export interface CustomIdsSelect<T extends boolean = true> {
id?: T; id?: T;
title?: T;
updatedAt?: T; updatedAt?: T;
createdAt?: T; createdAt?: T;
_status?: T; _status?: T;
} }
/**
* This interface was referenced by `Config`'s JSON-Schema
* via the `definition` "fake-custom-ids_select".
*/
export interface FakeCustomIdsSelect<T extends boolean = true> {
title?: T;
group?:
| T
| {
id?: T;
};
myTab?:
| T
| {
id?: T;
};
updatedAt?: T;
createdAt?: T;
}
/**
* This interface was referenced by `Config`'s JSON-Schema
* via the `definition` "relationships-migration_select".
*/
export interface RelationshipsMigrationSelect<T extends boolean = true> {
relationship?: T;
relationship_2?: T;
updatedAt?: T;
createdAt?: T;
}
/** /**
* This interface was referenced by `Config`'s JSON-Schema * This interface was referenced by `Config`'s JSON-Schema
* via the `definition` "users_select". * via the `definition` "users_select".

View File

@@ -44,9 +44,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -32,9 +32,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -32,9 +32,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -40,9 +40,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -42,9 +42,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -50,9 +50,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -34,9 +34,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -60,9 +60,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {
@@ -515,11 +515,8 @@ export interface RelationWithTitleSelect<T extends boolean = true> {
*/ */
export interface RelationUpdatedExternallySelect<T extends boolean = true> { export interface RelationUpdatedExternallySelect<T extends boolean = true> {
relationPrePopulate?: T; relationPrePopulate?: T;
prePopulate?: T;
relationHasMany?: T; relationHasMany?: T;
prePopulateRelationHasMany?: T;
relationToManyHasMany?: T; relationToManyHasMany?: T;
prePopulateToMany?: T;
updatedAt?: T; updatedAt?: T;
createdAt?: T; createdAt?: T;
} }

View File

@@ -125,9 +125,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -44,9 +44,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -50,9 +50,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -52,9 +52,9 @@ export interface Config {
user: HooksUser & { user: HooksUser & {
collection: 'hooks-users'; collection: 'hooks-users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface HooksUserAuthOperations { export interface HooksUserAuthOperations {

View File

@@ -34,9 +34,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -19,14 +19,29 @@ export interface Config {
'payload-preferences': PayloadPreference; 'payload-preferences': PayloadPreference;
'payload-migrations': PayloadMigration; 'payload-migrations': PayloadMigration;
}; };
collectionsJoins: {};
collectionsSelect: {
posts: PostsSelect<false> | PostsSelect<true>;
simple: SimpleSelect<false> | SimpleSelect<true>;
media: MediaSelect<false> | MediaSelect<true>;
users: UsersSelect<false> | UsersSelect<true>;
'payload-locked-documents': PayloadLockedDocumentsSelect<false> | PayloadLockedDocumentsSelect<true>;
'payload-preferences': PayloadPreferencesSelect<false> | PayloadPreferencesSelect<true>;
'payload-migrations': PayloadMigrationsSelect<false> | PayloadMigrationsSelect<true>;
};
db: { db: {
defaultIDType: string; defaultIDType: string;
}; };
globals: {}; globals: {};
globalsSelect: {};
locale: null; locale: null;
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs: {
tasks: unknown;
workflows: unknown;
};
} }
export interface UserAuthOperations { export interface UserAuthOperations {
forgotPassword: { forgotPassword: {
@@ -75,6 +90,21 @@ export interface Post {
}; };
[k: string]: unknown; [k: string]: unknown;
} | null; } | null;
richTextUnconverted?: {
root: {
type: string;
children: {
type: string;
version: number;
[k: string]: unknown;
}[];
direction: ('ltr' | 'rtl') | null;
format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
indent: number;
version: number;
};
[k: string]: unknown;
} | null;
updatedAt: string; updatedAt: string;
createdAt: string; createdAt: string;
_status?: ('draft' | 'published') | null; _status?: ('draft' | 'published') | null;
@@ -173,7 +203,6 @@ export interface PayloadLockedDocument {
relationTo: 'users'; relationTo: 'users';
value: string | User; value: string | User;
} | null); } | null);
editedAt?: string | null;
globalSlug?: string | null; globalSlug?: string | null;
user: { user: {
relationTo: 'users'; relationTo: 'users';
@@ -216,6 +245,132 @@ export interface PayloadMigration {
updatedAt: string; updatedAt: string;
createdAt: string; createdAt: string;
} }
/**
* This interface was referenced by `Config`'s JSON-Schema
* via the `definition` "posts_select".
*/
export interface PostsSelect<T extends boolean = true> {
docPath?: T;
frontMatter?:
| T
| {
key?: T;
value?: T;
id?: T;
};
richText?: T;
richTextUnconverted?: T;
updatedAt?: T;
createdAt?: T;
_status?: T;
}
/**
* This interface was referenced by `Config`'s JSON-Schema
* via the `definition` "simple_select".
*/
export interface SimpleSelect<T extends boolean = true> {
text?: T;
updatedAt?: T;
createdAt?: T;
}
/**
* This interface was referenced by `Config`'s JSON-Schema
* via the `definition` "media_select".
*/
export interface MediaSelect<T extends boolean = true> {
updatedAt?: T;
createdAt?: T;
url?: T;
thumbnailURL?: T;
filename?: T;
mimeType?: T;
filesize?: T;
width?: T;
height?: T;
focalX?: T;
focalY?: T;
sizes?:
| T
| {
thumbnail?:
| T
| {
url?: T;
width?: T;
height?: T;
mimeType?: T;
filesize?: T;
filename?: T;
};
medium?:
| T
| {
url?: T;
width?: T;
height?: T;
mimeType?: T;
filesize?: T;
filename?: T;
};
large?:
| T
| {
url?: T;
width?: T;
height?: T;
mimeType?: T;
filesize?: T;
filename?: T;
};
};
}
/**
* This interface was referenced by `Config`'s JSON-Schema
* via the `definition` "users_select".
*/
export interface UsersSelect<T extends boolean = true> {
updatedAt?: T;
createdAt?: T;
email?: T;
resetPasswordToken?: T;
resetPasswordExpiration?: T;
salt?: T;
hash?: T;
loginAttempts?: T;
lockUntil?: T;
}
/**
* This interface was referenced by `Config`'s JSON-Schema
* via the `definition` "payload-locked-documents_select".
*/
export interface PayloadLockedDocumentsSelect<T extends boolean = true> {
document?: T;
globalSlug?: T;
user?: T;
updatedAt?: T;
createdAt?: T;
}
/**
* This interface was referenced by `Config`'s JSON-Schema
* via the `definition` "payload-preferences_select".
*/
export interface PayloadPreferencesSelect<T extends boolean = true> {
user?: T;
key?: T;
value?: T;
updatedAt?: T;
createdAt?: T;
}
/**
* This interface was referenced by `Config`'s JSON-Schema
* via the `definition` "payload-migrations_select".
*/
export interface PayloadMigrationsSelect<T extends boolean = true> {
name?: T;
batch?: T;
updatedAt?: T;
createdAt?: T;
}
/** /**
* This interface was referenced by `Config`'s JSON-Schema * This interface was referenced by `Config`'s JSON-Schema
* via the `definition` "auth". * via the `definition` "auth".

View File

@@ -52,9 +52,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -34,9 +34,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -153,21 +153,6 @@ export interface BlocksField {
blockType: 'blockInsideBlock'; blockType: 'blockInsideBlock';
}[] }[]
| null; | null;
nonLocalizedBlocksField?:
| {
array?:
| {
link?: {
label?: string | null;
};
id?: string | null;
}[]
| null;
id?: string | null;
blockName?: string | null;
blockType: 'blockInsideBlock';
}[]
| null;
updatedAt: string; updatedAt: string;
createdAt: string; createdAt: string;
} }
@@ -786,26 +771,6 @@ export interface BlocksFieldsSelect<T extends boolean = true> {
blockName?: T; blockName?: T;
}; };
}; };
nonLocalizedBlocksField?:
| T
| {
blockInsideBlock?:
| T
| {
array?:
| T
| {
link?:
| T
| {
label?: T;
};
id?: T;
};
id?: T;
blockName?: T;
};
};
updatedAt?: T; updatedAt?: T;
createdAt?: T; createdAt?: T;
} }

View File

@@ -44,9 +44,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -39,9 +39,9 @@ export interface Config {
| (LoginWithEither & { | (LoginWithEither & {
collection: 'login-with-either'; collection: 'login-with-either';
}); });
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -32,9 +32,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -34,9 +34,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -34,9 +34,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -36,9 +36,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -38,9 +38,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -36,9 +36,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -36,9 +36,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -38,9 +38,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {
@@ -108,7 +108,6 @@ export interface Post {
* via the `definition` "search". * via the `definition` "search".
*/ */
export interface Search { export interface Search {
id: string;
title?: string | null; title?: string | null;
priority?: number | null; priority?: number | null;
doc: doc:
@@ -120,6 +119,7 @@ export interface Search {
relationTo: 'posts'; relationTo: 'posts';
value: string | Post; value: string | Post;
}; };
id: string;
excerpt?: string | null; excerpt?: string | null;
slug?: string | null; slug?: string | null;
updatedAt: string; updatedAt: string;
@@ -236,7 +236,7 @@ export interface SearchSelect<T extends boolean = true> {
title?: T; title?: T;
priority?: T; priority?: T;
doc?: T; doc?: T;
docUrl?: T; id?: T;
excerpt?: T; excerpt?: T;
slug?: T; slug?: T;
updatedAt?: T; updatedAt?: T;

View File

@@ -34,9 +34,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -38,9 +38,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {
@@ -244,11 +244,9 @@ export interface PagesSelect<T extends boolean = true> {
meta?: meta?:
| T | T
| { | {
overview?: T;
title?: T; title?: T;
description?: T; description?: T;
image?: T; image?: T;
preview?: T;
ogTitle?: T; ogTitle?: T;
}; };
updatedAt?: T; updatedAt?: T;
@@ -280,14 +278,12 @@ export interface MediaSelect<T extends boolean = true> {
*/ */
export interface PagesWithImportedFieldsSelect<T extends boolean = true> { export interface PagesWithImportedFieldsSelect<T extends boolean = true> {
title?: T; title?: T;
overview?: T;
excerpt?: T; excerpt?: T;
slug?: T; slug?: T;
metaAndSEO?: metaAndSEO?:
| T | T
| { | {
title?: T; title?: T;
preview?: T;
innerMeta?: innerMeta?:
| T | T
| { | {

View File

@@ -41,9 +41,9 @@ export interface Config {
| (Customer & { | (Customer & {
collection: 'customers'; collection: 'customers';
}); });
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {
@@ -251,7 +251,6 @@ export interface ProductsSelect<T extends boolean = true> {
}; };
stripeID?: T; stripeID?: T;
skipSync?: T; skipSync?: T;
docUrl?: T;
updatedAt?: T; updatedAt?: T;
createdAt?: T; createdAt?: T;
} }
@@ -264,7 +263,6 @@ export interface CustomersSelect<T extends boolean = true> {
subscriptions?: subscriptions?:
| T | T
| { | {
link?: T;
stripeSubscriptionID?: T; stripeSubscriptionID?: T;
stripeProductID?: T; stripeProductID?: T;
product?: T; product?: T;
@@ -273,7 +271,6 @@ export interface CustomersSelect<T extends boolean = true> {
}; };
stripeID?: T; stripeID?: T;
skipSync?: T; skipSync?: T;
docUrl?: T;
updatedAt?: T; updatedAt?: T;
createdAt?: T; createdAt?: T;
enableAPIKey?: T; enableAPIKey?: T;

View File

@@ -34,9 +34,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -66,9 +66,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -48,9 +48,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -40,9 +40,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -36,9 +36,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -36,9 +36,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -36,9 +36,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -36,9 +36,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {

View File

@@ -94,9 +94,9 @@ export interface Config {
user: User & { user: User & {
collection: 'users'; collection: 'users';
}; };
jobs?: { jobs: {
tasks: unknown; tasks: unknown;
workflows?: unknown; workflows: unknown;
}; };
} }
export interface UserAuthOperations { export interface UserAuthOperations {