@convex-dev/better-auth 0.11.4 → 0.12.0
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.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.map +1 -1
- package/dist/client/create-client.js +19 -2
- 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/component.d.ts +543 -28
- package/dist/component/_generated/component.d.ts.map +1 -1
- package/dist/component/_generated/server.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/nextjs/index.d.ts.map +1 -1
- package/dist/nextjs/index.js +4 -0
- package/dist/nextjs/index.js.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 +14 -26
- 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/react-start/index.d.ts.map +1 -1
- package/dist/react-start/index.js +4 -0
- package/dist/react-start/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 +5 -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 +16 -19
- package/src/auth-options.ts +1 -0
- package/src/client/adapter-utils.ts +13 -5
- package/src/client/adapter.ts +7 -0
- package/src/client/create-api.ts +3 -0
- package/src/client/create-client.test.ts +40 -0
- package/src/client/create-client.ts +25 -2
- package/src/client/create-schema.ts +46 -8
- package/src/component/_generated/component.ts +718 -35
- package/src/component/_generated/server.ts +0 -5
- package/src/component/schema.ts +5 -3
- package/src/nextjs/index.ts +4 -0
- package/src/plugins/convex/client.ts +2 -0
- package/src/plugins/convex/index.ts +16 -3
- package/src/plugins/cross-domain/client.test.ts +41 -30
- package/src/plugins/cross-domain/client.ts +17 -44
- package/src/plugins/cross-domain/index.test.ts +129 -51
- package/src/plugins/cross-domain/index.ts +20 -7
- package/src/react-start/index.ts +4 -0
- package/src/test/adapter-factory/convex-custom.ts +23 -0
- package/src/utils/index.ts +6 -1
- package/src/version.ts +1 -0
|
@@ -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
|
}>;
|
|
@@ -782,6 +827,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
782
827
|
backupCodes: string;
|
|
783
828
|
secret: string;
|
|
784
829
|
userId: string;
|
|
830
|
+
verified?: null | boolean;
|
|
785
831
|
};
|
|
786
832
|
model: "twoFactor";
|
|
787
833
|
} | {
|
|
@@ -847,6 +893,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
847
893
|
where?: Array<{
|
|
848
894
|
connector?: "AND" | "OR";
|
|
849
895
|
field: "name" | "email" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "customField" | "numericField" | "testField" | "cbDefaultValueField" | "dateField" | "_id";
|
|
896
|
+
mode?: "sensitive" | "insensitive";
|
|
850
897
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
851
898
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
852
899
|
}>;
|
|
@@ -855,6 +902,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
855
902
|
where?: Array<{
|
|
856
903
|
connector?: "AND" | "OR";
|
|
857
904
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
905
|
+
mode?: "sensitive" | "insensitive";
|
|
858
906
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
859
907
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
860
908
|
}>;
|
|
@@ -863,6 +911,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
863
911
|
where?: Array<{
|
|
864
912
|
connector?: "AND" | "OR";
|
|
865
913
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
914
|
+
mode?: "sensitive" | "insensitive";
|
|
866
915
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
867
916
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
868
917
|
}>;
|
|
@@ -871,6 +920,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
871
920
|
where?: Array<{
|
|
872
921
|
connector?: "AND" | "OR";
|
|
873
922
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
923
|
+
mode?: "sensitive" | "insensitive";
|
|
874
924
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
875
925
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
876
926
|
}>;
|
|
@@ -878,7 +928,8 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
878
928
|
model: "twoFactor";
|
|
879
929
|
where?: Array<{
|
|
880
930
|
connector?: "AND" | "OR";
|
|
881
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
931
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
932
|
+
mode?: "sensitive" | "insensitive";
|
|
882
933
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
883
934
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
884
935
|
}>;
|
|
@@ -887,6 +938,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
887
938
|
where?: Array<{
|
|
888
939
|
connector?: "AND" | "OR";
|
|
889
940
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
941
|
+
mode?: "sensitive" | "insensitive";
|
|
890
942
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
891
943
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
892
944
|
}>;
|
|
@@ -895,6 +947,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
895
947
|
where?: Array<{
|
|
896
948
|
connector?: "AND" | "OR";
|
|
897
949
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
950
|
+
mode?: "sensitive" | "insensitive";
|
|
898
951
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
899
952
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
900
953
|
}>;
|
|
@@ -903,6 +956,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
903
956
|
where?: Array<{
|
|
904
957
|
connector?: "AND" | "OR";
|
|
905
958
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
959
|
+
mode?: "sensitive" | "insensitive";
|
|
906
960
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
907
961
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
908
962
|
}>;
|
|
@@ -911,6 +965,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
911
965
|
where?: Array<{
|
|
912
966
|
connector?: "AND" | "OR";
|
|
913
967
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
968
|
+
mode?: "sensitive" | "insensitive";
|
|
914
969
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
915
970
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
916
971
|
}>;
|
|
@@ -919,6 +974,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
919
974
|
where?: Array<{
|
|
920
975
|
connector?: "AND" | "OR";
|
|
921
976
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
977
|
+
mode?: "sensitive" | "insensitive";
|
|
922
978
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
923
979
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
924
980
|
}>;
|
|
@@ -939,6 +995,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
939
995
|
where?: Array<{
|
|
940
996
|
connector?: "AND" | "OR";
|
|
941
997
|
field: "name" | "email" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "customField" | "numericField" | "testField" | "cbDefaultValueField" | "dateField" | "_id";
|
|
998
|
+
mode?: "sensitive" | "insensitive";
|
|
942
999
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
943
1000
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
944
1001
|
}>;
|
|
@@ -947,6 +1004,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
947
1004
|
where?: Array<{
|
|
948
1005
|
connector?: "AND" | "OR";
|
|
949
1006
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
1007
|
+
mode?: "sensitive" | "insensitive";
|
|
950
1008
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
951
1009
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
952
1010
|
}>;
|
|
@@ -955,6 +1013,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
955
1013
|
where?: Array<{
|
|
956
1014
|
connector?: "AND" | "OR";
|
|
957
1015
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
1016
|
+
mode?: "sensitive" | "insensitive";
|
|
958
1017
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
959
1018
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
960
1019
|
}>;
|
|
@@ -963,6 +1022,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
963
1022
|
where?: Array<{
|
|
964
1023
|
connector?: "AND" | "OR";
|
|
965
1024
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
1025
|
+
mode?: "sensitive" | "insensitive";
|
|
966
1026
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
967
1027
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
968
1028
|
}>;
|
|
@@ -970,7 +1030,8 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
970
1030
|
model: "twoFactor";
|
|
971
1031
|
where?: Array<{
|
|
972
1032
|
connector?: "AND" | "OR";
|
|
973
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
1033
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
1034
|
+
mode?: "sensitive" | "insensitive";
|
|
974
1035
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
975
1036
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
976
1037
|
}>;
|
|
@@ -979,6 +1040,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
979
1040
|
where?: Array<{
|
|
980
1041
|
connector?: "AND" | "OR";
|
|
981
1042
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
1043
|
+
mode?: "sensitive" | "insensitive";
|
|
982
1044
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
983
1045
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
984
1046
|
}>;
|
|
@@ -987,6 +1049,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
987
1049
|
where?: Array<{
|
|
988
1050
|
connector?: "AND" | "OR";
|
|
989
1051
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
1052
|
+
mode?: "sensitive" | "insensitive";
|
|
990
1053
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
991
1054
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
992
1055
|
}>;
|
|
@@ -995,6 +1058,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
995
1058
|
where?: Array<{
|
|
996
1059
|
connector?: "AND" | "OR";
|
|
997
1060
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
1061
|
+
mode?: "sensitive" | "insensitive";
|
|
998
1062
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
999
1063
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1000
1064
|
}>;
|
|
@@ -1003,6 +1067,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1003
1067
|
where?: Array<{
|
|
1004
1068
|
connector?: "AND" | "OR";
|
|
1005
1069
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
1070
|
+
mode?: "sensitive" | "insensitive";
|
|
1006
1071
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1007
1072
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1008
1073
|
}>;
|
|
@@ -1011,6 +1076,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1011
1076
|
where?: Array<{
|
|
1012
1077
|
connector?: "AND" | "OR";
|
|
1013
1078
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
1079
|
+
mode?: "sensitive" | "insensitive";
|
|
1014
1080
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1015
1081
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1016
1082
|
}>;
|
|
@@ -1038,6 +1104,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1038
1104
|
where?: Array<{
|
|
1039
1105
|
connector?: "AND" | "OR";
|
|
1040
1106
|
field: string;
|
|
1107
|
+
mode?: "sensitive" | "insensitive";
|
|
1041
1108
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1042
1109
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1043
1110
|
}>;
|
|
@@ -1049,6 +1116,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1049
1116
|
where?: Array<{
|
|
1050
1117
|
connector?: "AND" | "OR";
|
|
1051
1118
|
field: string;
|
|
1119
|
+
mode?: "sensitive" | "insensitive";
|
|
1052
1120
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1053
1121
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1054
1122
|
}>;
|
|
@@ -1079,6 +1147,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1079
1147
|
where?: Array<{
|
|
1080
1148
|
connector?: "AND" | "OR";
|
|
1081
1149
|
field: "name" | "email" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "customField" | "numericField" | "testField" | "cbDefaultValueField" | "dateField" | "_id";
|
|
1150
|
+
mode?: "sensitive" | "insensitive";
|
|
1082
1151
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1083
1152
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1084
1153
|
}>;
|
|
@@ -1096,6 +1165,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1096
1165
|
where?: Array<{
|
|
1097
1166
|
connector?: "AND" | "OR";
|
|
1098
1167
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
1168
|
+
mode?: "sensitive" | "insensitive";
|
|
1099
1169
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1100
1170
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1101
1171
|
}>;
|
|
@@ -1118,6 +1188,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1118
1188
|
where?: Array<{
|
|
1119
1189
|
connector?: "AND" | "OR";
|
|
1120
1190
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
1191
|
+
mode?: "sensitive" | "insensitive";
|
|
1121
1192
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1122
1193
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1123
1194
|
}>;
|
|
@@ -1133,6 +1204,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1133
1204
|
where?: Array<{
|
|
1134
1205
|
connector?: "AND" | "OR";
|
|
1135
1206
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
1207
|
+
mode?: "sensitive" | "insensitive";
|
|
1136
1208
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1137
1209
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1138
1210
|
}>;
|
|
@@ -1142,10 +1214,12 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1142
1214
|
backupCodes?: string;
|
|
1143
1215
|
secret?: string;
|
|
1144
1216
|
userId?: string;
|
|
1217
|
+
verified?: null | boolean;
|
|
1145
1218
|
};
|
|
1146
1219
|
where?: Array<{
|
|
1147
1220
|
connector?: "AND" | "OR";
|
|
1148
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
1221
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
1222
|
+
mode?: "sensitive" | "insensitive";
|
|
1149
1223
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1150
1224
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1151
1225
|
}>;
|
|
@@ -1167,6 +1241,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1167
1241
|
where?: Array<{
|
|
1168
1242
|
connector?: "AND" | "OR";
|
|
1169
1243
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
1244
|
+
mode?: "sensitive" | "insensitive";
|
|
1170
1245
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1171
1246
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1172
1247
|
}>;
|
|
@@ -1186,6 +1261,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1186
1261
|
where?: Array<{
|
|
1187
1262
|
connector?: "AND" | "OR";
|
|
1188
1263
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
1264
|
+
mode?: "sensitive" | "insensitive";
|
|
1189
1265
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1190
1266
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1191
1267
|
}>;
|
|
@@ -1202,6 +1278,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1202
1278
|
where?: Array<{
|
|
1203
1279
|
connector?: "AND" | "OR";
|
|
1204
1280
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
1281
|
+
mode?: "sensitive" | "insensitive";
|
|
1205
1282
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1206
1283
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1207
1284
|
}>;
|
|
@@ -1216,6 +1293,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1216
1293
|
where?: Array<{
|
|
1217
1294
|
connector?: "AND" | "OR";
|
|
1218
1295
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
1296
|
+
mode?: "sensitive" | "insensitive";
|
|
1219
1297
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1220
1298
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1221
1299
|
}>;
|
|
@@ -1229,6 +1307,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1229
1307
|
where?: Array<{
|
|
1230
1308
|
connector?: "AND" | "OR";
|
|
1231
1309
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
1310
|
+
mode?: "sensitive" | "insensitive";
|
|
1232
1311
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1233
1312
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1234
1313
|
}>;
|
|
@@ -1269,6 +1348,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1269
1348
|
where?: Array<{
|
|
1270
1349
|
connector?: "AND" | "OR";
|
|
1271
1350
|
field: "name" | "email" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "customField" | "numericField" | "testField" | "cbDefaultValueField" | "dateField" | "_id";
|
|
1351
|
+
mode?: "sensitive" | "insensitive";
|
|
1272
1352
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1273
1353
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1274
1354
|
}>;
|
|
@@ -1286,6 +1366,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1286
1366
|
where?: Array<{
|
|
1287
1367
|
connector?: "AND" | "OR";
|
|
1288
1368
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
1369
|
+
mode?: "sensitive" | "insensitive";
|
|
1289
1370
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1290
1371
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1291
1372
|
}>;
|
|
@@ -1308,6 +1389,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1308
1389
|
where?: Array<{
|
|
1309
1390
|
connector?: "AND" | "OR";
|
|
1310
1391
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
1392
|
+
mode?: "sensitive" | "insensitive";
|
|
1311
1393
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1312
1394
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1313
1395
|
}>;
|
|
@@ -1323,6 +1405,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1323
1405
|
where?: Array<{
|
|
1324
1406
|
connector?: "AND" | "OR";
|
|
1325
1407
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
1408
|
+
mode?: "sensitive" | "insensitive";
|
|
1326
1409
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1327
1410
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1328
1411
|
}>;
|
|
@@ -1332,10 +1415,12 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1332
1415
|
backupCodes?: string;
|
|
1333
1416
|
secret?: string;
|
|
1334
1417
|
userId?: string;
|
|
1418
|
+
verified?: null | boolean;
|
|
1335
1419
|
};
|
|
1336
1420
|
where?: Array<{
|
|
1337
1421
|
connector?: "AND" | "OR";
|
|
1338
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
1422
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
1423
|
+
mode?: "sensitive" | "insensitive";
|
|
1339
1424
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1340
1425
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1341
1426
|
}>;
|
|
@@ -1357,6 +1442,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1357
1442
|
where?: Array<{
|
|
1358
1443
|
connector?: "AND" | "OR";
|
|
1359
1444
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
1445
|
+
mode?: "sensitive" | "insensitive";
|
|
1360
1446
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1361
1447
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1362
1448
|
}>;
|
|
@@ -1376,6 +1462,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1376
1462
|
where?: Array<{
|
|
1377
1463
|
connector?: "AND" | "OR";
|
|
1378
1464
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
1465
|
+
mode?: "sensitive" | "insensitive";
|
|
1379
1466
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1380
1467
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1381
1468
|
}>;
|
|
@@ -1392,6 +1479,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1392
1479
|
where?: Array<{
|
|
1393
1480
|
connector?: "AND" | "OR";
|
|
1394
1481
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
1482
|
+
mode?: "sensitive" | "insensitive";
|
|
1395
1483
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1396
1484
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1397
1485
|
}>;
|
|
@@ -1406,6 +1494,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1406
1494
|
where?: Array<{
|
|
1407
1495
|
connector?: "AND" | "OR";
|
|
1408
1496
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
1497
|
+
mode?: "sensitive" | "insensitive";
|
|
1409
1498
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1410
1499
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1411
1500
|
}>;
|
|
@@ -1419,6 +1508,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1419
1508
|
where?: Array<{
|
|
1420
1509
|
connector?: "AND" | "OR";
|
|
1421
1510
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
1511
|
+
mode?: "sensitive" | "insensitive";
|
|
1422
1512
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1423
1513
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1424
1514
|
}>;
|
|
@@ -1492,6 +1582,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1492
1582
|
backupCodes: string;
|
|
1493
1583
|
secret: string;
|
|
1494
1584
|
userId: string;
|
|
1585
|
+
verified?: null | boolean;
|
|
1495
1586
|
};
|
|
1496
1587
|
model: "twoFactor";
|
|
1497
1588
|
} | {
|
|
@@ -1671,6 +1762,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1671
1762
|
where?: Array<{
|
|
1672
1763
|
connector?: "AND" | "OR";
|
|
1673
1764
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
1765
|
+
mode?: "sensitive" | "insensitive";
|
|
1674
1766
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1675
1767
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1676
1768
|
}>;
|
|
@@ -1679,6 +1771,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1679
1771
|
where?: Array<{
|
|
1680
1772
|
connector?: "AND" | "OR";
|
|
1681
1773
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
1774
|
+
mode?: "sensitive" | "insensitive";
|
|
1682
1775
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1683
1776
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1684
1777
|
}>;
|
|
@@ -1687,6 +1780,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1687
1780
|
where?: Array<{
|
|
1688
1781
|
connector?: "AND" | "OR";
|
|
1689
1782
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
1783
|
+
mode?: "sensitive" | "insensitive";
|
|
1690
1784
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1691
1785
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1692
1786
|
}>;
|
|
@@ -1695,6 +1789,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1695
1789
|
where?: Array<{
|
|
1696
1790
|
connector?: "AND" | "OR";
|
|
1697
1791
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
1792
|
+
mode?: "sensitive" | "insensitive";
|
|
1698
1793
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1699
1794
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1700
1795
|
}>;
|
|
@@ -1702,7 +1797,8 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1702
1797
|
model: "twoFactor";
|
|
1703
1798
|
where?: Array<{
|
|
1704
1799
|
connector?: "AND" | "OR";
|
|
1705
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
1800
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
1801
|
+
mode?: "sensitive" | "insensitive";
|
|
1706
1802
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1707
1803
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1708
1804
|
}>;
|
|
@@ -1711,6 +1807,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1711
1807
|
where?: Array<{
|
|
1712
1808
|
connector?: "AND" | "OR";
|
|
1713
1809
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
1810
|
+
mode?: "sensitive" | "insensitive";
|
|
1714
1811
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1715
1812
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1716
1813
|
}>;
|
|
@@ -1719,6 +1816,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1719
1816
|
where?: Array<{
|
|
1720
1817
|
connector?: "AND" | "OR";
|
|
1721
1818
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
1819
|
+
mode?: "sensitive" | "insensitive";
|
|
1722
1820
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1723
1821
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1724
1822
|
}>;
|
|
@@ -1727,6 +1825,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1727
1825
|
where?: Array<{
|
|
1728
1826
|
connector?: "AND" | "OR";
|
|
1729
1827
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
1828
|
+
mode?: "sensitive" | "insensitive";
|
|
1730
1829
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1731
1830
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1732
1831
|
}>;
|
|
@@ -1735,6 +1834,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1735
1834
|
where?: Array<{
|
|
1736
1835
|
connector?: "AND" | "OR";
|
|
1737
1836
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
1837
|
+
mode?: "sensitive" | "insensitive";
|
|
1738
1838
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1739
1839
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1740
1840
|
}>;
|
|
@@ -1743,6 +1843,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1743
1843
|
where?: Array<{
|
|
1744
1844
|
connector?: "AND" | "OR";
|
|
1745
1845
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
1846
|
+
mode?: "sensitive" | "insensitive";
|
|
1746
1847
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1747
1848
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1748
1849
|
}>;
|
|
@@ -1751,6 +1852,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1751
1852
|
where?: Array<{
|
|
1752
1853
|
connector?: "AND" | "OR";
|
|
1753
1854
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
1855
|
+
mode?: "sensitive" | "insensitive";
|
|
1754
1856
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1755
1857
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1756
1858
|
}>;
|
|
@@ -1759,6 +1861,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1759
1861
|
where?: Array<{
|
|
1760
1862
|
connector?: "AND" | "OR";
|
|
1761
1863
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
1864
|
+
mode?: "sensitive" | "insensitive";
|
|
1762
1865
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1763
1866
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1764
1867
|
}>;
|
|
@@ -1767,6 +1870,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1767
1870
|
where?: Array<{
|
|
1768
1871
|
connector?: "AND" | "OR";
|
|
1769
1872
|
field: "oneToOne" | "_id";
|
|
1873
|
+
mode?: "sensitive" | "insensitive";
|
|
1770
1874
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1771
1875
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1772
1876
|
}>;
|
|
@@ -1775,6 +1879,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1775
1879
|
where?: Array<{
|
|
1776
1880
|
connector?: "AND" | "OR";
|
|
1777
1881
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
1882
|
+
mode?: "sensitive" | "insensitive";
|
|
1778
1883
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1779
1884
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1780
1885
|
}>;
|
|
@@ -1783,6 +1888,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1783
1888
|
where?: Array<{
|
|
1784
1889
|
connector?: "AND" | "OR";
|
|
1785
1890
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
1891
|
+
mode?: "sensitive" | "insensitive";
|
|
1786
1892
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1787
1893
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1788
1894
|
}>;
|
|
@@ -1791,6 +1897,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1791
1897
|
where?: Array<{
|
|
1792
1898
|
connector?: "AND" | "OR";
|
|
1793
1899
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
1900
|
+
mode?: "sensitive" | "insensitive";
|
|
1794
1901
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1795
1902
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1796
1903
|
}>;
|
|
@@ -1799,6 +1906,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1799
1906
|
where?: Array<{
|
|
1800
1907
|
connector?: "AND" | "OR";
|
|
1801
1908
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
1909
|
+
mode?: "sensitive" | "insensitive";
|
|
1802
1910
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1803
1911
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1804
1912
|
}>;
|
|
@@ -1807,6 +1915,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1807
1915
|
where?: Array<{
|
|
1808
1916
|
connector?: "AND" | "OR";
|
|
1809
1917
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
1918
|
+
mode?: "sensitive" | "insensitive";
|
|
1810
1919
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1811
1920
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1812
1921
|
}>;
|
|
@@ -1815,6 +1924,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1815
1924
|
where?: Array<{
|
|
1816
1925
|
connector?: "AND" | "OR";
|
|
1817
1926
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
1927
|
+
mode?: "sensitive" | "insensitive";
|
|
1818
1928
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1819
1929
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1820
1930
|
}>;
|
|
@@ -1823,6 +1933,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1823
1933
|
where?: Array<{
|
|
1824
1934
|
connector?: "AND" | "OR";
|
|
1825
1935
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
1936
|
+
mode?: "sensitive" | "insensitive";
|
|
1826
1937
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1827
1938
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1828
1939
|
}>;
|
|
@@ -1843,6 +1954,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1843
1954
|
where?: Array<{
|
|
1844
1955
|
connector?: "AND" | "OR";
|
|
1845
1956
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
1957
|
+
mode?: "sensitive" | "insensitive";
|
|
1846
1958
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1847
1959
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1848
1960
|
}>;
|
|
@@ -1851,6 +1963,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1851
1963
|
where?: Array<{
|
|
1852
1964
|
connector?: "AND" | "OR";
|
|
1853
1965
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
1966
|
+
mode?: "sensitive" | "insensitive";
|
|
1854
1967
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1855
1968
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1856
1969
|
}>;
|
|
@@ -1859,6 +1972,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1859
1972
|
where?: Array<{
|
|
1860
1973
|
connector?: "AND" | "OR";
|
|
1861
1974
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
1975
|
+
mode?: "sensitive" | "insensitive";
|
|
1862
1976
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1863
1977
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1864
1978
|
}>;
|
|
@@ -1867,6 +1981,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1867
1981
|
where?: Array<{
|
|
1868
1982
|
connector?: "AND" | "OR";
|
|
1869
1983
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
1984
|
+
mode?: "sensitive" | "insensitive";
|
|
1870
1985
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1871
1986
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1872
1987
|
}>;
|
|
@@ -1874,7 +1989,8 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1874
1989
|
model: "twoFactor";
|
|
1875
1990
|
where?: Array<{
|
|
1876
1991
|
connector?: "AND" | "OR";
|
|
1877
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
1992
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
1993
|
+
mode?: "sensitive" | "insensitive";
|
|
1878
1994
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1879
1995
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1880
1996
|
}>;
|
|
@@ -1883,6 +1999,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1883
1999
|
where?: Array<{
|
|
1884
2000
|
connector?: "AND" | "OR";
|
|
1885
2001
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
2002
|
+
mode?: "sensitive" | "insensitive";
|
|
1886
2003
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1887
2004
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1888
2005
|
}>;
|
|
@@ -1891,6 +2008,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1891
2008
|
where?: Array<{
|
|
1892
2009
|
connector?: "AND" | "OR";
|
|
1893
2010
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
2011
|
+
mode?: "sensitive" | "insensitive";
|
|
1894
2012
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1895
2013
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1896
2014
|
}>;
|
|
@@ -1899,6 +2017,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1899
2017
|
where?: Array<{
|
|
1900
2018
|
connector?: "AND" | "OR";
|
|
1901
2019
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
2020
|
+
mode?: "sensitive" | "insensitive";
|
|
1902
2021
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1903
2022
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1904
2023
|
}>;
|
|
@@ -1907,6 +2026,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1907
2026
|
where?: Array<{
|
|
1908
2027
|
connector?: "AND" | "OR";
|
|
1909
2028
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
2029
|
+
mode?: "sensitive" | "insensitive";
|
|
1910
2030
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1911
2031
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1912
2032
|
}>;
|
|
@@ -1915,6 +2035,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1915
2035
|
where?: Array<{
|
|
1916
2036
|
connector?: "AND" | "OR";
|
|
1917
2037
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
2038
|
+
mode?: "sensitive" | "insensitive";
|
|
1918
2039
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1919
2040
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1920
2041
|
}>;
|
|
@@ -1923,6 +2044,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1923
2044
|
where?: Array<{
|
|
1924
2045
|
connector?: "AND" | "OR";
|
|
1925
2046
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
2047
|
+
mode?: "sensitive" | "insensitive";
|
|
1926
2048
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1927
2049
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1928
2050
|
}>;
|
|
@@ -1931,6 +2053,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1931
2053
|
where?: Array<{
|
|
1932
2054
|
connector?: "AND" | "OR";
|
|
1933
2055
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
2056
|
+
mode?: "sensitive" | "insensitive";
|
|
1934
2057
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1935
2058
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1936
2059
|
}>;
|
|
@@ -1939,6 +2062,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1939
2062
|
where?: Array<{
|
|
1940
2063
|
connector?: "AND" | "OR";
|
|
1941
2064
|
field: "oneToOne" | "_id";
|
|
2065
|
+
mode?: "sensitive" | "insensitive";
|
|
1942
2066
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1943
2067
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1944
2068
|
}>;
|
|
@@ -1947,6 +2071,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1947
2071
|
where?: Array<{
|
|
1948
2072
|
connector?: "AND" | "OR";
|
|
1949
2073
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
2074
|
+
mode?: "sensitive" | "insensitive";
|
|
1950
2075
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1951
2076
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1952
2077
|
}>;
|
|
@@ -1955,6 +2080,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1955
2080
|
where?: Array<{
|
|
1956
2081
|
connector?: "AND" | "OR";
|
|
1957
2082
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
2083
|
+
mode?: "sensitive" | "insensitive";
|
|
1958
2084
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1959
2085
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1960
2086
|
}>;
|
|
@@ -1963,6 +2089,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1963
2089
|
where?: Array<{
|
|
1964
2090
|
connector?: "AND" | "OR";
|
|
1965
2091
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
2092
|
+
mode?: "sensitive" | "insensitive";
|
|
1966
2093
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1967
2094
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1968
2095
|
}>;
|
|
@@ -1971,6 +2098,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1971
2098
|
where?: Array<{
|
|
1972
2099
|
connector?: "AND" | "OR";
|
|
1973
2100
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
2101
|
+
mode?: "sensitive" | "insensitive";
|
|
1974
2102
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1975
2103
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1976
2104
|
}>;
|
|
@@ -1979,6 +2107,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1979
2107
|
where?: Array<{
|
|
1980
2108
|
connector?: "AND" | "OR";
|
|
1981
2109
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
2110
|
+
mode?: "sensitive" | "insensitive";
|
|
1982
2111
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1983
2112
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1984
2113
|
}>;
|
|
@@ -1987,6 +2116,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1987
2116
|
where?: Array<{
|
|
1988
2117
|
connector?: "AND" | "OR";
|
|
1989
2118
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
2119
|
+
mode?: "sensitive" | "insensitive";
|
|
1990
2120
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1991
2121
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
1992
2122
|
}>;
|
|
@@ -1995,6 +2125,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
1995
2125
|
where?: Array<{
|
|
1996
2126
|
connector?: "AND" | "OR";
|
|
1997
2127
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
2128
|
+
mode?: "sensitive" | "insensitive";
|
|
1998
2129
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
1999
2130
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2000
2131
|
}>;
|
|
@@ -2022,6 +2153,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2022
2153
|
where?: Array<{
|
|
2023
2154
|
connector?: "AND" | "OR";
|
|
2024
2155
|
field: string;
|
|
2156
|
+
mode?: "sensitive" | "insensitive";
|
|
2025
2157
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2026
2158
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2027
2159
|
}>;
|
|
@@ -2033,6 +2165,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2033
2165
|
where?: Array<{
|
|
2034
2166
|
connector?: "AND" | "OR";
|
|
2035
2167
|
field: string;
|
|
2168
|
+
mode?: "sensitive" | "insensitive";
|
|
2036
2169
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2037
2170
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2038
2171
|
}>;
|
|
@@ -2064,6 +2197,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2064
2197
|
where?: Array<{
|
|
2065
2198
|
connector?: "AND" | "OR";
|
|
2066
2199
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
2200
|
+
mode?: "sensitive" | "insensitive";
|
|
2067
2201
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2068
2202
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2069
2203
|
}>;
|
|
@@ -2081,6 +2215,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2081
2215
|
where?: Array<{
|
|
2082
2216
|
connector?: "AND" | "OR";
|
|
2083
2217
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
2218
|
+
mode?: "sensitive" | "insensitive";
|
|
2084
2219
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2085
2220
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2086
2221
|
}>;
|
|
@@ -2103,6 +2238,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2103
2238
|
where?: Array<{
|
|
2104
2239
|
connector?: "AND" | "OR";
|
|
2105
2240
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
2241
|
+
mode?: "sensitive" | "insensitive";
|
|
2106
2242
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2107
2243
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2108
2244
|
}>;
|
|
@@ -2118,6 +2254,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2118
2254
|
where?: Array<{
|
|
2119
2255
|
connector?: "AND" | "OR";
|
|
2120
2256
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
2257
|
+
mode?: "sensitive" | "insensitive";
|
|
2121
2258
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2122
2259
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2123
2260
|
}>;
|
|
@@ -2127,10 +2264,12 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2127
2264
|
backupCodes?: string;
|
|
2128
2265
|
secret?: string;
|
|
2129
2266
|
userId?: string;
|
|
2267
|
+
verified?: null | boolean;
|
|
2130
2268
|
};
|
|
2131
2269
|
where?: Array<{
|
|
2132
2270
|
connector?: "AND" | "OR";
|
|
2133
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
2271
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
2272
|
+
mode?: "sensitive" | "insensitive";
|
|
2134
2273
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2135
2274
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2136
2275
|
}>;
|
|
@@ -2152,6 +2291,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2152
2291
|
where?: Array<{
|
|
2153
2292
|
connector?: "AND" | "OR";
|
|
2154
2293
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
2294
|
+
mode?: "sensitive" | "insensitive";
|
|
2155
2295
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2156
2296
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2157
2297
|
}>;
|
|
@@ -2171,6 +2311,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2171
2311
|
where?: Array<{
|
|
2172
2312
|
connector?: "AND" | "OR";
|
|
2173
2313
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
2314
|
+
mode?: "sensitive" | "insensitive";
|
|
2174
2315
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2175
2316
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2176
2317
|
}>;
|
|
@@ -2187,6 +2328,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2187
2328
|
where?: Array<{
|
|
2188
2329
|
connector?: "AND" | "OR";
|
|
2189
2330
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
2331
|
+
mode?: "sensitive" | "insensitive";
|
|
2190
2332
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2191
2333
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2192
2334
|
}>;
|
|
@@ -2201,6 +2343,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2201
2343
|
where?: Array<{
|
|
2202
2344
|
connector?: "AND" | "OR";
|
|
2203
2345
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
2346
|
+
mode?: "sensitive" | "insensitive";
|
|
2204
2347
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2205
2348
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2206
2349
|
}>;
|
|
@@ -2214,6 +2357,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2214
2357
|
where?: Array<{
|
|
2215
2358
|
connector?: "AND" | "OR";
|
|
2216
2359
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
2360
|
+
mode?: "sensitive" | "insensitive";
|
|
2217
2361
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2218
2362
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2219
2363
|
}>;
|
|
@@ -2243,6 +2387,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2243
2387
|
where?: Array<{
|
|
2244
2388
|
connector?: "AND" | "OR";
|
|
2245
2389
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
2390
|
+
mode?: "sensitive" | "insensitive";
|
|
2246
2391
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2247
2392
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2248
2393
|
}>;
|
|
@@ -2272,6 +2417,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2272
2417
|
where?: Array<{
|
|
2273
2418
|
connector?: "AND" | "OR";
|
|
2274
2419
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
2420
|
+
mode?: "sensitive" | "insensitive";
|
|
2275
2421
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2276
2422
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2277
2423
|
}>;
|
|
@@ -2283,6 +2429,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2283
2429
|
where?: Array<{
|
|
2284
2430
|
connector?: "AND" | "OR";
|
|
2285
2431
|
field: "oneToOne" | "_id";
|
|
2432
|
+
mode?: "sensitive" | "insensitive";
|
|
2286
2433
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2287
2434
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2288
2435
|
}>;
|
|
@@ -2295,6 +2442,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2295
2442
|
where?: Array<{
|
|
2296
2443
|
connector?: "AND" | "OR";
|
|
2297
2444
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
2445
|
+
mode?: "sensitive" | "insensitive";
|
|
2298
2446
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2299
2447
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2300
2448
|
}>;
|
|
@@ -2311,6 +2459,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2311
2459
|
where?: Array<{
|
|
2312
2460
|
connector?: "AND" | "OR";
|
|
2313
2461
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
2462
|
+
mode?: "sensitive" | "insensitive";
|
|
2314
2463
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2315
2464
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2316
2465
|
}>;
|
|
@@ -2327,6 +2476,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2327
2476
|
where?: Array<{
|
|
2328
2477
|
connector?: "AND" | "OR";
|
|
2329
2478
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
2479
|
+
mode?: "sensitive" | "insensitive";
|
|
2330
2480
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2331
2481
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2332
2482
|
}>;
|
|
@@ -2342,6 +2492,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2342
2492
|
where?: Array<{
|
|
2343
2493
|
connector?: "AND" | "OR";
|
|
2344
2494
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
2495
|
+
mode?: "sensitive" | "insensitive";
|
|
2345
2496
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2346
2497
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2347
2498
|
}>;
|
|
@@ -2356,6 +2507,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2356
2507
|
where?: Array<{
|
|
2357
2508
|
connector?: "AND" | "OR";
|
|
2358
2509
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
2510
|
+
mode?: "sensitive" | "insensitive";
|
|
2359
2511
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2360
2512
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2361
2513
|
}>;
|
|
@@ -2369,6 +2521,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2369
2521
|
where?: Array<{
|
|
2370
2522
|
connector?: "AND" | "OR";
|
|
2371
2523
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
2524
|
+
mode?: "sensitive" | "insensitive";
|
|
2372
2525
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2373
2526
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2374
2527
|
}>;
|
|
@@ -2388,6 +2541,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2388
2541
|
where?: Array<{
|
|
2389
2542
|
connector?: "AND" | "OR";
|
|
2390
2543
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
2544
|
+
mode?: "sensitive" | "insensitive";
|
|
2391
2545
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2392
2546
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2393
2547
|
}>;
|
|
@@ -2429,6 +2583,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2429
2583
|
where?: Array<{
|
|
2430
2584
|
connector?: "AND" | "OR";
|
|
2431
2585
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
2586
|
+
mode?: "sensitive" | "insensitive";
|
|
2432
2587
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2433
2588
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2434
2589
|
}>;
|
|
@@ -2446,6 +2601,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2446
2601
|
where?: Array<{
|
|
2447
2602
|
connector?: "AND" | "OR";
|
|
2448
2603
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
2604
|
+
mode?: "sensitive" | "insensitive";
|
|
2449
2605
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2450
2606
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2451
2607
|
}>;
|
|
@@ -2468,6 +2624,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2468
2624
|
where?: Array<{
|
|
2469
2625
|
connector?: "AND" | "OR";
|
|
2470
2626
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
2627
|
+
mode?: "sensitive" | "insensitive";
|
|
2471
2628
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2472
2629
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2473
2630
|
}>;
|
|
@@ -2483,6 +2640,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2483
2640
|
where?: Array<{
|
|
2484
2641
|
connector?: "AND" | "OR";
|
|
2485
2642
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
2643
|
+
mode?: "sensitive" | "insensitive";
|
|
2486
2644
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2487
2645
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2488
2646
|
}>;
|
|
@@ -2492,10 +2650,12 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2492
2650
|
backupCodes?: string;
|
|
2493
2651
|
secret?: string;
|
|
2494
2652
|
userId?: string;
|
|
2653
|
+
verified?: null | boolean;
|
|
2495
2654
|
};
|
|
2496
2655
|
where?: Array<{
|
|
2497
2656
|
connector?: "AND" | "OR";
|
|
2498
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
2657
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
2658
|
+
mode?: "sensitive" | "insensitive";
|
|
2499
2659
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2500
2660
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2501
2661
|
}>;
|
|
@@ -2517,6 +2677,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2517
2677
|
where?: Array<{
|
|
2518
2678
|
connector?: "AND" | "OR";
|
|
2519
2679
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
2680
|
+
mode?: "sensitive" | "insensitive";
|
|
2520
2681
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2521
2682
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2522
2683
|
}>;
|
|
@@ -2536,6 +2697,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2536
2697
|
where?: Array<{
|
|
2537
2698
|
connector?: "AND" | "OR";
|
|
2538
2699
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
2700
|
+
mode?: "sensitive" | "insensitive";
|
|
2539
2701
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2540
2702
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2541
2703
|
}>;
|
|
@@ -2552,6 +2714,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2552
2714
|
where?: Array<{
|
|
2553
2715
|
connector?: "AND" | "OR";
|
|
2554
2716
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
2717
|
+
mode?: "sensitive" | "insensitive";
|
|
2555
2718
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2556
2719
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2557
2720
|
}>;
|
|
@@ -2566,6 +2729,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2566
2729
|
where?: Array<{
|
|
2567
2730
|
connector?: "AND" | "OR";
|
|
2568
2731
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
2732
|
+
mode?: "sensitive" | "insensitive";
|
|
2569
2733
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2570
2734
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2571
2735
|
}>;
|
|
@@ -2579,6 +2743,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2579
2743
|
where?: Array<{
|
|
2580
2744
|
connector?: "AND" | "OR";
|
|
2581
2745
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
2746
|
+
mode?: "sensitive" | "insensitive";
|
|
2582
2747
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2583
2748
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2584
2749
|
}>;
|
|
@@ -2608,6 +2773,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2608
2773
|
where?: Array<{
|
|
2609
2774
|
connector?: "AND" | "OR";
|
|
2610
2775
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
2776
|
+
mode?: "sensitive" | "insensitive";
|
|
2611
2777
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2612
2778
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2613
2779
|
}>;
|
|
@@ -2637,6 +2803,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2637
2803
|
where?: Array<{
|
|
2638
2804
|
connector?: "AND" | "OR";
|
|
2639
2805
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
2806
|
+
mode?: "sensitive" | "insensitive";
|
|
2640
2807
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2641
2808
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2642
2809
|
}>;
|
|
@@ -2648,6 +2815,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2648
2815
|
where?: Array<{
|
|
2649
2816
|
connector?: "AND" | "OR";
|
|
2650
2817
|
field: "oneToOne" | "_id";
|
|
2818
|
+
mode?: "sensitive" | "insensitive";
|
|
2651
2819
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2652
2820
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2653
2821
|
}>;
|
|
@@ -2660,6 +2828,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2660
2828
|
where?: Array<{
|
|
2661
2829
|
connector?: "AND" | "OR";
|
|
2662
2830
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
2831
|
+
mode?: "sensitive" | "insensitive";
|
|
2663
2832
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2664
2833
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2665
2834
|
}>;
|
|
@@ -2676,6 +2845,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2676
2845
|
where?: Array<{
|
|
2677
2846
|
connector?: "AND" | "OR";
|
|
2678
2847
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
2848
|
+
mode?: "sensitive" | "insensitive";
|
|
2679
2849
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2680
2850
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2681
2851
|
}>;
|
|
@@ -2692,6 +2862,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2692
2862
|
where?: Array<{
|
|
2693
2863
|
connector?: "AND" | "OR";
|
|
2694
2864
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
2865
|
+
mode?: "sensitive" | "insensitive";
|
|
2695
2866
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2696
2867
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2697
2868
|
}>;
|
|
@@ -2707,6 +2878,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2707
2878
|
where?: Array<{
|
|
2708
2879
|
connector?: "AND" | "OR";
|
|
2709
2880
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
2881
|
+
mode?: "sensitive" | "insensitive";
|
|
2710
2882
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2711
2883
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2712
2884
|
}>;
|
|
@@ -2721,6 +2893,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2721
2893
|
where?: Array<{
|
|
2722
2894
|
connector?: "AND" | "OR";
|
|
2723
2895
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
2896
|
+
mode?: "sensitive" | "insensitive";
|
|
2724
2897
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2725
2898
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2726
2899
|
}>;
|
|
@@ -2734,6 +2907,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2734
2907
|
where?: Array<{
|
|
2735
2908
|
connector?: "AND" | "OR";
|
|
2736
2909
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
2910
|
+
mode?: "sensitive" | "insensitive";
|
|
2737
2911
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2738
2912
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2739
2913
|
}>;
|
|
@@ -2753,6 +2927,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2753
2927
|
where?: Array<{
|
|
2754
2928
|
connector?: "AND" | "OR";
|
|
2755
2929
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
2930
|
+
mode?: "sensitive" | "insensitive";
|
|
2756
2931
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
2757
2932
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
2758
2933
|
}>;
|
|
@@ -2826,6 +3001,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
2826
3001
|
backupCodes: string;
|
|
2827
3002
|
secret: string;
|
|
2828
3003
|
userId: string;
|
|
3004
|
+
verified?: null | boolean;
|
|
2829
3005
|
};
|
|
2830
3006
|
model: "twoFactor";
|
|
2831
3007
|
} | {
|
|
@@ -3005,6 +3181,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3005
3181
|
where?: Array<{
|
|
3006
3182
|
connector?: "AND" | "OR";
|
|
3007
3183
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
3184
|
+
mode?: "sensitive" | "insensitive";
|
|
3008
3185
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3009
3186
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3010
3187
|
}>;
|
|
@@ -3013,6 +3190,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3013
3190
|
where?: Array<{
|
|
3014
3191
|
connector?: "AND" | "OR";
|
|
3015
3192
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
3193
|
+
mode?: "sensitive" | "insensitive";
|
|
3016
3194
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3017
3195
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3018
3196
|
}>;
|
|
@@ -3021,6 +3199,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3021
3199
|
where?: Array<{
|
|
3022
3200
|
connector?: "AND" | "OR";
|
|
3023
3201
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
3202
|
+
mode?: "sensitive" | "insensitive";
|
|
3024
3203
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3025
3204
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3026
3205
|
}>;
|
|
@@ -3029,6 +3208,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3029
3208
|
where?: Array<{
|
|
3030
3209
|
connector?: "AND" | "OR";
|
|
3031
3210
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
3211
|
+
mode?: "sensitive" | "insensitive";
|
|
3032
3212
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3033
3213
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3034
3214
|
}>;
|
|
@@ -3036,7 +3216,8 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3036
3216
|
model: "twoFactor";
|
|
3037
3217
|
where?: Array<{
|
|
3038
3218
|
connector?: "AND" | "OR";
|
|
3039
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
3219
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
3220
|
+
mode?: "sensitive" | "insensitive";
|
|
3040
3221
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3041
3222
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3042
3223
|
}>;
|
|
@@ -3045,6 +3226,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3045
3226
|
where?: Array<{
|
|
3046
3227
|
connector?: "AND" | "OR";
|
|
3047
3228
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
3229
|
+
mode?: "sensitive" | "insensitive";
|
|
3048
3230
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3049
3231
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3050
3232
|
}>;
|
|
@@ -3053,6 +3235,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3053
3235
|
where?: Array<{
|
|
3054
3236
|
connector?: "AND" | "OR";
|
|
3055
3237
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
3238
|
+
mode?: "sensitive" | "insensitive";
|
|
3056
3239
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3057
3240
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3058
3241
|
}>;
|
|
@@ -3061,6 +3244,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3061
3244
|
where?: Array<{
|
|
3062
3245
|
connector?: "AND" | "OR";
|
|
3063
3246
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
3247
|
+
mode?: "sensitive" | "insensitive";
|
|
3064
3248
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3065
3249
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3066
3250
|
}>;
|
|
@@ -3069,6 +3253,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3069
3253
|
where?: Array<{
|
|
3070
3254
|
connector?: "AND" | "OR";
|
|
3071
3255
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
3256
|
+
mode?: "sensitive" | "insensitive";
|
|
3072
3257
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3073
3258
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3074
3259
|
}>;
|
|
@@ -3077,6 +3262,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3077
3262
|
where?: Array<{
|
|
3078
3263
|
connector?: "AND" | "OR";
|
|
3079
3264
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
3265
|
+
mode?: "sensitive" | "insensitive";
|
|
3080
3266
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3081
3267
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3082
3268
|
}>;
|
|
@@ -3085,6 +3271,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3085
3271
|
where?: Array<{
|
|
3086
3272
|
connector?: "AND" | "OR";
|
|
3087
3273
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
3274
|
+
mode?: "sensitive" | "insensitive";
|
|
3088
3275
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3089
3276
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3090
3277
|
}>;
|
|
@@ -3093,6 +3280,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3093
3280
|
where?: Array<{
|
|
3094
3281
|
connector?: "AND" | "OR";
|
|
3095
3282
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
3283
|
+
mode?: "sensitive" | "insensitive";
|
|
3096
3284
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3097
3285
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3098
3286
|
}>;
|
|
@@ -3101,6 +3289,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3101
3289
|
where?: Array<{
|
|
3102
3290
|
connector?: "AND" | "OR";
|
|
3103
3291
|
field: "oneToOne" | "_id";
|
|
3292
|
+
mode?: "sensitive" | "insensitive";
|
|
3104
3293
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3105
3294
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3106
3295
|
}>;
|
|
@@ -3109,6 +3298,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3109
3298
|
where?: Array<{
|
|
3110
3299
|
connector?: "AND" | "OR";
|
|
3111
3300
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
3301
|
+
mode?: "sensitive" | "insensitive";
|
|
3112
3302
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3113
3303
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3114
3304
|
}>;
|
|
@@ -3117,6 +3307,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3117
3307
|
where?: Array<{
|
|
3118
3308
|
connector?: "AND" | "OR";
|
|
3119
3309
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
3310
|
+
mode?: "sensitive" | "insensitive";
|
|
3120
3311
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3121
3312
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3122
3313
|
}>;
|
|
@@ -3125,6 +3316,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3125
3316
|
where?: Array<{
|
|
3126
3317
|
connector?: "AND" | "OR";
|
|
3127
3318
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
3319
|
+
mode?: "sensitive" | "insensitive";
|
|
3128
3320
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3129
3321
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3130
3322
|
}>;
|
|
@@ -3133,6 +3325,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3133
3325
|
where?: Array<{
|
|
3134
3326
|
connector?: "AND" | "OR";
|
|
3135
3327
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
3328
|
+
mode?: "sensitive" | "insensitive";
|
|
3136
3329
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3137
3330
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3138
3331
|
}>;
|
|
@@ -3141,6 +3334,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3141
3334
|
where?: Array<{
|
|
3142
3335
|
connector?: "AND" | "OR";
|
|
3143
3336
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
3337
|
+
mode?: "sensitive" | "insensitive";
|
|
3144
3338
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3145
3339
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3146
3340
|
}>;
|
|
@@ -3149,6 +3343,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3149
3343
|
where?: Array<{
|
|
3150
3344
|
connector?: "AND" | "OR";
|
|
3151
3345
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
3346
|
+
mode?: "sensitive" | "insensitive";
|
|
3152
3347
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3153
3348
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3154
3349
|
}>;
|
|
@@ -3157,6 +3352,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3157
3352
|
where?: Array<{
|
|
3158
3353
|
connector?: "AND" | "OR";
|
|
3159
3354
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
3355
|
+
mode?: "sensitive" | "insensitive";
|
|
3160
3356
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3161
3357
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3162
3358
|
}>;
|
|
@@ -3177,6 +3373,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3177
3373
|
where?: Array<{
|
|
3178
3374
|
connector?: "AND" | "OR";
|
|
3179
3375
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
3376
|
+
mode?: "sensitive" | "insensitive";
|
|
3180
3377
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3181
3378
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3182
3379
|
}>;
|
|
@@ -3185,6 +3382,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3185
3382
|
where?: Array<{
|
|
3186
3383
|
connector?: "AND" | "OR";
|
|
3187
3384
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
3385
|
+
mode?: "sensitive" | "insensitive";
|
|
3188
3386
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3189
3387
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3190
3388
|
}>;
|
|
@@ -3193,6 +3391,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3193
3391
|
where?: Array<{
|
|
3194
3392
|
connector?: "AND" | "OR";
|
|
3195
3393
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
3394
|
+
mode?: "sensitive" | "insensitive";
|
|
3196
3395
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3197
3396
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3198
3397
|
}>;
|
|
@@ -3201,6 +3400,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3201
3400
|
where?: Array<{
|
|
3202
3401
|
connector?: "AND" | "OR";
|
|
3203
3402
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
3403
|
+
mode?: "sensitive" | "insensitive";
|
|
3204
3404
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3205
3405
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3206
3406
|
}>;
|
|
@@ -3208,7 +3408,8 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3208
3408
|
model: "twoFactor";
|
|
3209
3409
|
where?: Array<{
|
|
3210
3410
|
connector?: "AND" | "OR";
|
|
3211
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
3411
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
3412
|
+
mode?: "sensitive" | "insensitive";
|
|
3212
3413
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3213
3414
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3214
3415
|
}>;
|
|
@@ -3217,6 +3418,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3217
3418
|
where?: Array<{
|
|
3218
3419
|
connector?: "AND" | "OR";
|
|
3219
3420
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
3421
|
+
mode?: "sensitive" | "insensitive";
|
|
3220
3422
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3221
3423
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3222
3424
|
}>;
|
|
@@ -3225,6 +3427,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3225
3427
|
where?: Array<{
|
|
3226
3428
|
connector?: "AND" | "OR";
|
|
3227
3429
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
3430
|
+
mode?: "sensitive" | "insensitive";
|
|
3228
3431
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3229
3432
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3230
3433
|
}>;
|
|
@@ -3233,6 +3436,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3233
3436
|
where?: Array<{
|
|
3234
3437
|
connector?: "AND" | "OR";
|
|
3235
3438
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
3439
|
+
mode?: "sensitive" | "insensitive";
|
|
3236
3440
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3237
3441
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3238
3442
|
}>;
|
|
@@ -3241,6 +3445,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3241
3445
|
where?: Array<{
|
|
3242
3446
|
connector?: "AND" | "OR";
|
|
3243
3447
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
3448
|
+
mode?: "sensitive" | "insensitive";
|
|
3244
3449
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3245
3450
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3246
3451
|
}>;
|
|
@@ -3249,6 +3454,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3249
3454
|
where?: Array<{
|
|
3250
3455
|
connector?: "AND" | "OR";
|
|
3251
3456
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
3457
|
+
mode?: "sensitive" | "insensitive";
|
|
3252
3458
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3253
3459
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3254
3460
|
}>;
|
|
@@ -3257,6 +3463,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3257
3463
|
where?: Array<{
|
|
3258
3464
|
connector?: "AND" | "OR";
|
|
3259
3465
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
3466
|
+
mode?: "sensitive" | "insensitive";
|
|
3260
3467
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3261
3468
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3262
3469
|
}>;
|
|
@@ -3265,6 +3472,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3265
3472
|
where?: Array<{
|
|
3266
3473
|
connector?: "AND" | "OR";
|
|
3267
3474
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
3475
|
+
mode?: "sensitive" | "insensitive";
|
|
3268
3476
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3269
3477
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3270
3478
|
}>;
|
|
@@ -3273,6 +3481,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3273
3481
|
where?: Array<{
|
|
3274
3482
|
connector?: "AND" | "OR";
|
|
3275
3483
|
field: "oneToOne" | "_id";
|
|
3484
|
+
mode?: "sensitive" | "insensitive";
|
|
3276
3485
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3277
3486
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3278
3487
|
}>;
|
|
@@ -3281,6 +3490,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3281
3490
|
where?: Array<{
|
|
3282
3491
|
connector?: "AND" | "OR";
|
|
3283
3492
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
3493
|
+
mode?: "sensitive" | "insensitive";
|
|
3284
3494
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3285
3495
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3286
3496
|
}>;
|
|
@@ -3289,6 +3499,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3289
3499
|
where?: Array<{
|
|
3290
3500
|
connector?: "AND" | "OR";
|
|
3291
3501
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
3502
|
+
mode?: "sensitive" | "insensitive";
|
|
3292
3503
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3293
3504
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3294
3505
|
}>;
|
|
@@ -3297,6 +3508,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3297
3508
|
where?: Array<{
|
|
3298
3509
|
connector?: "AND" | "OR";
|
|
3299
3510
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
3511
|
+
mode?: "sensitive" | "insensitive";
|
|
3300
3512
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3301
3513
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3302
3514
|
}>;
|
|
@@ -3305,6 +3517,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3305
3517
|
where?: Array<{
|
|
3306
3518
|
connector?: "AND" | "OR";
|
|
3307
3519
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
3520
|
+
mode?: "sensitive" | "insensitive";
|
|
3308
3521
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3309
3522
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3310
3523
|
}>;
|
|
@@ -3313,6 +3526,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3313
3526
|
where?: Array<{
|
|
3314
3527
|
connector?: "AND" | "OR";
|
|
3315
3528
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
3529
|
+
mode?: "sensitive" | "insensitive";
|
|
3316
3530
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3317
3531
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3318
3532
|
}>;
|
|
@@ -3321,6 +3535,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3321
3535
|
where?: Array<{
|
|
3322
3536
|
connector?: "AND" | "OR";
|
|
3323
3537
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
3538
|
+
mode?: "sensitive" | "insensitive";
|
|
3324
3539
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3325
3540
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3326
3541
|
}>;
|
|
@@ -3329,6 +3544,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3329
3544
|
where?: Array<{
|
|
3330
3545
|
connector?: "AND" | "OR";
|
|
3331
3546
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
3547
|
+
mode?: "sensitive" | "insensitive";
|
|
3332
3548
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3333
3549
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3334
3550
|
}>;
|
|
@@ -3356,6 +3572,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3356
3572
|
where?: Array<{
|
|
3357
3573
|
connector?: "AND" | "OR";
|
|
3358
3574
|
field: string;
|
|
3575
|
+
mode?: "sensitive" | "insensitive";
|
|
3359
3576
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3360
3577
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3361
3578
|
}>;
|
|
@@ -3367,6 +3584,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3367
3584
|
where?: Array<{
|
|
3368
3585
|
connector?: "AND" | "OR";
|
|
3369
3586
|
field: string;
|
|
3587
|
+
mode?: "sensitive" | "insensitive";
|
|
3370
3588
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3371
3589
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3372
3590
|
}>;
|
|
@@ -3398,6 +3616,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3398
3616
|
where?: Array<{
|
|
3399
3617
|
connector?: "AND" | "OR";
|
|
3400
3618
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
3619
|
+
mode?: "sensitive" | "insensitive";
|
|
3401
3620
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3402
3621
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3403
3622
|
}>;
|
|
@@ -3415,6 +3634,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3415
3634
|
where?: Array<{
|
|
3416
3635
|
connector?: "AND" | "OR";
|
|
3417
3636
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
3637
|
+
mode?: "sensitive" | "insensitive";
|
|
3418
3638
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3419
3639
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3420
3640
|
}>;
|
|
@@ -3437,6 +3657,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3437
3657
|
where?: Array<{
|
|
3438
3658
|
connector?: "AND" | "OR";
|
|
3439
3659
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
3660
|
+
mode?: "sensitive" | "insensitive";
|
|
3440
3661
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3441
3662
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3442
3663
|
}>;
|
|
@@ -3452,6 +3673,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3452
3673
|
where?: Array<{
|
|
3453
3674
|
connector?: "AND" | "OR";
|
|
3454
3675
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
3676
|
+
mode?: "sensitive" | "insensitive";
|
|
3455
3677
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3456
3678
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3457
3679
|
}>;
|
|
@@ -3461,10 +3683,12 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3461
3683
|
backupCodes?: string;
|
|
3462
3684
|
secret?: string;
|
|
3463
3685
|
userId?: string;
|
|
3686
|
+
verified?: null | boolean;
|
|
3464
3687
|
};
|
|
3465
3688
|
where?: Array<{
|
|
3466
3689
|
connector?: "AND" | "OR";
|
|
3467
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
3690
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
3691
|
+
mode?: "sensitive" | "insensitive";
|
|
3468
3692
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3469
3693
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3470
3694
|
}>;
|
|
@@ -3486,6 +3710,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3486
3710
|
where?: Array<{
|
|
3487
3711
|
connector?: "AND" | "OR";
|
|
3488
3712
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
3713
|
+
mode?: "sensitive" | "insensitive";
|
|
3489
3714
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3490
3715
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3491
3716
|
}>;
|
|
@@ -3505,6 +3730,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3505
3730
|
where?: Array<{
|
|
3506
3731
|
connector?: "AND" | "OR";
|
|
3507
3732
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
3733
|
+
mode?: "sensitive" | "insensitive";
|
|
3508
3734
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3509
3735
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3510
3736
|
}>;
|
|
@@ -3521,6 +3747,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3521
3747
|
where?: Array<{
|
|
3522
3748
|
connector?: "AND" | "OR";
|
|
3523
3749
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
3750
|
+
mode?: "sensitive" | "insensitive";
|
|
3524
3751
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3525
3752
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3526
3753
|
}>;
|
|
@@ -3535,6 +3762,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3535
3762
|
where?: Array<{
|
|
3536
3763
|
connector?: "AND" | "OR";
|
|
3537
3764
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
3765
|
+
mode?: "sensitive" | "insensitive";
|
|
3538
3766
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3539
3767
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3540
3768
|
}>;
|
|
@@ -3548,6 +3776,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3548
3776
|
where?: Array<{
|
|
3549
3777
|
connector?: "AND" | "OR";
|
|
3550
3778
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
3779
|
+
mode?: "sensitive" | "insensitive";
|
|
3551
3780
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3552
3781
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3553
3782
|
}>;
|
|
@@ -3577,6 +3806,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3577
3806
|
where?: Array<{
|
|
3578
3807
|
connector?: "AND" | "OR";
|
|
3579
3808
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
3809
|
+
mode?: "sensitive" | "insensitive";
|
|
3580
3810
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3581
3811
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3582
3812
|
}>;
|
|
@@ -3606,6 +3836,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3606
3836
|
where?: Array<{
|
|
3607
3837
|
connector?: "AND" | "OR";
|
|
3608
3838
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
3839
|
+
mode?: "sensitive" | "insensitive";
|
|
3609
3840
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3610
3841
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3611
3842
|
}>;
|
|
@@ -3617,6 +3848,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3617
3848
|
where?: Array<{
|
|
3618
3849
|
connector?: "AND" | "OR";
|
|
3619
3850
|
field: "oneToOne" | "_id";
|
|
3851
|
+
mode?: "sensitive" | "insensitive";
|
|
3620
3852
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3621
3853
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3622
3854
|
}>;
|
|
@@ -3629,6 +3861,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3629
3861
|
where?: Array<{
|
|
3630
3862
|
connector?: "AND" | "OR";
|
|
3631
3863
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
3864
|
+
mode?: "sensitive" | "insensitive";
|
|
3632
3865
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3633
3866
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3634
3867
|
}>;
|
|
@@ -3645,6 +3878,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3645
3878
|
where?: Array<{
|
|
3646
3879
|
connector?: "AND" | "OR";
|
|
3647
3880
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
3881
|
+
mode?: "sensitive" | "insensitive";
|
|
3648
3882
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3649
3883
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3650
3884
|
}>;
|
|
@@ -3661,6 +3895,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3661
3895
|
where?: Array<{
|
|
3662
3896
|
connector?: "AND" | "OR";
|
|
3663
3897
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
3898
|
+
mode?: "sensitive" | "insensitive";
|
|
3664
3899
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3665
3900
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3666
3901
|
}>;
|
|
@@ -3676,6 +3911,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3676
3911
|
where?: Array<{
|
|
3677
3912
|
connector?: "AND" | "OR";
|
|
3678
3913
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
3914
|
+
mode?: "sensitive" | "insensitive";
|
|
3679
3915
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3680
3916
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3681
3917
|
}>;
|
|
@@ -3690,6 +3926,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3690
3926
|
where?: Array<{
|
|
3691
3927
|
connector?: "AND" | "OR";
|
|
3692
3928
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
3929
|
+
mode?: "sensitive" | "insensitive";
|
|
3693
3930
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3694
3931
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3695
3932
|
}>;
|
|
@@ -3703,6 +3940,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3703
3940
|
where?: Array<{
|
|
3704
3941
|
connector?: "AND" | "OR";
|
|
3705
3942
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
3943
|
+
mode?: "sensitive" | "insensitive";
|
|
3706
3944
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3707
3945
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3708
3946
|
}>;
|
|
@@ -3722,6 +3960,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3722
3960
|
where?: Array<{
|
|
3723
3961
|
connector?: "AND" | "OR";
|
|
3724
3962
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
3963
|
+
mode?: "sensitive" | "insensitive";
|
|
3725
3964
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3726
3965
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3727
3966
|
}>;
|
|
@@ -3763,6 +4002,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3763
4002
|
where?: Array<{
|
|
3764
4003
|
connector?: "AND" | "OR";
|
|
3765
4004
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
4005
|
+
mode?: "sensitive" | "insensitive";
|
|
3766
4006
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3767
4007
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3768
4008
|
}>;
|
|
@@ -3780,6 +4020,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3780
4020
|
where?: Array<{
|
|
3781
4021
|
connector?: "AND" | "OR";
|
|
3782
4022
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
4023
|
+
mode?: "sensitive" | "insensitive";
|
|
3783
4024
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3784
4025
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3785
4026
|
}>;
|
|
@@ -3802,6 +4043,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3802
4043
|
where?: Array<{
|
|
3803
4044
|
connector?: "AND" | "OR";
|
|
3804
4045
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
4046
|
+
mode?: "sensitive" | "insensitive";
|
|
3805
4047
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3806
4048
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3807
4049
|
}>;
|
|
@@ -3817,6 +4059,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3817
4059
|
where?: Array<{
|
|
3818
4060
|
connector?: "AND" | "OR";
|
|
3819
4061
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
4062
|
+
mode?: "sensitive" | "insensitive";
|
|
3820
4063
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3821
4064
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3822
4065
|
}>;
|
|
@@ -3826,10 +4069,12 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3826
4069
|
backupCodes?: string;
|
|
3827
4070
|
secret?: string;
|
|
3828
4071
|
userId?: string;
|
|
4072
|
+
verified?: null | boolean;
|
|
3829
4073
|
};
|
|
3830
4074
|
where?: Array<{
|
|
3831
4075
|
connector?: "AND" | "OR";
|
|
3832
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
4076
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
4077
|
+
mode?: "sensitive" | "insensitive";
|
|
3833
4078
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3834
4079
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3835
4080
|
}>;
|
|
@@ -3851,6 +4096,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3851
4096
|
where?: Array<{
|
|
3852
4097
|
connector?: "AND" | "OR";
|
|
3853
4098
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
4099
|
+
mode?: "sensitive" | "insensitive";
|
|
3854
4100
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3855
4101
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3856
4102
|
}>;
|
|
@@ -3870,6 +4116,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3870
4116
|
where?: Array<{
|
|
3871
4117
|
connector?: "AND" | "OR";
|
|
3872
4118
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
4119
|
+
mode?: "sensitive" | "insensitive";
|
|
3873
4120
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3874
4121
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3875
4122
|
}>;
|
|
@@ -3886,6 +4133,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3886
4133
|
where?: Array<{
|
|
3887
4134
|
connector?: "AND" | "OR";
|
|
3888
4135
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
4136
|
+
mode?: "sensitive" | "insensitive";
|
|
3889
4137
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3890
4138
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3891
4139
|
}>;
|
|
@@ -3900,6 +4148,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3900
4148
|
where?: Array<{
|
|
3901
4149
|
connector?: "AND" | "OR";
|
|
3902
4150
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
4151
|
+
mode?: "sensitive" | "insensitive";
|
|
3903
4152
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3904
4153
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3905
4154
|
}>;
|
|
@@ -3913,6 +4162,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3913
4162
|
where?: Array<{
|
|
3914
4163
|
connector?: "AND" | "OR";
|
|
3915
4164
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
4165
|
+
mode?: "sensitive" | "insensitive";
|
|
3916
4166
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3917
4167
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3918
4168
|
}>;
|
|
@@ -3942,6 +4192,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3942
4192
|
where?: Array<{
|
|
3943
4193
|
connector?: "AND" | "OR";
|
|
3944
4194
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
4195
|
+
mode?: "sensitive" | "insensitive";
|
|
3945
4196
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3946
4197
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3947
4198
|
}>;
|
|
@@ -3971,6 +4222,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3971
4222
|
where?: Array<{
|
|
3972
4223
|
connector?: "AND" | "OR";
|
|
3973
4224
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
4225
|
+
mode?: "sensitive" | "insensitive";
|
|
3974
4226
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3975
4227
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3976
4228
|
}>;
|
|
@@ -3982,6 +4234,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3982
4234
|
where?: Array<{
|
|
3983
4235
|
connector?: "AND" | "OR";
|
|
3984
4236
|
field: "oneToOne" | "_id";
|
|
4237
|
+
mode?: "sensitive" | "insensitive";
|
|
3985
4238
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3986
4239
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3987
4240
|
}>;
|
|
@@ -3994,6 +4247,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
3994
4247
|
where?: Array<{
|
|
3995
4248
|
connector?: "AND" | "OR";
|
|
3996
4249
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
4250
|
+
mode?: "sensitive" | "insensitive";
|
|
3997
4251
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
3998
4252
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
3999
4253
|
}>;
|
|
@@ -4010,6 +4264,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4010
4264
|
where?: Array<{
|
|
4011
4265
|
connector?: "AND" | "OR";
|
|
4012
4266
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
4267
|
+
mode?: "sensitive" | "insensitive";
|
|
4013
4268
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4014
4269
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4015
4270
|
}>;
|
|
@@ -4026,6 +4281,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4026
4281
|
where?: Array<{
|
|
4027
4282
|
connector?: "AND" | "OR";
|
|
4028
4283
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
4284
|
+
mode?: "sensitive" | "insensitive";
|
|
4029
4285
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4030
4286
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4031
4287
|
}>;
|
|
@@ -4041,6 +4297,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4041
4297
|
where?: Array<{
|
|
4042
4298
|
connector?: "AND" | "OR";
|
|
4043
4299
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
4300
|
+
mode?: "sensitive" | "insensitive";
|
|
4044
4301
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4045
4302
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4046
4303
|
}>;
|
|
@@ -4055,6 +4312,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4055
4312
|
where?: Array<{
|
|
4056
4313
|
connector?: "AND" | "OR";
|
|
4057
4314
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
4315
|
+
mode?: "sensitive" | "insensitive";
|
|
4058
4316
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4059
4317
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4060
4318
|
}>;
|
|
@@ -4068,6 +4326,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4068
4326
|
where?: Array<{
|
|
4069
4327
|
connector?: "AND" | "OR";
|
|
4070
4328
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
4329
|
+
mode?: "sensitive" | "insensitive";
|
|
4071
4330
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4072
4331
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4073
4332
|
}>;
|
|
@@ -4087,6 +4346,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4087
4346
|
where?: Array<{
|
|
4088
4347
|
connector?: "AND" | "OR";
|
|
4089
4348
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
4349
|
+
mode?: "sensitive" | "insensitive";
|
|
4090
4350
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4091
4351
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4092
4352
|
}>;
|
|
@@ -4160,6 +4420,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4160
4420
|
backupCodes: string;
|
|
4161
4421
|
secret: string;
|
|
4162
4422
|
userId: string;
|
|
4423
|
+
verified?: null | boolean;
|
|
4163
4424
|
};
|
|
4164
4425
|
model: "twoFactor";
|
|
4165
4426
|
} | {
|
|
@@ -4339,6 +4600,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4339
4600
|
where?: Array<{
|
|
4340
4601
|
connector?: "AND" | "OR";
|
|
4341
4602
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
4603
|
+
mode?: "sensitive" | "insensitive";
|
|
4342
4604
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4343
4605
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4344
4606
|
}>;
|
|
@@ -4347,6 +4609,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4347
4609
|
where?: Array<{
|
|
4348
4610
|
connector?: "AND" | "OR";
|
|
4349
4611
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
4612
|
+
mode?: "sensitive" | "insensitive";
|
|
4350
4613
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4351
4614
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4352
4615
|
}>;
|
|
@@ -4355,6 +4618,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4355
4618
|
where?: Array<{
|
|
4356
4619
|
connector?: "AND" | "OR";
|
|
4357
4620
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
4621
|
+
mode?: "sensitive" | "insensitive";
|
|
4358
4622
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4359
4623
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4360
4624
|
}>;
|
|
@@ -4363,6 +4627,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4363
4627
|
where?: Array<{
|
|
4364
4628
|
connector?: "AND" | "OR";
|
|
4365
4629
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
4630
|
+
mode?: "sensitive" | "insensitive";
|
|
4366
4631
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4367
4632
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4368
4633
|
}>;
|
|
@@ -4370,7 +4635,8 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4370
4635
|
model: "twoFactor";
|
|
4371
4636
|
where?: Array<{
|
|
4372
4637
|
connector?: "AND" | "OR";
|
|
4373
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
4638
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
4639
|
+
mode?: "sensitive" | "insensitive";
|
|
4374
4640
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4375
4641
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4376
4642
|
}>;
|
|
@@ -4379,6 +4645,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4379
4645
|
where?: Array<{
|
|
4380
4646
|
connector?: "AND" | "OR";
|
|
4381
4647
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
4648
|
+
mode?: "sensitive" | "insensitive";
|
|
4382
4649
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4383
4650
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4384
4651
|
}>;
|
|
@@ -4387,6 +4654,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4387
4654
|
where?: Array<{
|
|
4388
4655
|
connector?: "AND" | "OR";
|
|
4389
4656
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
4657
|
+
mode?: "sensitive" | "insensitive";
|
|
4390
4658
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4391
4659
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4392
4660
|
}>;
|
|
@@ -4395,6 +4663,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4395
4663
|
where?: Array<{
|
|
4396
4664
|
connector?: "AND" | "OR";
|
|
4397
4665
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
4666
|
+
mode?: "sensitive" | "insensitive";
|
|
4398
4667
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4399
4668
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4400
4669
|
}>;
|
|
@@ -4403,6 +4672,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4403
4672
|
where?: Array<{
|
|
4404
4673
|
connector?: "AND" | "OR";
|
|
4405
4674
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
4675
|
+
mode?: "sensitive" | "insensitive";
|
|
4406
4676
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4407
4677
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4408
4678
|
}>;
|
|
@@ -4411,6 +4681,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4411
4681
|
where?: Array<{
|
|
4412
4682
|
connector?: "AND" | "OR";
|
|
4413
4683
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
4684
|
+
mode?: "sensitive" | "insensitive";
|
|
4414
4685
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4415
4686
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4416
4687
|
}>;
|
|
@@ -4419,6 +4690,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4419
4690
|
where?: Array<{
|
|
4420
4691
|
connector?: "AND" | "OR";
|
|
4421
4692
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
4693
|
+
mode?: "sensitive" | "insensitive";
|
|
4422
4694
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4423
4695
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4424
4696
|
}>;
|
|
@@ -4427,6 +4699,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4427
4699
|
where?: Array<{
|
|
4428
4700
|
connector?: "AND" | "OR";
|
|
4429
4701
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
4702
|
+
mode?: "sensitive" | "insensitive";
|
|
4430
4703
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4431
4704
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4432
4705
|
}>;
|
|
@@ -4435,6 +4708,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4435
4708
|
where?: Array<{
|
|
4436
4709
|
connector?: "AND" | "OR";
|
|
4437
4710
|
field: "oneToOne" | "_id";
|
|
4711
|
+
mode?: "sensitive" | "insensitive";
|
|
4438
4712
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4439
4713
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4440
4714
|
}>;
|
|
@@ -4443,6 +4717,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4443
4717
|
where?: Array<{
|
|
4444
4718
|
connector?: "AND" | "OR";
|
|
4445
4719
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
4720
|
+
mode?: "sensitive" | "insensitive";
|
|
4446
4721
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4447
4722
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4448
4723
|
}>;
|
|
@@ -4451,6 +4726,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4451
4726
|
where?: Array<{
|
|
4452
4727
|
connector?: "AND" | "OR";
|
|
4453
4728
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
4729
|
+
mode?: "sensitive" | "insensitive";
|
|
4454
4730
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4455
4731
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4456
4732
|
}>;
|
|
@@ -4459,6 +4735,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4459
4735
|
where?: Array<{
|
|
4460
4736
|
connector?: "AND" | "OR";
|
|
4461
4737
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
4738
|
+
mode?: "sensitive" | "insensitive";
|
|
4462
4739
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4463
4740
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4464
4741
|
}>;
|
|
@@ -4467,6 +4744,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4467
4744
|
where?: Array<{
|
|
4468
4745
|
connector?: "AND" | "OR";
|
|
4469
4746
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
4747
|
+
mode?: "sensitive" | "insensitive";
|
|
4470
4748
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4471
4749
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4472
4750
|
}>;
|
|
@@ -4475,6 +4753,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4475
4753
|
where?: Array<{
|
|
4476
4754
|
connector?: "AND" | "OR";
|
|
4477
4755
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
4756
|
+
mode?: "sensitive" | "insensitive";
|
|
4478
4757
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4479
4758
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4480
4759
|
}>;
|
|
@@ -4483,6 +4762,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4483
4762
|
where?: Array<{
|
|
4484
4763
|
connector?: "AND" | "OR";
|
|
4485
4764
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
4765
|
+
mode?: "sensitive" | "insensitive";
|
|
4486
4766
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4487
4767
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4488
4768
|
}>;
|
|
@@ -4491,6 +4771,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4491
4771
|
where?: Array<{
|
|
4492
4772
|
connector?: "AND" | "OR";
|
|
4493
4773
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
4774
|
+
mode?: "sensitive" | "insensitive";
|
|
4494
4775
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4495
4776
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4496
4777
|
}>;
|
|
@@ -4511,6 +4792,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4511
4792
|
where?: Array<{
|
|
4512
4793
|
connector?: "AND" | "OR";
|
|
4513
4794
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
4795
|
+
mode?: "sensitive" | "insensitive";
|
|
4514
4796
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4515
4797
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4516
4798
|
}>;
|
|
@@ -4519,6 +4801,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4519
4801
|
where?: Array<{
|
|
4520
4802
|
connector?: "AND" | "OR";
|
|
4521
4803
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
4804
|
+
mode?: "sensitive" | "insensitive";
|
|
4522
4805
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4523
4806
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4524
4807
|
}>;
|
|
@@ -4527,6 +4810,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4527
4810
|
where?: Array<{
|
|
4528
4811
|
connector?: "AND" | "OR";
|
|
4529
4812
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
4813
|
+
mode?: "sensitive" | "insensitive";
|
|
4530
4814
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4531
4815
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4532
4816
|
}>;
|
|
@@ -4535,6 +4819,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4535
4819
|
where?: Array<{
|
|
4536
4820
|
connector?: "AND" | "OR";
|
|
4537
4821
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
4822
|
+
mode?: "sensitive" | "insensitive";
|
|
4538
4823
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4539
4824
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4540
4825
|
}>;
|
|
@@ -4542,7 +4827,8 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4542
4827
|
model: "twoFactor";
|
|
4543
4828
|
where?: Array<{
|
|
4544
4829
|
connector?: "AND" | "OR";
|
|
4545
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
4830
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
4831
|
+
mode?: "sensitive" | "insensitive";
|
|
4546
4832
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4547
4833
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4548
4834
|
}>;
|
|
@@ -4551,6 +4837,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4551
4837
|
where?: Array<{
|
|
4552
4838
|
connector?: "AND" | "OR";
|
|
4553
4839
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
4840
|
+
mode?: "sensitive" | "insensitive";
|
|
4554
4841
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4555
4842
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4556
4843
|
}>;
|
|
@@ -4559,6 +4846,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4559
4846
|
where?: Array<{
|
|
4560
4847
|
connector?: "AND" | "OR";
|
|
4561
4848
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
4849
|
+
mode?: "sensitive" | "insensitive";
|
|
4562
4850
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4563
4851
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4564
4852
|
}>;
|
|
@@ -4567,6 +4855,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4567
4855
|
where?: Array<{
|
|
4568
4856
|
connector?: "AND" | "OR";
|
|
4569
4857
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
4858
|
+
mode?: "sensitive" | "insensitive";
|
|
4570
4859
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4571
4860
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4572
4861
|
}>;
|
|
@@ -4575,6 +4864,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4575
4864
|
where?: Array<{
|
|
4576
4865
|
connector?: "AND" | "OR";
|
|
4577
4866
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
4867
|
+
mode?: "sensitive" | "insensitive";
|
|
4578
4868
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4579
4869
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4580
4870
|
}>;
|
|
@@ -4583,6 +4873,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4583
4873
|
where?: Array<{
|
|
4584
4874
|
connector?: "AND" | "OR";
|
|
4585
4875
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
4876
|
+
mode?: "sensitive" | "insensitive";
|
|
4586
4877
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4587
4878
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4588
4879
|
}>;
|
|
@@ -4591,6 +4882,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4591
4882
|
where?: Array<{
|
|
4592
4883
|
connector?: "AND" | "OR";
|
|
4593
4884
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
4885
|
+
mode?: "sensitive" | "insensitive";
|
|
4594
4886
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4595
4887
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4596
4888
|
}>;
|
|
@@ -4599,6 +4891,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4599
4891
|
where?: Array<{
|
|
4600
4892
|
connector?: "AND" | "OR";
|
|
4601
4893
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
4894
|
+
mode?: "sensitive" | "insensitive";
|
|
4602
4895
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4603
4896
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4604
4897
|
}>;
|
|
@@ -4607,6 +4900,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4607
4900
|
where?: Array<{
|
|
4608
4901
|
connector?: "AND" | "OR";
|
|
4609
4902
|
field: "oneToOne" | "_id";
|
|
4903
|
+
mode?: "sensitive" | "insensitive";
|
|
4610
4904
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4611
4905
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4612
4906
|
}>;
|
|
@@ -4615,6 +4909,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4615
4909
|
where?: Array<{
|
|
4616
4910
|
connector?: "AND" | "OR";
|
|
4617
4911
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
4912
|
+
mode?: "sensitive" | "insensitive";
|
|
4618
4913
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4619
4914
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4620
4915
|
}>;
|
|
@@ -4623,6 +4918,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4623
4918
|
where?: Array<{
|
|
4624
4919
|
connector?: "AND" | "OR";
|
|
4625
4920
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
4921
|
+
mode?: "sensitive" | "insensitive";
|
|
4626
4922
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4627
4923
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4628
4924
|
}>;
|
|
@@ -4631,6 +4927,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4631
4927
|
where?: Array<{
|
|
4632
4928
|
connector?: "AND" | "OR";
|
|
4633
4929
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
4930
|
+
mode?: "sensitive" | "insensitive";
|
|
4634
4931
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4635
4932
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4636
4933
|
}>;
|
|
@@ -4639,6 +4936,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4639
4936
|
where?: Array<{
|
|
4640
4937
|
connector?: "AND" | "OR";
|
|
4641
4938
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
4939
|
+
mode?: "sensitive" | "insensitive";
|
|
4642
4940
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4643
4941
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4644
4942
|
}>;
|
|
@@ -4647,6 +4945,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4647
4945
|
where?: Array<{
|
|
4648
4946
|
connector?: "AND" | "OR";
|
|
4649
4947
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
4948
|
+
mode?: "sensitive" | "insensitive";
|
|
4650
4949
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4651
4950
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4652
4951
|
}>;
|
|
@@ -4655,6 +4954,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4655
4954
|
where?: Array<{
|
|
4656
4955
|
connector?: "AND" | "OR";
|
|
4657
4956
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
4957
|
+
mode?: "sensitive" | "insensitive";
|
|
4658
4958
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4659
4959
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4660
4960
|
}>;
|
|
@@ -4663,6 +4963,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4663
4963
|
where?: Array<{
|
|
4664
4964
|
connector?: "AND" | "OR";
|
|
4665
4965
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
4966
|
+
mode?: "sensitive" | "insensitive";
|
|
4666
4967
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4667
4968
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4668
4969
|
}>;
|
|
@@ -4690,6 +4991,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4690
4991
|
where?: Array<{
|
|
4691
4992
|
connector?: "AND" | "OR";
|
|
4692
4993
|
field: string;
|
|
4994
|
+
mode?: "sensitive" | "insensitive";
|
|
4693
4995
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4694
4996
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4695
4997
|
}>;
|
|
@@ -4701,6 +5003,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4701
5003
|
where?: Array<{
|
|
4702
5004
|
connector?: "AND" | "OR";
|
|
4703
5005
|
field: string;
|
|
5006
|
+
mode?: "sensitive" | "insensitive";
|
|
4704
5007
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4705
5008
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4706
5009
|
}>;
|
|
@@ -4732,6 +5035,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4732
5035
|
where?: Array<{
|
|
4733
5036
|
connector?: "AND" | "OR";
|
|
4734
5037
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
5038
|
+
mode?: "sensitive" | "insensitive";
|
|
4735
5039
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4736
5040
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4737
5041
|
}>;
|
|
@@ -4749,6 +5053,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4749
5053
|
where?: Array<{
|
|
4750
5054
|
connector?: "AND" | "OR";
|
|
4751
5055
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
5056
|
+
mode?: "sensitive" | "insensitive";
|
|
4752
5057
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4753
5058
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4754
5059
|
}>;
|
|
@@ -4771,6 +5076,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4771
5076
|
where?: Array<{
|
|
4772
5077
|
connector?: "AND" | "OR";
|
|
4773
5078
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
5079
|
+
mode?: "sensitive" | "insensitive";
|
|
4774
5080
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4775
5081
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4776
5082
|
}>;
|
|
@@ -4786,6 +5092,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4786
5092
|
where?: Array<{
|
|
4787
5093
|
connector?: "AND" | "OR";
|
|
4788
5094
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
5095
|
+
mode?: "sensitive" | "insensitive";
|
|
4789
5096
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4790
5097
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4791
5098
|
}>;
|
|
@@ -4795,10 +5102,12 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4795
5102
|
backupCodes?: string;
|
|
4796
5103
|
secret?: string;
|
|
4797
5104
|
userId?: string;
|
|
5105
|
+
verified?: null | boolean;
|
|
4798
5106
|
};
|
|
4799
5107
|
where?: Array<{
|
|
4800
5108
|
connector?: "AND" | "OR";
|
|
4801
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
5109
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
5110
|
+
mode?: "sensitive" | "insensitive";
|
|
4802
5111
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4803
5112
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4804
5113
|
}>;
|
|
@@ -4820,6 +5129,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4820
5129
|
where?: Array<{
|
|
4821
5130
|
connector?: "AND" | "OR";
|
|
4822
5131
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
5132
|
+
mode?: "sensitive" | "insensitive";
|
|
4823
5133
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4824
5134
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4825
5135
|
}>;
|
|
@@ -4839,6 +5149,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4839
5149
|
where?: Array<{
|
|
4840
5150
|
connector?: "AND" | "OR";
|
|
4841
5151
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
5152
|
+
mode?: "sensitive" | "insensitive";
|
|
4842
5153
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4843
5154
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4844
5155
|
}>;
|
|
@@ -4855,6 +5166,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4855
5166
|
where?: Array<{
|
|
4856
5167
|
connector?: "AND" | "OR";
|
|
4857
5168
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
5169
|
+
mode?: "sensitive" | "insensitive";
|
|
4858
5170
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4859
5171
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4860
5172
|
}>;
|
|
@@ -4869,6 +5181,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4869
5181
|
where?: Array<{
|
|
4870
5182
|
connector?: "AND" | "OR";
|
|
4871
5183
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
5184
|
+
mode?: "sensitive" | "insensitive";
|
|
4872
5185
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4873
5186
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4874
5187
|
}>;
|
|
@@ -4882,6 +5195,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4882
5195
|
where?: Array<{
|
|
4883
5196
|
connector?: "AND" | "OR";
|
|
4884
5197
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
5198
|
+
mode?: "sensitive" | "insensitive";
|
|
4885
5199
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4886
5200
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4887
5201
|
}>;
|
|
@@ -4911,6 +5225,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4911
5225
|
where?: Array<{
|
|
4912
5226
|
connector?: "AND" | "OR";
|
|
4913
5227
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
5228
|
+
mode?: "sensitive" | "insensitive";
|
|
4914
5229
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4915
5230
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4916
5231
|
}>;
|
|
@@ -4940,6 +5255,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4940
5255
|
where?: Array<{
|
|
4941
5256
|
connector?: "AND" | "OR";
|
|
4942
5257
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
5258
|
+
mode?: "sensitive" | "insensitive";
|
|
4943
5259
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4944
5260
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4945
5261
|
}>;
|
|
@@ -4951,6 +5267,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4951
5267
|
where?: Array<{
|
|
4952
5268
|
connector?: "AND" | "OR";
|
|
4953
5269
|
field: "oneToOne" | "_id";
|
|
5270
|
+
mode?: "sensitive" | "insensitive";
|
|
4954
5271
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4955
5272
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4956
5273
|
}>;
|
|
@@ -4963,6 +5280,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4963
5280
|
where?: Array<{
|
|
4964
5281
|
connector?: "AND" | "OR";
|
|
4965
5282
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
5283
|
+
mode?: "sensitive" | "insensitive";
|
|
4966
5284
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4967
5285
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4968
5286
|
}>;
|
|
@@ -4979,6 +5297,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4979
5297
|
where?: Array<{
|
|
4980
5298
|
connector?: "AND" | "OR";
|
|
4981
5299
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
5300
|
+
mode?: "sensitive" | "insensitive";
|
|
4982
5301
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4983
5302
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
4984
5303
|
}>;
|
|
@@ -4995,6 +5314,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
4995
5314
|
where?: Array<{
|
|
4996
5315
|
connector?: "AND" | "OR";
|
|
4997
5316
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
5317
|
+
mode?: "sensitive" | "insensitive";
|
|
4998
5318
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
4999
5319
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5000
5320
|
}>;
|
|
@@ -5010,6 +5330,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5010
5330
|
where?: Array<{
|
|
5011
5331
|
connector?: "AND" | "OR";
|
|
5012
5332
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
5333
|
+
mode?: "sensitive" | "insensitive";
|
|
5013
5334
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5014
5335
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5015
5336
|
}>;
|
|
@@ -5024,6 +5345,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5024
5345
|
where?: Array<{
|
|
5025
5346
|
connector?: "AND" | "OR";
|
|
5026
5347
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
5348
|
+
mode?: "sensitive" | "insensitive";
|
|
5027
5349
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5028
5350
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5029
5351
|
}>;
|
|
@@ -5037,6 +5359,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5037
5359
|
where?: Array<{
|
|
5038
5360
|
connector?: "AND" | "OR";
|
|
5039
5361
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
5362
|
+
mode?: "sensitive" | "insensitive";
|
|
5040
5363
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5041
5364
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5042
5365
|
}>;
|
|
@@ -5056,6 +5379,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5056
5379
|
where?: Array<{
|
|
5057
5380
|
connector?: "AND" | "OR";
|
|
5058
5381
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
5382
|
+
mode?: "sensitive" | "insensitive";
|
|
5059
5383
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5060
5384
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5061
5385
|
}>;
|
|
@@ -5097,6 +5421,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5097
5421
|
where?: Array<{
|
|
5098
5422
|
connector?: "AND" | "OR";
|
|
5099
5423
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
5424
|
+
mode?: "sensitive" | "insensitive";
|
|
5100
5425
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5101
5426
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5102
5427
|
}>;
|
|
@@ -5114,6 +5439,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5114
5439
|
where?: Array<{
|
|
5115
5440
|
connector?: "AND" | "OR";
|
|
5116
5441
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
5442
|
+
mode?: "sensitive" | "insensitive";
|
|
5117
5443
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5118
5444
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5119
5445
|
}>;
|
|
@@ -5136,6 +5462,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5136
5462
|
where?: Array<{
|
|
5137
5463
|
connector?: "AND" | "OR";
|
|
5138
5464
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
5465
|
+
mode?: "sensitive" | "insensitive";
|
|
5139
5466
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5140
5467
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5141
5468
|
}>;
|
|
@@ -5151,6 +5478,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5151
5478
|
where?: Array<{
|
|
5152
5479
|
connector?: "AND" | "OR";
|
|
5153
5480
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
5481
|
+
mode?: "sensitive" | "insensitive";
|
|
5154
5482
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5155
5483
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5156
5484
|
}>;
|
|
@@ -5160,10 +5488,12 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5160
5488
|
backupCodes?: string;
|
|
5161
5489
|
secret?: string;
|
|
5162
5490
|
userId?: string;
|
|
5491
|
+
verified?: null | boolean;
|
|
5163
5492
|
};
|
|
5164
5493
|
where?: Array<{
|
|
5165
5494
|
connector?: "AND" | "OR";
|
|
5166
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
5495
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
5496
|
+
mode?: "sensitive" | "insensitive";
|
|
5167
5497
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5168
5498
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5169
5499
|
}>;
|
|
@@ -5185,6 +5515,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5185
5515
|
where?: Array<{
|
|
5186
5516
|
connector?: "AND" | "OR";
|
|
5187
5517
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
5518
|
+
mode?: "sensitive" | "insensitive";
|
|
5188
5519
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5189
5520
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5190
5521
|
}>;
|
|
@@ -5204,6 +5535,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5204
5535
|
where?: Array<{
|
|
5205
5536
|
connector?: "AND" | "OR";
|
|
5206
5537
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
5538
|
+
mode?: "sensitive" | "insensitive";
|
|
5207
5539
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5208
5540
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5209
5541
|
}>;
|
|
@@ -5220,6 +5552,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5220
5552
|
where?: Array<{
|
|
5221
5553
|
connector?: "AND" | "OR";
|
|
5222
5554
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
5555
|
+
mode?: "sensitive" | "insensitive";
|
|
5223
5556
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5224
5557
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5225
5558
|
}>;
|
|
@@ -5234,6 +5567,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5234
5567
|
where?: Array<{
|
|
5235
5568
|
connector?: "AND" | "OR";
|
|
5236
5569
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
5570
|
+
mode?: "sensitive" | "insensitive";
|
|
5237
5571
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5238
5572
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5239
5573
|
}>;
|
|
@@ -5247,6 +5581,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5247
5581
|
where?: Array<{
|
|
5248
5582
|
connector?: "AND" | "OR";
|
|
5249
5583
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
5584
|
+
mode?: "sensitive" | "insensitive";
|
|
5250
5585
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5251
5586
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5252
5587
|
}>;
|
|
@@ -5276,6 +5611,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5276
5611
|
where?: Array<{
|
|
5277
5612
|
connector?: "AND" | "OR";
|
|
5278
5613
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
5614
|
+
mode?: "sensitive" | "insensitive";
|
|
5279
5615
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5280
5616
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5281
5617
|
}>;
|
|
@@ -5305,6 +5641,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5305
5641
|
where?: Array<{
|
|
5306
5642
|
connector?: "AND" | "OR";
|
|
5307
5643
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
5644
|
+
mode?: "sensitive" | "insensitive";
|
|
5308
5645
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5309
5646
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5310
5647
|
}>;
|
|
@@ -5316,6 +5653,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5316
5653
|
where?: Array<{
|
|
5317
5654
|
connector?: "AND" | "OR";
|
|
5318
5655
|
field: "oneToOne" | "_id";
|
|
5656
|
+
mode?: "sensitive" | "insensitive";
|
|
5319
5657
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5320
5658
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5321
5659
|
}>;
|
|
@@ -5328,6 +5666,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5328
5666
|
where?: Array<{
|
|
5329
5667
|
connector?: "AND" | "OR";
|
|
5330
5668
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
5669
|
+
mode?: "sensitive" | "insensitive";
|
|
5331
5670
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5332
5671
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5333
5672
|
}>;
|
|
@@ -5344,6 +5683,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5344
5683
|
where?: Array<{
|
|
5345
5684
|
connector?: "AND" | "OR";
|
|
5346
5685
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
5686
|
+
mode?: "sensitive" | "insensitive";
|
|
5347
5687
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5348
5688
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5349
5689
|
}>;
|
|
@@ -5360,6 +5700,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5360
5700
|
where?: Array<{
|
|
5361
5701
|
connector?: "AND" | "OR";
|
|
5362
5702
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
5703
|
+
mode?: "sensitive" | "insensitive";
|
|
5363
5704
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5364
5705
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5365
5706
|
}>;
|
|
@@ -5375,6 +5716,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5375
5716
|
where?: Array<{
|
|
5376
5717
|
connector?: "AND" | "OR";
|
|
5377
5718
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
5719
|
+
mode?: "sensitive" | "insensitive";
|
|
5378
5720
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5379
5721
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5380
5722
|
}>;
|
|
@@ -5389,6 +5731,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5389
5731
|
where?: Array<{
|
|
5390
5732
|
connector?: "AND" | "OR";
|
|
5391
5733
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
5734
|
+
mode?: "sensitive" | "insensitive";
|
|
5392
5735
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5393
5736
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5394
5737
|
}>;
|
|
@@ -5402,6 +5745,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5402
5745
|
where?: Array<{
|
|
5403
5746
|
connector?: "AND" | "OR";
|
|
5404
5747
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
5748
|
+
mode?: "sensitive" | "insensitive";
|
|
5405
5749
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5406
5750
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5407
5751
|
}>;
|
|
@@ -5421,6 +5765,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5421
5765
|
where?: Array<{
|
|
5422
5766
|
connector?: "AND" | "OR";
|
|
5423
5767
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
5768
|
+
mode?: "sensitive" | "insensitive";
|
|
5424
5769
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5425
5770
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5426
5771
|
}>;
|
|
@@ -5494,6 +5839,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5494
5839
|
backupCodes: string;
|
|
5495
5840
|
secret: string;
|
|
5496
5841
|
userId: string;
|
|
5842
|
+
verified?: null | boolean;
|
|
5497
5843
|
};
|
|
5498
5844
|
model: "twoFactor";
|
|
5499
5845
|
} | {
|
|
@@ -5673,6 +6019,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5673
6019
|
where?: Array<{
|
|
5674
6020
|
connector?: "AND" | "OR";
|
|
5675
6021
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
6022
|
+
mode?: "sensitive" | "insensitive";
|
|
5676
6023
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5677
6024
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5678
6025
|
}>;
|
|
@@ -5681,6 +6028,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5681
6028
|
where?: Array<{
|
|
5682
6029
|
connector?: "AND" | "OR";
|
|
5683
6030
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
6031
|
+
mode?: "sensitive" | "insensitive";
|
|
5684
6032
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5685
6033
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5686
6034
|
}>;
|
|
@@ -5689,6 +6037,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5689
6037
|
where?: Array<{
|
|
5690
6038
|
connector?: "AND" | "OR";
|
|
5691
6039
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
6040
|
+
mode?: "sensitive" | "insensitive";
|
|
5692
6041
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5693
6042
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5694
6043
|
}>;
|
|
@@ -5697,6 +6046,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5697
6046
|
where?: Array<{
|
|
5698
6047
|
connector?: "AND" | "OR";
|
|
5699
6048
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
6049
|
+
mode?: "sensitive" | "insensitive";
|
|
5700
6050
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5701
6051
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5702
6052
|
}>;
|
|
@@ -5704,7 +6054,8 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5704
6054
|
model: "twoFactor";
|
|
5705
6055
|
where?: Array<{
|
|
5706
6056
|
connector?: "AND" | "OR";
|
|
5707
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
6057
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
6058
|
+
mode?: "sensitive" | "insensitive";
|
|
5708
6059
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5709
6060
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5710
6061
|
}>;
|
|
@@ -5713,6 +6064,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5713
6064
|
where?: Array<{
|
|
5714
6065
|
connector?: "AND" | "OR";
|
|
5715
6066
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
6067
|
+
mode?: "sensitive" | "insensitive";
|
|
5716
6068
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5717
6069
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5718
6070
|
}>;
|
|
@@ -5721,6 +6073,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5721
6073
|
where?: Array<{
|
|
5722
6074
|
connector?: "AND" | "OR";
|
|
5723
6075
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
6076
|
+
mode?: "sensitive" | "insensitive";
|
|
5724
6077
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5725
6078
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5726
6079
|
}>;
|
|
@@ -5729,6 +6082,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5729
6082
|
where?: Array<{
|
|
5730
6083
|
connector?: "AND" | "OR";
|
|
5731
6084
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
6085
|
+
mode?: "sensitive" | "insensitive";
|
|
5732
6086
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5733
6087
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5734
6088
|
}>;
|
|
@@ -5737,6 +6091,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5737
6091
|
where?: Array<{
|
|
5738
6092
|
connector?: "AND" | "OR";
|
|
5739
6093
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
6094
|
+
mode?: "sensitive" | "insensitive";
|
|
5740
6095
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5741
6096
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5742
6097
|
}>;
|
|
@@ -5745,6 +6100,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5745
6100
|
where?: Array<{
|
|
5746
6101
|
connector?: "AND" | "OR";
|
|
5747
6102
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
6103
|
+
mode?: "sensitive" | "insensitive";
|
|
5748
6104
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5749
6105
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5750
6106
|
}>;
|
|
@@ -5753,6 +6109,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5753
6109
|
where?: Array<{
|
|
5754
6110
|
connector?: "AND" | "OR";
|
|
5755
6111
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
6112
|
+
mode?: "sensitive" | "insensitive";
|
|
5756
6113
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5757
6114
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5758
6115
|
}>;
|
|
@@ -5761,6 +6118,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5761
6118
|
where?: Array<{
|
|
5762
6119
|
connector?: "AND" | "OR";
|
|
5763
6120
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
6121
|
+
mode?: "sensitive" | "insensitive";
|
|
5764
6122
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5765
6123
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5766
6124
|
}>;
|
|
@@ -5769,6 +6127,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5769
6127
|
where?: Array<{
|
|
5770
6128
|
connector?: "AND" | "OR";
|
|
5771
6129
|
field: "oneToOne" | "_id";
|
|
6130
|
+
mode?: "sensitive" | "insensitive";
|
|
5772
6131
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5773
6132
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5774
6133
|
}>;
|
|
@@ -5777,6 +6136,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5777
6136
|
where?: Array<{
|
|
5778
6137
|
connector?: "AND" | "OR";
|
|
5779
6138
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
6139
|
+
mode?: "sensitive" | "insensitive";
|
|
5780
6140
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5781
6141
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5782
6142
|
}>;
|
|
@@ -5785,6 +6145,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5785
6145
|
where?: Array<{
|
|
5786
6146
|
connector?: "AND" | "OR";
|
|
5787
6147
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
6148
|
+
mode?: "sensitive" | "insensitive";
|
|
5788
6149
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5789
6150
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5790
6151
|
}>;
|
|
@@ -5793,6 +6154,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5793
6154
|
where?: Array<{
|
|
5794
6155
|
connector?: "AND" | "OR";
|
|
5795
6156
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
6157
|
+
mode?: "sensitive" | "insensitive";
|
|
5796
6158
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5797
6159
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5798
6160
|
}>;
|
|
@@ -5801,6 +6163,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5801
6163
|
where?: Array<{
|
|
5802
6164
|
connector?: "AND" | "OR";
|
|
5803
6165
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
6166
|
+
mode?: "sensitive" | "insensitive";
|
|
5804
6167
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5805
6168
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5806
6169
|
}>;
|
|
@@ -5809,6 +6172,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5809
6172
|
where?: Array<{
|
|
5810
6173
|
connector?: "AND" | "OR";
|
|
5811
6174
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
6175
|
+
mode?: "sensitive" | "insensitive";
|
|
5812
6176
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5813
6177
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5814
6178
|
}>;
|
|
@@ -5817,6 +6181,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5817
6181
|
where?: Array<{
|
|
5818
6182
|
connector?: "AND" | "OR";
|
|
5819
6183
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
6184
|
+
mode?: "sensitive" | "insensitive";
|
|
5820
6185
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5821
6186
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5822
6187
|
}>;
|
|
@@ -5825,6 +6190,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5825
6190
|
where?: Array<{
|
|
5826
6191
|
connector?: "AND" | "OR";
|
|
5827
6192
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
6193
|
+
mode?: "sensitive" | "insensitive";
|
|
5828
6194
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5829
6195
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5830
6196
|
}>;
|
|
@@ -5845,6 +6211,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5845
6211
|
where?: Array<{
|
|
5846
6212
|
connector?: "AND" | "OR";
|
|
5847
6213
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
6214
|
+
mode?: "sensitive" | "insensitive";
|
|
5848
6215
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5849
6216
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5850
6217
|
}>;
|
|
@@ -5853,6 +6220,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5853
6220
|
where?: Array<{
|
|
5854
6221
|
connector?: "AND" | "OR";
|
|
5855
6222
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
6223
|
+
mode?: "sensitive" | "insensitive";
|
|
5856
6224
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5857
6225
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5858
6226
|
}>;
|
|
@@ -5861,6 +6229,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5861
6229
|
where?: Array<{
|
|
5862
6230
|
connector?: "AND" | "OR";
|
|
5863
6231
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
6232
|
+
mode?: "sensitive" | "insensitive";
|
|
5864
6233
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5865
6234
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5866
6235
|
}>;
|
|
@@ -5869,6 +6238,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5869
6238
|
where?: Array<{
|
|
5870
6239
|
connector?: "AND" | "OR";
|
|
5871
6240
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
6241
|
+
mode?: "sensitive" | "insensitive";
|
|
5872
6242
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5873
6243
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5874
6244
|
}>;
|
|
@@ -5876,7 +6246,8 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5876
6246
|
model: "twoFactor";
|
|
5877
6247
|
where?: Array<{
|
|
5878
6248
|
connector?: "AND" | "OR";
|
|
5879
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
6249
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
6250
|
+
mode?: "sensitive" | "insensitive";
|
|
5880
6251
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5881
6252
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5882
6253
|
}>;
|
|
@@ -5885,6 +6256,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5885
6256
|
where?: Array<{
|
|
5886
6257
|
connector?: "AND" | "OR";
|
|
5887
6258
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
6259
|
+
mode?: "sensitive" | "insensitive";
|
|
5888
6260
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5889
6261
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5890
6262
|
}>;
|
|
@@ -5893,6 +6265,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5893
6265
|
where?: Array<{
|
|
5894
6266
|
connector?: "AND" | "OR";
|
|
5895
6267
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
6268
|
+
mode?: "sensitive" | "insensitive";
|
|
5896
6269
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5897
6270
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5898
6271
|
}>;
|
|
@@ -5901,6 +6274,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5901
6274
|
where?: Array<{
|
|
5902
6275
|
connector?: "AND" | "OR";
|
|
5903
6276
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
6277
|
+
mode?: "sensitive" | "insensitive";
|
|
5904
6278
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5905
6279
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5906
6280
|
}>;
|
|
@@ -5909,6 +6283,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5909
6283
|
where?: Array<{
|
|
5910
6284
|
connector?: "AND" | "OR";
|
|
5911
6285
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
6286
|
+
mode?: "sensitive" | "insensitive";
|
|
5912
6287
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5913
6288
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5914
6289
|
}>;
|
|
@@ -5917,6 +6292,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5917
6292
|
where?: Array<{
|
|
5918
6293
|
connector?: "AND" | "OR";
|
|
5919
6294
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
6295
|
+
mode?: "sensitive" | "insensitive";
|
|
5920
6296
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5921
6297
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5922
6298
|
}>;
|
|
@@ -5925,6 +6301,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5925
6301
|
where?: Array<{
|
|
5926
6302
|
connector?: "AND" | "OR";
|
|
5927
6303
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
6304
|
+
mode?: "sensitive" | "insensitive";
|
|
5928
6305
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5929
6306
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5930
6307
|
}>;
|
|
@@ -5933,6 +6310,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5933
6310
|
where?: Array<{
|
|
5934
6311
|
connector?: "AND" | "OR";
|
|
5935
6312
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
6313
|
+
mode?: "sensitive" | "insensitive";
|
|
5936
6314
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5937
6315
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5938
6316
|
}>;
|
|
@@ -5941,6 +6319,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5941
6319
|
where?: Array<{
|
|
5942
6320
|
connector?: "AND" | "OR";
|
|
5943
6321
|
field: "oneToOne" | "_id";
|
|
6322
|
+
mode?: "sensitive" | "insensitive";
|
|
5944
6323
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5945
6324
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5946
6325
|
}>;
|
|
@@ -5949,6 +6328,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5949
6328
|
where?: Array<{
|
|
5950
6329
|
connector?: "AND" | "OR";
|
|
5951
6330
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
6331
|
+
mode?: "sensitive" | "insensitive";
|
|
5952
6332
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5953
6333
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5954
6334
|
}>;
|
|
@@ -5957,6 +6337,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5957
6337
|
where?: Array<{
|
|
5958
6338
|
connector?: "AND" | "OR";
|
|
5959
6339
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
6340
|
+
mode?: "sensitive" | "insensitive";
|
|
5960
6341
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5961
6342
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5962
6343
|
}>;
|
|
@@ -5965,6 +6346,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5965
6346
|
where?: Array<{
|
|
5966
6347
|
connector?: "AND" | "OR";
|
|
5967
6348
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
6349
|
+
mode?: "sensitive" | "insensitive";
|
|
5968
6350
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5969
6351
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5970
6352
|
}>;
|
|
@@ -5973,6 +6355,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5973
6355
|
where?: Array<{
|
|
5974
6356
|
connector?: "AND" | "OR";
|
|
5975
6357
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
6358
|
+
mode?: "sensitive" | "insensitive";
|
|
5976
6359
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5977
6360
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5978
6361
|
}>;
|
|
@@ -5981,6 +6364,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5981
6364
|
where?: Array<{
|
|
5982
6365
|
connector?: "AND" | "OR";
|
|
5983
6366
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
6367
|
+
mode?: "sensitive" | "insensitive";
|
|
5984
6368
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5985
6369
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5986
6370
|
}>;
|
|
@@ -5989,6 +6373,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5989
6373
|
where?: Array<{
|
|
5990
6374
|
connector?: "AND" | "OR";
|
|
5991
6375
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
6376
|
+
mode?: "sensitive" | "insensitive";
|
|
5992
6377
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
5993
6378
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
5994
6379
|
}>;
|
|
@@ -5997,6 +6382,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
5997
6382
|
where?: Array<{
|
|
5998
6383
|
connector?: "AND" | "OR";
|
|
5999
6384
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
6385
|
+
mode?: "sensitive" | "insensitive";
|
|
6000
6386
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6001
6387
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6002
6388
|
}>;
|
|
@@ -6024,6 +6410,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6024
6410
|
where?: Array<{
|
|
6025
6411
|
connector?: "AND" | "OR";
|
|
6026
6412
|
field: string;
|
|
6413
|
+
mode?: "sensitive" | "insensitive";
|
|
6027
6414
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6028
6415
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6029
6416
|
}>;
|
|
@@ -6035,6 +6422,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6035
6422
|
where?: Array<{
|
|
6036
6423
|
connector?: "AND" | "OR";
|
|
6037
6424
|
field: string;
|
|
6425
|
+
mode?: "sensitive" | "insensitive";
|
|
6038
6426
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6039
6427
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6040
6428
|
}>;
|
|
@@ -6066,6 +6454,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6066
6454
|
where?: Array<{
|
|
6067
6455
|
connector?: "AND" | "OR";
|
|
6068
6456
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
6457
|
+
mode?: "sensitive" | "insensitive";
|
|
6069
6458
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6070
6459
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6071
6460
|
}>;
|
|
@@ -6083,6 +6472,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6083
6472
|
where?: Array<{
|
|
6084
6473
|
connector?: "AND" | "OR";
|
|
6085
6474
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
6475
|
+
mode?: "sensitive" | "insensitive";
|
|
6086
6476
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6087
6477
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6088
6478
|
}>;
|
|
@@ -6105,6 +6495,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6105
6495
|
where?: Array<{
|
|
6106
6496
|
connector?: "AND" | "OR";
|
|
6107
6497
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
6498
|
+
mode?: "sensitive" | "insensitive";
|
|
6108
6499
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6109
6500
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6110
6501
|
}>;
|
|
@@ -6120,6 +6511,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6120
6511
|
where?: Array<{
|
|
6121
6512
|
connector?: "AND" | "OR";
|
|
6122
6513
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
6514
|
+
mode?: "sensitive" | "insensitive";
|
|
6123
6515
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6124
6516
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6125
6517
|
}>;
|
|
@@ -6129,10 +6521,12 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6129
6521
|
backupCodes?: string;
|
|
6130
6522
|
secret?: string;
|
|
6131
6523
|
userId?: string;
|
|
6524
|
+
verified?: null | boolean;
|
|
6132
6525
|
};
|
|
6133
6526
|
where?: Array<{
|
|
6134
6527
|
connector?: "AND" | "OR";
|
|
6135
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
6528
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
6529
|
+
mode?: "sensitive" | "insensitive";
|
|
6136
6530
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6137
6531
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6138
6532
|
}>;
|
|
@@ -6154,6 +6548,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6154
6548
|
where?: Array<{
|
|
6155
6549
|
connector?: "AND" | "OR";
|
|
6156
6550
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
6551
|
+
mode?: "sensitive" | "insensitive";
|
|
6157
6552
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6158
6553
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6159
6554
|
}>;
|
|
@@ -6173,6 +6568,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6173
6568
|
where?: Array<{
|
|
6174
6569
|
connector?: "AND" | "OR";
|
|
6175
6570
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
6571
|
+
mode?: "sensitive" | "insensitive";
|
|
6176
6572
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6177
6573
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6178
6574
|
}>;
|
|
@@ -6189,6 +6585,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6189
6585
|
where?: Array<{
|
|
6190
6586
|
connector?: "AND" | "OR";
|
|
6191
6587
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
6588
|
+
mode?: "sensitive" | "insensitive";
|
|
6192
6589
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6193
6590
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6194
6591
|
}>;
|
|
@@ -6203,6 +6600,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6203
6600
|
where?: Array<{
|
|
6204
6601
|
connector?: "AND" | "OR";
|
|
6205
6602
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
6603
|
+
mode?: "sensitive" | "insensitive";
|
|
6206
6604
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6207
6605
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6208
6606
|
}>;
|
|
@@ -6216,6 +6614,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6216
6614
|
where?: Array<{
|
|
6217
6615
|
connector?: "AND" | "OR";
|
|
6218
6616
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
6617
|
+
mode?: "sensitive" | "insensitive";
|
|
6219
6618
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6220
6619
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6221
6620
|
}>;
|
|
@@ -6245,6 +6644,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6245
6644
|
where?: Array<{
|
|
6246
6645
|
connector?: "AND" | "OR";
|
|
6247
6646
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
6647
|
+
mode?: "sensitive" | "insensitive";
|
|
6248
6648
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6249
6649
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6250
6650
|
}>;
|
|
@@ -6274,6 +6674,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6274
6674
|
where?: Array<{
|
|
6275
6675
|
connector?: "AND" | "OR";
|
|
6276
6676
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
6677
|
+
mode?: "sensitive" | "insensitive";
|
|
6277
6678
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6278
6679
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6279
6680
|
}>;
|
|
@@ -6285,6 +6686,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6285
6686
|
where?: Array<{
|
|
6286
6687
|
connector?: "AND" | "OR";
|
|
6287
6688
|
field: "oneToOne" | "_id";
|
|
6689
|
+
mode?: "sensitive" | "insensitive";
|
|
6288
6690
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6289
6691
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6290
6692
|
}>;
|
|
@@ -6297,6 +6699,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6297
6699
|
where?: Array<{
|
|
6298
6700
|
connector?: "AND" | "OR";
|
|
6299
6701
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
6702
|
+
mode?: "sensitive" | "insensitive";
|
|
6300
6703
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6301
6704
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6302
6705
|
}>;
|
|
@@ -6313,6 +6716,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6313
6716
|
where?: Array<{
|
|
6314
6717
|
connector?: "AND" | "OR";
|
|
6315
6718
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
6719
|
+
mode?: "sensitive" | "insensitive";
|
|
6316
6720
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6317
6721
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6318
6722
|
}>;
|
|
@@ -6329,6 +6733,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6329
6733
|
where?: Array<{
|
|
6330
6734
|
connector?: "AND" | "OR";
|
|
6331
6735
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
6736
|
+
mode?: "sensitive" | "insensitive";
|
|
6332
6737
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6333
6738
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6334
6739
|
}>;
|
|
@@ -6344,6 +6749,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6344
6749
|
where?: Array<{
|
|
6345
6750
|
connector?: "AND" | "OR";
|
|
6346
6751
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
6752
|
+
mode?: "sensitive" | "insensitive";
|
|
6347
6753
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6348
6754
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6349
6755
|
}>;
|
|
@@ -6358,6 +6764,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6358
6764
|
where?: Array<{
|
|
6359
6765
|
connector?: "AND" | "OR";
|
|
6360
6766
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
6767
|
+
mode?: "sensitive" | "insensitive";
|
|
6361
6768
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6362
6769
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6363
6770
|
}>;
|
|
@@ -6371,6 +6778,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6371
6778
|
where?: Array<{
|
|
6372
6779
|
connector?: "AND" | "OR";
|
|
6373
6780
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
6781
|
+
mode?: "sensitive" | "insensitive";
|
|
6374
6782
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6375
6783
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6376
6784
|
}>;
|
|
@@ -6390,6 +6798,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6390
6798
|
where?: Array<{
|
|
6391
6799
|
connector?: "AND" | "OR";
|
|
6392
6800
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
6801
|
+
mode?: "sensitive" | "insensitive";
|
|
6393
6802
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6394
6803
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6395
6804
|
}>;
|
|
@@ -6431,6 +6840,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6431
6840
|
where?: Array<{
|
|
6432
6841
|
connector?: "AND" | "OR";
|
|
6433
6842
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
6843
|
+
mode?: "sensitive" | "insensitive";
|
|
6434
6844
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6435
6845
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6436
6846
|
}>;
|
|
@@ -6448,6 +6858,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6448
6858
|
where?: Array<{
|
|
6449
6859
|
connector?: "AND" | "OR";
|
|
6450
6860
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
6861
|
+
mode?: "sensitive" | "insensitive";
|
|
6451
6862
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6452
6863
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6453
6864
|
}>;
|
|
@@ -6470,6 +6881,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6470
6881
|
where?: Array<{
|
|
6471
6882
|
connector?: "AND" | "OR";
|
|
6472
6883
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
6884
|
+
mode?: "sensitive" | "insensitive";
|
|
6473
6885
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6474
6886
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6475
6887
|
}>;
|
|
@@ -6485,6 +6897,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6485
6897
|
where?: Array<{
|
|
6486
6898
|
connector?: "AND" | "OR";
|
|
6487
6899
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
6900
|
+
mode?: "sensitive" | "insensitive";
|
|
6488
6901
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6489
6902
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6490
6903
|
}>;
|
|
@@ -6494,10 +6907,12 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6494
6907
|
backupCodes?: string;
|
|
6495
6908
|
secret?: string;
|
|
6496
6909
|
userId?: string;
|
|
6910
|
+
verified?: null | boolean;
|
|
6497
6911
|
};
|
|
6498
6912
|
where?: Array<{
|
|
6499
6913
|
connector?: "AND" | "OR";
|
|
6500
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
6914
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
6915
|
+
mode?: "sensitive" | "insensitive";
|
|
6501
6916
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6502
6917
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6503
6918
|
}>;
|
|
@@ -6519,6 +6934,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6519
6934
|
where?: Array<{
|
|
6520
6935
|
connector?: "AND" | "OR";
|
|
6521
6936
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
6937
|
+
mode?: "sensitive" | "insensitive";
|
|
6522
6938
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6523
6939
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6524
6940
|
}>;
|
|
@@ -6538,6 +6954,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6538
6954
|
where?: Array<{
|
|
6539
6955
|
connector?: "AND" | "OR";
|
|
6540
6956
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
6957
|
+
mode?: "sensitive" | "insensitive";
|
|
6541
6958
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6542
6959
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6543
6960
|
}>;
|
|
@@ -6554,6 +6971,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6554
6971
|
where?: Array<{
|
|
6555
6972
|
connector?: "AND" | "OR";
|
|
6556
6973
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
6974
|
+
mode?: "sensitive" | "insensitive";
|
|
6557
6975
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6558
6976
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6559
6977
|
}>;
|
|
@@ -6568,6 +6986,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6568
6986
|
where?: Array<{
|
|
6569
6987
|
connector?: "AND" | "OR";
|
|
6570
6988
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
6989
|
+
mode?: "sensitive" | "insensitive";
|
|
6571
6990
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6572
6991
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6573
6992
|
}>;
|
|
@@ -6581,6 +7000,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6581
7000
|
where?: Array<{
|
|
6582
7001
|
connector?: "AND" | "OR";
|
|
6583
7002
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
7003
|
+
mode?: "sensitive" | "insensitive";
|
|
6584
7004
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6585
7005
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6586
7006
|
}>;
|
|
@@ -6610,6 +7030,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6610
7030
|
where?: Array<{
|
|
6611
7031
|
connector?: "AND" | "OR";
|
|
6612
7032
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
7033
|
+
mode?: "sensitive" | "insensitive";
|
|
6613
7034
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6614
7035
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6615
7036
|
}>;
|
|
@@ -6639,6 +7060,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6639
7060
|
where?: Array<{
|
|
6640
7061
|
connector?: "AND" | "OR";
|
|
6641
7062
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
7063
|
+
mode?: "sensitive" | "insensitive";
|
|
6642
7064
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6643
7065
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6644
7066
|
}>;
|
|
@@ -6650,6 +7072,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6650
7072
|
where?: Array<{
|
|
6651
7073
|
connector?: "AND" | "OR";
|
|
6652
7074
|
field: "oneToOne" | "_id";
|
|
7075
|
+
mode?: "sensitive" | "insensitive";
|
|
6653
7076
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6654
7077
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6655
7078
|
}>;
|
|
@@ -6662,6 +7085,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6662
7085
|
where?: Array<{
|
|
6663
7086
|
connector?: "AND" | "OR";
|
|
6664
7087
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
7088
|
+
mode?: "sensitive" | "insensitive";
|
|
6665
7089
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6666
7090
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6667
7091
|
}>;
|
|
@@ -6678,6 +7102,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6678
7102
|
where?: Array<{
|
|
6679
7103
|
connector?: "AND" | "OR";
|
|
6680
7104
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
7105
|
+
mode?: "sensitive" | "insensitive";
|
|
6681
7106
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6682
7107
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6683
7108
|
}>;
|
|
@@ -6694,6 +7119,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6694
7119
|
where?: Array<{
|
|
6695
7120
|
connector?: "AND" | "OR";
|
|
6696
7121
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
7122
|
+
mode?: "sensitive" | "insensitive";
|
|
6697
7123
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6698
7124
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6699
7125
|
}>;
|
|
@@ -6709,6 +7135,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6709
7135
|
where?: Array<{
|
|
6710
7136
|
connector?: "AND" | "OR";
|
|
6711
7137
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
7138
|
+
mode?: "sensitive" | "insensitive";
|
|
6712
7139
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6713
7140
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6714
7141
|
}>;
|
|
@@ -6723,6 +7150,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6723
7150
|
where?: Array<{
|
|
6724
7151
|
connector?: "AND" | "OR";
|
|
6725
7152
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
7153
|
+
mode?: "sensitive" | "insensitive";
|
|
6726
7154
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6727
7155
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6728
7156
|
}>;
|
|
@@ -6736,6 +7164,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6736
7164
|
where?: Array<{
|
|
6737
7165
|
connector?: "AND" | "OR";
|
|
6738
7166
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
7167
|
+
mode?: "sensitive" | "insensitive";
|
|
6739
7168
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6740
7169
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6741
7170
|
}>;
|
|
@@ -6755,6 +7184,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6755
7184
|
where?: Array<{
|
|
6756
7185
|
connector?: "AND" | "OR";
|
|
6757
7186
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
7187
|
+
mode?: "sensitive" | "insensitive";
|
|
6758
7188
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
6759
7189
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
6760
7190
|
}>;
|
|
@@ -6828,6 +7258,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
6828
7258
|
backupCodes: string;
|
|
6829
7259
|
secret: string;
|
|
6830
7260
|
userId: string;
|
|
7261
|
+
verified?: null | boolean;
|
|
6831
7262
|
};
|
|
6832
7263
|
model: "twoFactor";
|
|
6833
7264
|
} | {
|
|
@@ -7007,6 +7438,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7007
7438
|
where?: Array<{
|
|
7008
7439
|
connector?: "AND" | "OR";
|
|
7009
7440
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
7441
|
+
mode?: "sensitive" | "insensitive";
|
|
7010
7442
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7011
7443
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7012
7444
|
}>;
|
|
@@ -7015,6 +7447,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7015
7447
|
where?: Array<{
|
|
7016
7448
|
connector?: "AND" | "OR";
|
|
7017
7449
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
7450
|
+
mode?: "sensitive" | "insensitive";
|
|
7018
7451
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7019
7452
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7020
7453
|
}>;
|
|
@@ -7023,6 +7456,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7023
7456
|
where?: Array<{
|
|
7024
7457
|
connector?: "AND" | "OR";
|
|
7025
7458
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
7459
|
+
mode?: "sensitive" | "insensitive";
|
|
7026
7460
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7027
7461
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7028
7462
|
}>;
|
|
@@ -7031,6 +7465,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7031
7465
|
where?: Array<{
|
|
7032
7466
|
connector?: "AND" | "OR";
|
|
7033
7467
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
7468
|
+
mode?: "sensitive" | "insensitive";
|
|
7034
7469
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7035
7470
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7036
7471
|
}>;
|
|
@@ -7038,7 +7473,8 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7038
7473
|
model: "twoFactor";
|
|
7039
7474
|
where?: Array<{
|
|
7040
7475
|
connector?: "AND" | "OR";
|
|
7041
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
7476
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
7477
|
+
mode?: "sensitive" | "insensitive";
|
|
7042
7478
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7043
7479
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7044
7480
|
}>;
|
|
@@ -7047,6 +7483,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7047
7483
|
where?: Array<{
|
|
7048
7484
|
connector?: "AND" | "OR";
|
|
7049
7485
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
7486
|
+
mode?: "sensitive" | "insensitive";
|
|
7050
7487
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7051
7488
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7052
7489
|
}>;
|
|
@@ -7055,6 +7492,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7055
7492
|
where?: Array<{
|
|
7056
7493
|
connector?: "AND" | "OR";
|
|
7057
7494
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
7495
|
+
mode?: "sensitive" | "insensitive";
|
|
7058
7496
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7059
7497
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7060
7498
|
}>;
|
|
@@ -7063,6 +7501,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7063
7501
|
where?: Array<{
|
|
7064
7502
|
connector?: "AND" | "OR";
|
|
7065
7503
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
7504
|
+
mode?: "sensitive" | "insensitive";
|
|
7066
7505
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7067
7506
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7068
7507
|
}>;
|
|
@@ -7071,6 +7510,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7071
7510
|
where?: Array<{
|
|
7072
7511
|
connector?: "AND" | "OR";
|
|
7073
7512
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
7513
|
+
mode?: "sensitive" | "insensitive";
|
|
7074
7514
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7075
7515
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7076
7516
|
}>;
|
|
@@ -7079,6 +7519,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7079
7519
|
where?: Array<{
|
|
7080
7520
|
connector?: "AND" | "OR";
|
|
7081
7521
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
7522
|
+
mode?: "sensitive" | "insensitive";
|
|
7082
7523
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7083
7524
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7084
7525
|
}>;
|
|
@@ -7087,6 +7528,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7087
7528
|
where?: Array<{
|
|
7088
7529
|
connector?: "AND" | "OR";
|
|
7089
7530
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
7531
|
+
mode?: "sensitive" | "insensitive";
|
|
7090
7532
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7091
7533
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7092
7534
|
}>;
|
|
@@ -7095,6 +7537,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7095
7537
|
where?: Array<{
|
|
7096
7538
|
connector?: "AND" | "OR";
|
|
7097
7539
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
7540
|
+
mode?: "sensitive" | "insensitive";
|
|
7098
7541
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7099
7542
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7100
7543
|
}>;
|
|
@@ -7103,6 +7546,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7103
7546
|
where?: Array<{
|
|
7104
7547
|
connector?: "AND" | "OR";
|
|
7105
7548
|
field: "oneToOne" | "_id";
|
|
7549
|
+
mode?: "sensitive" | "insensitive";
|
|
7106
7550
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7107
7551
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7108
7552
|
}>;
|
|
@@ -7111,6 +7555,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7111
7555
|
where?: Array<{
|
|
7112
7556
|
connector?: "AND" | "OR";
|
|
7113
7557
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
7558
|
+
mode?: "sensitive" | "insensitive";
|
|
7114
7559
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7115
7560
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7116
7561
|
}>;
|
|
@@ -7119,6 +7564,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7119
7564
|
where?: Array<{
|
|
7120
7565
|
connector?: "AND" | "OR";
|
|
7121
7566
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
7567
|
+
mode?: "sensitive" | "insensitive";
|
|
7122
7568
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7123
7569
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7124
7570
|
}>;
|
|
@@ -7127,6 +7573,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7127
7573
|
where?: Array<{
|
|
7128
7574
|
connector?: "AND" | "OR";
|
|
7129
7575
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
7576
|
+
mode?: "sensitive" | "insensitive";
|
|
7130
7577
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7131
7578
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7132
7579
|
}>;
|
|
@@ -7135,6 +7582,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7135
7582
|
where?: Array<{
|
|
7136
7583
|
connector?: "AND" | "OR";
|
|
7137
7584
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
7585
|
+
mode?: "sensitive" | "insensitive";
|
|
7138
7586
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7139
7587
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7140
7588
|
}>;
|
|
@@ -7143,6 +7591,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7143
7591
|
where?: Array<{
|
|
7144
7592
|
connector?: "AND" | "OR";
|
|
7145
7593
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
7594
|
+
mode?: "sensitive" | "insensitive";
|
|
7146
7595
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7147
7596
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7148
7597
|
}>;
|
|
@@ -7151,6 +7600,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7151
7600
|
where?: Array<{
|
|
7152
7601
|
connector?: "AND" | "OR";
|
|
7153
7602
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
7603
|
+
mode?: "sensitive" | "insensitive";
|
|
7154
7604
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7155
7605
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7156
7606
|
}>;
|
|
@@ -7159,6 +7609,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7159
7609
|
where?: Array<{
|
|
7160
7610
|
connector?: "AND" | "OR";
|
|
7161
7611
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
7612
|
+
mode?: "sensitive" | "insensitive";
|
|
7162
7613
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7163
7614
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7164
7615
|
}>;
|
|
@@ -7179,6 +7630,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7179
7630
|
where?: Array<{
|
|
7180
7631
|
connector?: "AND" | "OR";
|
|
7181
7632
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
7633
|
+
mode?: "sensitive" | "insensitive";
|
|
7182
7634
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7183
7635
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7184
7636
|
}>;
|
|
@@ -7187,6 +7639,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7187
7639
|
where?: Array<{
|
|
7188
7640
|
connector?: "AND" | "OR";
|
|
7189
7641
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
7642
|
+
mode?: "sensitive" | "insensitive";
|
|
7190
7643
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7191
7644
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7192
7645
|
}>;
|
|
@@ -7195,6 +7648,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7195
7648
|
where?: Array<{
|
|
7196
7649
|
connector?: "AND" | "OR";
|
|
7197
7650
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
7651
|
+
mode?: "sensitive" | "insensitive";
|
|
7198
7652
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7199
7653
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7200
7654
|
}>;
|
|
@@ -7203,6 +7657,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7203
7657
|
where?: Array<{
|
|
7204
7658
|
connector?: "AND" | "OR";
|
|
7205
7659
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
7660
|
+
mode?: "sensitive" | "insensitive";
|
|
7206
7661
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7207
7662
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7208
7663
|
}>;
|
|
@@ -7210,7 +7665,8 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7210
7665
|
model: "twoFactor";
|
|
7211
7666
|
where?: Array<{
|
|
7212
7667
|
connector?: "AND" | "OR";
|
|
7213
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
7668
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
7669
|
+
mode?: "sensitive" | "insensitive";
|
|
7214
7670
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7215
7671
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7216
7672
|
}>;
|
|
@@ -7219,6 +7675,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7219
7675
|
where?: Array<{
|
|
7220
7676
|
connector?: "AND" | "OR";
|
|
7221
7677
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
7678
|
+
mode?: "sensitive" | "insensitive";
|
|
7222
7679
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7223
7680
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7224
7681
|
}>;
|
|
@@ -7227,6 +7684,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7227
7684
|
where?: Array<{
|
|
7228
7685
|
connector?: "AND" | "OR";
|
|
7229
7686
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
7687
|
+
mode?: "sensitive" | "insensitive";
|
|
7230
7688
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7231
7689
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7232
7690
|
}>;
|
|
@@ -7235,6 +7693,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7235
7693
|
where?: Array<{
|
|
7236
7694
|
connector?: "AND" | "OR";
|
|
7237
7695
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
7696
|
+
mode?: "sensitive" | "insensitive";
|
|
7238
7697
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7239
7698
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7240
7699
|
}>;
|
|
@@ -7243,6 +7702,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7243
7702
|
where?: Array<{
|
|
7244
7703
|
connector?: "AND" | "OR";
|
|
7245
7704
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
7705
|
+
mode?: "sensitive" | "insensitive";
|
|
7246
7706
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7247
7707
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7248
7708
|
}>;
|
|
@@ -7251,6 +7711,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7251
7711
|
where?: Array<{
|
|
7252
7712
|
connector?: "AND" | "OR";
|
|
7253
7713
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
7714
|
+
mode?: "sensitive" | "insensitive";
|
|
7254
7715
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7255
7716
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7256
7717
|
}>;
|
|
@@ -7259,6 +7720,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7259
7720
|
where?: Array<{
|
|
7260
7721
|
connector?: "AND" | "OR";
|
|
7261
7722
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
7723
|
+
mode?: "sensitive" | "insensitive";
|
|
7262
7724
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7263
7725
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7264
7726
|
}>;
|
|
@@ -7267,6 +7729,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7267
7729
|
where?: Array<{
|
|
7268
7730
|
connector?: "AND" | "OR";
|
|
7269
7731
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
7732
|
+
mode?: "sensitive" | "insensitive";
|
|
7270
7733
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7271
7734
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7272
7735
|
}>;
|
|
@@ -7275,6 +7738,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7275
7738
|
where?: Array<{
|
|
7276
7739
|
connector?: "AND" | "OR";
|
|
7277
7740
|
field: "oneToOne" | "_id";
|
|
7741
|
+
mode?: "sensitive" | "insensitive";
|
|
7278
7742
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7279
7743
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7280
7744
|
}>;
|
|
@@ -7283,6 +7747,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7283
7747
|
where?: Array<{
|
|
7284
7748
|
connector?: "AND" | "OR";
|
|
7285
7749
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
7750
|
+
mode?: "sensitive" | "insensitive";
|
|
7286
7751
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7287
7752
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7288
7753
|
}>;
|
|
@@ -7291,6 +7756,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7291
7756
|
where?: Array<{
|
|
7292
7757
|
connector?: "AND" | "OR";
|
|
7293
7758
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
7759
|
+
mode?: "sensitive" | "insensitive";
|
|
7294
7760
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7295
7761
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7296
7762
|
}>;
|
|
@@ -7299,6 +7765,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7299
7765
|
where?: Array<{
|
|
7300
7766
|
connector?: "AND" | "OR";
|
|
7301
7767
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
7768
|
+
mode?: "sensitive" | "insensitive";
|
|
7302
7769
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7303
7770
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7304
7771
|
}>;
|
|
@@ -7307,6 +7774,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7307
7774
|
where?: Array<{
|
|
7308
7775
|
connector?: "AND" | "OR";
|
|
7309
7776
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
7777
|
+
mode?: "sensitive" | "insensitive";
|
|
7310
7778
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7311
7779
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7312
7780
|
}>;
|
|
@@ -7315,6 +7783,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7315
7783
|
where?: Array<{
|
|
7316
7784
|
connector?: "AND" | "OR";
|
|
7317
7785
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
7786
|
+
mode?: "sensitive" | "insensitive";
|
|
7318
7787
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7319
7788
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7320
7789
|
}>;
|
|
@@ -7323,6 +7792,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7323
7792
|
where?: Array<{
|
|
7324
7793
|
connector?: "AND" | "OR";
|
|
7325
7794
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
7795
|
+
mode?: "sensitive" | "insensitive";
|
|
7326
7796
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7327
7797
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7328
7798
|
}>;
|
|
@@ -7331,6 +7801,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7331
7801
|
where?: Array<{
|
|
7332
7802
|
connector?: "AND" | "OR";
|
|
7333
7803
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
7804
|
+
mode?: "sensitive" | "insensitive";
|
|
7334
7805
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7335
7806
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7336
7807
|
}>;
|
|
@@ -7358,6 +7829,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7358
7829
|
where?: Array<{
|
|
7359
7830
|
connector?: "AND" | "OR";
|
|
7360
7831
|
field: string;
|
|
7832
|
+
mode?: "sensitive" | "insensitive";
|
|
7361
7833
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7362
7834
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7363
7835
|
}>;
|
|
@@ -7369,6 +7841,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7369
7841
|
where?: Array<{
|
|
7370
7842
|
connector?: "AND" | "OR";
|
|
7371
7843
|
field: string;
|
|
7844
|
+
mode?: "sensitive" | "insensitive";
|
|
7372
7845
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7373
7846
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7374
7847
|
}>;
|
|
@@ -7400,6 +7873,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7400
7873
|
where?: Array<{
|
|
7401
7874
|
connector?: "AND" | "OR";
|
|
7402
7875
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
7876
|
+
mode?: "sensitive" | "insensitive";
|
|
7403
7877
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7404
7878
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7405
7879
|
}>;
|
|
@@ -7417,6 +7891,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7417
7891
|
where?: Array<{
|
|
7418
7892
|
connector?: "AND" | "OR";
|
|
7419
7893
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
7894
|
+
mode?: "sensitive" | "insensitive";
|
|
7420
7895
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7421
7896
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7422
7897
|
}>;
|
|
@@ -7439,6 +7914,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7439
7914
|
where?: Array<{
|
|
7440
7915
|
connector?: "AND" | "OR";
|
|
7441
7916
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
7917
|
+
mode?: "sensitive" | "insensitive";
|
|
7442
7918
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7443
7919
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7444
7920
|
}>;
|
|
@@ -7454,6 +7930,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7454
7930
|
where?: Array<{
|
|
7455
7931
|
connector?: "AND" | "OR";
|
|
7456
7932
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
7933
|
+
mode?: "sensitive" | "insensitive";
|
|
7457
7934
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7458
7935
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7459
7936
|
}>;
|
|
@@ -7463,10 +7940,12 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7463
7940
|
backupCodes?: string;
|
|
7464
7941
|
secret?: string;
|
|
7465
7942
|
userId?: string;
|
|
7943
|
+
verified?: null | boolean;
|
|
7466
7944
|
};
|
|
7467
7945
|
where?: Array<{
|
|
7468
7946
|
connector?: "AND" | "OR";
|
|
7469
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
7947
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
7948
|
+
mode?: "sensitive" | "insensitive";
|
|
7470
7949
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7471
7950
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7472
7951
|
}>;
|
|
@@ -7488,6 +7967,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7488
7967
|
where?: Array<{
|
|
7489
7968
|
connector?: "AND" | "OR";
|
|
7490
7969
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
7970
|
+
mode?: "sensitive" | "insensitive";
|
|
7491
7971
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7492
7972
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7493
7973
|
}>;
|
|
@@ -7507,6 +7987,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7507
7987
|
where?: Array<{
|
|
7508
7988
|
connector?: "AND" | "OR";
|
|
7509
7989
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
7990
|
+
mode?: "sensitive" | "insensitive";
|
|
7510
7991
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7511
7992
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7512
7993
|
}>;
|
|
@@ -7523,6 +8004,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7523
8004
|
where?: Array<{
|
|
7524
8005
|
connector?: "AND" | "OR";
|
|
7525
8006
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
8007
|
+
mode?: "sensitive" | "insensitive";
|
|
7526
8008
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7527
8009
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7528
8010
|
}>;
|
|
@@ -7537,6 +8019,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7537
8019
|
where?: Array<{
|
|
7538
8020
|
connector?: "AND" | "OR";
|
|
7539
8021
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
8022
|
+
mode?: "sensitive" | "insensitive";
|
|
7540
8023
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7541
8024
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7542
8025
|
}>;
|
|
@@ -7550,6 +8033,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7550
8033
|
where?: Array<{
|
|
7551
8034
|
connector?: "AND" | "OR";
|
|
7552
8035
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
8036
|
+
mode?: "sensitive" | "insensitive";
|
|
7553
8037
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7554
8038
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7555
8039
|
}>;
|
|
@@ -7579,6 +8063,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7579
8063
|
where?: Array<{
|
|
7580
8064
|
connector?: "AND" | "OR";
|
|
7581
8065
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
8066
|
+
mode?: "sensitive" | "insensitive";
|
|
7582
8067
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7583
8068
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7584
8069
|
}>;
|
|
@@ -7608,6 +8093,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7608
8093
|
where?: Array<{
|
|
7609
8094
|
connector?: "AND" | "OR";
|
|
7610
8095
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
8096
|
+
mode?: "sensitive" | "insensitive";
|
|
7611
8097
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7612
8098
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7613
8099
|
}>;
|
|
@@ -7619,6 +8105,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7619
8105
|
where?: Array<{
|
|
7620
8106
|
connector?: "AND" | "OR";
|
|
7621
8107
|
field: "oneToOne" | "_id";
|
|
8108
|
+
mode?: "sensitive" | "insensitive";
|
|
7622
8109
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7623
8110
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7624
8111
|
}>;
|
|
@@ -7631,6 +8118,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7631
8118
|
where?: Array<{
|
|
7632
8119
|
connector?: "AND" | "OR";
|
|
7633
8120
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
8121
|
+
mode?: "sensitive" | "insensitive";
|
|
7634
8122
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7635
8123
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7636
8124
|
}>;
|
|
@@ -7647,6 +8135,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7647
8135
|
where?: Array<{
|
|
7648
8136
|
connector?: "AND" | "OR";
|
|
7649
8137
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
8138
|
+
mode?: "sensitive" | "insensitive";
|
|
7650
8139
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7651
8140
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7652
8141
|
}>;
|
|
@@ -7663,6 +8152,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7663
8152
|
where?: Array<{
|
|
7664
8153
|
connector?: "AND" | "OR";
|
|
7665
8154
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
8155
|
+
mode?: "sensitive" | "insensitive";
|
|
7666
8156
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7667
8157
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7668
8158
|
}>;
|
|
@@ -7678,6 +8168,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7678
8168
|
where?: Array<{
|
|
7679
8169
|
connector?: "AND" | "OR";
|
|
7680
8170
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
8171
|
+
mode?: "sensitive" | "insensitive";
|
|
7681
8172
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7682
8173
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7683
8174
|
}>;
|
|
@@ -7692,6 +8183,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7692
8183
|
where?: Array<{
|
|
7693
8184
|
connector?: "AND" | "OR";
|
|
7694
8185
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
8186
|
+
mode?: "sensitive" | "insensitive";
|
|
7695
8187
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7696
8188
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7697
8189
|
}>;
|
|
@@ -7705,6 +8197,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7705
8197
|
where?: Array<{
|
|
7706
8198
|
connector?: "AND" | "OR";
|
|
7707
8199
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
8200
|
+
mode?: "sensitive" | "insensitive";
|
|
7708
8201
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7709
8202
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7710
8203
|
}>;
|
|
@@ -7724,6 +8217,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7724
8217
|
where?: Array<{
|
|
7725
8218
|
connector?: "AND" | "OR";
|
|
7726
8219
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
8220
|
+
mode?: "sensitive" | "insensitive";
|
|
7727
8221
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7728
8222
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7729
8223
|
}>;
|
|
@@ -7765,6 +8259,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7765
8259
|
where?: Array<{
|
|
7766
8260
|
connector?: "AND" | "OR";
|
|
7767
8261
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
8262
|
+
mode?: "sensitive" | "insensitive";
|
|
7768
8263
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7769
8264
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7770
8265
|
}>;
|
|
@@ -7782,6 +8277,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7782
8277
|
where?: Array<{
|
|
7783
8278
|
connector?: "AND" | "OR";
|
|
7784
8279
|
field: "expiresAt" | "token" | "createdAt" | "updatedAt" | "ipAddress" | "userAgent" | "userId" | "_id";
|
|
8280
|
+
mode?: "sensitive" | "insensitive";
|
|
7785
8281
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7786
8282
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7787
8283
|
}>;
|
|
@@ -7804,6 +8300,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7804
8300
|
where?: Array<{
|
|
7805
8301
|
connector?: "AND" | "OR";
|
|
7806
8302
|
field: "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt" | "_id";
|
|
8303
|
+
mode?: "sensitive" | "insensitive";
|
|
7807
8304
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7808
8305
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7809
8306
|
}>;
|
|
@@ -7819,6 +8316,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7819
8316
|
where?: Array<{
|
|
7820
8317
|
connector?: "AND" | "OR";
|
|
7821
8318
|
field: "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
8319
|
+
mode?: "sensitive" | "insensitive";
|
|
7822
8320
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7823
8321
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7824
8322
|
}>;
|
|
@@ -7828,10 +8326,12 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7828
8326
|
backupCodes?: string;
|
|
7829
8327
|
secret?: string;
|
|
7830
8328
|
userId?: string;
|
|
8329
|
+
verified?: null | boolean;
|
|
7831
8330
|
};
|
|
7832
8331
|
where?: Array<{
|
|
7833
8332
|
connector?: "AND" | "OR";
|
|
7834
|
-
field: "secret" | "backupCodes" | "userId" | "_id";
|
|
8333
|
+
field: "secret" | "backupCodes" | "userId" | "verified" | "_id";
|
|
8334
|
+
mode?: "sensitive" | "insensitive";
|
|
7835
8335
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7836
8336
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7837
8337
|
}>;
|
|
@@ -7853,6 +8353,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7853
8353
|
where?: Array<{
|
|
7854
8354
|
connector?: "AND" | "OR";
|
|
7855
8355
|
field: "name" | "icon" | "metadata" | "clientId" | "clientSecret" | "redirectUrls" | "type" | "disabled" | "userId" | "createdAt" | "updatedAt" | "_id";
|
|
8356
|
+
mode?: "sensitive" | "insensitive";
|
|
7856
8357
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7857
8358
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7858
8359
|
}>;
|
|
@@ -7872,6 +8373,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7872
8373
|
where?: Array<{
|
|
7873
8374
|
connector?: "AND" | "OR";
|
|
7874
8375
|
field: "accessToken" | "refreshToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "_id";
|
|
8376
|
+
mode?: "sensitive" | "insensitive";
|
|
7875
8377
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7876
8378
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7877
8379
|
}>;
|
|
@@ -7888,6 +8390,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7888
8390
|
where?: Array<{
|
|
7889
8391
|
connector?: "AND" | "OR";
|
|
7890
8392
|
field: "clientId" | "userId" | "scopes" | "createdAt" | "updatedAt" | "consentGiven" | "_id";
|
|
8393
|
+
mode?: "sensitive" | "insensitive";
|
|
7891
8394
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7892
8395
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7893
8396
|
}>;
|
|
@@ -7902,6 +8405,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7902
8405
|
where?: Array<{
|
|
7903
8406
|
connector?: "AND" | "OR";
|
|
7904
8407
|
field: "publicKey" | "privateKey" | "createdAt" | "expiresAt" | "_id";
|
|
8408
|
+
mode?: "sensitive" | "insensitive";
|
|
7905
8409
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7906
8410
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7907
8411
|
}>;
|
|
@@ -7915,6 +8419,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7915
8419
|
where?: Array<{
|
|
7916
8420
|
connector?: "AND" | "OR";
|
|
7917
8421
|
field: "key" | "count" | "lastRequest" | "_id";
|
|
8422
|
+
mode?: "sensitive" | "insensitive";
|
|
7918
8423
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7919
8424
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7920
8425
|
}>;
|
|
@@ -7944,6 +8449,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7944
8449
|
where?: Array<{
|
|
7945
8450
|
connector?: "AND" | "OR";
|
|
7946
8451
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
8452
|
+
mode?: "sensitive" | "insensitive";
|
|
7947
8453
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7948
8454
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7949
8455
|
}>;
|
|
@@ -7973,6 +8479,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7973
8479
|
where?: Array<{
|
|
7974
8480
|
connector?: "AND" | "OR";
|
|
7975
8481
|
field: "name" | "email" | "email_address" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "twoFactorEnabled" | "isAnonymous" | "username" | "displayUsername" | "phoneNumber" | "phoneNumberVerified" | "userId" | "testField" | "cbDefaultValueField" | "customField" | "numericField" | "dateField" | "_id";
|
|
8482
|
+
mode?: "sensitive" | "insensitive";
|
|
7976
8483
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7977
8484
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7978
8485
|
}>;
|
|
@@ -7984,6 +8491,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7984
8491
|
where?: Array<{
|
|
7985
8492
|
connector?: "AND" | "OR";
|
|
7986
8493
|
field: "oneToOne" | "_id";
|
|
8494
|
+
mode?: "sensitive" | "insensitive";
|
|
7987
8495
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
7988
8496
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
7989
8497
|
}>;
|
|
@@ -7996,6 +8504,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
7996
8504
|
where?: Array<{
|
|
7997
8505
|
connector?: "AND" | "OR";
|
|
7998
8506
|
field: "oneToOne" | "one_to_one" | "_id";
|
|
8507
|
+
mode?: "sensitive" | "insensitive";
|
|
7999
8508
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
8000
8509
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
8001
8510
|
}>;
|
|
@@ -8012,6 +8521,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
8012
8521
|
where?: Array<{
|
|
8013
8522
|
connector?: "AND" | "OR";
|
|
8014
8523
|
field: "nullableReference" | "testField" | "cbDefaultValueField" | "stringArray" | "numberArray" | "json" | "_id";
|
|
8524
|
+
mode?: "sensitive" | "insensitive";
|
|
8015
8525
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
8016
8526
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
8017
8527
|
}>;
|
|
@@ -8028,6 +8538,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
8028
8538
|
where?: Array<{
|
|
8029
8539
|
connector?: "AND" | "OR";
|
|
8030
8540
|
field: "name" | "slug" | "logo" | "metadata" | "createdAt" | "updatedAt" | "_id";
|
|
8541
|
+
mode?: "sensitive" | "insensitive";
|
|
8031
8542
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
8032
8543
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
8033
8544
|
}>;
|
|
@@ -8043,6 +8554,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
8043
8554
|
where?: Array<{
|
|
8044
8555
|
connector?: "AND" | "OR";
|
|
8045
8556
|
field: "organizationId" | "userId" | "role" | "createdAt" | "updatedAt" | "_id";
|
|
8557
|
+
mode?: "sensitive" | "insensitive";
|
|
8046
8558
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
8047
8559
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
8048
8560
|
}>;
|
|
@@ -8057,6 +8569,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
8057
8569
|
where?: Array<{
|
|
8058
8570
|
connector?: "AND" | "OR";
|
|
8059
8571
|
field: "name" | "organizationId" | "createdAt" | "updatedAt" | "_id";
|
|
8572
|
+
mode?: "sensitive" | "insensitive";
|
|
8060
8573
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
8061
8574
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
8062
8575
|
}>;
|
|
@@ -8070,6 +8583,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
8070
8583
|
where?: Array<{
|
|
8071
8584
|
connector?: "AND" | "OR";
|
|
8072
8585
|
field: "teamId" | "userId" | "createdAt" | "_id";
|
|
8586
|
+
mode?: "sensitive" | "insensitive";
|
|
8073
8587
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
8074
8588
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
8075
8589
|
}>;
|
|
@@ -8089,6 +8603,7 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
|
|
|
8089
8603
|
where?: Array<{
|
|
8090
8604
|
connector?: "AND" | "OR";
|
|
8091
8605
|
field: "email" | "role" | "status" | "organizationId" | "teamId" | "inviterId" | "expiresAt" | "createdAt" | "updatedAt" | "_id";
|
|
8606
|
+
mode?: "sensitive" | "insensitive";
|
|
8092
8607
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with";
|
|
8093
8608
|
value: string | number | boolean | Array<string> | Array<number> | null;
|
|
8094
8609
|
}>;
|