@@ -63,14 +63,14 @@ export type SupportedTimezones =
63
63
export interface Config {
64
64
auth : {
65
65
users : UserAuthOperations ;
66
- 'partial-disable-locale -strategies' : PartialDisableLocaleStrategyAuthOperations ;
66
+ 'partial-disable-local -strategies' : PartialDisableLocalStrategyAuthOperations ;
67
67
'api-keys' : ApiKeyAuthOperations ;
68
68
'public-users' : PublicUserAuthOperations ;
69
69
} ;
70
70
blocks : { } ;
71
71
collections : {
72
72
users : User ;
73
- 'partial-disable-locale -strategies' : PartialDisableLocaleStrategy ;
73
+ 'partial-disable-local -strategies' : PartialDisableLocalStrategy ;
74
74
'api-keys' : ApiKey ;
75
75
'public-users' : PublicUser ;
76
76
relationsCollection : RelationsCollection ;
@@ -81,7 +81,7 @@ export interface Config {
81
81
collectionsJoins : { } ;
82
82
collectionsSelect : {
83
83
users : UsersSelect < false > | UsersSelect < true > ;
84
- 'partial-disable-locale -strategies' : PartialDisableLocaleStrategiesSelect < false > | PartialDisableLocaleStrategiesSelect < true > ;
84
+ 'partial-disable-local -strategies' : PartialDisableLocalStrategiesSelect < false > | PartialDisableLocalStrategiesSelect < true > ;
85
85
'api-keys' : ApiKeysSelect < false > | ApiKeysSelect < true > ;
86
86
'public-users' : PublicUsersSelect < false > | PublicUsersSelect < true > ;
87
87
relationsCollection : RelationsCollectionSelect < false > | RelationsCollectionSelect < true > ;
@@ -99,8 +99,8 @@ export interface Config {
99
99
| ( User & {
100
100
collection : 'users' ;
101
101
} )
102
- | ( PartialDisableLocaleStrategy & {
103
- collection : 'partial-disable-locale -strategies' ;
102
+ | ( PartialDisableLocalStrategy & {
103
+ collection : 'partial-disable-local -strategies' ;
104
104
} )
105
105
| ( ApiKey & {
106
106
collection : 'api-keys' ;
@@ -131,7 +131,7 @@ export interface UserAuthOperations {
131
131
password : string ;
132
132
} ;
133
133
}
134
- export interface PartialDisableLocaleStrategyAuthOperations {
134
+ export interface PartialDisableLocalStrategyAuthOperations {
135
135
forgotPassword : {
136
136
email : string ;
137
137
password : string ;
@@ -227,9 +227,9 @@ export interface User {
227
227
}
228
228
/**
229
229
* This interface was referenced by `Config`'s JSON-Schema
230
- * via the `definition` "partial-disable-locale -strategies".
230
+ * via the `definition` "partial-disable-local -strategies".
231
231
*/
232
- export interface PartialDisableLocaleStrategy {
232
+ export interface PartialDisableLocalStrategy {
233
233
id : string ;
234
234
updatedAt : string ;
235
235
createdAt : string ;
@@ -296,8 +296,8 @@ export interface PayloadLockedDocument {
296
296
value : string | User ;
297
297
} | null )
298
298
| ( {
299
- relationTo : 'partial-disable-locale -strategies' ;
300
- value : string | PartialDisableLocaleStrategy ;
299
+ relationTo : 'partial-disable-local -strategies' ;
300
+ value : string | PartialDisableLocalStrategy ;
301
301
} | null )
302
302
| ( {
303
303
relationTo : 'api-keys' ;
@@ -318,8 +318,8 @@ export interface PayloadLockedDocument {
318
318
value : string | User ;
319
319
}
320
320
| {
321
- relationTo : 'partial-disable-locale -strategies' ;
322
- value : string | PartialDisableLocaleStrategy ;
321
+ relationTo : 'partial-disable-local -strategies' ;
322
+ value : string | PartialDisableLocalStrategy ;
323
323
}
324
324
| {
325
325
relationTo : 'api-keys' ;
@@ -344,8 +344,8 @@ export interface PayloadPreference {
344
344
value : string | User ;
345
345
}
346
346
| {
347
- relationTo : 'partial-disable-locale -strategies' ;
348
- value : string | PartialDisableLocaleStrategy ;
347
+ relationTo : 'partial-disable-local -strategies' ;
348
+ value : string | PartialDisableLocalStrategy ;
349
349
}
350
350
| {
351
351
relationTo : 'api-keys' ;
@@ -427,9 +427,9 @@ export interface UsersSelect<T extends boolean = true> {
427
427
}
428
428
/**
429
429
* This interface was referenced by `Config`'s JSON-Schema
430
- * via the `definition` "partial-disable-locale -strategies_select".
430
+ * via the `definition` "partial-disable-local -strategies_select".
431
431
*/
432
- export interface PartialDisableLocaleStrategiesSelect < T extends boolean = true > {
432
+ export interface PartialDisableLocalStrategiesSelect < T extends boolean = true > {
433
433
updatedAt ?: T ;
434
434
createdAt ?: T ;
435
435
email ?: T ;
0 commit comments