@convex-dev/better-auth 0.11.5 → 0.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/auth-options.d.ts.map +1 -1
- package/dist/auth-options.js +1 -0
- package/dist/auth-options.js.map +1 -1
- package/dist/client/adapter-utils.d.ts +8 -2
- package/dist/client/adapter-utils.d.ts.map +1 -1
- package/dist/client/adapter-utils.js +8 -3
- package/dist/client/adapter-utils.js.map +1 -1
- package/dist/client/adapter.d.ts +0 -1
- package/dist/client/adapter.d.ts.map +1 -1
- package/dist/client/adapter.js +5 -0
- package/dist/client/adapter.js.map +1 -1
- package/dist/client/create-api.d.ts +6 -0
- package/dist/client/create-api.d.ts.map +1 -1
- package/dist/client/create-api.js +1 -0
- package/dist/client/create-api.js.map +1 -1
- package/dist/client/create-client.d.ts +0 -2
- package/dist/client/create-client.d.ts.map +1 -1
- package/dist/client/create-client.js.map +1 -1
- package/dist/client/create-schema.d.ts.map +1 -1
- package/dist/client/create-schema.js +38 -8
- package/dist/client/create-schema.js.map +1 -1
- package/dist/component/_generated/api.d.ts +0 -2
- package/dist/component/_generated/api.d.ts.map +1 -1
- package/dist/component/_generated/api.js.map +1 -1
- package/dist/component/_generated/component.d.ts +543 -31
- package/dist/component/_generated/component.d.ts.map +1 -1
- package/dist/component/adapter.d.ts +6 -0
- package/dist/component/adapter.d.ts.map +1 -1
- package/dist/component/schema.d.ts +9 -4
- package/dist/component/schema.d.ts.map +1 -1
- package/dist/component/schema.js +4 -2
- package/dist/component/schema.js.map +1 -1
- package/dist/component/testProfiles/adapterAdditionalFields.d.ts +6 -0
- package/dist/component/testProfiles/adapterAdditionalFields.d.ts.map +1 -1
- package/dist/component/testProfiles/adapterOrganizationJoins.d.ts +6 -0
- package/dist/component/testProfiles/adapterOrganizationJoins.d.ts.map +1 -1
- package/dist/component/testProfiles/adapterPluginTable.d.ts +6 -0
- package/dist/component/testProfiles/adapterPluginTable.d.ts.map +1 -1
- package/dist/component/testProfiles/adapterRenameField.d.ts +6 -0
- package/dist/component/testProfiles/adapterRenameField.d.ts.map +1 -1
- package/dist/component/testProfiles/adapterRenameUserCustom.d.ts +6 -0
- package/dist/component/testProfiles/adapterRenameUserCustom.d.ts.map +1 -1
- package/dist/component/testProfiles/adapterRenameUserTable.d.ts +6 -0
- package/dist/component/testProfiles/adapterRenameUserTable.d.ts.map +1 -1
- package/dist/component/testProfiles/schema.profile-additional-fields.d.ts +3 -1
- package/dist/component/testProfiles/schema.profile-additional-fields.d.ts.map +1 -1
- package/dist/component/testProfiles/schema.profile-plugin-table.d.ts +3 -1
- package/dist/component/testProfiles/schema.profile-plugin-table.d.ts.map +1 -1
- package/dist/plugins/convex/client.d.ts +1 -0
- package/dist/plugins/convex/client.d.ts.map +1 -1
- package/dist/plugins/convex/client.js +2 -0
- package/dist/plugins/convex/client.js.map +1 -1
- package/dist/plugins/convex/index.d.ts +2 -1
- package/dist/plugins/convex/index.d.ts.map +1 -1
- package/dist/plugins/convex/index.js +15 -2
- package/dist/plugins/convex/index.js.map +1 -1
- package/dist/plugins/cross-domain/client.d.ts +1 -12
- package/dist/plugins/cross-domain/client.d.ts.map +1 -1
- package/dist/plugins/cross-domain/client.js +35 -27
- package/dist/plugins/cross-domain/client.js.map +1 -1
- package/dist/plugins/cross-domain/index.d.ts +1 -0
- package/dist/plugins/cross-domain/index.d.ts.map +1 -1
- package/dist/plugins/cross-domain/index.js +15 -4
- package/dist/plugins/cross-domain/index.js.map +1 -1
- package/dist/test/adapter-factory/basic.d.ts +4 -0
- package/dist/test/adapter-factory/basic.d.ts.map +1 -1
- package/dist/test/adapter-factory/convex-custom.d.ts +1 -1
- package/dist/test/adapter-factory/convex-custom.d.ts.map +1 -1
- package/dist/test/adapter-factory/convex-custom.js +20 -0
- package/dist/test/adapter-factory/convex-custom.js.map +1 -1
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/index.d.ts.map +1 -1
- package/dist/utils/index.js +6 -1
- package/dist/utils/index.js.map +1 -1
- package/dist/version.d.ts +2 -0
- package/dist/version.d.ts.map +1 -0
- package/dist/version.js +2 -0
- package/dist/version.js.map +1 -0
- package/package.json +6 -6
- package/src/auth-options.ts +1 -0
- package/src/client/adapter-utils.ts +13 -5
- package/src/client/adapter.test.ts +225 -2
- package/src/client/adapter.ts +7 -1
- package/src/client/create-api.ts +3 -0
- package/src/client/create-client.ts +0 -2
- package/src/client/create-schema.ts +46 -8
- package/src/component/_generated/api.ts +0 -2
- package/src/component/_generated/component.ts +718 -38
- package/src/component/schema.ts +5 -3
- package/src/plugins/convex/client.ts +2 -0
- package/src/plugins/convex/index.ts +16 -3
- package/src/plugins/cross-domain/client.test.ts +58 -28
- package/src/plugins/cross-domain/client.ts +44 -45
- package/src/plugins/cross-domain/index.test.ts +129 -51
- package/src/plugins/cross-domain/index.ts +20 -7
- package/src/test/adapter-factory/convex-custom.ts +23 -0
- package/src/utils/index.ts +7 -1
- package/src/version.ts +1 -0
- package/dist/component/adapterTest.d.ts +0 -3
- package/dist/component/adapterTest.d.ts.map +0 -1
- package/dist/component/adapterTest.js +0 -202
- package/dist/component/adapterTest.js.map +0 -1
- package/src/component/adapterTest.ts +0 -275
|
@@ -79,6 +79,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
79
79
|
backupCodes: string;
|
|
80
80
|
secret: string;
|
|
81
81
|
userId: string;
|
|
82
|
+
verified?: null | boolean;
|
|
82
83
|
};
|
|
83
84
|
model: "twoFactor";
|
|
84
85
|
} | {
|
|
@@ -144,6 +145,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
144
145
|
where?: Array<{
|
|
145
146
|
connector?: "AND" | "OR";
|
|
146
147
|
field: "name" | "email" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "_id";
|
|
148
|
+
mode?: "sensitive" | "insensitive";
|
|
147
149
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
148
150
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
149
151
|
}>;
|
|
@@ -152,6 +154,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
152
154
|
where?: Array<{
|
|
153
155
|
connector?: "AND" | "OR";
|
|
154
156
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
157
|
+
mode?: "sensitive" | "insensitive";
|
|
155
158
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
156
159
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
157
160
|
}>;
|
|
@@ -160,6 +163,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
160
163
|
where?: Array<{
|
|
161
164
|
connector?: "AND" | "OR";
|
|
162
165
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
166
|
+
mode?: "sensitive" | "insensitive";
|
|
163
167
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
164
168
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
165
169
|
}>;
|
|
@@ -168,6 +172,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
168
172
|
where?: Array<{
|
|
169
173
|
connector?: "AND" | "OR";
|
|
170
174
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
175
|
+
mode?: "sensitive" | "insensitive";
|
|
171
176
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
172
177
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
173
178
|
}>;
|
|
@@ -175,7 +180,8 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
175
180
|
model: "twoFactor";
|
|
176
181
|
where?: Array<{
|
|
177
182
|
connector?: "AND" | "OR";
|
|
178
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
183
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
184
|
+
mode?: "sensitive" | "insensitive";
|
|
179
185
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
180
186
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
181
187
|
}>;
|
|
@@ -184,6 +190,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
184
190
|
where?: Array<{
|
|
185
191
|
connector?: "AND" | "OR";
|
|
186
192
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
193
|
+
mode?: "sensitive" | "insensitive";
|
|
187
194
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
188
195
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
189
196
|
}>;
|
|
@@ -192,6 +199,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
192
199
|
where?: Array<{
|
|
193
200
|
connector?: "AND" | "OR";
|
|
194
201
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
202
|
+
mode?: "sensitive" | "insensitive";
|
|
195
203
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
196
204
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
197
205
|
}>;
|
|
@@ -200,6 +208,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
200
208
|
where?: Array<{
|
|
201
209
|
connector?: "AND" | "OR";
|
|
202
210
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
211
|
+
mode?: "sensitive" | "insensitive";
|
|
203
212
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
204
213
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
205
214
|
}>;
|
|
@@ -208,6 +217,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
208
217
|
where?: Array<{
|
|
209
218
|
connector?: "AND" | "OR";
|
|
210
219
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
220
|
+
mode?: "sensitive" | "insensitive";
|
|
211
221
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
212
222
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
213
223
|
}>;
|
|
@@ -216,6 +226,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
216
226
|
where?: Array<{
|
|
217
227
|
connector?: "AND" | "OR";
|
|
218
228
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
229
|
+
mode?: "sensitive" | "insensitive";
|
|
219
230
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
220
231
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
221
232
|
}>;
|
|
@@ -236,6 +247,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
236
247
|
where?: Array<{
|
|
237
248
|
connector?: "AND" | "OR";
|
|
238
249
|
field: "name" | "email" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "_id";
|
|
250
|
+
mode?: "sensitive" | "insensitive";
|
|
239
251
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
240
252
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
241
253
|
}>;
|
|
@@ -244,6 +256,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
244
256
|
where?: Array<{
|
|
245
257
|
connector?: "AND" | "OR";
|
|
246
258
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
259
|
+
mode?: "sensitive" | "insensitive";
|
|
247
260
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
248
261
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
249
262
|
}>;
|
|
@@ -252,6 +265,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
252
265
|
where?: Array<{
|
|
253
266
|
connector?: "AND" | "OR";
|
|
254
267
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
268
|
+
mode?: "sensitive" | "insensitive";
|
|
255
269
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
256
270
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
257
271
|
}>;
|
|
@@ -260,6 +274,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
260
274
|
where?: Array<{
|
|
261
275
|
connector?: "AND" | "OR";
|
|
262
276
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
277
|
+
mode?: "sensitive" | "insensitive";
|
|
263
278
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
264
279
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
265
280
|
}>;
|
|
@@ -267,7 +282,8 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
267
282
|
model: "twoFactor";
|
|
268
283
|
where?: Array<{
|
|
269
284
|
connector?: "AND" | "OR";
|
|
270
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
285
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
286
|
+
mode?: "sensitive" | "insensitive";
|
|
271
287
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
272
288
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
273
289
|
}>;
|
|
@@ -276,6 +292,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
276
292
|
where?: Array<{
|
|
277
293
|
connector?: "AND" | "OR";
|
|
278
294
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
295
|
+
mode?: "sensitive" | "insensitive";
|
|
279
296
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
280
297
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
281
298
|
}>;
|
|
@@ -284,6 +301,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
284
301
|
where?: Array<{
|
|
285
302
|
connector?: "AND" | "OR";
|
|
286
303
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
304
|
+
mode?: "sensitive" | "insensitive";
|
|
287
305
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
288
306
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
289
307
|
}>;
|
|
@@ -292,6 +310,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
292
310
|
where?: Array<{
|
|
293
311
|
connector?: "AND" | "OR";
|
|
294
312
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
313
|
+
mode?: "sensitive" | "insensitive";
|
|
295
314
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
296
315
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
297
316
|
}>;
|
|
@@ -300,6 +319,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
300
319
|
where?: Array<{
|
|
301
320
|
connector?: "AND" | "OR";
|
|
302
321
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
322
|
+
mode?: "sensitive" | "insensitive";
|
|
303
323
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
304
324
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
305
325
|
}>;
|
|
@@ -308,6 +328,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
308
328
|
where?: Array<{
|
|
309
329
|
connector?: "AND" | "OR";
|
|
310
330
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
331
|
+
mode?: "sensitive" | "insensitive";
|
|
311
332
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
312
333
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
313
334
|
}>;
|
|
@@ -335,6 +356,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
335
356
|
where?: Array<{
|
|
336
357
|
connector?: "AND" | "OR";
|
|
337
358
|
field: string;
|
|
359
|
+
mode?: "sensitive" | "insensitive";
|
|
338
360
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
339
361
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
340
362
|
}>;
|
|
@@ -346,6 +368,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
346
368
|
where?: Array<{
|
|
347
369
|
connector?: "AND" | "OR";
|
|
348
370
|
field: string;
|
|
371
|
+
mode?: "sensitive" | "insensitive";
|
|
349
372
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
350
373
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
351
374
|
}>;
|
|
@@ -371,6 +394,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
371
394
|
where?: Array<{
|
|
372
395
|
connector?: "AND" | "OR";
|
|
373
396
|
field: "name" | "email" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "_id";
|
|
397
|
+
mode?: "sensitive" | "insensitive";
|
|
374
398
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
375
399
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
376
400
|
}>;
|
|
@@ -388,6 +412,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
388
412
|
where?: Array<{
|
|
389
413
|
connector?: "AND" | "OR";
|
|
390
414
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
415
|
+
mode?: "sensitive" | "insensitive";
|
|
391
416
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
392
417
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
393
418
|
}>;
|
|
@@ -410,6 +435,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
410
435
|
where?: Array<{
|
|
411
436
|
connector?: "AND" | "OR";
|
|
412
437
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
438
|
+
mode?: "sensitive" | "insensitive";
|
|
413
439
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
414
440
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
415
441
|
}>;
|
|
@@ -425,6 +451,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
425
451
|
where?: Array<{
|
|
426
452
|
connector?: "AND" | "OR";
|
|
427
453
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
454
|
+
mode?: "sensitive" | "insensitive";
|
|
428
455
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
429
456
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
430
457
|
}>;
|
|
@@ -434,10 +461,12 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
434
461
|
backupCodes?: string;
|
|
435
462
|
secret?: string;
|
|
436
463
|
userId?: string;
|
|
464
|
+
verified?: null | boolean;
|
|
437
465
|
};
|
|
438
466
|
where?: Array<{
|
|
439
467
|
connector?: "AND" | "OR";
|
|
440
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
468
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
469
|
+
mode?: "sensitive" | "insensitive";
|
|
441
470
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
442
471
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
443
472
|
}>;
|
|
@@ -459,6 +488,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
459
488
|
where?: Array<{
|
|
460
489
|
connector?: "AND" | "OR";
|
|
461
490
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
491
|
+
mode?: "sensitive" | "insensitive";
|
|
462
492
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
463
493
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
464
494
|
}>;
|
|
@@ -478,6 +508,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
478
508
|
where?: Array<{
|
|
479
509
|
connector?: "AND" | "OR";
|
|
480
510
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
511
|
+
mode?: "sensitive" | "insensitive";
|
|
481
512
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
482
513
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
483
514
|
}>;
|
|
@@ -494,6 +525,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
494
525
|
where?: Array<{
|
|
495
526
|
connector?: "AND" | "OR";
|
|
496
527
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
528
|
+
mode?: "sensitive" | "insensitive";
|
|
497
529
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
498
530
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
499
531
|
}>;
|
|
@@ -508,6 +540,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
508
540
|
where?: Array<{
|
|
509
541
|
connector?: "AND" | "OR";
|
|
510
542
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
543
|
+
mode?: "sensitive" | "insensitive";
|
|
511
544
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
512
545
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
513
546
|
}>;
|
|
@@ -521,6 +554,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
521
554
|
where?: Array<{
|
|
522
555
|
connector?: "AND" | "OR";
|
|
523
556
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
557
|
+
mode?: "sensitive" | "insensitive";
|
|
524
558
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
525
559
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
526
560
|
}>;
|
|
@@ -556,6 +590,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
556
590
|
where?: Array<{
|
|
557
591
|
connector?: "AND" | "OR";
|
|
558
592
|
field: "name" | "email" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "_id";
|
|
593
|
+
mode?: "sensitive" | "insensitive";
|
|
559
594
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
560
595
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
561
596
|
}>;
|
|
@@ -573,6 +608,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
573
608
|
where?: Array<{
|
|
574
609
|
connector?: "AND" | "OR";
|
|
575
610
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
611
|
+
mode?: "sensitive" | "insensitive";
|
|
576
612
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
577
613
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
578
614
|
}>;
|
|
@@ -595,6 +631,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
595
631
|
where?: Array<{
|
|
596
632
|
connector?: "AND" | "OR";
|
|
597
633
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
634
|
+
mode?: "sensitive" | "insensitive";
|
|
598
635
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
599
636
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
600
637
|
}>;
|
|
@@ -610,6 +647,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
610
647
|
where?: Array<{
|
|
611
648
|
connector?: "AND" | "OR";
|
|
612
649
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
650
|
+
mode?: "sensitive" | "insensitive";
|
|
613
651
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
614
652
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
615
653
|
}>;
|
|
@@ -619,10 +657,12 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
619
657
|
backupCodes?: string;
|
|
620
658
|
secret?: string;
|
|
621
659
|
userId?: string;
|
|
660
|
+
verified?: null | boolean;
|
|
622
661
|
};
|
|
623
662
|
where?: Array<{
|
|
624
663
|
connector?: "AND" | "OR";
|
|
625
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
664
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
665
|
+
mode?: "sensitive" | "insensitive";
|
|
626
666
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
627
667
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
628
668
|
}>;
|
|
@@ -644,6 +684,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
644
684
|
where?: Array<{
|
|
645
685
|
connector?: "AND" | "OR";
|
|
646
686
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
687
|
+
mode?: "sensitive" | "insensitive";
|
|
647
688
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
648
689
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
649
690
|
}>;
|
|
@@ -663,6 +704,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
663
704
|
where?: Array<{
|
|
664
705
|
connector?: "AND" | "OR";
|
|
665
706
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
707
|
+
mode?: "sensitive" | "insensitive";
|
|
666
708
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
667
709
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
668
710
|
}>;
|
|
@@ -679,6 +721,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
679
721
|
where?: Array<{
|
|
680
722
|
connector?: "AND" | "OR";
|
|
681
723
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
724
|
+
mode?: "sensitive" | "insensitive";
|
|
682
725
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
683
726
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
684
727
|
}>;
|
|
@@ -693,6 +736,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
693
736
|
where?: Array<{
|
|
694
737
|
connector?: "AND" | "OR";
|
|
695
738
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
739
|
+
mode?: "sensitive" | "insensitive";
|
|
696
740
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
697
741
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
698
742
|
}>;
|
|
@@ -706,6 +750,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
706
750
|
where?: Array<{
|
|
707
751
|
connector?: "AND" | "OR";
|
|
708
752
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
753
|
+
mode?: "sensitive" | "insensitive";
|
|
709
754
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
710
755
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
711
756
|
}>;
|
|
@@ -713,9 +758,6 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
713
758
|
onUpdateHandle?: string;
|
|
714
759
|
}, any, Name>;
|
|
715
760
|
};
|
|
716
|
-
adapterTest: {
|
|
717
|
-
runTests: FunctionReference<"action", "internal", any, any, Name>;
|
|
718
|
-
};
|
|
719
761
|
testProfiles: {
|
|
720
762
|
adapterAdditionalFields: {
|
|
721
763
|
create: FunctionReference<"mutation", "internal", {
|
|
@@ -782,6 +824,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
782
824
|
backupCodes: string;
|
|
783
825
|
secret: string;
|
|
784
826
|
userId: string;
|
|
827
|
+
verified?: null | boolean;
|
|
785
828
|
};
|
|
786
829
|
model: "twoFactor";
|
|
787
830
|
} | {
|
|
@@ -847,6 +890,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
847
890
|
where?: Array<{
|
|
848
891
|
connector?: "AND" | "OR";
|
|
849
892
|
field: "name" | "email" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "customField" | "numericField" | "testField" | "cbDefaultValueField" | "dateField" | "_id";
|
|
893
|
+
mode?: "sensitive" | "insensitive";
|
|
850
894
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
851
895
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
852
896
|
}>;
|
|
@@ -855,6 +899,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
855
899
|
where?: Array<{
|
|
856
900
|
connector?: "AND" | "OR";
|
|
857
901
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
902
|
+
mode?: "sensitive" | "insensitive";
|
|
858
903
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
859
904
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
860
905
|
}>;
|
|
@@ -863,6 +908,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
863
908
|
where?: Array<{
|
|
864
909
|
connector?: "AND" | "OR";
|
|
865
910
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
911
|
+
mode?: "sensitive" | "insensitive";
|
|
866
912
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
867
913
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
868
914
|
}>;
|
|
@@ -871,6 +917,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
871
917
|
where?: Array<{
|
|
872
918
|
connector?: "AND" | "OR";
|
|
873
919
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
920
|
+
mode?: "sensitive" | "insensitive";
|
|
874
921
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
875
922
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
876
923
|
}>;
|
|
@@ -878,7 +925,8 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
878
925
|
model: "twoFactor";
|
|
879
926
|
where?: Array<{
|
|
880
927
|
connector?: "AND" | "OR";
|
|
881
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
928
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
929
|
+
mode?: "sensitive" | "insensitive";
|
|
882
930
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
883
931
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
884
932
|
}>;
|
|
@@ -887,6 +935,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
887
935
|
where?: Array<{
|
|
888
936
|
connector?: "AND" | "OR";
|
|
889
937
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
938
|
+
mode?: "sensitive" | "insensitive";
|
|
890
939
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
891
940
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
892
941
|
}>;
|
|
@@ -895,6 +944,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
895
944
|
where?: Array<{
|
|
896
945
|
connector?: "AND" | "OR";
|
|
897
946
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
947
|
+
mode?: "sensitive" | "insensitive";
|
|
898
948
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
899
949
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
900
950
|
}>;
|
|
@@ -903,6 +953,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
903
953
|
where?: Array<{
|
|
904
954
|
connector?: "AND" | "OR";
|
|
905
955
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
956
|
+
mode?: "sensitive" | "insensitive";
|
|
906
957
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
907
958
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
908
959
|
}>;
|
|
@@ -911,6 +962,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
911
962
|
where?: Array<{
|
|
912
963
|
connector?: "AND" | "OR";
|
|
913
964
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
965
|
+
mode?: "sensitive" | "insensitive";
|
|
914
966
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
915
967
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
916
968
|
}>;
|
|
@@ -919,6 +971,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
919
971
|
where?: Array<{
|
|
920
972
|
connector?: "AND" | "OR";
|
|
921
973
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
974
|
+
mode?: "sensitive" | "insensitive";
|
|
922
975
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
923
976
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
924
977
|
}>;
|
|
@@ -939,6 +992,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
939
992
|
where?: Array<{
|
|
940
993
|
connector?: "AND" | "OR";
|
|
941
994
|
field: "name" | "email" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "customField" | "numericField" | "testField" | "cbDefaultValueField" | "dateField" | "_id";
|
|
995
|
+
mode?: "sensitive" | "insensitive";
|
|
942
996
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
943
997
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
944
998
|
}>;
|
|
@@ -947,6 +1001,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
947
1001
|
where?: Array<{
|
|
948
1002
|
connector?: "AND" | "OR";
|
|
949
1003
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
1004
|
+
mode?: "sensitive" | "insensitive";
|
|
950
1005
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
951
1006
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
952
1007
|
}>;
|
|
@@ -955,6 +1010,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
955
1010
|
where?: Array<{
|
|
956
1011
|
connector?: "AND" | "OR";
|
|
957
1012
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
1013
|
+
mode?: "sensitive" | "insensitive";
|
|
958
1014
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
959
1015
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
960
1016
|
}>;
|
|
@@ -963,6 +1019,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
963
1019
|
where?: Array<{
|
|
964
1020
|
connector?: "AND" | "OR";
|
|
965
1021
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
1022
|
+
mode?: "sensitive" | "insensitive";
|
|
966
1023
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
967
1024
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
968
1025
|
}>;
|
|
@@ -970,7 +1027,8 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
970
1027
|
model: "twoFactor";
|
|
971
1028
|
where?: Array<{
|
|
972
1029
|
connector?: "AND" | "OR";
|
|
973
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
1030
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
1031
|
+
mode?: "sensitive" | "insensitive";
|
|
974
1032
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
975
1033
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
976
1034
|
}>;
|
|
@@ -979,6 +1037,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
979
1037
|
where?: Array<{
|
|
980
1038
|
connector?: "AND" | "OR";
|
|
981
1039
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
1040
|
+
mode?: "sensitive" | "insensitive";
|
|
982
1041
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
983
1042
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
984
1043
|
}>;
|
|
@@ -987,6 +1046,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
987
1046
|
where?: Array<{
|
|
988
1047
|
connector?: "AND" | "OR";
|
|
989
1048
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
1049
|
+
mode?: "sensitive" | "insensitive";
|
|
990
1050
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
991
1051
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
992
1052
|
}>;
|
|
@@ -995,6 +1055,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
995
1055
|
where?: Array<{
|
|
996
1056
|
connector?: "AND" | "OR";
|
|
997
1057
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
1058
|
+
mode?: "sensitive" | "insensitive";
|
|
998
1059
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
999
1060
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1000
1061
|
}>;
|
|
@@ -1003,6 +1064,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1003
1064
|
where?: Array<{
|
|
1004
1065
|
connector?: "AND" | "OR";
|
|
1005
1066
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
1067
|
+
mode?: "sensitive" | "insensitive";
|
|
1006
1068
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1007
1069
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1008
1070
|
}>;
|
|
@@ -1011,6 +1073,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1011
1073
|
where?: Array<{
|
|
1012
1074
|
connector?: "AND" | "OR";
|
|
1013
1075
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
1076
|
+
mode?: "sensitive" | "insensitive";
|
|
1014
1077
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1015
1078
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1016
1079
|
}>;
|
|
@@ -1038,6 +1101,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1038
1101
|
where?: Array<{
|
|
1039
1102
|
connector?: "AND" | "OR";
|
|
1040
1103
|
field: string;
|
|
1104
|
+
mode?: "sensitive" | "insensitive";
|
|
1041
1105
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1042
1106
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1043
1107
|
}>;
|
|
@@ -1049,6 +1113,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1049
1113
|
where?: Array<{
|
|
1050
1114
|
connector?: "AND" | "OR";
|
|
1051
1115
|
field: string;
|
|
1116
|
+
mode?: "sensitive" | "insensitive";
|
|
1052
1117
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1053
1118
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1054
1119
|
}>;
|
|
@@ -1079,6 +1144,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1079
1144
|
where?: Array<{
|
|
1080
1145
|
connector?: "AND" | "OR";
|
|
1081
1146
|
field: "name" | "email" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "customField" | "numericField" | "testField" | "cbDefaultValueField" | "dateField" | "_id";
|
|
1147
|
+
mode?: "sensitive" | "insensitive";
|
|
1082
1148
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1083
1149
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1084
1150
|
}>;
|
|
@@ -1096,6 +1162,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1096
1162
|
where?: Array<{
|
|
1097
1163
|
connector?: "AND" | "OR";
|
|
1098
1164
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
1165
|
+
mode?: "sensitive" | "insensitive";
|
|
1099
1166
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1100
1167
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1101
1168
|
}>;
|
|
@@ -1118,6 +1185,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1118
1185
|
where?: Array<{
|
|
1119
1186
|
connector?: "AND" | "OR";
|
|
1120
1187
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
1188
|
+
mode?: "sensitive" | "insensitive";
|
|
1121
1189
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1122
1190
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1123
1191
|
}>;
|
|
@@ -1133,6 +1201,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1133
1201
|
where?: Array<{
|
|
1134
1202
|
connector?: "AND" | "OR";
|
|
1135
1203
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
1204
|
+
mode?: "sensitive" | "insensitive";
|
|
1136
1205
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1137
1206
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1138
1207
|
}>;
|
|
@@ -1142,10 +1211,12 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1142
1211
|
backupCodes?: string;
|
|
1143
1212
|
secret?: string;
|
|
1144
1213
|
userId?: string;
|
|
1214
|
+
verified?: null | boolean;
|
|
1145
1215
|
};
|
|
1146
1216
|
where?: Array<{
|
|
1147
1217
|
connector?: "AND" | "OR";
|
|
1148
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
1218
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
1219
|
+
mode?: "sensitive" | "insensitive";
|
|
1149
1220
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1150
1221
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1151
1222
|
}>;
|
|
@@ -1167,6 +1238,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1167
1238
|
where?: Array<{
|
|
1168
1239
|
connector?: "AND" | "OR";
|
|
1169
1240
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
1241
|
+
mode?: "sensitive" | "insensitive";
|
|
1170
1242
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1171
1243
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1172
1244
|
}>;
|
|
@@ -1186,6 +1258,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1186
1258
|
where?: Array<{
|
|
1187
1259
|
connector?: "AND" | "OR";
|
|
1188
1260
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
1261
|
+
mode?: "sensitive" | "insensitive";
|
|
1189
1262
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1190
1263
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1191
1264
|
}>;
|
|
@@ -1202,6 +1275,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1202
1275
|
where?: Array<{
|
|
1203
1276
|
connector?: "AND" | "OR";
|
|
1204
1277
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
1278
|
+
mode?: "sensitive" | "insensitive";
|
|
1205
1279
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1206
1280
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1207
1281
|
}>;
|
|
@@ -1216,6 +1290,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1216
1290
|
where?: Array<{
|
|
1217
1291
|
connector?: "AND" | "OR";
|
|
1218
1292
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
1293
|
+
mode?: "sensitive" | "insensitive";
|
|
1219
1294
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1220
1295
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1221
1296
|
}>;
|
|
@@ -1229,6 +1304,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1229
1304
|
where?: Array<{
|
|
1230
1305
|
connector?: "AND" | "OR";
|
|
1231
1306
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
1307
|
+
mode?: "sensitive" | "insensitive";
|
|
1232
1308
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1233
1309
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1234
1310
|
}>;
|
|
@@ -1269,6 +1345,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1269
1345
|
where?: Array<{
|
|
1270
1346
|
connector?: "AND" | "OR";
|
|
1271
1347
|
field: "name" | "email" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "customField" | "numericField" | "testField" | "cbDefaultValueField" | "dateField" | "_id";
|
|
1348
|
+
mode?: "sensitive" | "insensitive";
|
|
1272
1349
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1273
1350
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1274
1351
|
}>;
|
|
@@ -1286,6 +1363,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1286
1363
|
where?: Array<{
|
|
1287
1364
|
connector?: "AND" | "OR";
|
|
1288
1365
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
1366
|
+
mode?: "sensitive" | "insensitive";
|
|
1289
1367
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1290
1368
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1291
1369
|
}>;
|
|
@@ -1308,6 +1386,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1308
1386
|
where?: Array<{
|
|
1309
1387
|
connector?: "AND" | "OR";
|
|
1310
1388
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
1389
|
+
mode?: "sensitive" | "insensitive";
|
|
1311
1390
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1312
1391
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1313
1392
|
}>;
|
|
@@ -1323,6 +1402,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1323
1402
|
where?: Array<{
|
|
1324
1403
|
connector?: "AND" | "OR";
|
|
1325
1404
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
1405
|
+
mode?: "sensitive" | "insensitive";
|
|
1326
1406
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1327
1407
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1328
1408
|
}>;
|
|
@@ -1332,10 +1412,12 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1332
1412
|
backupCodes?: string;
|
|
1333
1413
|
secret?: string;
|
|
1334
1414
|
userId?: string;
|
|
1415
|
+
verified?: null | boolean;
|
|
1335
1416
|
};
|
|
1336
1417
|
where?: Array<{
|
|
1337
1418
|
connector?: "AND" | "OR";
|
|
1338
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
1419
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
1420
|
+
mode?: "sensitive" | "insensitive";
|
|
1339
1421
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1340
1422
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1341
1423
|
}>;
|
|
@@ -1357,6 +1439,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1357
1439
|
where?: Array<{
|
|
1358
1440
|
connector?: "AND" | "OR";
|
|
1359
1441
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
1442
|
+
mode?: "sensitive" | "insensitive";
|
|
1360
1443
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1361
1444
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1362
1445
|
}>;
|
|
@@ -1376,6 +1459,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1376
1459
|
where?: Array<{
|
|
1377
1460
|
connector?: "AND" | "OR";
|
|
1378
1461
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
1462
|
+
mode?: "sensitive" | "insensitive";
|
|
1379
1463
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1380
1464
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1381
1465
|
}>;
|
|
@@ -1392,6 +1476,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1392
1476
|
where?: Array<{
|
|
1393
1477
|
connector?: "AND" | "OR";
|
|
1394
1478
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
1479
|
+
mode?: "sensitive" | "insensitive";
|
|
1395
1480
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1396
1481
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1397
1482
|
}>;
|
|
@@ -1406,6 +1491,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1406
1491
|
where?: Array<{
|
|
1407
1492
|
connector?: "AND" | "OR";
|
|
1408
1493
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
1494
|
+
mode?: "sensitive" | "insensitive";
|
|
1409
1495
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1410
1496
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1411
1497
|
}>;
|
|
@@ -1419,6 +1505,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1419
1505
|
where?: Array<{
|
|
1420
1506
|
connector?: "AND" | "OR";
|
|
1421
1507
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
1508
|
+
mode?: "sensitive" | "insensitive";
|
|
1422
1509
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1423
1510
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1424
1511
|
}>;
|
|
@@ -1492,6 +1579,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1492
1579
|
backupCodes: string;
|
|
1493
1580
|
secret: string;
|
|
1494
1581
|
userId: string;
|
|
1582
|
+
verified?: null | boolean;
|
|
1495
1583
|
};
|
|
1496
1584
|
model: "twoFactor";
|
|
1497
1585
|
} | {
|
|
@@ -1671,6 +1759,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1671
1759
|
where?: Array<{
|
|
1672
1760
|
connector?: "AND" | "OR";
|
|
1673
1761
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
1762
|
+
mode?: "sensitive" | "insensitive";
|
|
1674
1763
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1675
1764
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1676
1765
|
}>;
|
|
@@ -1679,6 +1768,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1679
1768
|
where?: Array<{
|
|
1680
1769
|
connector?: "AND" | "OR";
|
|
1681
1770
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
1771
|
+
mode?: "sensitive" | "insensitive";
|
|
1682
1772
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1683
1773
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1684
1774
|
}>;
|
|
@@ -1687,6 +1777,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1687
1777
|
where?: Array<{
|
|
1688
1778
|
connector?: "AND" | "OR";
|
|
1689
1779
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
1780
|
+
mode?: "sensitive" | "insensitive";
|
|
1690
1781
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1691
1782
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1692
1783
|
}>;
|
|
@@ -1695,6 +1786,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1695
1786
|
where?: Array<{
|
|
1696
1787
|
connector?: "AND" | "OR";
|
|
1697
1788
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
1789
|
+
mode?: "sensitive" | "insensitive";
|
|
1698
1790
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1699
1791
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1700
1792
|
}>;
|
|
@@ -1702,7 +1794,8 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1702
1794
|
model: "twoFactor";
|
|
1703
1795
|
where?: Array<{
|
|
1704
1796
|
connector?: "AND" | "OR";
|
|
1705
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
1797
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
1798
|
+
mode?: "sensitive" | "insensitive";
|
|
1706
1799
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1707
1800
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1708
1801
|
}>;
|
|
@@ -1711,6 +1804,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1711
1804
|
where?: Array<{
|
|
1712
1805
|
connector?: "AND" | "OR";
|
|
1713
1806
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
1807
|
+
mode?: "sensitive" | "insensitive";
|
|
1714
1808
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1715
1809
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1716
1810
|
}>;
|
|
@@ -1719,6 +1813,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1719
1813
|
where?: Array<{
|
|
1720
1814
|
connector?: "AND" | "OR";
|
|
1721
1815
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
1816
|
+
mode?: "sensitive" | "insensitive";
|
|
1722
1817
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1723
1818
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1724
1819
|
}>;
|
|
@@ -1727,6 +1822,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1727
1822
|
where?: Array<{
|
|
1728
1823
|
connector?: "AND" | "OR";
|
|
1729
1824
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
1825
|
+
mode?: "sensitive" | "insensitive";
|
|
1730
1826
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1731
1827
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1732
1828
|
}>;
|
|
@@ -1735,6 +1831,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1735
1831
|
where?: Array<{
|
|
1736
1832
|
connector?: "AND" | "OR";
|
|
1737
1833
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
1834
|
+
mode?: "sensitive" | "insensitive";
|
|
1738
1835
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1739
1836
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1740
1837
|
}>;
|
|
@@ -1743,6 +1840,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1743
1840
|
where?: Array<{
|
|
1744
1841
|
connector?: "AND" | "OR";
|
|
1745
1842
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
1843
|
+
mode?: "sensitive" | "insensitive";
|
|
1746
1844
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1747
1845
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1748
1846
|
}>;
|
|
@@ -1751,6 +1849,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1751
1849
|
where?: Array<{
|
|
1752
1850
|
connector?: "AND" | "OR";
|
|
1753
1851
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
1852
|
+
mode?: "sensitive" | "insensitive";
|
|
1754
1853
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1755
1854
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1756
1855
|
}>;
|
|
@@ -1759,6 +1858,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1759
1858
|
where?: Array<{
|
|
1760
1859
|
connector?: "AND" | "OR";
|
|
1761
1860
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
1861
|
+
mode?: "sensitive" | "insensitive";
|
|
1762
1862
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1763
1863
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1764
1864
|
}>;
|
|
@@ -1767,6 +1867,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1767
1867
|
where?: Array<{
|
|
1768
1868
|
connector?: "AND" | "OR";
|
|
1769
1869
|
field: "oneToOne" | "_id";
|
|
1870
|
+
mode?: "sensitive" | "insensitive";
|
|
1770
1871
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1771
1872
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1772
1873
|
}>;
|
|
@@ -1775,6 +1876,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1775
1876
|
where?: Array<{
|
|
1776
1877
|
connector?: "AND" | "OR";
|
|
1777
1878
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
1879
|
+
mode?: "sensitive" | "insensitive";
|
|
1778
1880
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1779
1881
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1780
1882
|
}>;
|
|
@@ -1783,6 +1885,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1783
1885
|
where?: Array<{
|
|
1784
1886
|
connector?: "AND" | "OR";
|
|
1785
1887
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
1888
|
+
mode?: "sensitive" | "insensitive";
|
|
1786
1889
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1787
1890
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1788
1891
|
}>;
|
|
@@ -1791,6 +1894,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1791
1894
|
where?: Array<{
|
|
1792
1895
|
connector?: "AND" | "OR";
|
|
1793
1896
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
1897
|
+
mode?: "sensitive" | "insensitive";
|
|
1794
1898
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1795
1899
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1796
1900
|
}>;
|
|
@@ -1799,6 +1903,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1799
1903
|
where?: Array<{
|
|
1800
1904
|
connector?: "AND" | "OR";
|
|
1801
1905
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
1906
|
+
mode?: "sensitive" | "insensitive";
|
|
1802
1907
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1803
1908
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1804
1909
|
}>;
|
|
@@ -1807,6 +1912,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1807
1912
|
where?: Array<{
|
|
1808
1913
|
connector?: "AND" | "OR";
|
|
1809
1914
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
1915
|
+
mode?: "sensitive" | "insensitive";
|
|
1810
1916
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1811
1917
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1812
1918
|
}>;
|
|
@@ -1815,6 +1921,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1815
1921
|
where?: Array<{
|
|
1816
1922
|
connector?: "AND" | "OR";
|
|
1817
1923
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
1924
|
+
mode?: "sensitive" | "insensitive";
|
|
1818
1925
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1819
1926
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1820
1927
|
}>;
|
|
@@ -1823,6 +1930,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1823
1930
|
where?: Array<{
|
|
1824
1931
|
connector?: "AND" | "OR";
|
|
1825
1932
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
1933
|
+
mode?: "sensitive" | "insensitive";
|
|
1826
1934
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1827
1935
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1828
1936
|
}>;
|
|
@@ -1843,6 +1951,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1843
1951
|
where?: Array<{
|
|
1844
1952
|
connector?: "AND" | "OR";
|
|
1845
1953
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
1954
|
+
mode?: "sensitive" | "insensitive";
|
|
1846
1955
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1847
1956
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1848
1957
|
}>;
|
|
@@ -1851,6 +1960,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1851
1960
|
where?: Array<{
|
|
1852
1961
|
connector?: "AND" | "OR";
|
|
1853
1962
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
1963
|
+
mode?: "sensitive" | "insensitive";
|
|
1854
1964
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1855
1965
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1856
1966
|
}>;
|
|
@@ -1859,6 +1969,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1859
1969
|
where?: Array<{
|
|
1860
1970
|
connector?: "AND" | "OR";
|
|
1861
1971
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
1972
|
+
mode?: "sensitive" | "insensitive";
|
|
1862
1973
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1863
1974
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1864
1975
|
}>;
|
|
@@ -1867,6 +1978,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1867
1978
|
where?: Array<{
|
|
1868
1979
|
connector?: "AND" | "OR";
|
|
1869
1980
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
1981
|
+
mode?: "sensitive" | "insensitive";
|
|
1870
1982
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1871
1983
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1872
1984
|
}>;
|
|
@@ -1874,7 +1986,8 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1874
1986
|
model: "twoFactor";
|
|
1875
1987
|
where?: Array<{
|
|
1876
1988
|
connector?: "AND" | "OR";
|
|
1877
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
1989
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
1990
|
+
mode?: "sensitive" | "insensitive";
|
|
1878
1991
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1879
1992
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1880
1993
|
}>;
|
|
@@ -1883,6 +1996,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1883
1996
|
where?: Array<{
|
|
1884
1997
|
connector?: "AND" | "OR";
|
|
1885
1998
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
1999
|
+
mode?: "sensitive" | "insensitive";
|
|
1886
2000
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1887
2001
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1888
2002
|
}>;
|
|
@@ -1891,6 +2005,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1891
2005
|
where?: Array<{
|
|
1892
2006
|
connector?: "AND" | "OR";
|
|
1893
2007
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
2008
|
+
mode?: "sensitive" | "insensitive";
|
|
1894
2009
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1895
2010
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1896
2011
|
}>;
|
|
@@ -1899,6 +2014,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1899
2014
|
where?: Array<{
|
|
1900
2015
|
connector?: "AND" | "OR";
|
|
1901
2016
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
2017
|
+
mode?: "sensitive" | "insensitive";
|
|
1902
2018
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1903
2019
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1904
2020
|
}>;
|
|
@@ -1907,6 +2023,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1907
2023
|
where?: Array<{
|
|
1908
2024
|
connector?: "AND" | "OR";
|
|
1909
2025
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
2026
|
+
mode?: "sensitive" | "insensitive";
|
|
1910
2027
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1911
2028
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1912
2029
|
}>;
|
|
@@ -1915,6 +2032,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1915
2032
|
where?: Array<{
|
|
1916
2033
|
connector?: "AND" | "OR";
|
|
1917
2034
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
2035
|
+
mode?: "sensitive" | "insensitive";
|
|
1918
2036
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1919
2037
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1920
2038
|
}>;
|
|
@@ -1923,6 +2041,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1923
2041
|
where?: Array<{
|
|
1924
2042
|
connector?: "AND" | "OR";
|
|
1925
2043
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
2044
|
+
mode?: "sensitive" | "insensitive";
|
|
1926
2045
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1927
2046
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1928
2047
|
}>;
|
|
@@ -1931,6 +2050,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1931
2050
|
where?: Array<{
|
|
1932
2051
|
connector?: "AND" | "OR";
|
|
1933
2052
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
2053
|
+
mode?: "sensitive" | "insensitive";
|
|
1934
2054
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1935
2055
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1936
2056
|
}>;
|
|
@@ -1939,6 +2059,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1939
2059
|
where?: Array<{
|
|
1940
2060
|
connector?: "AND" | "OR";
|
|
1941
2061
|
field: "oneToOne" | "_id";
|
|
2062
|
+
mode?: "sensitive" | "insensitive";
|
|
1942
2063
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1943
2064
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1944
2065
|
}>;
|
|
@@ -1947,6 +2068,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1947
2068
|
where?: Array<{
|
|
1948
2069
|
connector?: "AND" | "OR";
|
|
1949
2070
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
2071
|
+
mode?: "sensitive" | "insensitive";
|
|
1950
2072
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1951
2073
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1952
2074
|
}>;
|
|
@@ -1955,6 +2077,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1955
2077
|
where?: Array<{
|
|
1956
2078
|
connector?: "AND" | "OR";
|
|
1957
2079
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
2080
|
+
mode?: "sensitive" | "insensitive";
|
|
1958
2081
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1959
2082
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1960
2083
|
}>;
|
|
@@ -1963,6 +2086,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1963
2086
|
where?: Array<{
|
|
1964
2087
|
connector?: "AND" | "OR";
|
|
1965
2088
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
2089
|
+
mode?: "sensitive" | "insensitive";
|
|
1966
2090
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1967
2091
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1968
2092
|
}>;
|
|
@@ -1971,6 +2095,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1971
2095
|
where?: Array<{
|
|
1972
2096
|
connector?: "AND" | "OR";
|
|
1973
2097
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
2098
|
+
mode?: "sensitive" | "insensitive";
|
|
1974
2099
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1975
2100
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1976
2101
|
}>;
|
|
@@ -1979,6 +2104,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1979
2104
|
where?: Array<{
|
|
1980
2105
|
connector?: "AND" | "OR";
|
|
1981
2106
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
2107
|
+
mode?: "sensitive" | "insensitive";
|
|
1982
2108
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1983
2109
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1984
2110
|
}>;
|
|
@@ -1987,6 +2113,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1987
2113
|
where?: Array<{
|
|
1988
2114
|
connector?: "AND" | "OR";
|
|
1989
2115
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
2116
|
+
mode?: "sensitive" | "insensitive";
|
|
1990
2117
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1991
2118
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1992
2119
|
}>;
|
|
@@ -1995,6 +2122,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1995
2122
|
where?: Array<{
|
|
1996
2123
|
connector?: "AND" | "OR";
|
|
1997
2124
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
2125
|
+
mode?: "sensitive" | "insensitive";
|
|
1998
2126
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1999
2127
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2000
2128
|
}>;
|
|
@@ -2022,6 +2150,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2022
2150
|
where?: Array<{
|
|
2023
2151
|
connector?: "AND" | "OR";
|
|
2024
2152
|
field: string;
|
|
2153
|
+
mode?: "sensitive" | "insensitive";
|
|
2025
2154
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2026
2155
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2027
2156
|
}>;
|
|
@@ -2033,6 +2162,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2033
2162
|
where?: Array<{
|
|
2034
2163
|
connector?: "AND" | "OR";
|
|
2035
2164
|
field: string;
|
|
2165
|
+
mode?: "sensitive" | "insensitive";
|
|
2036
2166
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2037
2167
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2038
2168
|
}>;
|
|
@@ -2064,6 +2194,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2064
2194
|
where?: Array<{
|
|
2065
2195
|
connector?: "AND" | "OR";
|
|
2066
2196
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
2197
|
+
mode?: "sensitive" | "insensitive";
|
|
2067
2198
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2068
2199
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2069
2200
|
}>;
|
|
@@ -2081,6 +2212,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2081
2212
|
where?: Array<{
|
|
2082
2213
|
connector?: "AND" | "OR";
|
|
2083
2214
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
2215
|
+
mode?: "sensitive" | "insensitive";
|
|
2084
2216
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2085
2217
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2086
2218
|
}>;
|
|
@@ -2103,6 +2235,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2103
2235
|
where?: Array<{
|
|
2104
2236
|
connector?: "AND" | "OR";
|
|
2105
2237
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
2238
|
+
mode?: "sensitive" | "insensitive";
|
|
2106
2239
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2107
2240
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2108
2241
|
}>;
|
|
@@ -2118,6 +2251,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2118
2251
|
where?: Array<{
|
|
2119
2252
|
connector?: "AND" | "OR";
|
|
2120
2253
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
2254
|
+
mode?: "sensitive" | "insensitive";
|
|
2121
2255
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2122
2256
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2123
2257
|
}>;
|
|
@@ -2127,10 +2261,12 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2127
2261
|
backupCodes?: string;
|
|
2128
2262
|
secret?: string;
|
|
2129
2263
|
userId?: string;
|
|
2264
|
+
verified?: null | boolean;
|
|
2130
2265
|
};
|
|
2131
2266
|
where?: Array<{
|
|
2132
2267
|
connector?: "AND" | "OR";
|
|
2133
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
2268
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
2269
|
+
mode?: "sensitive" | "insensitive";
|
|
2134
2270
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2135
2271
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2136
2272
|
}>;
|
|
@@ -2152,6 +2288,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2152
2288
|
where?: Array<{
|
|
2153
2289
|
connector?: "AND" | "OR";
|
|
2154
2290
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
2291
|
+
mode?: "sensitive" | "insensitive";
|
|
2155
2292
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2156
2293
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2157
2294
|
}>;
|
|
@@ -2171,6 +2308,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2171
2308
|
where?: Array<{
|
|
2172
2309
|
connector?: "AND" | "OR";
|
|
2173
2310
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
2311
|
+
mode?: "sensitive" | "insensitive";
|
|
2174
2312
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2175
2313
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2176
2314
|
}>;
|
|
@@ -2187,6 +2325,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2187
2325
|
where?: Array<{
|
|
2188
2326
|
connector?: "AND" | "OR";
|
|
2189
2327
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
2328
|
+
mode?: "sensitive" | "insensitive";
|
|
2190
2329
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2191
2330
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2192
2331
|
}>;
|
|
@@ -2201,6 +2340,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2201
2340
|
where?: Array<{
|
|
2202
2341
|
connector?: "AND" | "OR";
|
|
2203
2342
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
2343
|
+
mode?: "sensitive" | "insensitive";
|
|
2204
2344
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2205
2345
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2206
2346
|
}>;
|
|
@@ -2214,6 +2354,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2214
2354
|
where?: Array<{
|
|
2215
2355
|
connector?: "AND" | "OR";
|
|
2216
2356
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
2357
|
+
mode?: "sensitive" | "insensitive";
|
|
2217
2358
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2218
2359
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2219
2360
|
}>;
|
|
@@ -2243,6 +2384,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2243
2384
|
where?: Array<{
|
|
2244
2385
|
connector?: "AND" | "OR";
|
|
2245
2386
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
2387
|
+
mode?: "sensitive" | "insensitive";
|
|
2246
2388
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2247
2389
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2248
2390
|
}>;
|
|
@@ -2272,6 +2414,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2272
2414
|
where?: Array<{
|
|
2273
2415
|
connector?: "AND" | "OR";
|
|
2274
2416
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
2417
|
+
mode?: "sensitive" | "insensitive";
|
|
2275
2418
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2276
2419
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2277
2420
|
}>;
|
|
@@ -2283,6 +2426,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2283
2426
|
where?: Array<{
|
|
2284
2427
|
connector?: "AND" | "OR";
|
|
2285
2428
|
field: "oneToOne" | "_id";
|
|
2429
|
+
mode?: "sensitive" | "insensitive";
|
|
2286
2430
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2287
2431
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2288
2432
|
}>;
|
|
@@ -2295,6 +2439,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2295
2439
|
where?: Array<{
|
|
2296
2440
|
connector?: "AND" | "OR";
|
|
2297
2441
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
2442
|
+
mode?: "sensitive" | "insensitive";
|
|
2298
2443
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2299
2444
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2300
2445
|
}>;
|
|
@@ -2311,6 +2456,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2311
2456
|
where?: Array<{
|
|
2312
2457
|
connector?: "AND" | "OR";
|
|
2313
2458
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
2459
|
+
mode?: "sensitive" | "insensitive";
|
|
2314
2460
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2315
2461
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2316
2462
|
}>;
|
|
@@ -2327,6 +2473,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2327
2473
|
where?: Array<{
|
|
2328
2474
|
connector?: "AND" | "OR";
|
|
2329
2475
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
2476
|
+
mode?: "sensitive" | "insensitive";
|
|
2330
2477
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2331
2478
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2332
2479
|
}>;
|
|
@@ -2342,6 +2489,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2342
2489
|
where?: Array<{
|
|
2343
2490
|
connector?: "AND" | "OR";
|
|
2344
2491
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
2492
|
+
mode?: "sensitive" | "insensitive";
|
|
2345
2493
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2346
2494
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2347
2495
|
}>;
|
|
@@ -2356,6 +2504,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2356
2504
|
where?: Array<{
|
|
2357
2505
|
connector?: "AND" | "OR";
|
|
2358
2506
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
2507
|
+
mode?: "sensitive" | "insensitive";
|
|
2359
2508
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2360
2509
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2361
2510
|
}>;
|
|
@@ -2369,6 +2518,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2369
2518
|
where?: Array<{
|
|
2370
2519
|
connector?: "AND" | "OR";
|
|
2371
2520
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
2521
|
+
mode?: "sensitive" | "insensitive";
|
|
2372
2522
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2373
2523
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2374
2524
|
}>;
|
|
@@ -2388,6 +2538,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2388
2538
|
where?: Array<{
|
|
2389
2539
|
connector?: "AND" | "OR";
|
|
2390
2540
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
2541
|
+
mode?: "sensitive" | "insensitive";
|
|
2391
2542
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2392
2543
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2393
2544
|
}>;
|
|
@@ -2429,6 +2580,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2429
2580
|
where?: Array<{
|
|
2430
2581
|
connector?: "AND" | "OR";
|
|
2431
2582
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
2583
|
+
mode?: "sensitive" | "insensitive";
|
|
2432
2584
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2433
2585
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2434
2586
|
}>;
|
|
@@ -2446,6 +2598,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2446
2598
|
where?: Array<{
|
|
2447
2599
|
connector?: "AND" | "OR";
|
|
2448
2600
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
2601
|
+
mode?: "sensitive" | "insensitive";
|
|
2449
2602
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2450
2603
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2451
2604
|
}>;
|
|
@@ -2468,6 +2621,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2468
2621
|
where?: Array<{
|
|
2469
2622
|
connector?: "AND" | "OR";
|
|
2470
2623
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
2624
|
+
mode?: "sensitive" | "insensitive";
|
|
2471
2625
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2472
2626
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2473
2627
|
}>;
|
|
@@ -2483,6 +2637,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2483
2637
|
where?: Array<{
|
|
2484
2638
|
connector?: "AND" | "OR";
|
|
2485
2639
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
2640
|
+
mode?: "sensitive" | "insensitive";
|
|
2486
2641
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2487
2642
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2488
2643
|
}>;
|
|
@@ -2492,10 +2647,12 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2492
2647
|
backupCodes?: string;
|
|
2493
2648
|
secret?: string;
|
|
2494
2649
|
userId?: string;
|
|
2650
|
+
verified?: null | boolean;
|
|
2495
2651
|
};
|
|
2496
2652
|
where?: Array<{
|
|
2497
2653
|
connector?: "AND" | "OR";
|
|
2498
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
2654
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
2655
|
+
mode?: "sensitive" | "insensitive";
|
|
2499
2656
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2500
2657
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2501
2658
|
}>;
|
|
@@ -2517,6 +2674,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2517
2674
|
where?: Array<{
|
|
2518
2675
|
connector?: "AND" | "OR";
|
|
2519
2676
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
2677
|
+
mode?: "sensitive" | "insensitive";
|
|
2520
2678
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2521
2679
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2522
2680
|
}>;
|
|
@@ -2536,6 +2694,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2536
2694
|
where?: Array<{
|
|
2537
2695
|
connector?: "AND" | "OR";
|
|
2538
2696
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
2697
|
+
mode?: "sensitive" | "insensitive";
|
|
2539
2698
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2540
2699
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2541
2700
|
}>;
|
|
@@ -2552,6 +2711,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2552
2711
|
where?: Array<{
|
|
2553
2712
|
connector?: "AND" | "OR";
|
|
2554
2713
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
2714
|
+
mode?: "sensitive" | "insensitive";
|
|
2555
2715
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2556
2716
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2557
2717
|
}>;
|
|
@@ -2566,6 +2726,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2566
2726
|
where?: Array<{
|
|
2567
2727
|
connector?: "AND" | "OR";
|
|
2568
2728
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
2729
|
+
mode?: "sensitive" | "insensitive";
|
|
2569
2730
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2570
2731
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2571
2732
|
}>;
|
|
@@ -2579,6 +2740,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2579
2740
|
where?: Array<{
|
|
2580
2741
|
connector?: "AND" | "OR";
|
|
2581
2742
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
2743
|
+
mode?: "sensitive" | "insensitive";
|
|
2582
2744
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2583
2745
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2584
2746
|
}>;
|
|
@@ -2608,6 +2770,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2608
2770
|
where?: Array<{
|
|
2609
2771
|
connector?: "AND" | "OR";
|
|
2610
2772
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
2773
|
+
mode?: "sensitive" | "insensitive";
|
|
2611
2774
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2612
2775
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2613
2776
|
}>;
|
|
@@ -2637,6 +2800,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2637
2800
|
where?: Array<{
|
|
2638
2801
|
connector?: "AND" | "OR";
|
|
2639
2802
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
2803
|
+
mode?: "sensitive" | "insensitive";
|
|
2640
2804
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2641
2805
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2642
2806
|
}>;
|
|
@@ -2648,6 +2812,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2648
2812
|
where?: Array<{
|
|
2649
2813
|
connector?: "AND" | "OR";
|
|
2650
2814
|
field: "oneToOne" | "_id";
|
|
2815
|
+
mode?: "sensitive" | "insensitive";
|
|
2651
2816
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2652
2817
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2653
2818
|
}>;
|
|
@@ -2660,6 +2825,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2660
2825
|
where?: Array<{
|
|
2661
2826
|
connector?: "AND" | "OR";
|
|
2662
2827
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
2828
|
+
mode?: "sensitive" | "insensitive";
|
|
2663
2829
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2664
2830
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2665
2831
|
}>;
|
|
@@ -2676,6 +2842,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2676
2842
|
where?: Array<{
|
|
2677
2843
|
connector?: "AND" | "OR";
|
|
2678
2844
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
2845
|
+
mode?: "sensitive" | "insensitive";
|
|
2679
2846
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2680
2847
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2681
2848
|
}>;
|
|
@@ -2692,6 +2859,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2692
2859
|
where?: Array<{
|
|
2693
2860
|
connector?: "AND" | "OR";
|
|
2694
2861
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
2862
|
+
mode?: "sensitive" | "insensitive";
|
|
2695
2863
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2696
2864
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2697
2865
|
}>;
|
|
@@ -2707,6 +2875,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2707
2875
|
where?: Array<{
|
|
2708
2876
|
connector?: "AND" | "OR";
|
|
2709
2877
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
2878
|
+
mode?: "sensitive" | "insensitive";
|
|
2710
2879
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2711
2880
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2712
2881
|
}>;
|
|
@@ -2721,6 +2890,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2721
2890
|
where?: Array<{
|
|
2722
2891
|
connector?: "AND" | "OR";
|
|
2723
2892
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
2893
|
+
mode?: "sensitive" | "insensitive";
|
|
2724
2894
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2725
2895
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2726
2896
|
}>;
|
|
@@ -2734,6 +2904,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2734
2904
|
where?: Array<{
|
|
2735
2905
|
connector?: "AND" | "OR";
|
|
2736
2906
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
2907
|
+
mode?: "sensitive" | "insensitive";
|
|
2737
2908
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2738
2909
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2739
2910
|
}>;
|
|
@@ -2753,6 +2924,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2753
2924
|
where?: Array<{
|
|
2754
2925
|
connector?: "AND" | "OR";
|
|
2755
2926
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
2927
|
+
mode?: "sensitive" | "insensitive";
|
|
2756
2928
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2757
2929
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2758
2930
|
}>;
|
|
@@ -2826,6 +2998,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2826
2998
|
backupCodes: string;
|
|
2827
2999
|
secret: string;
|
|
2828
3000
|
userId: string;
|
|
3001
|
+
verified?: null | boolean;
|
|
2829
3002
|
};
|
|
2830
3003
|
model: "twoFactor";
|
|
2831
3004
|
} | {
|
|
@@ -3005,6 +3178,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3005
3178
|
where?: Array<{
|
|
3006
3179
|
connector?: "AND" | "OR";
|
|
3007
3180
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
3181
|
+
mode?: "sensitive" | "insensitive";
|
|
3008
3182
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3009
3183
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3010
3184
|
}>;
|
|
@@ -3013,6 +3187,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3013
3187
|
where?: Array<{
|
|
3014
3188
|
connector?: "AND" | "OR";
|
|
3015
3189
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
3190
|
+
mode?: "sensitive" | "insensitive";
|
|
3016
3191
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3017
3192
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3018
3193
|
}>;
|
|
@@ -3021,6 +3196,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3021
3196
|
where?: Array<{
|
|
3022
3197
|
connector?: "AND" | "OR";
|
|
3023
3198
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
3199
|
+
mode?: "sensitive" | "insensitive";
|
|
3024
3200
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3025
3201
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3026
3202
|
}>;
|
|
@@ -3029,6 +3205,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3029
3205
|
where?: Array<{
|
|
3030
3206
|
connector?: "AND" | "OR";
|
|
3031
3207
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
3208
|
+
mode?: "sensitive" | "insensitive";
|
|
3032
3209
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3033
3210
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3034
3211
|
}>;
|
|
@@ -3036,7 +3213,8 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3036
3213
|
model: "twoFactor";
|
|
3037
3214
|
where?: Array<{
|
|
3038
3215
|
connector?: "AND" | "OR";
|
|
3039
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
3216
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
3217
|
+
mode?: "sensitive" | "insensitive";
|
|
3040
3218
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3041
3219
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3042
3220
|
}>;
|
|
@@ -3045,6 +3223,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3045
3223
|
where?: Array<{
|
|
3046
3224
|
connector?: "AND" | "OR";
|
|
3047
3225
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
3226
|
+
mode?: "sensitive" | "insensitive";
|
|
3048
3227
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3049
3228
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3050
3229
|
}>;
|
|
@@ -3053,6 +3232,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3053
3232
|
where?: Array<{
|
|
3054
3233
|
connector?: "AND" | "OR";
|
|
3055
3234
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
3235
|
+
mode?: "sensitive" | "insensitive";
|
|
3056
3236
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3057
3237
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3058
3238
|
}>;
|
|
@@ -3061,6 +3241,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3061
3241
|
where?: Array<{
|
|
3062
3242
|
connector?: "AND" | "OR";
|
|
3063
3243
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
3244
|
+
mode?: "sensitive" | "insensitive";
|
|
3064
3245
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3065
3246
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3066
3247
|
}>;
|
|
@@ -3069,6 +3250,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3069
3250
|
where?: Array<{
|
|
3070
3251
|
connector?: "AND" | "OR";
|
|
3071
3252
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
3253
|
+
mode?: "sensitive" | "insensitive";
|
|
3072
3254
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3073
3255
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3074
3256
|
}>;
|
|
@@ -3077,6 +3259,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3077
3259
|
where?: Array<{
|
|
3078
3260
|
connector?: "AND" | "OR";
|
|
3079
3261
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
3262
|
+
mode?: "sensitive" | "insensitive";
|
|
3080
3263
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3081
3264
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3082
3265
|
}>;
|
|
@@ -3085,6 +3268,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3085
3268
|
where?: Array<{
|
|
3086
3269
|
connector?: "AND" | "OR";
|
|
3087
3270
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
3271
|
+
mode?: "sensitive" | "insensitive";
|
|
3088
3272
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3089
3273
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3090
3274
|
}>;
|
|
@@ -3093,6 +3277,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3093
3277
|
where?: Array<{
|
|
3094
3278
|
connector?: "AND" | "OR";
|
|
3095
3279
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
3280
|
+
mode?: "sensitive" | "insensitive";
|
|
3096
3281
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3097
3282
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3098
3283
|
}>;
|
|
@@ -3101,6 +3286,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3101
3286
|
where?: Array<{
|
|
3102
3287
|
connector?: "AND" | "OR";
|
|
3103
3288
|
field: "oneToOne" | "_id";
|
|
3289
|
+
mode?: "sensitive" | "insensitive";
|
|
3104
3290
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3105
3291
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3106
3292
|
}>;
|
|
@@ -3109,6 +3295,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3109
3295
|
where?: Array<{
|
|
3110
3296
|
connector?: "AND" | "OR";
|
|
3111
3297
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
3298
|
+
mode?: "sensitive" | "insensitive";
|
|
3112
3299
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3113
3300
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3114
3301
|
}>;
|
|
@@ -3117,6 +3304,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3117
3304
|
where?: Array<{
|
|
3118
3305
|
connector?: "AND" | "OR";
|
|
3119
3306
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
3307
|
+
mode?: "sensitive" | "insensitive";
|
|
3120
3308
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3121
3309
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3122
3310
|
}>;
|
|
@@ -3125,6 +3313,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3125
3313
|
where?: Array<{
|
|
3126
3314
|
connector?: "AND" | "OR";
|
|
3127
3315
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
3316
|
+
mode?: "sensitive" | "insensitive";
|
|
3128
3317
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3129
3318
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3130
3319
|
}>;
|
|
@@ -3133,6 +3322,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3133
3322
|
where?: Array<{
|
|
3134
3323
|
connector?: "AND" | "OR";
|
|
3135
3324
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
3325
|
+
mode?: "sensitive" | "insensitive";
|
|
3136
3326
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3137
3327
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3138
3328
|
}>;
|
|
@@ -3141,6 +3331,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3141
3331
|
where?: Array<{
|
|
3142
3332
|
connector?: "AND" | "OR";
|
|
3143
3333
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
3334
|
+
mode?: "sensitive" | "insensitive";
|
|
3144
3335
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3145
3336
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3146
3337
|
}>;
|
|
@@ -3149,6 +3340,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3149
3340
|
where?: Array<{
|
|
3150
3341
|
connector?: "AND" | "OR";
|
|
3151
3342
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
3343
|
+
mode?: "sensitive" | "insensitive";
|
|
3152
3344
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3153
3345
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3154
3346
|
}>;
|
|
@@ -3157,6 +3349,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3157
3349
|
where?: Array<{
|
|
3158
3350
|
connector?: "AND" | "OR";
|
|
3159
3351
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
3352
|
+
mode?: "sensitive" | "insensitive";
|
|
3160
3353
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3161
3354
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3162
3355
|
}>;
|
|
@@ -3177,6 +3370,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3177
3370
|
where?: Array<{
|
|
3178
3371
|
connector?: "AND" | "OR";
|
|
3179
3372
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
3373
|
+
mode?: "sensitive" | "insensitive";
|
|
3180
3374
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3181
3375
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3182
3376
|
}>;
|
|
@@ -3185,6 +3379,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3185
3379
|
where?: Array<{
|
|
3186
3380
|
connector?: "AND" | "OR";
|
|
3187
3381
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
3382
|
+
mode?: "sensitive" | "insensitive";
|
|
3188
3383
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3189
3384
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3190
3385
|
}>;
|
|
@@ -3193,6 +3388,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3193
3388
|
where?: Array<{
|
|
3194
3389
|
connector?: "AND" | "OR";
|
|
3195
3390
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
3391
|
+
mode?: "sensitive" | "insensitive";
|
|
3196
3392
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3197
3393
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3198
3394
|
}>;
|
|
@@ -3201,6 +3397,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3201
3397
|
where?: Array<{
|
|
3202
3398
|
connector?: "AND" | "OR";
|
|
3203
3399
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
3400
|
+
mode?: "sensitive" | "insensitive";
|
|
3204
3401
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3205
3402
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3206
3403
|
}>;
|
|
@@ -3208,7 +3405,8 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3208
3405
|
model: "twoFactor";
|
|
3209
3406
|
where?: Array<{
|
|
3210
3407
|
connector?: "AND" | "OR";
|
|
3211
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
3408
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
3409
|
+
mode?: "sensitive" | "insensitive";
|
|
3212
3410
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3213
3411
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3214
3412
|
}>;
|
|
@@ -3217,6 +3415,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3217
3415
|
where?: Array<{
|
|
3218
3416
|
connector?: "AND" | "OR";
|
|
3219
3417
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
3418
|
+
mode?: "sensitive" | "insensitive";
|
|
3220
3419
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3221
3420
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3222
3421
|
}>;
|
|
@@ -3225,6 +3424,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3225
3424
|
where?: Array<{
|
|
3226
3425
|
connector?: "AND" | "OR";
|
|
3227
3426
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
3427
|
+
mode?: "sensitive" | "insensitive";
|
|
3228
3428
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3229
3429
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3230
3430
|
}>;
|
|
@@ -3233,6 +3433,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3233
3433
|
where?: Array<{
|
|
3234
3434
|
connector?: "AND" | "OR";
|
|
3235
3435
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
3436
|
+
mode?: "sensitive" | "insensitive";
|
|
3236
3437
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3237
3438
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3238
3439
|
}>;
|
|
@@ -3241,6 +3442,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3241
3442
|
where?: Array<{
|
|
3242
3443
|
connector?: "AND" | "OR";
|
|
3243
3444
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
3445
|
+
mode?: "sensitive" | "insensitive";
|
|
3244
3446
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3245
3447
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3246
3448
|
}>;
|
|
@@ -3249,6 +3451,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3249
3451
|
where?: Array<{
|
|
3250
3452
|
connector?: "AND" | "OR";
|
|
3251
3453
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
3454
|
+
mode?: "sensitive" | "insensitive";
|
|
3252
3455
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3253
3456
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3254
3457
|
}>;
|
|
@@ -3257,6 +3460,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3257
3460
|
where?: Array<{
|
|
3258
3461
|
connector?: "AND" | "OR";
|
|
3259
3462
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
3463
|
+
mode?: "sensitive" | "insensitive";
|
|
3260
3464
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3261
3465
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3262
3466
|
}>;
|
|
@@ -3265,6 +3469,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3265
3469
|
where?: Array<{
|
|
3266
3470
|
connector?: "AND" | "OR";
|
|
3267
3471
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
3472
|
+
mode?: "sensitive" | "insensitive";
|
|
3268
3473
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3269
3474
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3270
3475
|
}>;
|
|
@@ -3273,6 +3478,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3273
3478
|
where?: Array<{
|
|
3274
3479
|
connector?: "AND" | "OR";
|
|
3275
3480
|
field: "oneToOne" | "_id";
|
|
3481
|
+
mode?: "sensitive" | "insensitive";
|
|
3276
3482
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3277
3483
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3278
3484
|
}>;
|
|
@@ -3281,6 +3487,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3281
3487
|
where?: Array<{
|
|
3282
3488
|
connector?: "AND" | "OR";
|
|
3283
3489
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
3490
|
+
mode?: "sensitive" | "insensitive";
|
|
3284
3491
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3285
3492
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3286
3493
|
}>;
|
|
@@ -3289,6 +3496,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3289
3496
|
where?: Array<{
|
|
3290
3497
|
connector?: "AND" | "OR";
|
|
3291
3498
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
3499
|
+
mode?: "sensitive" | "insensitive";
|
|
3292
3500
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3293
3501
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3294
3502
|
}>;
|
|
@@ -3297,6 +3505,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3297
3505
|
where?: Array<{
|
|
3298
3506
|
connector?: "AND" | "OR";
|
|
3299
3507
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
3508
|
+
mode?: "sensitive" | "insensitive";
|
|
3300
3509
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3301
3510
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3302
3511
|
}>;
|
|
@@ -3305,6 +3514,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3305
3514
|
where?: Array<{
|
|
3306
3515
|
connector?: "AND" | "OR";
|
|
3307
3516
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
3517
|
+
mode?: "sensitive" | "insensitive";
|
|
3308
3518
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3309
3519
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3310
3520
|
}>;
|
|
@@ -3313,6 +3523,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3313
3523
|
where?: Array<{
|
|
3314
3524
|
connector?: "AND" | "OR";
|
|
3315
3525
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
3526
|
+
mode?: "sensitive" | "insensitive";
|
|
3316
3527
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3317
3528
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3318
3529
|
}>;
|
|
@@ -3321,6 +3532,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3321
3532
|
where?: Array<{
|
|
3322
3533
|
connector?: "AND" | "OR";
|
|
3323
3534
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
3535
|
+
mode?: "sensitive" | "insensitive";
|
|
3324
3536
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3325
3537
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3326
3538
|
}>;
|
|
@@ -3329,6 +3541,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3329
3541
|
where?: Array<{
|
|
3330
3542
|
connector?: "AND" | "OR";
|
|
3331
3543
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
3544
|
+
mode?: "sensitive" | "insensitive";
|
|
3332
3545
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3333
3546
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3334
3547
|
}>;
|
|
@@ -3356,6 +3569,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3356
3569
|
where?: Array<{
|
|
3357
3570
|
connector?: "AND" | "OR";
|
|
3358
3571
|
field: string;
|
|
3572
|
+
mode?: "sensitive" | "insensitive";
|
|
3359
3573
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3360
3574
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3361
3575
|
}>;
|
|
@@ -3367,6 +3581,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3367
3581
|
where?: Array<{
|
|
3368
3582
|
connector?: "AND" | "OR";
|
|
3369
3583
|
field: string;
|
|
3584
|
+
mode?: "sensitive" | "insensitive";
|
|
3370
3585
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3371
3586
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3372
3587
|
}>;
|
|
@@ -3398,6 +3613,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3398
3613
|
where?: Array<{
|
|
3399
3614
|
connector?: "AND" | "OR";
|
|
3400
3615
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
3616
|
+
mode?: "sensitive" | "insensitive";
|
|
3401
3617
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3402
3618
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3403
3619
|
}>;
|
|
@@ -3415,6 +3631,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3415
3631
|
where?: Array<{
|
|
3416
3632
|
connector?: "AND" | "OR";
|
|
3417
3633
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
3634
|
+
mode?: "sensitive" | "insensitive";
|
|
3418
3635
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3419
3636
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3420
3637
|
}>;
|
|
@@ -3437,6 +3654,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3437
3654
|
where?: Array<{
|
|
3438
3655
|
connector?: "AND" | "OR";
|
|
3439
3656
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
3657
|
+
mode?: "sensitive" | "insensitive";
|
|
3440
3658
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3441
3659
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3442
3660
|
}>;
|
|
@@ -3452,6 +3670,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3452
3670
|
where?: Array<{
|
|
3453
3671
|
connector?: "AND" | "OR";
|
|
3454
3672
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
3673
|
+
mode?: "sensitive" | "insensitive";
|
|
3455
3674
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3456
3675
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3457
3676
|
}>;
|
|
@@ -3461,10 +3680,12 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3461
3680
|
backupCodes?: string;
|
|
3462
3681
|
secret?: string;
|
|
3463
3682
|
userId?: string;
|
|
3683
|
+
verified?: null | boolean;
|
|
3464
3684
|
};
|
|
3465
3685
|
where?: Array<{
|
|
3466
3686
|
connector?: "AND" | "OR";
|
|
3467
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
3687
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
3688
|
+
mode?: "sensitive" | "insensitive";
|
|
3468
3689
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3469
3690
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3470
3691
|
}>;
|
|
@@ -3486,6 +3707,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3486
3707
|
where?: Array<{
|
|
3487
3708
|
connector?: "AND" | "OR";
|
|
3488
3709
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
3710
|
+
mode?: "sensitive" | "insensitive";
|
|
3489
3711
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3490
3712
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3491
3713
|
}>;
|
|
@@ -3505,6 +3727,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3505
3727
|
where?: Array<{
|
|
3506
3728
|
connector?: "AND" | "OR";
|
|
3507
3729
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
3730
|
+
mode?: "sensitive" | "insensitive";
|
|
3508
3731
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3509
3732
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3510
3733
|
}>;
|
|
@@ -3521,6 +3744,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3521
3744
|
where?: Array<{
|
|
3522
3745
|
connector?: "AND" | "OR";
|
|
3523
3746
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
3747
|
+
mode?: "sensitive" | "insensitive";
|
|
3524
3748
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3525
3749
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3526
3750
|
}>;
|
|
@@ -3535,6 +3759,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3535
3759
|
where?: Array<{
|
|
3536
3760
|
connector?: "AND" | "OR";
|
|
3537
3761
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
3762
|
+
mode?: "sensitive" | "insensitive";
|
|
3538
3763
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3539
3764
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3540
3765
|
}>;
|
|
@@ -3548,6 +3773,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3548
3773
|
where?: Array<{
|
|
3549
3774
|
connector?: "AND" | "OR";
|
|
3550
3775
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
3776
|
+
mode?: "sensitive" | "insensitive";
|
|
3551
3777
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3552
3778
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3553
3779
|
}>;
|
|
@@ -3577,6 +3803,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3577
3803
|
where?: Array<{
|
|
3578
3804
|
connector?: "AND" | "OR";
|
|
3579
3805
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
3806
|
+
mode?: "sensitive" | "insensitive";
|
|
3580
3807
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3581
3808
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3582
3809
|
}>;
|
|
@@ -3606,6 +3833,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3606
3833
|
where?: Array<{
|
|
3607
3834
|
connector?: "AND" | "OR";
|
|
3608
3835
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
3836
|
+
mode?: "sensitive" | "insensitive";
|
|
3609
3837
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3610
3838
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3611
3839
|
}>;
|
|
@@ -3617,6 +3845,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3617
3845
|
where?: Array<{
|
|
3618
3846
|
connector?: "AND" | "OR";
|
|
3619
3847
|
field: "oneToOne" | "_id";
|
|
3848
|
+
mode?: "sensitive" | "insensitive";
|
|
3620
3849
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3621
3850
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3622
3851
|
}>;
|
|
@@ -3629,6 +3858,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3629
3858
|
where?: Array<{
|
|
3630
3859
|
connector?: "AND" | "OR";
|
|
3631
3860
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
3861
|
+
mode?: "sensitive" | "insensitive";
|
|
3632
3862
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3633
3863
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3634
3864
|
}>;
|
|
@@ -3645,6 +3875,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3645
3875
|
where?: Array<{
|
|
3646
3876
|
connector?: "AND" | "OR";
|
|
3647
3877
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
3878
|
+
mode?: "sensitive" | "insensitive";
|
|
3648
3879
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3649
3880
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3650
3881
|
}>;
|
|
@@ -3661,6 +3892,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3661
3892
|
where?: Array<{
|
|
3662
3893
|
connector?: "AND" | "OR";
|
|
3663
3894
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
3895
|
+
mode?: "sensitive" | "insensitive";
|
|
3664
3896
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3665
3897
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3666
3898
|
}>;
|
|
@@ -3676,6 +3908,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3676
3908
|
where?: Array<{
|
|
3677
3909
|
connector?: "AND" | "OR";
|
|
3678
3910
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
3911
|
+
mode?: "sensitive" | "insensitive";
|
|
3679
3912
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3680
3913
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3681
3914
|
}>;
|
|
@@ -3690,6 +3923,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3690
3923
|
where?: Array<{
|
|
3691
3924
|
connector?: "AND" | "OR";
|
|
3692
3925
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
3926
|
+
mode?: "sensitive" | "insensitive";
|
|
3693
3927
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3694
3928
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3695
3929
|
}>;
|
|
@@ -3703,6 +3937,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3703
3937
|
where?: Array<{
|
|
3704
3938
|
connector?: "AND" | "OR";
|
|
3705
3939
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
3940
|
+
mode?: "sensitive" | "insensitive";
|
|
3706
3941
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3707
3942
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3708
3943
|
}>;
|
|
@@ -3722,6 +3957,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3722
3957
|
where?: Array<{
|
|
3723
3958
|
connector?: "AND" | "OR";
|
|
3724
3959
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
3960
|
+
mode?: "sensitive" | "insensitive";
|
|
3725
3961
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3726
3962
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3727
3963
|
}>;
|
|
@@ -3763,6 +3999,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3763
3999
|
where?: Array<{
|
|
3764
4000
|
connector?: "AND" | "OR";
|
|
3765
4001
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
4002
|
+
mode?: "sensitive" | "insensitive";
|
|
3766
4003
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3767
4004
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3768
4005
|
}>;
|
|
@@ -3780,6 +4017,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3780
4017
|
where?: Array<{
|
|
3781
4018
|
connector?: "AND" | "OR";
|
|
3782
4019
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
4020
|
+
mode?: "sensitive" | "insensitive";
|
|
3783
4021
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3784
4022
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3785
4023
|
}>;
|
|
@@ -3802,6 +4040,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3802
4040
|
where?: Array<{
|
|
3803
4041
|
connector?: "AND" | "OR";
|
|
3804
4042
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
4043
|
+
mode?: "sensitive" | "insensitive";
|
|
3805
4044
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3806
4045
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3807
4046
|
}>;
|
|
@@ -3817,6 +4056,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3817
4056
|
where?: Array<{
|
|
3818
4057
|
connector?: "AND" | "OR";
|
|
3819
4058
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
4059
|
+
mode?: "sensitive" | "insensitive";
|
|
3820
4060
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3821
4061
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3822
4062
|
}>;
|
|
@@ -3826,10 +4066,12 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3826
4066
|
backupCodes?: string;
|
|
3827
4067
|
secret?: string;
|
|
3828
4068
|
userId?: string;
|
|
4069
|
+
verified?: null | boolean;
|
|
3829
4070
|
};
|
|
3830
4071
|
where?: Array<{
|
|
3831
4072
|
connector?: "AND" | "OR";
|
|
3832
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
4073
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
4074
|
+
mode?: "sensitive" | "insensitive";
|
|
3833
4075
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3834
4076
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3835
4077
|
}>;
|
|
@@ -3851,6 +4093,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3851
4093
|
where?: Array<{
|
|
3852
4094
|
connector?: "AND" | "OR";
|
|
3853
4095
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
4096
|
+
mode?: "sensitive" | "insensitive";
|
|
3854
4097
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3855
4098
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3856
4099
|
}>;
|
|
@@ -3870,6 +4113,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3870
4113
|
where?: Array<{
|
|
3871
4114
|
connector?: "AND" | "OR";
|
|
3872
4115
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
4116
|
+
mode?: "sensitive" | "insensitive";
|
|
3873
4117
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3874
4118
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3875
4119
|
}>;
|
|
@@ -3886,6 +4130,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3886
4130
|
where?: Array<{
|
|
3887
4131
|
connector?: "AND" | "OR";
|
|
3888
4132
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
4133
|
+
mode?: "sensitive" | "insensitive";
|
|
3889
4134
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3890
4135
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3891
4136
|
}>;
|
|
@@ -3900,6 +4145,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3900
4145
|
where?: Array<{
|
|
3901
4146
|
connector?: "AND" | "OR";
|
|
3902
4147
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
4148
|
+
mode?: "sensitive" | "insensitive";
|
|
3903
4149
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3904
4150
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3905
4151
|
}>;
|
|
@@ -3913,6 +4159,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3913
4159
|
where?: Array<{
|
|
3914
4160
|
connector?: "AND" | "OR";
|
|
3915
4161
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
4162
|
+
mode?: "sensitive" | "insensitive";
|
|
3916
4163
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3917
4164
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3918
4165
|
}>;
|
|
@@ -3942,6 +4189,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3942
4189
|
where?: Array<{
|
|
3943
4190
|
connector?: "AND" | "OR";
|
|
3944
4191
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
4192
|
+
mode?: "sensitive" | "insensitive";
|
|
3945
4193
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3946
4194
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3947
4195
|
}>;
|
|
@@ -3971,6 +4219,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3971
4219
|
where?: Array<{
|
|
3972
4220
|
connector?: "AND" | "OR";
|
|
3973
4221
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
4222
|
+
mode?: "sensitive" | "insensitive";
|
|
3974
4223
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3975
4224
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3976
4225
|
}>;
|
|
@@ -3982,6 +4231,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3982
4231
|
where?: Array<{
|
|
3983
4232
|
connector?: "AND" | "OR";
|
|
3984
4233
|
field: "oneToOne" | "_id";
|
|
4234
|
+
mode?: "sensitive" | "insensitive";
|
|
3985
4235
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3986
4236
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3987
4237
|
}>;
|
|
@@ -3994,6 +4244,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3994
4244
|
where?: Array<{
|
|
3995
4245
|
connector?: "AND" | "OR";
|
|
3996
4246
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
4247
|
+
mode?: "sensitive" | "insensitive";
|
|
3997
4248
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3998
4249
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3999
4250
|
}>;
|
|
@@ -4010,6 +4261,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4010
4261
|
where?: Array<{
|
|
4011
4262
|
connector?: "AND" | "OR";
|
|
4012
4263
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
4264
|
+
mode?: "sensitive" | "insensitive";
|
|
4013
4265
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4014
4266
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4015
4267
|
}>;
|
|
@@ -4026,6 +4278,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4026
4278
|
where?: Array<{
|
|
4027
4279
|
connector?: "AND" | "OR";
|
|
4028
4280
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
4281
|
+
mode?: "sensitive" | "insensitive";
|
|
4029
4282
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4030
4283
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4031
4284
|
}>;
|
|
@@ -4041,6 +4294,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4041
4294
|
where?: Array<{
|
|
4042
4295
|
connector?: "AND" | "OR";
|
|
4043
4296
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
4297
|
+
mode?: "sensitive" | "insensitive";
|
|
4044
4298
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4045
4299
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4046
4300
|
}>;
|
|
@@ -4055,6 +4309,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4055
4309
|
where?: Array<{
|
|
4056
4310
|
connector?: "AND" | "OR";
|
|
4057
4311
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
4312
|
+
mode?: "sensitive" | "insensitive";
|
|
4058
4313
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4059
4314
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4060
4315
|
}>;
|
|
@@ -4068,6 +4323,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4068
4323
|
where?: Array<{
|
|
4069
4324
|
connector?: "AND" | "OR";
|
|
4070
4325
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
4326
|
+
mode?: "sensitive" | "insensitive";
|
|
4071
4327
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4072
4328
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4073
4329
|
}>;
|
|
@@ -4087,6 +4343,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4087
4343
|
where?: Array<{
|
|
4088
4344
|
connector?: "AND" | "OR";
|
|
4089
4345
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
4346
|
+
mode?: "sensitive" | "insensitive";
|
|
4090
4347
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4091
4348
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4092
4349
|
}>;
|
|
@@ -4160,6 +4417,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4160
4417
|
backupCodes: string;
|
|
4161
4418
|
secret: string;
|
|
4162
4419
|
userId: string;
|
|
4420
|
+
verified?: null | boolean;
|
|
4163
4421
|
};
|
|
4164
4422
|
model: "twoFactor";
|
|
4165
4423
|
} | {
|
|
@@ -4339,6 +4597,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4339
4597
|
where?: Array<{
|
|
4340
4598
|
connector?: "AND" | "OR";
|
|
4341
4599
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
4600
|
+
mode?: "sensitive" | "insensitive";
|
|
4342
4601
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4343
4602
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4344
4603
|
}>;
|
|
@@ -4347,6 +4606,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4347
4606
|
where?: Array<{
|
|
4348
4607
|
connector?: "AND" | "OR";
|
|
4349
4608
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
4609
|
+
mode?: "sensitive" | "insensitive";
|
|
4350
4610
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4351
4611
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4352
4612
|
}>;
|
|
@@ -4355,6 +4615,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4355
4615
|
where?: Array<{
|
|
4356
4616
|
connector?: "AND" | "OR";
|
|
4357
4617
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
4618
|
+
mode?: "sensitive" | "insensitive";
|
|
4358
4619
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4359
4620
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4360
4621
|
}>;
|
|
@@ -4363,6 +4624,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4363
4624
|
where?: Array<{
|
|
4364
4625
|
connector?: "AND" | "OR";
|
|
4365
4626
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
4627
|
+
mode?: "sensitive" | "insensitive";
|
|
4366
4628
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4367
4629
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4368
4630
|
}>;
|
|
@@ -4370,7 +4632,8 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4370
4632
|
model: "twoFactor";
|
|
4371
4633
|
where?: Array<{
|
|
4372
4634
|
connector?: "AND" | "OR";
|
|
4373
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
4635
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
4636
|
+
mode?: "sensitive" | "insensitive";
|
|
4374
4637
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4375
4638
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4376
4639
|
}>;
|
|
@@ -4379,6 +4642,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4379
4642
|
where?: Array<{
|
|
4380
4643
|
connector?: "AND" | "OR";
|
|
4381
4644
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
4645
|
+
mode?: "sensitive" | "insensitive";
|
|
4382
4646
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4383
4647
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4384
4648
|
}>;
|
|
@@ -4387,6 +4651,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4387
4651
|
where?: Array<{
|
|
4388
4652
|
connector?: "AND" | "OR";
|
|
4389
4653
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
4654
|
+
mode?: "sensitive" | "insensitive";
|
|
4390
4655
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4391
4656
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4392
4657
|
}>;
|
|
@@ -4395,6 +4660,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4395
4660
|
where?: Array<{
|
|
4396
4661
|
connector?: "AND" | "OR";
|
|
4397
4662
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
4663
|
+
mode?: "sensitive" | "insensitive";
|
|
4398
4664
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4399
4665
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4400
4666
|
}>;
|
|
@@ -4403,6 +4669,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4403
4669
|
where?: Array<{
|
|
4404
4670
|
connector?: "AND" | "OR";
|
|
4405
4671
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
4672
|
+
mode?: "sensitive" | "insensitive";
|
|
4406
4673
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4407
4674
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4408
4675
|
}>;
|
|
@@ -4411,6 +4678,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4411
4678
|
where?: Array<{
|
|
4412
4679
|
connector?: "AND" | "OR";
|
|
4413
4680
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
4681
|
+
mode?: "sensitive" | "insensitive";
|
|
4414
4682
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4415
4683
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4416
4684
|
}>;
|
|
@@ -4419,6 +4687,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4419
4687
|
where?: Array<{
|
|
4420
4688
|
connector?: "AND" | "OR";
|
|
4421
4689
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
4690
|
+
mode?: "sensitive" | "insensitive";
|
|
4422
4691
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4423
4692
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4424
4693
|
}>;
|
|
@@ -4427,6 +4696,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4427
4696
|
where?: Array<{
|
|
4428
4697
|
connector?: "AND" | "OR";
|
|
4429
4698
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
4699
|
+
mode?: "sensitive" | "insensitive";
|
|
4430
4700
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4431
4701
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4432
4702
|
}>;
|
|
@@ -4435,6 +4705,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4435
4705
|
where?: Array<{
|
|
4436
4706
|
connector?: "AND" | "OR";
|
|
4437
4707
|
field: "oneToOne" | "_id";
|
|
4708
|
+
mode?: "sensitive" | "insensitive";
|
|
4438
4709
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4439
4710
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4440
4711
|
}>;
|
|
@@ -4443,6 +4714,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4443
4714
|
where?: Array<{
|
|
4444
4715
|
connector?: "AND" | "OR";
|
|
4445
4716
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
4717
|
+
mode?: "sensitive" | "insensitive";
|
|
4446
4718
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4447
4719
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4448
4720
|
}>;
|
|
@@ -4451,6 +4723,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4451
4723
|
where?: Array<{
|
|
4452
4724
|
connector?: "AND" | "OR";
|
|
4453
4725
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
4726
|
+
mode?: "sensitive" | "insensitive";
|
|
4454
4727
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4455
4728
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4456
4729
|
}>;
|
|
@@ -4459,6 +4732,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4459
4732
|
where?: Array<{
|
|
4460
4733
|
connector?: "AND" | "OR";
|
|
4461
4734
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
4735
|
+
mode?: "sensitive" | "insensitive";
|
|
4462
4736
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4463
4737
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4464
4738
|
}>;
|
|
@@ -4467,6 +4741,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4467
4741
|
where?: Array<{
|
|
4468
4742
|
connector?: "AND" | "OR";
|
|
4469
4743
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
4744
|
+
mode?: "sensitive" | "insensitive";
|
|
4470
4745
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4471
4746
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4472
4747
|
}>;
|
|
@@ -4475,6 +4750,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4475
4750
|
where?: Array<{
|
|
4476
4751
|
connector?: "AND" | "OR";
|
|
4477
4752
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
4753
|
+
mode?: "sensitive" | "insensitive";
|
|
4478
4754
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4479
4755
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4480
4756
|
}>;
|
|
@@ -4483,6 +4759,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4483
4759
|
where?: Array<{
|
|
4484
4760
|
connector?: "AND" | "OR";
|
|
4485
4761
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
4762
|
+
mode?: "sensitive" | "insensitive";
|
|
4486
4763
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4487
4764
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4488
4765
|
}>;
|
|
@@ -4491,6 +4768,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4491
4768
|
where?: Array<{
|
|
4492
4769
|
connector?: "AND" | "OR";
|
|
4493
4770
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
4771
|
+
mode?: "sensitive" | "insensitive";
|
|
4494
4772
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4495
4773
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4496
4774
|
}>;
|
|
@@ -4511,6 +4789,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4511
4789
|
where?: Array<{
|
|
4512
4790
|
connector?: "AND" | "OR";
|
|
4513
4791
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
4792
|
+
mode?: "sensitive" | "insensitive";
|
|
4514
4793
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4515
4794
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4516
4795
|
}>;
|
|
@@ -4519,6 +4798,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4519
4798
|
where?: Array<{
|
|
4520
4799
|
connector?: "AND" | "OR";
|
|
4521
4800
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
4801
|
+
mode?: "sensitive" | "insensitive";
|
|
4522
4802
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4523
4803
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4524
4804
|
}>;
|
|
@@ -4527,6 +4807,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4527
4807
|
where?: Array<{
|
|
4528
4808
|
connector?: "AND" | "OR";
|
|
4529
4809
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
4810
|
+
mode?: "sensitive" | "insensitive";
|
|
4530
4811
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4531
4812
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4532
4813
|
}>;
|
|
@@ -4535,6 +4816,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4535
4816
|
where?: Array<{
|
|
4536
4817
|
connector?: "AND" | "OR";
|
|
4537
4818
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
4819
|
+
mode?: "sensitive" | "insensitive";
|
|
4538
4820
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4539
4821
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4540
4822
|
}>;
|
|
@@ -4542,7 +4824,8 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4542
4824
|
model: "twoFactor";
|
|
4543
4825
|
where?: Array<{
|
|
4544
4826
|
connector?: "AND" | "OR";
|
|
4545
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
4827
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
4828
|
+
mode?: "sensitive" | "insensitive";
|
|
4546
4829
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4547
4830
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4548
4831
|
}>;
|
|
@@ -4551,6 +4834,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4551
4834
|
where?: Array<{
|
|
4552
4835
|
connector?: "AND" | "OR";
|
|
4553
4836
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
4837
|
+
mode?: "sensitive" | "insensitive";
|
|
4554
4838
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4555
4839
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4556
4840
|
}>;
|
|
@@ -4559,6 +4843,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4559
4843
|
where?: Array<{
|
|
4560
4844
|
connector?: "AND" | "OR";
|
|
4561
4845
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
4846
|
+
mode?: "sensitive" | "insensitive";
|
|
4562
4847
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4563
4848
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4564
4849
|
}>;
|
|
@@ -4567,6 +4852,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4567
4852
|
where?: Array<{
|
|
4568
4853
|
connector?: "AND" | "OR";
|
|
4569
4854
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
4855
|
+
mode?: "sensitive" | "insensitive";
|
|
4570
4856
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4571
4857
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4572
4858
|
}>;
|
|
@@ -4575,6 +4861,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4575
4861
|
where?: Array<{
|
|
4576
4862
|
connector?: "AND" | "OR";
|
|
4577
4863
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
4864
|
+
mode?: "sensitive" | "insensitive";
|
|
4578
4865
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4579
4866
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4580
4867
|
}>;
|
|
@@ -4583,6 +4870,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4583
4870
|
where?: Array<{
|
|
4584
4871
|
connector?: "AND" | "OR";
|
|
4585
4872
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
4873
|
+
mode?: "sensitive" | "insensitive";
|
|
4586
4874
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4587
4875
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4588
4876
|
}>;
|
|
@@ -4591,6 +4879,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4591
4879
|
where?: Array<{
|
|
4592
4880
|
connector?: "AND" | "OR";
|
|
4593
4881
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
4882
|
+
mode?: "sensitive" | "insensitive";
|
|
4594
4883
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4595
4884
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4596
4885
|
}>;
|
|
@@ -4599,6 +4888,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4599
4888
|
where?: Array<{
|
|
4600
4889
|
connector?: "AND" | "OR";
|
|
4601
4890
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
4891
|
+
mode?: "sensitive" | "insensitive";
|
|
4602
4892
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4603
4893
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4604
4894
|
}>;
|
|
@@ -4607,6 +4897,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4607
4897
|
where?: Array<{
|
|
4608
4898
|
connector?: "AND" | "OR";
|
|
4609
4899
|
field: "oneToOne" | "_id";
|
|
4900
|
+
mode?: "sensitive" | "insensitive";
|
|
4610
4901
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4611
4902
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4612
4903
|
}>;
|
|
@@ -4615,6 +4906,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4615
4906
|
where?: Array<{
|
|
4616
4907
|
connector?: "AND" | "OR";
|
|
4617
4908
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
4909
|
+
mode?: "sensitive" | "insensitive";
|
|
4618
4910
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4619
4911
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4620
4912
|
}>;
|
|
@@ -4623,6 +4915,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4623
4915
|
where?: Array<{
|
|
4624
4916
|
connector?: "AND" | "OR";
|
|
4625
4917
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
4918
|
+
mode?: "sensitive" | "insensitive";
|
|
4626
4919
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4627
4920
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4628
4921
|
}>;
|
|
@@ -4631,6 +4924,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4631
4924
|
where?: Array<{
|
|
4632
4925
|
connector?: "AND" | "OR";
|
|
4633
4926
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
4927
|
+
mode?: "sensitive" | "insensitive";
|
|
4634
4928
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4635
4929
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4636
4930
|
}>;
|
|
@@ -4639,6 +4933,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4639
4933
|
where?: Array<{
|
|
4640
4934
|
connector?: "AND" | "OR";
|
|
4641
4935
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
4936
|
+
mode?: "sensitive" | "insensitive";
|
|
4642
4937
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4643
4938
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4644
4939
|
}>;
|
|
@@ -4647,6 +4942,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4647
4942
|
where?: Array<{
|
|
4648
4943
|
connector?: "AND" | "OR";
|
|
4649
4944
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
4945
|
+
mode?: "sensitive" | "insensitive";
|
|
4650
4946
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4651
4947
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4652
4948
|
}>;
|
|
@@ -4655,6 +4951,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4655
4951
|
where?: Array<{
|
|
4656
4952
|
connector?: "AND" | "OR";
|
|
4657
4953
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
4954
|
+
mode?: "sensitive" | "insensitive";
|
|
4658
4955
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4659
4956
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4660
4957
|
}>;
|
|
@@ -4663,6 +4960,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4663
4960
|
where?: Array<{
|
|
4664
4961
|
connector?: "AND" | "OR";
|
|
4665
4962
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
4963
|
+
mode?: "sensitive" | "insensitive";
|
|
4666
4964
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4667
4965
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4668
4966
|
}>;
|
|
@@ -4690,6 +4988,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4690
4988
|
where?: Array<{
|
|
4691
4989
|
connector?: "AND" | "OR";
|
|
4692
4990
|
field: string;
|
|
4991
|
+
mode?: "sensitive" | "insensitive";
|
|
4693
4992
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4694
4993
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4695
4994
|
}>;
|
|
@@ -4701,6 +5000,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4701
5000
|
where?: Array<{
|
|
4702
5001
|
connector?: "AND" | "OR";
|
|
4703
5002
|
field: string;
|
|
5003
|
+
mode?: "sensitive" | "insensitive";
|
|
4704
5004
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4705
5005
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4706
5006
|
}>;
|
|
@@ -4732,6 +5032,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4732
5032
|
where?: Array<{
|
|
4733
5033
|
connector?: "AND" | "OR";
|
|
4734
5034
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
5035
|
+
mode?: "sensitive" | "insensitive";
|
|
4735
5036
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4736
5037
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4737
5038
|
}>;
|
|
@@ -4749,6 +5050,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4749
5050
|
where?: Array<{
|
|
4750
5051
|
connector?: "AND" | "OR";
|
|
4751
5052
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
5053
|
+
mode?: "sensitive" | "insensitive";
|
|
4752
5054
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4753
5055
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4754
5056
|
}>;
|
|
@@ -4771,6 +5073,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4771
5073
|
where?: Array<{
|
|
4772
5074
|
connector?: "AND" | "OR";
|
|
4773
5075
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
5076
|
+
mode?: "sensitive" | "insensitive";
|
|
4774
5077
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4775
5078
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4776
5079
|
}>;
|
|
@@ -4786,6 +5089,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4786
5089
|
where?: Array<{
|
|
4787
5090
|
connector?: "AND" | "OR";
|
|
4788
5091
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
5092
|
+
mode?: "sensitive" | "insensitive";
|
|
4789
5093
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4790
5094
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4791
5095
|
}>;
|
|
@@ -4795,10 +5099,12 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4795
5099
|
backupCodes?: string;
|
|
4796
5100
|
secret?: string;
|
|
4797
5101
|
userId?: string;
|
|
5102
|
+
verified?: null | boolean;
|
|
4798
5103
|
};
|
|
4799
5104
|
where?: Array<{
|
|
4800
5105
|
connector?: "AND" | "OR";
|
|
4801
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
5106
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
5107
|
+
mode?: "sensitive" | "insensitive";
|
|
4802
5108
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4803
5109
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4804
5110
|
}>;
|
|
@@ -4820,6 +5126,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4820
5126
|
where?: Array<{
|
|
4821
5127
|
connector?: "AND" | "OR";
|
|
4822
5128
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
5129
|
+
mode?: "sensitive" | "insensitive";
|
|
4823
5130
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4824
5131
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4825
5132
|
}>;
|
|
@@ -4839,6 +5146,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4839
5146
|
where?: Array<{
|
|
4840
5147
|
connector?: "AND" | "OR";
|
|
4841
5148
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
5149
|
+
mode?: "sensitive" | "insensitive";
|
|
4842
5150
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4843
5151
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4844
5152
|
}>;
|
|
@@ -4855,6 +5163,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4855
5163
|
where?: Array<{
|
|
4856
5164
|
connector?: "AND" | "OR";
|
|
4857
5165
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
5166
|
+
mode?: "sensitive" | "insensitive";
|
|
4858
5167
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4859
5168
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4860
5169
|
}>;
|
|
@@ -4869,6 +5178,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4869
5178
|
where?: Array<{
|
|
4870
5179
|
connector?: "AND" | "OR";
|
|
4871
5180
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
5181
|
+
mode?: "sensitive" | "insensitive";
|
|
4872
5182
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4873
5183
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4874
5184
|
}>;
|
|
@@ -4882,6 +5192,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4882
5192
|
where?: Array<{
|
|
4883
5193
|
connector?: "AND" | "OR";
|
|
4884
5194
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
5195
|
+
mode?: "sensitive" | "insensitive";
|
|
4885
5196
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4886
5197
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4887
5198
|
}>;
|
|
@@ -4911,6 +5222,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4911
5222
|
where?: Array<{
|
|
4912
5223
|
connector?: "AND" | "OR";
|
|
4913
5224
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
5225
|
+
mode?: "sensitive" | "insensitive";
|
|
4914
5226
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4915
5227
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4916
5228
|
}>;
|
|
@@ -4940,6 +5252,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4940
5252
|
where?: Array<{
|
|
4941
5253
|
connector?: "AND" | "OR";
|
|
4942
5254
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
5255
|
+
mode?: "sensitive" | "insensitive";
|
|
4943
5256
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4944
5257
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4945
5258
|
}>;
|
|
@@ -4951,6 +5264,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4951
5264
|
where?: Array<{
|
|
4952
5265
|
connector?: "AND" | "OR";
|
|
4953
5266
|
field: "oneToOne" | "_id";
|
|
5267
|
+
mode?: "sensitive" | "insensitive";
|
|
4954
5268
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4955
5269
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4956
5270
|
}>;
|
|
@@ -4963,6 +5277,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4963
5277
|
where?: Array<{
|
|
4964
5278
|
connector?: "AND" | "OR";
|
|
4965
5279
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
5280
|
+
mode?: "sensitive" | "insensitive";
|
|
4966
5281
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4967
5282
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4968
5283
|
}>;
|
|
@@ -4979,6 +5294,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4979
5294
|
where?: Array<{
|
|
4980
5295
|
connector?: "AND" | "OR";
|
|
4981
5296
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
5297
|
+
mode?: "sensitive" | "insensitive";
|
|
4982
5298
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4983
5299
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4984
5300
|
}>;
|
|
@@ -4995,6 +5311,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4995
5311
|
where?: Array<{
|
|
4996
5312
|
connector?: "AND" | "OR";
|
|
4997
5313
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
5314
|
+
mode?: "sensitive" | "insensitive";
|
|
4998
5315
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4999
5316
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5000
5317
|
}>;
|
|
@@ -5010,6 +5327,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5010
5327
|
where?: Array<{
|
|
5011
5328
|
connector?: "AND" | "OR";
|
|
5012
5329
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
5330
|
+
mode?: "sensitive" | "insensitive";
|
|
5013
5331
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5014
5332
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5015
5333
|
}>;
|
|
@@ -5024,6 +5342,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5024
5342
|
where?: Array<{
|
|
5025
5343
|
connector?: "AND" | "OR";
|
|
5026
5344
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
5345
|
+
mode?: "sensitive" | "insensitive";
|
|
5027
5346
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5028
5347
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5029
5348
|
}>;
|
|
@@ -5037,6 +5356,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5037
5356
|
where?: Array<{
|
|
5038
5357
|
connector?: "AND" | "OR";
|
|
5039
5358
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
5359
|
+
mode?: "sensitive" | "insensitive";
|
|
5040
5360
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5041
5361
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5042
5362
|
}>;
|
|
@@ -5056,6 +5376,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5056
5376
|
where?: Array<{
|
|
5057
5377
|
connector?: "AND" | "OR";
|
|
5058
5378
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
5379
|
+
mode?: "sensitive" | "insensitive";
|
|
5059
5380
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5060
5381
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5061
5382
|
}>;
|
|
@@ -5097,6 +5418,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5097
5418
|
where?: Array<{
|
|
5098
5419
|
connector?: "AND" | "OR";
|
|
5099
5420
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
5421
|
+
mode?: "sensitive" | "insensitive";
|
|
5100
5422
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5101
5423
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5102
5424
|
}>;
|
|
@@ -5114,6 +5436,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5114
5436
|
where?: Array<{
|
|
5115
5437
|
connector?: "AND" | "OR";
|
|
5116
5438
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
5439
|
+
mode?: "sensitive" | "insensitive";
|
|
5117
5440
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5118
5441
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5119
5442
|
}>;
|
|
@@ -5136,6 +5459,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5136
5459
|
where?: Array<{
|
|
5137
5460
|
connector?: "AND" | "OR";
|
|
5138
5461
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
5462
|
+
mode?: "sensitive" | "insensitive";
|
|
5139
5463
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5140
5464
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5141
5465
|
}>;
|
|
@@ -5151,6 +5475,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5151
5475
|
where?: Array<{
|
|
5152
5476
|
connector?: "AND" | "OR";
|
|
5153
5477
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
5478
|
+
mode?: "sensitive" | "insensitive";
|
|
5154
5479
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5155
5480
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5156
5481
|
}>;
|
|
@@ -5160,10 +5485,12 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5160
5485
|
backupCodes?: string;
|
|
5161
5486
|
secret?: string;
|
|
5162
5487
|
userId?: string;
|
|
5488
|
+
verified?: null | boolean;
|
|
5163
5489
|
};
|
|
5164
5490
|
where?: Array<{
|
|
5165
5491
|
connector?: "AND" | "OR";
|
|
5166
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
5492
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
5493
|
+
mode?: "sensitive" | "insensitive";
|
|
5167
5494
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5168
5495
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5169
5496
|
}>;
|
|
@@ -5185,6 +5512,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5185
5512
|
where?: Array<{
|
|
5186
5513
|
connector?: "AND" | "OR";
|
|
5187
5514
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
5515
|
+
mode?: "sensitive" | "insensitive";
|
|
5188
5516
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5189
5517
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5190
5518
|
}>;
|
|
@@ -5204,6 +5532,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5204
5532
|
where?: Array<{
|
|
5205
5533
|
connector?: "AND" | "OR";
|
|
5206
5534
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
5535
|
+
mode?: "sensitive" | "insensitive";
|
|
5207
5536
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5208
5537
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5209
5538
|
}>;
|
|
@@ -5220,6 +5549,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5220
5549
|
where?: Array<{
|
|
5221
5550
|
connector?: "AND" | "OR";
|
|
5222
5551
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
5552
|
+
mode?: "sensitive" | "insensitive";
|
|
5223
5553
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5224
5554
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5225
5555
|
}>;
|
|
@@ -5234,6 +5564,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5234
5564
|
where?: Array<{
|
|
5235
5565
|
connector?: "AND" | "OR";
|
|
5236
5566
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
5567
|
+
mode?: "sensitive" | "insensitive";
|
|
5237
5568
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5238
5569
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5239
5570
|
}>;
|
|
@@ -5247,6 +5578,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5247
5578
|
where?: Array<{
|
|
5248
5579
|
connector?: "AND" | "OR";
|
|
5249
5580
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
5581
|
+
mode?: "sensitive" | "insensitive";
|
|
5250
5582
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5251
5583
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5252
5584
|
}>;
|
|
@@ -5276,6 +5608,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5276
5608
|
where?: Array<{
|
|
5277
5609
|
connector?: "AND" | "OR";
|
|
5278
5610
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
5611
|
+
mode?: "sensitive" | "insensitive";
|
|
5279
5612
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5280
5613
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5281
5614
|
}>;
|
|
@@ -5305,6 +5638,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5305
5638
|
where?: Array<{
|
|
5306
5639
|
connector?: "AND" | "OR";
|
|
5307
5640
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
5641
|
+
mode?: "sensitive" | "insensitive";
|
|
5308
5642
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5309
5643
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5310
5644
|
}>;
|
|
@@ -5316,6 +5650,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5316
5650
|
where?: Array<{
|
|
5317
5651
|
connector?: "AND" | "OR";
|
|
5318
5652
|
field: "oneToOne" | "_id";
|
|
5653
|
+
mode?: "sensitive" | "insensitive";
|
|
5319
5654
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5320
5655
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5321
5656
|
}>;
|
|
@@ -5328,6 +5663,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5328
5663
|
where?: Array<{
|
|
5329
5664
|
connector?: "AND" | "OR";
|
|
5330
5665
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
5666
|
+
mode?: "sensitive" | "insensitive";
|
|
5331
5667
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5332
5668
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5333
5669
|
}>;
|
|
@@ -5344,6 +5680,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5344
5680
|
where?: Array<{
|
|
5345
5681
|
connector?: "AND" | "OR";
|
|
5346
5682
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
5683
|
+
mode?: "sensitive" | "insensitive";
|
|
5347
5684
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5348
5685
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5349
5686
|
}>;
|
|
@@ -5360,6 +5697,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5360
5697
|
where?: Array<{
|
|
5361
5698
|
connector?: "AND" | "OR";
|
|
5362
5699
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
5700
|
+
mode?: "sensitive" | "insensitive";
|
|
5363
5701
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5364
5702
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5365
5703
|
}>;
|
|
@@ -5375,6 +5713,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5375
5713
|
where?: Array<{
|
|
5376
5714
|
connector?: "AND" | "OR";
|
|
5377
5715
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
5716
|
+
mode?: "sensitive" | "insensitive";
|
|
5378
5717
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5379
5718
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5380
5719
|
}>;
|
|
@@ -5389,6 +5728,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5389
5728
|
where?: Array<{
|
|
5390
5729
|
connector?: "AND" | "OR";
|
|
5391
5730
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
5731
|
+
mode?: "sensitive" | "insensitive";
|
|
5392
5732
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5393
5733
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5394
5734
|
}>;
|
|
@@ -5402,6 +5742,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5402
5742
|
where?: Array<{
|
|
5403
5743
|
connector?: "AND" | "OR";
|
|
5404
5744
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
5745
|
+
mode?: "sensitive" | "insensitive";
|
|
5405
5746
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5406
5747
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5407
5748
|
}>;
|
|
@@ -5421,6 +5762,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5421
5762
|
where?: Array<{
|
|
5422
5763
|
connector?: "AND" | "OR";
|
|
5423
5764
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
5765
|
+
mode?: "sensitive" | "insensitive";
|
|
5424
5766
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5425
5767
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5426
5768
|
}>;
|
|
@@ -5494,6 +5836,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5494
5836
|
backupCodes: string;
|
|
5495
5837
|
secret: string;
|
|
5496
5838
|
userId: string;
|
|
5839
|
+
verified?: null | boolean;
|
|
5497
5840
|
};
|
|
5498
5841
|
model: "twoFactor";
|
|
5499
5842
|
} | {
|
|
@@ -5673,6 +6016,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5673
6016
|
where?: Array<{
|
|
5674
6017
|
connector?: "AND" | "OR";
|
|
5675
6018
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
6019
|
+
mode?: "sensitive" | "insensitive";
|
|
5676
6020
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5677
6021
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5678
6022
|
}>;
|
|
@@ -5681,6 +6025,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5681
6025
|
where?: Array<{
|
|
5682
6026
|
connector?: "AND" | "OR";
|
|
5683
6027
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
6028
|
+
mode?: "sensitive" | "insensitive";
|
|
5684
6029
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5685
6030
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5686
6031
|
}>;
|
|
@@ -5689,6 +6034,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5689
6034
|
where?: Array<{
|
|
5690
6035
|
connector?: "AND" | "OR";
|
|
5691
6036
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
6037
|
+
mode?: "sensitive" | "insensitive";
|
|
5692
6038
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5693
6039
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5694
6040
|
}>;
|
|
@@ -5697,6 +6043,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5697
6043
|
where?: Array<{
|
|
5698
6044
|
connector?: "AND" | "OR";
|
|
5699
6045
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
6046
|
+
mode?: "sensitive" | "insensitive";
|
|
5700
6047
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5701
6048
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5702
6049
|
}>;
|
|
@@ -5704,7 +6051,8 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5704
6051
|
model: "twoFactor";
|
|
5705
6052
|
where?: Array<{
|
|
5706
6053
|
connector?: "AND" | "OR";
|
|
5707
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
6054
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
6055
|
+
mode?: "sensitive" | "insensitive";
|
|
5708
6056
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5709
6057
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5710
6058
|
}>;
|
|
@@ -5713,6 +6061,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5713
6061
|
where?: Array<{
|
|
5714
6062
|
connector?: "AND" | "OR";
|
|
5715
6063
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
6064
|
+
mode?: "sensitive" | "insensitive";
|
|
5716
6065
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5717
6066
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5718
6067
|
}>;
|
|
@@ -5721,6 +6070,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5721
6070
|
where?: Array<{
|
|
5722
6071
|
connector?: "AND" | "OR";
|
|
5723
6072
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
6073
|
+
mode?: "sensitive" | "insensitive";
|
|
5724
6074
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5725
6075
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5726
6076
|
}>;
|
|
@@ -5729,6 +6079,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5729
6079
|
where?: Array<{
|
|
5730
6080
|
connector?: "AND" | "OR";
|
|
5731
6081
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
6082
|
+
mode?: "sensitive" | "insensitive";
|
|
5732
6083
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5733
6084
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5734
6085
|
}>;
|
|
@@ -5737,6 +6088,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5737
6088
|
where?: Array<{
|
|
5738
6089
|
connector?: "AND" | "OR";
|
|
5739
6090
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
6091
|
+
mode?: "sensitive" | "insensitive";
|
|
5740
6092
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5741
6093
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5742
6094
|
}>;
|
|
@@ -5745,6 +6097,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5745
6097
|
where?: Array<{
|
|
5746
6098
|
connector?: "AND" | "OR";
|
|
5747
6099
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
6100
|
+
mode?: "sensitive" | "insensitive";
|
|
5748
6101
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5749
6102
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5750
6103
|
}>;
|
|
@@ -5753,6 +6106,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5753
6106
|
where?: Array<{
|
|
5754
6107
|
connector?: "AND" | "OR";
|
|
5755
6108
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
6109
|
+
mode?: "sensitive" | "insensitive";
|
|
5756
6110
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5757
6111
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5758
6112
|
}>;
|
|
@@ -5761,6 +6115,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5761
6115
|
where?: Array<{
|
|
5762
6116
|
connector?: "AND" | "OR";
|
|
5763
6117
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
6118
|
+
mode?: "sensitive" | "insensitive";
|
|
5764
6119
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5765
6120
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5766
6121
|
}>;
|
|
@@ -5769,6 +6124,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5769
6124
|
where?: Array<{
|
|
5770
6125
|
connector?: "AND" | "OR";
|
|
5771
6126
|
field: "oneToOne" | "_id";
|
|
6127
|
+
mode?: "sensitive" | "insensitive";
|
|
5772
6128
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5773
6129
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5774
6130
|
}>;
|
|
@@ -5777,6 +6133,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5777
6133
|
where?: Array<{
|
|
5778
6134
|
connector?: "AND" | "OR";
|
|
5779
6135
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
6136
|
+
mode?: "sensitive" | "insensitive";
|
|
5780
6137
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5781
6138
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5782
6139
|
}>;
|
|
@@ -5785,6 +6142,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5785
6142
|
where?: Array<{
|
|
5786
6143
|
connector?: "AND" | "OR";
|
|
5787
6144
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
6145
|
+
mode?: "sensitive" | "insensitive";
|
|
5788
6146
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5789
6147
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5790
6148
|
}>;
|
|
@@ -5793,6 +6151,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5793
6151
|
where?: Array<{
|
|
5794
6152
|
connector?: "AND" | "OR";
|
|
5795
6153
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
6154
|
+
mode?: "sensitive" | "insensitive";
|
|
5796
6155
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5797
6156
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5798
6157
|
}>;
|
|
@@ -5801,6 +6160,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5801
6160
|
where?: Array<{
|
|
5802
6161
|
connector?: "AND" | "OR";
|
|
5803
6162
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
6163
|
+
mode?: "sensitive" | "insensitive";
|
|
5804
6164
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5805
6165
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5806
6166
|
}>;
|
|
@@ -5809,6 +6169,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5809
6169
|
where?: Array<{
|
|
5810
6170
|
connector?: "AND" | "OR";
|
|
5811
6171
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
6172
|
+
mode?: "sensitive" | "insensitive";
|
|
5812
6173
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5813
6174
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5814
6175
|
}>;
|
|
@@ -5817,6 +6178,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5817
6178
|
where?: Array<{
|
|
5818
6179
|
connector?: "AND" | "OR";
|
|
5819
6180
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
6181
|
+
mode?: "sensitive" | "insensitive";
|
|
5820
6182
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5821
6183
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5822
6184
|
}>;
|
|
@@ -5825,6 +6187,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5825
6187
|
where?: Array<{
|
|
5826
6188
|
connector?: "AND" | "OR";
|
|
5827
6189
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
6190
|
+
mode?: "sensitive" | "insensitive";
|
|
5828
6191
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5829
6192
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5830
6193
|
}>;
|
|
@@ -5845,6 +6208,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5845
6208
|
where?: Array<{
|
|
5846
6209
|
connector?: "AND" | "OR";
|
|
5847
6210
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
6211
|
+
mode?: "sensitive" | "insensitive";
|
|
5848
6212
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5849
6213
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5850
6214
|
}>;
|
|
@@ -5853,6 +6217,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5853
6217
|
where?: Array<{
|
|
5854
6218
|
connector?: "AND" | "OR";
|
|
5855
6219
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
6220
|
+
mode?: "sensitive" | "insensitive";
|
|
5856
6221
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5857
6222
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5858
6223
|
}>;
|
|
@@ -5861,6 +6226,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5861
6226
|
where?: Array<{
|
|
5862
6227
|
connector?: "AND" | "OR";
|
|
5863
6228
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
6229
|
+
mode?: "sensitive" | "insensitive";
|
|
5864
6230
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5865
6231
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5866
6232
|
}>;
|
|
@@ -5869,6 +6235,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5869
6235
|
where?: Array<{
|
|
5870
6236
|
connector?: "AND" | "OR";
|
|
5871
6237
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
6238
|
+
mode?: "sensitive" | "insensitive";
|
|
5872
6239
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5873
6240
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5874
6241
|
}>;
|
|
@@ -5876,7 +6243,8 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5876
6243
|
model: "twoFactor";
|
|
5877
6244
|
where?: Array<{
|
|
5878
6245
|
connector?: "AND" | "OR";
|
|
5879
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
6246
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
6247
|
+
mode?: "sensitive" | "insensitive";
|
|
5880
6248
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5881
6249
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5882
6250
|
}>;
|
|
@@ -5885,6 +6253,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5885
6253
|
where?: Array<{
|
|
5886
6254
|
connector?: "AND" | "OR";
|
|
5887
6255
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
6256
|
+
mode?: "sensitive" | "insensitive";
|
|
5888
6257
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5889
6258
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5890
6259
|
}>;
|
|
@@ -5893,6 +6262,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5893
6262
|
where?: Array<{
|
|
5894
6263
|
connector?: "AND" | "OR";
|
|
5895
6264
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
6265
|
+
mode?: "sensitive" | "insensitive";
|
|
5896
6266
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5897
6267
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5898
6268
|
}>;
|
|
@@ -5901,6 +6271,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5901
6271
|
where?: Array<{
|
|
5902
6272
|
connector?: "AND" | "OR";
|
|
5903
6273
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
6274
|
+
mode?: "sensitive" | "insensitive";
|
|
5904
6275
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5905
6276
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5906
6277
|
}>;
|
|
@@ -5909,6 +6280,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5909
6280
|
where?: Array<{
|
|
5910
6281
|
connector?: "AND" | "OR";
|
|
5911
6282
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
6283
|
+
mode?: "sensitive" | "insensitive";
|
|
5912
6284
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5913
6285
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5914
6286
|
}>;
|
|
@@ -5917,6 +6289,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5917
6289
|
where?: Array<{
|
|
5918
6290
|
connector?: "AND" | "OR";
|
|
5919
6291
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
6292
|
+
mode?: "sensitive" | "insensitive";
|
|
5920
6293
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5921
6294
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5922
6295
|
}>;
|
|
@@ -5925,6 +6298,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5925
6298
|
where?: Array<{
|
|
5926
6299
|
connector?: "AND" | "OR";
|
|
5927
6300
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
6301
|
+
mode?: "sensitive" | "insensitive";
|
|
5928
6302
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5929
6303
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5930
6304
|
}>;
|
|
@@ -5933,6 +6307,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5933
6307
|
where?: Array<{
|
|
5934
6308
|
connector?: "AND" | "OR";
|
|
5935
6309
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
6310
|
+
mode?: "sensitive" | "insensitive";
|
|
5936
6311
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5937
6312
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5938
6313
|
}>;
|
|
@@ -5941,6 +6316,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5941
6316
|
where?: Array<{
|
|
5942
6317
|
connector?: "AND" | "OR";
|
|
5943
6318
|
field: "oneToOne" | "_id";
|
|
6319
|
+
mode?: "sensitive" | "insensitive";
|
|
5944
6320
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5945
6321
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5946
6322
|
}>;
|
|
@@ -5949,6 +6325,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5949
6325
|
where?: Array<{
|
|
5950
6326
|
connector?: "AND" | "OR";
|
|
5951
6327
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
6328
|
+
mode?: "sensitive" | "insensitive";
|
|
5952
6329
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5953
6330
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5954
6331
|
}>;
|
|
@@ -5957,6 +6334,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5957
6334
|
where?: Array<{
|
|
5958
6335
|
connector?: "AND" | "OR";
|
|
5959
6336
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
6337
|
+
mode?: "sensitive" | "insensitive";
|
|
5960
6338
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5961
6339
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5962
6340
|
}>;
|
|
@@ -5965,6 +6343,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5965
6343
|
where?: Array<{
|
|
5966
6344
|
connector?: "AND" | "OR";
|
|
5967
6345
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
6346
|
+
mode?: "sensitive" | "insensitive";
|
|
5968
6347
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5969
6348
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5970
6349
|
}>;
|
|
@@ -5973,6 +6352,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5973
6352
|
where?: Array<{
|
|
5974
6353
|
connector?: "AND" | "OR";
|
|
5975
6354
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
6355
|
+
mode?: "sensitive" | "insensitive";
|
|
5976
6356
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5977
6357
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5978
6358
|
}>;
|
|
@@ -5981,6 +6361,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5981
6361
|
where?: Array<{
|
|
5982
6362
|
connector?: "AND" | "OR";
|
|
5983
6363
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
6364
|
+
mode?: "sensitive" | "insensitive";
|
|
5984
6365
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5985
6366
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5986
6367
|
}>;
|
|
@@ -5989,6 +6370,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5989
6370
|
where?: Array<{
|
|
5990
6371
|
connector?: "AND" | "OR";
|
|
5991
6372
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
6373
|
+
mode?: "sensitive" | "insensitive";
|
|
5992
6374
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5993
6375
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5994
6376
|
}>;
|
|
@@ -5997,6 +6379,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5997
6379
|
where?: Array<{
|
|
5998
6380
|
connector?: "AND" | "OR";
|
|
5999
6381
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
6382
|
+
mode?: "sensitive" | "insensitive";
|
|
6000
6383
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6001
6384
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6002
6385
|
}>;
|
|
@@ -6024,6 +6407,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6024
6407
|
where?: Array<{
|
|
6025
6408
|
connector?: "AND" | "OR";
|
|
6026
6409
|
field: string;
|
|
6410
|
+
mode?: "sensitive" | "insensitive";
|
|
6027
6411
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6028
6412
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6029
6413
|
}>;
|
|
@@ -6035,6 +6419,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6035
6419
|
where?: Array<{
|
|
6036
6420
|
connector?: "AND" | "OR";
|
|
6037
6421
|
field: string;
|
|
6422
|
+
mode?: "sensitive" | "insensitive";
|
|
6038
6423
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6039
6424
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6040
6425
|
}>;
|
|
@@ -6066,6 +6451,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6066
6451
|
where?: Array<{
|
|
6067
6452
|
connector?: "AND" | "OR";
|
|
6068
6453
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
6454
|
+
mode?: "sensitive" | "insensitive";
|
|
6069
6455
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6070
6456
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6071
6457
|
}>;
|
|
@@ -6083,6 +6469,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6083
6469
|
where?: Array<{
|
|
6084
6470
|
connector?: "AND" | "OR";
|
|
6085
6471
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
6472
|
+
mode?: "sensitive" | "insensitive";
|
|
6086
6473
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6087
6474
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6088
6475
|
}>;
|
|
@@ -6105,6 +6492,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6105
6492
|
where?: Array<{
|
|
6106
6493
|
connector?: "AND" | "OR";
|
|
6107
6494
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
6495
|
+
mode?: "sensitive" | "insensitive";
|
|
6108
6496
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6109
6497
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6110
6498
|
}>;
|
|
@@ -6120,6 +6508,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6120
6508
|
where?: Array<{
|
|
6121
6509
|
connector?: "AND" | "OR";
|
|
6122
6510
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
6511
|
+
mode?: "sensitive" | "insensitive";
|
|
6123
6512
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6124
6513
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6125
6514
|
}>;
|
|
@@ -6129,10 +6518,12 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6129
6518
|
backupCodes?: string;
|
|
6130
6519
|
secret?: string;
|
|
6131
6520
|
userId?: string;
|
|
6521
|
+
verified?: null | boolean;
|
|
6132
6522
|
};
|
|
6133
6523
|
where?: Array<{
|
|
6134
6524
|
connector?: "AND" | "OR";
|
|
6135
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
6525
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
6526
|
+
mode?: "sensitive" | "insensitive";
|
|
6136
6527
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6137
6528
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6138
6529
|
}>;
|
|
@@ -6154,6 +6545,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6154
6545
|
where?: Array<{
|
|
6155
6546
|
connector?: "AND" | "OR";
|
|
6156
6547
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
6548
|
+
mode?: "sensitive" | "insensitive";
|
|
6157
6549
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6158
6550
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6159
6551
|
}>;
|
|
@@ -6173,6 +6565,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6173
6565
|
where?: Array<{
|
|
6174
6566
|
connector?: "AND" | "OR";
|
|
6175
6567
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
6568
|
+
mode?: "sensitive" | "insensitive";
|
|
6176
6569
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6177
6570
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6178
6571
|
}>;
|
|
@@ -6189,6 +6582,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6189
6582
|
where?: Array<{
|
|
6190
6583
|
connector?: "AND" | "OR";
|
|
6191
6584
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
6585
|
+
mode?: "sensitive" | "insensitive";
|
|
6192
6586
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6193
6587
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6194
6588
|
}>;
|
|
@@ -6203,6 +6597,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6203
6597
|
where?: Array<{
|
|
6204
6598
|
connector?: "AND" | "OR";
|
|
6205
6599
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
6600
|
+
mode?: "sensitive" | "insensitive";
|
|
6206
6601
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6207
6602
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6208
6603
|
}>;
|
|
@@ -6216,6 +6611,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6216
6611
|
where?: Array<{
|
|
6217
6612
|
connector?: "AND" | "OR";
|
|
6218
6613
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
6614
|
+
mode?: "sensitive" | "insensitive";
|
|
6219
6615
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6220
6616
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6221
6617
|
}>;
|
|
@@ -6245,6 +6641,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6245
6641
|
where?: Array<{
|
|
6246
6642
|
connector?: "AND" | "OR";
|
|
6247
6643
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
6644
|
+
mode?: "sensitive" | "insensitive";
|
|
6248
6645
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6249
6646
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6250
6647
|
}>;
|
|
@@ -6274,6 +6671,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6274
6671
|
where?: Array<{
|
|
6275
6672
|
connector?: "AND" | "OR";
|
|
6276
6673
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
6674
|
+
mode?: "sensitive" | "insensitive";
|
|
6277
6675
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6278
6676
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6279
6677
|
}>;
|
|
@@ -6285,6 +6683,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6285
6683
|
where?: Array<{
|
|
6286
6684
|
connector?: "AND" | "OR";
|
|
6287
6685
|
field: "oneToOne" | "_id";
|
|
6686
|
+
mode?: "sensitive" | "insensitive";
|
|
6288
6687
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6289
6688
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6290
6689
|
}>;
|
|
@@ -6297,6 +6696,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6297
6696
|
where?: Array<{
|
|
6298
6697
|
connector?: "AND" | "OR";
|
|
6299
6698
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
6699
|
+
mode?: "sensitive" | "insensitive";
|
|
6300
6700
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6301
6701
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6302
6702
|
}>;
|
|
@@ -6313,6 +6713,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6313
6713
|
where?: Array<{
|
|
6314
6714
|
connector?: "AND" | "OR";
|
|
6315
6715
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
6716
|
+
mode?: "sensitive" | "insensitive";
|
|
6316
6717
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6317
6718
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6318
6719
|
}>;
|
|
@@ -6329,6 +6730,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6329
6730
|
where?: Array<{
|
|
6330
6731
|
connector?: "AND" | "OR";
|
|
6331
6732
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
6733
|
+
mode?: "sensitive" | "insensitive";
|
|
6332
6734
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6333
6735
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6334
6736
|
}>;
|
|
@@ -6344,6 +6746,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6344
6746
|
where?: Array<{
|
|
6345
6747
|
connector?: "AND" | "OR";
|
|
6346
6748
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
6749
|
+
mode?: "sensitive" | "insensitive";
|
|
6347
6750
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6348
6751
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6349
6752
|
}>;
|
|
@@ -6358,6 +6761,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6358
6761
|
where?: Array<{
|
|
6359
6762
|
connector?: "AND" | "OR";
|
|
6360
6763
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
6764
|
+
mode?: "sensitive" | "insensitive";
|
|
6361
6765
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6362
6766
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6363
6767
|
}>;
|
|
@@ -6371,6 +6775,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6371
6775
|
where?: Array<{
|
|
6372
6776
|
connector?: "AND" | "OR";
|
|
6373
6777
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
6778
|
+
mode?: "sensitive" | "insensitive";
|
|
6374
6779
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6375
6780
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6376
6781
|
}>;
|
|
@@ -6390,6 +6795,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6390
6795
|
where?: Array<{
|
|
6391
6796
|
connector?: "AND" | "OR";
|
|
6392
6797
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
6798
|
+
mode?: "sensitive" | "insensitive";
|
|
6393
6799
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6394
6800
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6395
6801
|
}>;
|
|
@@ -6431,6 +6837,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6431
6837
|
where?: Array<{
|
|
6432
6838
|
connector?: "AND" | "OR";
|
|
6433
6839
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
6840
|
+
mode?: "sensitive" | "insensitive";
|
|
6434
6841
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6435
6842
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6436
6843
|
}>;
|
|
@@ -6448,6 +6855,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6448
6855
|
where?: Array<{
|
|
6449
6856
|
connector?: "AND" | "OR";
|
|
6450
6857
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
6858
|
+
mode?: "sensitive" | "insensitive";
|
|
6451
6859
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6452
6860
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6453
6861
|
}>;
|
|
@@ -6470,6 +6878,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6470
6878
|
where?: Array<{
|
|
6471
6879
|
connector?: "AND" | "OR";
|
|
6472
6880
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
6881
|
+
mode?: "sensitive" | "insensitive";
|
|
6473
6882
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6474
6883
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6475
6884
|
}>;
|
|
@@ -6485,6 +6894,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6485
6894
|
where?: Array<{
|
|
6486
6895
|
connector?: "AND" | "OR";
|
|
6487
6896
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
6897
|
+
mode?: "sensitive" | "insensitive";
|
|
6488
6898
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6489
6899
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6490
6900
|
}>;
|
|
@@ -6494,10 +6904,12 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6494
6904
|
backupCodes?: string;
|
|
6495
6905
|
secret?: string;
|
|
6496
6906
|
userId?: string;
|
|
6907
|
+
verified?: null | boolean;
|
|
6497
6908
|
};
|
|
6498
6909
|
where?: Array<{
|
|
6499
6910
|
connector?: "AND" | "OR";
|
|
6500
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
6911
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
6912
|
+
mode?: "sensitive" | "insensitive";
|
|
6501
6913
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6502
6914
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6503
6915
|
}>;
|
|
@@ -6519,6 +6931,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6519
6931
|
where?: Array<{
|
|
6520
6932
|
connector?: "AND" | "OR";
|
|
6521
6933
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
6934
|
+
mode?: "sensitive" | "insensitive";
|
|
6522
6935
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6523
6936
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6524
6937
|
}>;
|
|
@@ -6538,6 +6951,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6538
6951
|
where?: Array<{
|
|
6539
6952
|
connector?: "AND" | "OR";
|
|
6540
6953
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
6954
|
+
mode?: "sensitive" | "insensitive";
|
|
6541
6955
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6542
6956
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6543
6957
|
}>;
|
|
@@ -6554,6 +6968,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6554
6968
|
where?: Array<{
|
|
6555
6969
|
connector?: "AND" | "OR";
|
|
6556
6970
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
6971
|
+
mode?: "sensitive" | "insensitive";
|
|
6557
6972
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6558
6973
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6559
6974
|
}>;
|
|
@@ -6568,6 +6983,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6568
6983
|
where?: Array<{
|
|
6569
6984
|
connector?: "AND" | "OR";
|
|
6570
6985
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
6986
|
+
mode?: "sensitive" | "insensitive";
|
|
6571
6987
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6572
6988
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6573
6989
|
}>;
|
|
@@ -6581,6 +6997,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6581
6997
|
where?: Array<{
|
|
6582
6998
|
connector?: "AND" | "OR";
|
|
6583
6999
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
7000
|
+
mode?: "sensitive" | "insensitive";
|
|
6584
7001
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6585
7002
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6586
7003
|
}>;
|
|
@@ -6610,6 +7027,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6610
7027
|
where?: Array<{
|
|
6611
7028
|
connector?: "AND" | "OR";
|
|
6612
7029
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
7030
|
+
mode?: "sensitive" | "insensitive";
|
|
6613
7031
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6614
7032
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6615
7033
|
}>;
|
|
@@ -6639,6 +7057,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6639
7057
|
where?: Array<{
|
|
6640
7058
|
connector?: "AND" | "OR";
|
|
6641
7059
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
7060
|
+
mode?: "sensitive" | "insensitive";
|
|
6642
7061
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6643
7062
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6644
7063
|
}>;
|
|
@@ -6650,6 +7069,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6650
7069
|
where?: Array<{
|
|
6651
7070
|
connector?: "AND" | "OR";
|
|
6652
7071
|
field: "oneToOne" | "_id";
|
|
7072
|
+
mode?: "sensitive" | "insensitive";
|
|
6653
7073
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6654
7074
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6655
7075
|
}>;
|
|
@@ -6662,6 +7082,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6662
7082
|
where?: Array<{
|
|
6663
7083
|
connector?: "AND" | "OR";
|
|
6664
7084
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
7085
|
+
mode?: "sensitive" | "insensitive";
|
|
6665
7086
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6666
7087
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6667
7088
|
}>;
|
|
@@ -6678,6 +7099,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6678
7099
|
where?: Array<{
|
|
6679
7100
|
connector?: "AND" | "OR";
|
|
6680
7101
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
7102
|
+
mode?: "sensitive" | "insensitive";
|
|
6681
7103
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6682
7104
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6683
7105
|
}>;
|
|
@@ -6694,6 +7116,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6694
7116
|
where?: Array<{
|
|
6695
7117
|
connector?: "AND" | "OR";
|
|
6696
7118
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
7119
|
+
mode?: "sensitive" | "insensitive";
|
|
6697
7120
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6698
7121
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6699
7122
|
}>;
|
|
@@ -6709,6 +7132,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6709
7132
|
where?: Array<{
|
|
6710
7133
|
connector?: "AND" | "OR";
|
|
6711
7134
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
7135
|
+
mode?: "sensitive" | "insensitive";
|
|
6712
7136
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6713
7137
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6714
7138
|
}>;
|
|
@@ -6723,6 +7147,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6723
7147
|
where?: Array<{
|
|
6724
7148
|
connector?: "AND" | "OR";
|
|
6725
7149
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
7150
|
+
mode?: "sensitive" | "insensitive";
|
|
6726
7151
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6727
7152
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6728
7153
|
}>;
|
|
@@ -6736,6 +7161,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6736
7161
|
where?: Array<{
|
|
6737
7162
|
connector?: "AND" | "OR";
|
|
6738
7163
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
7164
|
+
mode?: "sensitive" | "insensitive";
|
|
6739
7165
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6740
7166
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6741
7167
|
}>;
|
|
@@ -6755,6 +7181,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6755
7181
|
where?: Array<{
|
|
6756
7182
|
connector?: "AND" | "OR";
|
|
6757
7183
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
7184
|
+
mode?: "sensitive" | "insensitive";
|
|
6758
7185
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6759
7186
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6760
7187
|
}>;
|
|
@@ -6828,6 +7255,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6828
7255
|
backupCodes: string;
|
|
6829
7256
|
secret: string;
|
|
6830
7257
|
userId: string;
|
|
7258
|
+
verified?: null | boolean;
|
|
6831
7259
|
};
|
|
6832
7260
|
model: "twoFactor";
|
|
6833
7261
|
} | {
|
|
@@ -7007,6 +7435,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7007
7435
|
where?: Array<{
|
|
7008
7436
|
connector?: "AND" | "OR";
|
|
7009
7437
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
7438
|
+
mode?: "sensitive" | "insensitive";
|
|
7010
7439
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7011
7440
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7012
7441
|
}>;
|
|
@@ -7015,6 +7444,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7015
7444
|
where?: Array<{
|
|
7016
7445
|
connector?: "AND" | "OR";
|
|
7017
7446
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
7447
|
+
mode?: "sensitive" | "insensitive";
|
|
7018
7448
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7019
7449
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7020
7450
|
}>;
|
|
@@ -7023,6 +7453,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7023
7453
|
where?: Array<{
|
|
7024
7454
|
connector?: "AND" | "OR";
|
|
7025
7455
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
7456
|
+
mode?: "sensitive" | "insensitive";
|
|
7026
7457
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7027
7458
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7028
7459
|
}>;
|
|
@@ -7031,6 +7462,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7031
7462
|
where?: Array<{
|
|
7032
7463
|
connector?: "AND" | "OR";
|
|
7033
7464
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
7465
|
+
mode?: "sensitive" | "insensitive";
|
|
7034
7466
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7035
7467
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7036
7468
|
}>;
|
|
@@ -7038,7 +7470,8 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7038
7470
|
model: "twoFactor";
|
|
7039
7471
|
where?: Array<{
|
|
7040
7472
|
connector?: "AND" | "OR";
|
|
7041
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
7473
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
7474
|
+
mode?: "sensitive" | "insensitive";
|
|
7042
7475
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7043
7476
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7044
7477
|
}>;
|
|
@@ -7047,6 +7480,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7047
7480
|
where?: Array<{
|
|
7048
7481
|
connector?: "AND" | "OR";
|
|
7049
7482
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
7483
|
+
mode?: "sensitive" | "insensitive";
|
|
7050
7484
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7051
7485
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7052
7486
|
}>;
|
|
@@ -7055,6 +7489,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7055
7489
|
where?: Array<{
|
|
7056
7490
|
connector?: "AND" | "OR";
|
|
7057
7491
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
7492
|
+
mode?: "sensitive" | "insensitive";
|
|
7058
7493
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7059
7494
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7060
7495
|
}>;
|
|
@@ -7063,6 +7498,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7063
7498
|
where?: Array<{
|
|
7064
7499
|
connector?: "AND" | "OR";
|
|
7065
7500
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
7501
|
+
mode?: "sensitive" | "insensitive";
|
|
7066
7502
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7067
7503
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7068
7504
|
}>;
|
|
@@ -7071,6 +7507,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7071
7507
|
where?: Array<{
|
|
7072
7508
|
connector?: "AND" | "OR";
|
|
7073
7509
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
7510
|
+
mode?: "sensitive" | "insensitive";
|
|
7074
7511
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7075
7512
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7076
7513
|
}>;
|
|
@@ -7079,6 +7516,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7079
7516
|
where?: Array<{
|
|
7080
7517
|
connector?: "AND" | "OR";
|
|
7081
7518
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
7519
|
+
mode?: "sensitive" | "insensitive";
|
|
7082
7520
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7083
7521
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7084
7522
|
}>;
|
|
@@ -7087,6 +7525,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7087
7525
|
where?: Array<{
|
|
7088
7526
|
connector?: "AND" | "OR";
|
|
7089
7527
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
7528
|
+
mode?: "sensitive" | "insensitive";
|
|
7090
7529
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7091
7530
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7092
7531
|
}>;
|
|
@@ -7095,6 +7534,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7095
7534
|
where?: Array<{
|
|
7096
7535
|
connector?: "AND" | "OR";
|
|
7097
7536
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
7537
|
+
mode?: "sensitive" | "insensitive";
|
|
7098
7538
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7099
7539
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7100
7540
|
}>;
|
|
@@ -7103,6 +7543,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7103
7543
|
where?: Array<{
|
|
7104
7544
|
connector?: "AND" | "OR";
|
|
7105
7545
|
field: "oneToOne" | "_id";
|
|
7546
|
+
mode?: "sensitive" | "insensitive";
|
|
7106
7547
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7107
7548
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7108
7549
|
}>;
|
|
@@ -7111,6 +7552,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7111
7552
|
where?: Array<{
|
|
7112
7553
|
connector?: "AND" | "OR";
|
|
7113
7554
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
7555
|
+
mode?: "sensitive" | "insensitive";
|
|
7114
7556
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7115
7557
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7116
7558
|
}>;
|
|
@@ -7119,6 +7561,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7119
7561
|
where?: Array<{
|
|
7120
7562
|
connector?: "AND" | "OR";
|
|
7121
7563
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
7564
|
+
mode?: "sensitive" | "insensitive";
|
|
7122
7565
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7123
7566
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7124
7567
|
}>;
|
|
@@ -7127,6 +7570,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7127
7570
|
where?: Array<{
|
|
7128
7571
|
connector?: "AND" | "OR";
|
|
7129
7572
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
7573
|
+
mode?: "sensitive" | "insensitive";
|
|
7130
7574
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7131
7575
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7132
7576
|
}>;
|
|
@@ -7135,6 +7579,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7135
7579
|
where?: Array<{
|
|
7136
7580
|
connector?: "AND" | "OR";
|
|
7137
7581
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
7582
|
+
mode?: "sensitive" | "insensitive";
|
|
7138
7583
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7139
7584
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7140
7585
|
}>;
|
|
@@ -7143,6 +7588,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7143
7588
|
where?: Array<{
|
|
7144
7589
|
connector?: "AND" | "OR";
|
|
7145
7590
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
7591
|
+
mode?: "sensitive" | "insensitive";
|
|
7146
7592
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7147
7593
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7148
7594
|
}>;
|
|
@@ -7151,6 +7597,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7151
7597
|
where?: Array<{
|
|
7152
7598
|
connector?: "AND" | "OR";
|
|
7153
7599
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
7600
|
+
mode?: "sensitive" | "insensitive";
|
|
7154
7601
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7155
7602
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7156
7603
|
}>;
|
|
@@ -7159,6 +7606,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7159
7606
|
where?: Array<{
|
|
7160
7607
|
connector?: "AND" | "OR";
|
|
7161
7608
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
7609
|
+
mode?: "sensitive" | "insensitive";
|
|
7162
7610
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7163
7611
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7164
7612
|
}>;
|
|
@@ -7179,6 +7627,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7179
7627
|
where?: Array<{
|
|
7180
7628
|
connector?: "AND" | "OR";
|
|
7181
7629
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
7630
|
+
mode?: "sensitive" | "insensitive";
|
|
7182
7631
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7183
7632
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7184
7633
|
}>;
|
|
@@ -7187,6 +7636,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7187
7636
|
where?: Array<{
|
|
7188
7637
|
connector?: "AND" | "OR";
|
|
7189
7638
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
7639
|
+
mode?: "sensitive" | "insensitive";
|
|
7190
7640
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7191
7641
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7192
7642
|
}>;
|
|
@@ -7195,6 +7645,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7195
7645
|
where?: Array<{
|
|
7196
7646
|
connector?: "AND" | "OR";
|
|
7197
7647
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
7648
|
+
mode?: "sensitive" | "insensitive";
|
|
7198
7649
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7199
7650
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7200
7651
|
}>;
|
|
@@ -7203,6 +7654,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7203
7654
|
where?: Array<{
|
|
7204
7655
|
connector?: "AND" | "OR";
|
|
7205
7656
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
7657
|
+
mode?: "sensitive" | "insensitive";
|
|
7206
7658
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7207
7659
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7208
7660
|
}>;
|
|
@@ -7210,7 +7662,8 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7210
7662
|
model: "twoFactor";
|
|
7211
7663
|
where?: Array<{
|
|
7212
7664
|
connector?: "AND" | "OR";
|
|
7213
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
7665
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
7666
|
+
mode?: "sensitive" | "insensitive";
|
|
7214
7667
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7215
7668
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7216
7669
|
}>;
|
|
@@ -7219,6 +7672,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7219
7672
|
where?: Array<{
|
|
7220
7673
|
connector?: "AND" | "OR";
|
|
7221
7674
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
7675
|
+
mode?: "sensitive" | "insensitive";
|
|
7222
7676
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7223
7677
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7224
7678
|
}>;
|
|
@@ -7227,6 +7681,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7227
7681
|
where?: Array<{
|
|
7228
7682
|
connector?: "AND" | "OR";
|
|
7229
7683
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
7684
|
+
mode?: "sensitive" | "insensitive";
|
|
7230
7685
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7231
7686
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7232
7687
|
}>;
|
|
@@ -7235,6 +7690,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7235
7690
|
where?: Array<{
|
|
7236
7691
|
connector?: "AND" | "OR";
|
|
7237
7692
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
7693
|
+
mode?: "sensitive" | "insensitive";
|
|
7238
7694
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7239
7695
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7240
7696
|
}>;
|
|
@@ -7243,6 +7699,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7243
7699
|
where?: Array<{
|
|
7244
7700
|
connector?: "AND" | "OR";
|
|
7245
7701
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
7702
|
+
mode?: "sensitive" | "insensitive";
|
|
7246
7703
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7247
7704
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7248
7705
|
}>;
|
|
@@ -7251,6 +7708,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7251
7708
|
where?: Array<{
|
|
7252
7709
|
connector?: "AND" | "OR";
|
|
7253
7710
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
7711
|
+
mode?: "sensitive" | "insensitive";
|
|
7254
7712
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7255
7713
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7256
7714
|
}>;
|
|
@@ -7259,6 +7717,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7259
7717
|
where?: Array<{
|
|
7260
7718
|
connector?: "AND" | "OR";
|
|
7261
7719
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
7720
|
+
mode?: "sensitive" | "insensitive";
|
|
7262
7721
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7263
7722
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7264
7723
|
}>;
|
|
@@ -7267,6 +7726,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7267
7726
|
where?: Array<{
|
|
7268
7727
|
connector?: "AND" | "OR";
|
|
7269
7728
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
7729
|
+
mode?: "sensitive" | "insensitive";
|
|
7270
7730
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7271
7731
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7272
7732
|
}>;
|
|
@@ -7275,6 +7735,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7275
7735
|
where?: Array<{
|
|
7276
7736
|
connector?: "AND" | "OR";
|
|
7277
7737
|
field: "oneToOne" | "_id";
|
|
7738
|
+
mode?: "sensitive" | "insensitive";
|
|
7278
7739
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7279
7740
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7280
7741
|
}>;
|
|
@@ -7283,6 +7744,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7283
7744
|
where?: Array<{
|
|
7284
7745
|
connector?: "AND" | "OR";
|
|
7285
7746
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
7747
|
+
mode?: "sensitive" | "insensitive";
|
|
7286
7748
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7287
7749
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7288
7750
|
}>;
|
|
@@ -7291,6 +7753,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7291
7753
|
where?: Array<{
|
|
7292
7754
|
connector?: "AND" | "OR";
|
|
7293
7755
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
7756
|
+
mode?: "sensitive" | "insensitive";
|
|
7294
7757
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7295
7758
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7296
7759
|
}>;
|
|
@@ -7299,6 +7762,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7299
7762
|
where?: Array<{
|
|
7300
7763
|
connector?: "AND" | "OR";
|
|
7301
7764
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
7765
|
+
mode?: "sensitive" | "insensitive";
|
|
7302
7766
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7303
7767
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7304
7768
|
}>;
|
|
@@ -7307,6 +7771,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7307
7771
|
where?: Array<{
|
|
7308
7772
|
connector?: "AND" | "OR";
|
|
7309
7773
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
7774
|
+
mode?: "sensitive" | "insensitive";
|
|
7310
7775
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7311
7776
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7312
7777
|
}>;
|
|
@@ -7315,6 +7780,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7315
7780
|
where?: Array<{
|
|
7316
7781
|
connector?: "AND" | "OR";
|
|
7317
7782
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
7783
|
+
mode?: "sensitive" | "insensitive";
|
|
7318
7784
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7319
7785
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7320
7786
|
}>;
|
|
@@ -7323,6 +7789,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7323
7789
|
where?: Array<{
|
|
7324
7790
|
connector?: "AND" | "OR";
|
|
7325
7791
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
7792
|
+
mode?: "sensitive" | "insensitive";
|
|
7326
7793
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7327
7794
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7328
7795
|
}>;
|
|
@@ -7331,6 +7798,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7331
7798
|
where?: Array<{
|
|
7332
7799
|
connector?: "AND" | "OR";
|
|
7333
7800
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
7801
|
+
mode?: "sensitive" | "insensitive";
|
|
7334
7802
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7335
7803
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7336
7804
|
}>;
|
|
@@ -7358,6 +7826,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7358
7826
|
where?: Array<{
|
|
7359
7827
|
connector?: "AND" | "OR";
|
|
7360
7828
|
field: string;
|
|
7829
|
+
mode?: "sensitive" | "insensitive";
|
|
7361
7830
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7362
7831
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7363
7832
|
}>;
|
|
@@ -7369,6 +7838,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7369
7838
|
where?: Array<{
|
|
7370
7839
|
connector?: "AND" | "OR";
|
|
7371
7840
|
field: string;
|
|
7841
|
+
mode?: "sensitive" | "insensitive";
|
|
7372
7842
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7373
7843
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7374
7844
|
}>;
|
|
@@ -7400,6 +7870,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7400
7870
|
where?: Array<{
|
|
7401
7871
|
connector?: "AND" | "OR";
|
|
7402
7872
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
7873
|
+
mode?: "sensitive" | "insensitive";
|
|
7403
7874
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7404
7875
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7405
7876
|
}>;
|
|
@@ -7417,6 +7888,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7417
7888
|
where?: Array<{
|
|
7418
7889
|
connector?: "AND" | "OR";
|
|
7419
7890
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
7891
|
+
mode?: "sensitive" | "insensitive";
|
|
7420
7892
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7421
7893
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7422
7894
|
}>;
|
|
@@ -7439,6 +7911,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7439
7911
|
where?: Array<{
|
|
7440
7912
|
connector?: "AND" | "OR";
|
|
7441
7913
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
7914
|
+
mode?: "sensitive" | "insensitive";
|
|
7442
7915
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7443
7916
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7444
7917
|
}>;
|
|
@@ -7454,6 +7927,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7454
7927
|
where?: Array<{
|
|
7455
7928
|
connector?: "AND" | "OR";
|
|
7456
7929
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
7930
|
+
mode?: "sensitive" | "insensitive";
|
|
7457
7931
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7458
7932
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7459
7933
|
}>;
|
|
@@ -7463,10 +7937,12 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7463
7937
|
backupCodes?: string;
|
|
7464
7938
|
secret?: string;
|
|
7465
7939
|
userId?: string;
|
|
7940
|
+
verified?: null | boolean;
|
|
7466
7941
|
};
|
|
7467
7942
|
where?: Array<{
|
|
7468
7943
|
connector?: "AND" | "OR";
|
|
7469
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
7944
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
7945
|
+
mode?: "sensitive" | "insensitive";
|
|
7470
7946
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7471
7947
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7472
7948
|
}>;
|
|
@@ -7488,6 +7964,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7488
7964
|
where?: Array<{
|
|
7489
7965
|
connector?: "AND" | "OR";
|
|
7490
7966
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
7967
|
+
mode?: "sensitive" | "insensitive";
|
|
7491
7968
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7492
7969
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7493
7970
|
}>;
|
|
@@ -7507,6 +7984,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7507
7984
|
where?: Array<{
|
|
7508
7985
|
connector?: "AND" | "OR";
|
|
7509
7986
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
7987
|
+
mode?: "sensitive" | "insensitive";
|
|
7510
7988
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7511
7989
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7512
7990
|
}>;
|
|
@@ -7523,6 +8001,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7523
8001
|
where?: Array<{
|
|
7524
8002
|
connector?: "AND" | "OR";
|
|
7525
8003
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
8004
|
+
mode?: "sensitive" | "insensitive";
|
|
7526
8005
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7527
8006
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7528
8007
|
}>;
|
|
@@ -7537,6 +8016,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7537
8016
|
where?: Array<{
|
|
7538
8017
|
connector?: "AND" | "OR";
|
|
7539
8018
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
8019
|
+
mode?: "sensitive" | "insensitive";
|
|
7540
8020
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7541
8021
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7542
8022
|
}>;
|
|
@@ -7550,6 +8030,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7550
8030
|
where?: Array<{
|
|
7551
8031
|
connector?: "AND" | "OR";
|
|
7552
8032
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
8033
|
+
mode?: "sensitive" | "insensitive";
|
|
7553
8034
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7554
8035
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7555
8036
|
}>;
|
|
@@ -7579,6 +8060,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7579
8060
|
where?: Array<{
|
|
7580
8061
|
connector?: "AND" | "OR";
|
|
7581
8062
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
8063
|
+
mode?: "sensitive" | "insensitive";
|
|
7582
8064
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7583
8065
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7584
8066
|
}>;
|
|
@@ -7608,6 +8090,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7608
8090
|
where?: Array<{
|
|
7609
8091
|
connector?: "AND" | "OR";
|
|
7610
8092
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
8093
|
+
mode?: "sensitive" | "insensitive";
|
|
7611
8094
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7612
8095
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7613
8096
|
}>;
|
|
@@ -7619,6 +8102,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7619
8102
|
where?: Array<{
|
|
7620
8103
|
connector?: "AND" | "OR";
|
|
7621
8104
|
field: "oneToOne" | "_id";
|
|
8105
|
+
mode?: "sensitive" | "insensitive";
|
|
7622
8106
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7623
8107
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7624
8108
|
}>;
|
|
@@ -7631,6 +8115,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7631
8115
|
where?: Array<{
|
|
7632
8116
|
connector?: "AND" | "OR";
|
|
7633
8117
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
8118
|
+
mode?: "sensitive" | "insensitive";
|
|
7634
8119
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7635
8120
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7636
8121
|
}>;
|
|
@@ -7647,6 +8132,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7647
8132
|
where?: Array<{
|
|
7648
8133
|
connector?: "AND" | "OR";
|
|
7649
8134
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
8135
|
+
mode?: "sensitive" | "insensitive";
|
|
7650
8136
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7651
8137
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7652
8138
|
}>;
|
|
@@ -7663,6 +8149,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7663
8149
|
where?: Array<{
|
|
7664
8150
|
connector?: "AND" | "OR";
|
|
7665
8151
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
8152
|
+
mode?: "sensitive" | "insensitive";
|
|
7666
8153
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7667
8154
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7668
8155
|
}>;
|
|
@@ -7678,6 +8165,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7678
8165
|
where?: Array<{
|
|
7679
8166
|
connector?: "AND" | "OR";
|
|
7680
8167
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
8168
|
+
mode?: "sensitive" | "insensitive";
|
|
7681
8169
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7682
8170
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7683
8171
|
}>;
|
|
@@ -7692,6 +8180,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7692
8180
|
where?: Array<{
|
|
7693
8181
|
connector?: "AND" | "OR";
|
|
7694
8182
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
8183
|
+
mode?: "sensitive" | "insensitive";
|
|
7695
8184
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7696
8185
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7697
8186
|
}>;
|
|
@@ -7705,6 +8194,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7705
8194
|
where?: Array<{
|
|
7706
8195
|
connector?: "AND" | "OR";
|
|
7707
8196
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
8197
|
+
mode?: "sensitive" | "insensitive";
|
|
7708
8198
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7709
8199
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7710
8200
|
}>;
|
|
@@ -7724,6 +8214,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7724
8214
|
where?: Array<{
|
|
7725
8215
|
connector?: "AND" | "OR";
|
|
7726
8216
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
8217
|
+
mode?: "sensitive" | "insensitive";
|
|
7727
8218
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7728
8219
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7729
8220
|
}>;
|
|
@@ -7765,6 +8256,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7765
8256
|
where?: Array<{
|
|
7766
8257
|
connector?: "AND" | "OR";
|
|
7767
8258
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
8259
|
+
mode?: "sensitive" | "insensitive";
|
|
7768
8260
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7769
8261
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7770
8262
|
}>;
|
|
@@ -7782,6 +8274,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7782
8274
|
where?: Array<{
|
|
7783
8275
|
connector?: "AND" | "OR";
|
|
7784
8276
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
8277
|
+
mode?: "sensitive" | "insensitive";
|
|
7785
8278
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7786
8279
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7787
8280
|
}>;
|
|
@@ -7804,6 +8297,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7804
8297
|
where?: Array<{
|
|
7805
8298
|
connector?: "AND" | "OR";
|
|
7806
8299
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
8300
|
+
mode?: "sensitive" | "insensitive";
|
|
7807
8301
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7808
8302
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7809
8303
|
}>;
|
|
@@ -7819,6 +8313,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7819
8313
|
where?: Array<{
|
|
7820
8314
|
connector?: "AND" | "OR";
|
|
7821
8315
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
8316
|
+
mode?: "sensitive" | "insensitive";
|
|
7822
8317
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7823
8318
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7824
8319
|
}>;
|
|
@@ -7828,10 +8323,12 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7828
8323
|
backupCodes?: string;
|
|
7829
8324
|
secret?: string;
|
|
7830
8325
|
userId?: string;
|
|
8326
|
+
verified?: null | boolean;
|
|
7831
8327
|
};
|
|
7832
8328
|
where?: Array<{
|
|
7833
8329
|
connector?: "AND" | "OR";
|
|
7834
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
8330
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
8331
|
+
mode?: "sensitive" | "insensitive";
|
|
7835
8332
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7836
8333
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7837
8334
|
}>;
|
|
@@ -7853,6 +8350,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7853
8350
|
where?: Array<{
|
|
7854
8351
|
connector?: "AND" | "OR";
|
|
7855
8352
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
8353
|
+
mode?: "sensitive" | "insensitive";
|
|
7856
8354
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7857
8355
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7858
8356
|
}>;
|
|
@@ -7872,6 +8370,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7872
8370
|
where?: Array<{
|
|
7873
8371
|
connector?: "AND" | "OR";
|
|
7874
8372
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
8373
|
+
mode?: "sensitive" | "insensitive";
|
|
7875
8374
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7876
8375
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7877
8376
|
}>;
|
|
@@ -7888,6 +8387,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7888
8387
|
where?: Array<{
|
|
7889
8388
|
connector?: "AND" | "OR";
|
|
7890
8389
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
8390
|
+
mode?: "sensitive" | "insensitive";
|
|
7891
8391
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7892
8392
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7893
8393
|
}>;
|
|
@@ -7902,6 +8402,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7902
8402
|
where?: Array<{
|
|
7903
8403
|
connector?: "AND" | "OR";
|
|
7904
8404
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
8405
|
+
mode?: "sensitive" | "insensitive";
|
|
7905
8406
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7906
8407
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7907
8408
|
}>;
|
|
@@ -7915,6 +8416,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7915
8416
|
where?: Array<{
|
|
7916
8417
|
connector?: "AND" | "OR";
|
|
7917
8418
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
8419
|
+
mode?: "sensitive" | "insensitive";
|
|
7918
8420
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7919
8421
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7920
8422
|
}>;
|
|
@@ -7944,6 +8446,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7944
8446
|
where?: Array<{
|
|
7945
8447
|
connector?: "AND" | "OR";
|
|
7946
8448
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
8449
|
+
mode?: "sensitive" | "insensitive";
|
|
7947
8450
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7948
8451
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7949
8452
|
}>;
|
|
@@ -7973,6 +8476,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7973
8476
|
where?: Array<{
|
|
7974
8477
|
connector?: "AND" | "OR";
|
|
7975
8478
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
8479
|
+
mode?: "sensitive" | "insensitive";
|
|
7976
8480
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7977
8481
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7978
8482
|
}>;
|
|
@@ -7984,6 +8488,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7984
8488
|
where?: Array<{
|
|
7985
8489
|
connector?: "AND" | "OR";
|
|
7986
8490
|
field: "oneToOne" | "_id";
|
|
8491
|
+
mode?: "sensitive" | "insensitive";
|
|
7987
8492
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7988
8493
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7989
8494
|
}>;
|
|
@@ -7996,6 +8501,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7996
8501
|
where?: Array<{
|
|
7997
8502
|
connector?: "AND" | "OR";
|
|
7998
8503
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
8504
|
+
mode?: "sensitive" | "insensitive";
|
|
7999
8505
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
8000
8506
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
8001
8507
|
}>;
|
|
@@ -8012,6 +8518,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
8012
8518
|
where?: Array<{
|
|
8013
8519
|
connector?: "AND" | "OR";
|
|
8014
8520
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
8521
|
+
mode?: "sensitive" | "insensitive";
|
|
8015
8522
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
8016
8523
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
8017
8524
|
}>;
|
|
@@ -8028,6 +8535,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
8028
8535
|
where?: Array<{
|
|
8029
8536
|
connector?: "AND" | "OR";
|
|
8030
8537
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
8538
|
+
mode?: "sensitive" | "insensitive";
|
|
8031
8539
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
8032
8540
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
8033
8541
|
}>;
|
|
@@ -8043,6 +8551,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
8043
8551
|
where?: Array<{
|
|
8044
8552
|
connector?: "AND" | "OR";
|
|
8045
8553
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
8554
|
+
mode?: "sensitive" | "insensitive";
|
|
8046
8555
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
8047
8556
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
8048
8557
|
}>;
|
|
@@ -8057,6 +8566,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
8057
8566
|
where?: Array<{
|
|
8058
8567
|
connector?: "AND" | "OR";
|
|
8059
8568
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
8569
|
+
mode?: "sensitive" | "insensitive";
|
|
8060
8570
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
8061
8571
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
8062
8572
|
}>;
|
|
@@ -8070,6 +8580,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
8070
8580
|
where?: Array<{
|
|
8071
8581
|
connector?: "AND" | "OR";
|
|
8072
8582
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
8583
|
+
mode?: "sensitive" | "insensitive";
|
|
8073
8584
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
8074
8585
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
8075
8586
|
}>;
|
|
@@ -8089,6 +8600,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
8089
8600
|
where?: Array<{
|
|
8090
8601
|
connector?: "AND" | "OR";
|
|
8091
8602
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
8603
|
+
mode?: "sensitive" | "insensitive";
|
|
8092
8604
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
8093
8605
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
8094
8606
|
}>;
|