| 62 | | 'Pacific/Fiji'; |
| 63 | |
| 64 | export interface Config { |
| 65 | auth: { |
| 66 | users: UserAuthOperations; |
| 67 | }; |
| 68 | blocks: {}; |
| 69 | collections: { |
| 70 | posts: Post; |
| 71 | categories: Category; |
| 72 | articles: Article; |
| 73 | 'payload-kv': PayloadKv; |
| 74 | users: User; |
| 75 | 'payload-locked-documents': PayloadLockedDocument; |
| 76 | 'payload-preferences': PayloadPreference; |
| 77 | 'payload-migrations': PayloadMigration; |
| 78 | }; |
| 79 | collectionsJoins: {}; |
| 80 | collectionsSelect: { |
| 81 | posts: PostsSelect<false> | PostsSelect<true>; |
| 82 | categories: CategoriesSelect<false> | CategoriesSelect<true>; |
| 83 | articles: ArticlesSelect<false> | ArticlesSelect<true>; |
| 84 | 'payload-kv': PayloadKvSelect<false> | PayloadKvSelect<true>; |
| 85 | users: UsersSelect<false> | UsersSelect<true>; |
| 86 | 'payload-locked-documents': PayloadLockedDocumentsSelect<false> | PayloadLockedDocumentsSelect<true>; |
| 87 | 'payload-preferences': PayloadPreferencesSelect<false> | PayloadPreferencesSelect<true>; |
| 88 | 'payload-migrations': PayloadMigrationsSelect<false> | PayloadMigrationsSelect<true>; |
| 89 | }; |
| 90 | db: { |
| 91 | defaultIDType: string; |
| 92 | }; |
| 93 | fallbackLocale: null; |
| 94 | globals: {}; |
| 95 | globalsSelect: {}; |
| 96 | locale: null; |
| 97 | widgets: { |
| 98 | collections: CollectionsWidget; |
| 99 | }; |
| 100 | user: User; |
| 101 | jobs: { |
| 102 | tasks: unknown; |
| 103 | workflows: unknown; |
| 104 | }; |
| 105 | } |
| 106 | export interface UserAuthOperations { |
| 107 | forgotPassword: { |
| 108 | email: string; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…