@excali-boards/boards-api-client 1.1.71 → 1.1.73
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/classes/auth.d.ts +1 -0
- package/dist/classes/sessions.d.ts +41 -23
- package/dist/classes/sessions.js +17 -44
- package/dist/classes/users.d.ts +1 -0
- package/dist/external/vars.d.ts +2 -0
- package/dist/external/vars.js +1 -0
- package/package.json +2 -2
- package/prisma/generated/edge.js +4 -16
- package/prisma/generated/index-browser.js +1 -13
- package/prisma/generated/index.d.ts +272 -1548
- package/prisma/generated/index.js +4 -16
- package/prisma/generated/package.json +1 -1
- package/prisma/generated/schema.prisma +2 -18
- package/prisma/generated/wasm.js +4 -16
- package/prisma/schema/user.prisma +2 -18
|
@@ -108,11 +108,6 @@ export type User = $Result.DefaultSelection<Prisma.$UserPayload>
|
|
|
108
108
|
*
|
|
109
109
|
*/
|
|
110
110
|
export type Session = $Result.DefaultSelection<Prisma.$SessionPayload>
|
|
111
|
-
/**
|
|
112
|
-
* Model QrLoginChallenge
|
|
113
|
-
*
|
|
114
|
-
*/
|
|
115
|
-
export type QrLoginChallenge = $Result.DefaultSelection<Prisma.$QrLoginChallengePayload>
|
|
116
111
|
/**
|
|
117
112
|
* Model LoginMethod
|
|
118
113
|
*
|
|
@@ -525,16 +520,6 @@ export class PrismaClient<
|
|
|
525
520
|
*/
|
|
526
521
|
get session(): Prisma.SessionDelegate<ExtArgs, ClientOptions>;
|
|
527
522
|
|
|
528
|
-
/**
|
|
529
|
-
* `prisma.qrLoginChallenge`: Exposes CRUD operations for the **QrLoginChallenge** model.
|
|
530
|
-
* Example usage:
|
|
531
|
-
* ```ts
|
|
532
|
-
* // Fetch zero or more QrLoginChallenges
|
|
533
|
-
* const qrLoginChallenges = await prisma.qrLoginChallenge.findMany()
|
|
534
|
-
* ```
|
|
535
|
-
*/
|
|
536
|
-
get qrLoginChallenge(): Prisma.QrLoginChallengeDelegate<ExtArgs, ClientOptions>;
|
|
537
|
-
|
|
538
523
|
/**
|
|
539
524
|
* `prisma.loginMethod`: Exposes CRUD operations for the **LoginMethod** model.
|
|
540
525
|
* Example usage:
|
|
@@ -1003,7 +988,6 @@ export namespace Prisma {
|
|
|
1003
988
|
AllEnumsModel: 'AllEnumsModel',
|
|
1004
989
|
User: 'User',
|
|
1005
990
|
Session: 'Session',
|
|
1006
|
-
QrLoginChallenge: 'QrLoginChallenge',
|
|
1007
991
|
LoginMethod: 'LoginMethod'
|
|
1008
992
|
};
|
|
1009
993
|
|
|
@@ -1023,7 +1007,7 @@ export namespace Prisma {
|
|
|
1023
1007
|
omit: GlobalOmitOptions
|
|
1024
1008
|
}
|
|
1025
1009
|
meta: {
|
|
1026
|
-
modelProps: "group" | "category" | "board" | "userBoardActivity" | "file" | "event" | "flashcardDeck" | "flashcardCard" | "deckProgress" | "groupPermission" | "categoryPermission" | "boardPermission" | "invite" | "personalWorkspace" | "personalCategory" | "personalBoard" | "allEnumsModel" | "user" | "session" | "
|
|
1010
|
+
modelProps: "group" | "category" | "board" | "userBoardActivity" | "file" | "event" | "flashcardDeck" | "flashcardCard" | "deckProgress" | "groupPermission" | "categoryPermission" | "boardPermission" | "invite" | "personalWorkspace" | "personalCategory" | "personalBoard" | "allEnumsModel" | "user" | "session" | "loginMethod"
|
|
1027
1011
|
txIsolationLevel: Prisma.TransactionIsolationLevel
|
|
1028
1012
|
}
|
|
1029
1013
|
model: {
|
|
@@ -2433,80 +2417,6 @@ export namespace Prisma {
|
|
|
2433
2417
|
}
|
|
2434
2418
|
}
|
|
2435
2419
|
}
|
|
2436
|
-
QrLoginChallenge: {
|
|
2437
|
-
payload: Prisma.$QrLoginChallengePayload<ExtArgs>
|
|
2438
|
-
fields: Prisma.QrLoginChallengeFieldRefs
|
|
2439
|
-
operations: {
|
|
2440
|
-
findUnique: {
|
|
2441
|
-
args: Prisma.QrLoginChallengeFindUniqueArgs<ExtArgs>
|
|
2442
|
-
result: $Utils.PayloadToResult<Prisma.$QrLoginChallengePayload> | null
|
|
2443
|
-
}
|
|
2444
|
-
findUniqueOrThrow: {
|
|
2445
|
-
args: Prisma.QrLoginChallengeFindUniqueOrThrowArgs<ExtArgs>
|
|
2446
|
-
result: $Utils.PayloadToResult<Prisma.$QrLoginChallengePayload>
|
|
2447
|
-
}
|
|
2448
|
-
findFirst: {
|
|
2449
|
-
args: Prisma.QrLoginChallengeFindFirstArgs<ExtArgs>
|
|
2450
|
-
result: $Utils.PayloadToResult<Prisma.$QrLoginChallengePayload> | null
|
|
2451
|
-
}
|
|
2452
|
-
findFirstOrThrow: {
|
|
2453
|
-
args: Prisma.QrLoginChallengeFindFirstOrThrowArgs<ExtArgs>
|
|
2454
|
-
result: $Utils.PayloadToResult<Prisma.$QrLoginChallengePayload>
|
|
2455
|
-
}
|
|
2456
|
-
findMany: {
|
|
2457
|
-
args: Prisma.QrLoginChallengeFindManyArgs<ExtArgs>
|
|
2458
|
-
result: $Utils.PayloadToResult<Prisma.$QrLoginChallengePayload>[]
|
|
2459
|
-
}
|
|
2460
|
-
create: {
|
|
2461
|
-
args: Prisma.QrLoginChallengeCreateArgs<ExtArgs>
|
|
2462
|
-
result: $Utils.PayloadToResult<Prisma.$QrLoginChallengePayload>
|
|
2463
|
-
}
|
|
2464
|
-
createMany: {
|
|
2465
|
-
args: Prisma.QrLoginChallengeCreateManyArgs<ExtArgs>
|
|
2466
|
-
result: BatchPayload
|
|
2467
|
-
}
|
|
2468
|
-
createManyAndReturn: {
|
|
2469
|
-
args: Prisma.QrLoginChallengeCreateManyAndReturnArgs<ExtArgs>
|
|
2470
|
-
result: $Utils.PayloadToResult<Prisma.$QrLoginChallengePayload>[]
|
|
2471
|
-
}
|
|
2472
|
-
delete: {
|
|
2473
|
-
args: Prisma.QrLoginChallengeDeleteArgs<ExtArgs>
|
|
2474
|
-
result: $Utils.PayloadToResult<Prisma.$QrLoginChallengePayload>
|
|
2475
|
-
}
|
|
2476
|
-
update: {
|
|
2477
|
-
args: Prisma.QrLoginChallengeUpdateArgs<ExtArgs>
|
|
2478
|
-
result: $Utils.PayloadToResult<Prisma.$QrLoginChallengePayload>
|
|
2479
|
-
}
|
|
2480
|
-
deleteMany: {
|
|
2481
|
-
args: Prisma.QrLoginChallengeDeleteManyArgs<ExtArgs>
|
|
2482
|
-
result: BatchPayload
|
|
2483
|
-
}
|
|
2484
|
-
updateMany: {
|
|
2485
|
-
args: Prisma.QrLoginChallengeUpdateManyArgs<ExtArgs>
|
|
2486
|
-
result: BatchPayload
|
|
2487
|
-
}
|
|
2488
|
-
updateManyAndReturn: {
|
|
2489
|
-
args: Prisma.QrLoginChallengeUpdateManyAndReturnArgs<ExtArgs>
|
|
2490
|
-
result: $Utils.PayloadToResult<Prisma.$QrLoginChallengePayload>[]
|
|
2491
|
-
}
|
|
2492
|
-
upsert: {
|
|
2493
|
-
args: Prisma.QrLoginChallengeUpsertArgs<ExtArgs>
|
|
2494
|
-
result: $Utils.PayloadToResult<Prisma.$QrLoginChallengePayload>
|
|
2495
|
-
}
|
|
2496
|
-
aggregate: {
|
|
2497
|
-
args: Prisma.QrLoginChallengeAggregateArgs<ExtArgs>
|
|
2498
|
-
result: $Utils.Optional<AggregateQrLoginChallenge>
|
|
2499
|
-
}
|
|
2500
|
-
groupBy: {
|
|
2501
|
-
args: Prisma.QrLoginChallengeGroupByArgs<ExtArgs>
|
|
2502
|
-
result: $Utils.Optional<QrLoginChallengeGroupByOutputType>[]
|
|
2503
|
-
}
|
|
2504
|
-
count: {
|
|
2505
|
-
args: Prisma.QrLoginChallengeCountArgs<ExtArgs>
|
|
2506
|
-
result: $Utils.Optional<QrLoginChallengeCountAggregateOutputType> | number
|
|
2507
|
-
}
|
|
2508
|
-
}
|
|
2509
|
-
}
|
|
2510
2420
|
LoginMethod: {
|
|
2511
2421
|
payload: Prisma.$LoginMethodPayload<ExtArgs>
|
|
2512
2422
|
fields: Prisma.LoginMethodFieldRefs
|
|
@@ -2696,7 +2606,6 @@ export namespace Prisma {
|
|
|
2696
2606
|
allEnumsModel?: AllEnumsModelOmit
|
|
2697
2607
|
user?: UserOmit
|
|
2698
2608
|
session?: SessionOmit
|
|
2699
|
-
qrLoginChallenge?: QrLoginChallengeOmit
|
|
2700
2609
|
loginMethod?: LoginMethodOmit
|
|
2701
2610
|
}
|
|
2702
2611
|
|
|
@@ -22351,6 +22260,7 @@ export namespace Prisma {
|
|
|
22351
22260
|
avatarUrl: string | null
|
|
22352
22261
|
displayName: string | null
|
|
22353
22262
|
mainGroupId: string | null
|
|
22263
|
+
qrLoginRedirectDelay: boolean | null
|
|
22354
22264
|
mainLoginType: $Enums.Platforms | null
|
|
22355
22265
|
invitedBy: string | null
|
|
22356
22266
|
registrationMethod: $Enums.RegistrationMethod | null
|
|
@@ -22363,6 +22273,7 @@ export namespace Prisma {
|
|
|
22363
22273
|
avatarUrl: string | null
|
|
22364
22274
|
displayName: string | null
|
|
22365
22275
|
mainGroupId: string | null
|
|
22276
|
+
qrLoginRedirectDelay: boolean | null
|
|
22366
22277
|
mainLoginType: $Enums.Platforms | null
|
|
22367
22278
|
invitedBy: string | null
|
|
22368
22279
|
registrationMethod: $Enums.RegistrationMethod | null
|
|
@@ -22375,6 +22286,7 @@ export namespace Prisma {
|
|
|
22375
22286
|
avatarUrl: number
|
|
22376
22287
|
displayName: number
|
|
22377
22288
|
mainGroupId: number
|
|
22289
|
+
qrLoginRedirectDelay: number
|
|
22378
22290
|
mainLoginType: number
|
|
22379
22291
|
invitedBy: number
|
|
22380
22292
|
registrationMethod: number
|
|
@@ -22389,6 +22301,7 @@ export namespace Prisma {
|
|
|
22389
22301
|
avatarUrl?: true
|
|
22390
22302
|
displayName?: true
|
|
22391
22303
|
mainGroupId?: true
|
|
22304
|
+
qrLoginRedirectDelay?: true
|
|
22392
22305
|
mainLoginType?: true
|
|
22393
22306
|
invitedBy?: true
|
|
22394
22307
|
registrationMethod?: true
|
|
@@ -22401,6 +22314,7 @@ export namespace Prisma {
|
|
|
22401
22314
|
avatarUrl?: true
|
|
22402
22315
|
displayName?: true
|
|
22403
22316
|
mainGroupId?: true
|
|
22317
|
+
qrLoginRedirectDelay?: true
|
|
22404
22318
|
mainLoginType?: true
|
|
22405
22319
|
invitedBy?: true
|
|
22406
22320
|
registrationMethod?: true
|
|
@@ -22413,6 +22327,7 @@ export namespace Prisma {
|
|
|
22413
22327
|
avatarUrl?: true
|
|
22414
22328
|
displayName?: true
|
|
22415
22329
|
mainGroupId?: true
|
|
22330
|
+
qrLoginRedirectDelay?: true
|
|
22416
22331
|
mainLoginType?: true
|
|
22417
22332
|
invitedBy?: true
|
|
22418
22333
|
registrationMethod?: true
|
|
@@ -22498,6 +22413,7 @@ export namespace Prisma {
|
|
|
22498
22413
|
avatarUrl: string | null
|
|
22499
22414
|
displayName: string
|
|
22500
22415
|
mainGroupId: string | null
|
|
22416
|
+
qrLoginRedirectDelay: boolean
|
|
22501
22417
|
mainLoginType: $Enums.Platforms
|
|
22502
22418
|
invitedBy: string | null
|
|
22503
22419
|
registrationMethod: $Enums.RegistrationMethod
|
|
@@ -22527,6 +22443,7 @@ export namespace Prisma {
|
|
|
22527
22443
|
avatarUrl?: boolean
|
|
22528
22444
|
displayName?: boolean
|
|
22529
22445
|
mainGroupId?: boolean
|
|
22446
|
+
qrLoginRedirectDelay?: boolean
|
|
22530
22447
|
mainLoginType?: boolean
|
|
22531
22448
|
invitedBy?: boolean
|
|
22532
22449
|
registrationMethod?: boolean
|
|
@@ -22550,6 +22467,7 @@ export namespace Prisma {
|
|
|
22550
22467
|
avatarUrl?: boolean
|
|
22551
22468
|
displayName?: boolean
|
|
22552
22469
|
mainGroupId?: boolean
|
|
22470
|
+
qrLoginRedirectDelay?: boolean
|
|
22553
22471
|
mainLoginType?: boolean
|
|
22554
22472
|
invitedBy?: boolean
|
|
22555
22473
|
registrationMethod?: boolean
|
|
@@ -22562,6 +22480,7 @@ export namespace Prisma {
|
|
|
22562
22480
|
avatarUrl?: boolean
|
|
22563
22481
|
displayName?: boolean
|
|
22564
22482
|
mainGroupId?: boolean
|
|
22483
|
+
qrLoginRedirectDelay?: boolean
|
|
22565
22484
|
mainLoginType?: boolean
|
|
22566
22485
|
invitedBy?: boolean
|
|
22567
22486
|
registrationMethod?: boolean
|
|
@@ -22574,12 +22493,13 @@ export namespace Prisma {
|
|
|
22574
22493
|
avatarUrl?: boolean
|
|
22575
22494
|
displayName?: boolean
|
|
22576
22495
|
mainGroupId?: boolean
|
|
22496
|
+
qrLoginRedirectDelay?: boolean
|
|
22577
22497
|
mainLoginType?: boolean
|
|
22578
22498
|
invitedBy?: boolean
|
|
22579
22499
|
registrationMethod?: boolean
|
|
22580
22500
|
}
|
|
22581
22501
|
|
|
22582
|
-
export type UserOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"dbId" | "userId" | "email" | "avatarUrl" | "displayName" | "mainGroupId" | "mainLoginType" | "invitedBy" | "registrationMethod", ExtArgs["result"]["user"]>
|
|
22502
|
+
export type UserOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"dbId" | "userId" | "email" | "avatarUrl" | "displayName" | "mainGroupId" | "qrLoginRedirectDelay" | "mainLoginType" | "invitedBy" | "registrationMethod", ExtArgs["result"]["user"]>
|
|
22583
22503
|
export type UserInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
22584
22504
|
loginMethods?: boolean | User$loginMethodsArgs<ExtArgs>
|
|
22585
22505
|
groupPermissions?: boolean | User$groupPermissionsArgs<ExtArgs>
|
|
@@ -22617,6 +22537,7 @@ export namespace Prisma {
|
|
|
22617
22537
|
avatarUrl: string | null
|
|
22618
22538
|
displayName: string
|
|
22619
22539
|
mainGroupId: string | null
|
|
22540
|
+
qrLoginRedirectDelay: boolean
|
|
22620
22541
|
mainLoginType: $Enums.Platforms
|
|
22621
22542
|
invitedBy: string | null
|
|
22622
22543
|
registrationMethod: $Enums.RegistrationMethod
|
|
@@ -23059,6 +22980,7 @@ export namespace Prisma {
|
|
|
23059
22980
|
readonly avatarUrl: FieldRef<"User", 'String'>
|
|
23060
22981
|
readonly displayName: FieldRef<"User", 'String'>
|
|
23061
22982
|
readonly mainGroupId: FieldRef<"User", 'String'>
|
|
22983
|
+
readonly qrLoginRedirectDelay: FieldRef<"User", 'Boolean'>
|
|
23062
22984
|
readonly mainLoginType: FieldRef<"User", 'Platforms'>
|
|
23063
22985
|
readonly invitedBy: FieldRef<"User", 'String'>
|
|
23064
22986
|
readonly registrationMethod: FieldRef<"User", 'RegistrationMethod'>
|
|
@@ -24387,1476 +24309,429 @@ export namespace Prisma {
|
|
|
24387
24309
|
|
|
24388
24310
|
|
|
24389
24311
|
/**
|
|
24390
|
-
* Fields of the Session model
|
|
24391
|
-
*/
|
|
24392
|
-
interface SessionFieldRefs {
|
|
24393
|
-
readonly dbId: FieldRef<"Session", 'String'>
|
|
24394
|
-
readonly token: FieldRef<"Session", 'String'>
|
|
24395
|
-
readonly device: FieldRef<"Session", 'Device'>
|
|
24396
|
-
readonly locationEncrypted: FieldRef<"Session", 'String'>
|
|
24397
|
-
readonly isQrLogin: FieldRef<"Session", 'Boolean'>
|
|
24398
|
-
readonly userId: FieldRef<"Session", 'String'>
|
|
24399
|
-
readonly createdAt: FieldRef<"Session", 'DateTime'>
|
|
24400
|
-
readonly expiresAt: FieldRef<"Session", 'DateTime'>
|
|
24401
|
-
readonly lastUsed: FieldRef<"Session", 'DateTime'>
|
|
24402
|
-
}
|
|
24403
|
-
|
|
24404
|
-
|
|
24405
|
-
// Custom InputTypes
|
|
24406
|
-
/**
|
|
24407
|
-
* Session findUnique
|
|
24408
|
-
*/
|
|
24409
|
-
export type SessionFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24410
|
-
/**
|
|
24411
|
-
* Select specific fields to fetch from the Session
|
|
24412
|
-
*/
|
|
24413
|
-
select?: SessionSelect<ExtArgs> | null
|
|
24414
|
-
/**
|
|
24415
|
-
* Omit specific fields from the Session
|
|
24416
|
-
*/
|
|
24417
|
-
omit?: SessionOmit<ExtArgs> | null
|
|
24418
|
-
/**
|
|
24419
|
-
* Choose, which related nodes to fetch as well
|
|
24420
|
-
*/
|
|
24421
|
-
include?: SessionInclude<ExtArgs> | null
|
|
24422
|
-
/**
|
|
24423
|
-
* Filter, which Session to fetch.
|
|
24424
|
-
*/
|
|
24425
|
-
where: SessionWhereUniqueInput
|
|
24426
|
-
}
|
|
24427
|
-
|
|
24428
|
-
/**
|
|
24429
|
-
* Session findUniqueOrThrow
|
|
24430
|
-
*/
|
|
24431
|
-
export type SessionFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24432
|
-
/**
|
|
24433
|
-
* Select specific fields to fetch from the Session
|
|
24434
|
-
*/
|
|
24435
|
-
select?: SessionSelect<ExtArgs> | null
|
|
24436
|
-
/**
|
|
24437
|
-
* Omit specific fields from the Session
|
|
24438
|
-
*/
|
|
24439
|
-
omit?: SessionOmit<ExtArgs> | null
|
|
24440
|
-
/**
|
|
24441
|
-
* Choose, which related nodes to fetch as well
|
|
24442
|
-
*/
|
|
24443
|
-
include?: SessionInclude<ExtArgs> | null
|
|
24444
|
-
/**
|
|
24445
|
-
* Filter, which Session to fetch.
|
|
24446
|
-
*/
|
|
24447
|
-
where: SessionWhereUniqueInput
|
|
24448
|
-
}
|
|
24449
|
-
|
|
24450
|
-
/**
|
|
24451
|
-
* Session findFirst
|
|
24452
|
-
*/
|
|
24453
|
-
export type SessionFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24454
|
-
/**
|
|
24455
|
-
* Select specific fields to fetch from the Session
|
|
24456
|
-
*/
|
|
24457
|
-
select?: SessionSelect<ExtArgs> | null
|
|
24458
|
-
/**
|
|
24459
|
-
* Omit specific fields from the Session
|
|
24460
|
-
*/
|
|
24461
|
-
omit?: SessionOmit<ExtArgs> | null
|
|
24462
|
-
/**
|
|
24463
|
-
* Choose, which related nodes to fetch as well
|
|
24464
|
-
*/
|
|
24465
|
-
include?: SessionInclude<ExtArgs> | null
|
|
24466
|
-
/**
|
|
24467
|
-
* Filter, which Session to fetch.
|
|
24468
|
-
*/
|
|
24469
|
-
where?: SessionWhereInput
|
|
24470
|
-
/**
|
|
24471
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
24472
|
-
*
|
|
24473
|
-
* Determine the order of Sessions to fetch.
|
|
24474
|
-
*/
|
|
24475
|
-
orderBy?: SessionOrderByWithRelationInput | SessionOrderByWithRelationInput[]
|
|
24476
|
-
/**
|
|
24477
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
24478
|
-
*
|
|
24479
|
-
* Sets the position for searching for Sessions.
|
|
24480
|
-
*/
|
|
24481
|
-
cursor?: SessionWhereUniqueInput
|
|
24482
|
-
/**
|
|
24483
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
24484
|
-
*
|
|
24485
|
-
* Take `±n` Sessions from the position of the cursor.
|
|
24486
|
-
*/
|
|
24487
|
-
take?: number
|
|
24488
|
-
/**
|
|
24489
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
24490
|
-
*
|
|
24491
|
-
* Skip the first `n` Sessions.
|
|
24492
|
-
*/
|
|
24493
|
-
skip?: number
|
|
24494
|
-
/**
|
|
24495
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
24496
|
-
*
|
|
24497
|
-
* Filter by unique combinations of Sessions.
|
|
24498
|
-
*/
|
|
24499
|
-
distinct?: SessionScalarFieldEnum | SessionScalarFieldEnum[]
|
|
24500
|
-
}
|
|
24501
|
-
|
|
24502
|
-
/**
|
|
24503
|
-
* Session findFirstOrThrow
|
|
24504
|
-
*/
|
|
24505
|
-
export type SessionFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24506
|
-
/**
|
|
24507
|
-
* Select specific fields to fetch from the Session
|
|
24508
|
-
*/
|
|
24509
|
-
select?: SessionSelect<ExtArgs> | null
|
|
24510
|
-
/**
|
|
24511
|
-
* Omit specific fields from the Session
|
|
24512
|
-
*/
|
|
24513
|
-
omit?: SessionOmit<ExtArgs> | null
|
|
24514
|
-
/**
|
|
24515
|
-
* Choose, which related nodes to fetch as well
|
|
24516
|
-
*/
|
|
24517
|
-
include?: SessionInclude<ExtArgs> | null
|
|
24518
|
-
/**
|
|
24519
|
-
* Filter, which Session to fetch.
|
|
24520
|
-
*/
|
|
24521
|
-
where?: SessionWhereInput
|
|
24522
|
-
/**
|
|
24523
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
24524
|
-
*
|
|
24525
|
-
* Determine the order of Sessions to fetch.
|
|
24526
|
-
*/
|
|
24527
|
-
orderBy?: SessionOrderByWithRelationInput | SessionOrderByWithRelationInput[]
|
|
24528
|
-
/**
|
|
24529
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
24530
|
-
*
|
|
24531
|
-
* Sets the position for searching for Sessions.
|
|
24532
|
-
*/
|
|
24533
|
-
cursor?: SessionWhereUniqueInput
|
|
24534
|
-
/**
|
|
24535
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
24536
|
-
*
|
|
24537
|
-
* Take `±n` Sessions from the position of the cursor.
|
|
24538
|
-
*/
|
|
24539
|
-
take?: number
|
|
24540
|
-
/**
|
|
24541
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
24542
|
-
*
|
|
24543
|
-
* Skip the first `n` Sessions.
|
|
24544
|
-
*/
|
|
24545
|
-
skip?: number
|
|
24546
|
-
/**
|
|
24547
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
24548
|
-
*
|
|
24549
|
-
* Filter by unique combinations of Sessions.
|
|
24550
|
-
*/
|
|
24551
|
-
distinct?: SessionScalarFieldEnum | SessionScalarFieldEnum[]
|
|
24552
|
-
}
|
|
24553
|
-
|
|
24554
|
-
/**
|
|
24555
|
-
* Session findMany
|
|
24556
|
-
*/
|
|
24557
|
-
export type SessionFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24558
|
-
/**
|
|
24559
|
-
* Select specific fields to fetch from the Session
|
|
24560
|
-
*/
|
|
24561
|
-
select?: SessionSelect<ExtArgs> | null
|
|
24562
|
-
/**
|
|
24563
|
-
* Omit specific fields from the Session
|
|
24564
|
-
*/
|
|
24565
|
-
omit?: SessionOmit<ExtArgs> | null
|
|
24566
|
-
/**
|
|
24567
|
-
* Choose, which related nodes to fetch as well
|
|
24568
|
-
*/
|
|
24569
|
-
include?: SessionInclude<ExtArgs> | null
|
|
24570
|
-
/**
|
|
24571
|
-
* Filter, which Sessions to fetch.
|
|
24572
|
-
*/
|
|
24573
|
-
where?: SessionWhereInput
|
|
24574
|
-
/**
|
|
24575
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
24576
|
-
*
|
|
24577
|
-
* Determine the order of Sessions to fetch.
|
|
24578
|
-
*/
|
|
24579
|
-
orderBy?: SessionOrderByWithRelationInput | SessionOrderByWithRelationInput[]
|
|
24580
|
-
/**
|
|
24581
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
24582
|
-
*
|
|
24583
|
-
* Sets the position for listing Sessions.
|
|
24584
|
-
*/
|
|
24585
|
-
cursor?: SessionWhereUniqueInput
|
|
24586
|
-
/**
|
|
24587
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
24588
|
-
*
|
|
24589
|
-
* Take `±n` Sessions from the position of the cursor.
|
|
24590
|
-
*/
|
|
24591
|
-
take?: number
|
|
24592
|
-
/**
|
|
24593
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
24594
|
-
*
|
|
24595
|
-
* Skip the first `n` Sessions.
|
|
24596
|
-
*/
|
|
24597
|
-
skip?: number
|
|
24598
|
-
distinct?: SessionScalarFieldEnum | SessionScalarFieldEnum[]
|
|
24599
|
-
}
|
|
24600
|
-
|
|
24601
|
-
/**
|
|
24602
|
-
* Session create
|
|
24603
|
-
*/
|
|
24604
|
-
export type SessionCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24605
|
-
/**
|
|
24606
|
-
* Select specific fields to fetch from the Session
|
|
24607
|
-
*/
|
|
24608
|
-
select?: SessionSelect<ExtArgs> | null
|
|
24609
|
-
/**
|
|
24610
|
-
* Omit specific fields from the Session
|
|
24611
|
-
*/
|
|
24612
|
-
omit?: SessionOmit<ExtArgs> | null
|
|
24613
|
-
/**
|
|
24614
|
-
* Choose, which related nodes to fetch as well
|
|
24615
|
-
*/
|
|
24616
|
-
include?: SessionInclude<ExtArgs> | null
|
|
24617
|
-
/**
|
|
24618
|
-
* The data needed to create a Session.
|
|
24619
|
-
*/
|
|
24620
|
-
data: XOR<SessionCreateInput, SessionUncheckedCreateInput>
|
|
24621
|
-
}
|
|
24622
|
-
|
|
24623
|
-
/**
|
|
24624
|
-
* Session createMany
|
|
24625
|
-
*/
|
|
24626
|
-
export type SessionCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24627
|
-
/**
|
|
24628
|
-
* The data used to create many Sessions.
|
|
24629
|
-
*/
|
|
24630
|
-
data: SessionCreateManyInput | SessionCreateManyInput[]
|
|
24631
|
-
skipDuplicates?: boolean
|
|
24632
|
-
}
|
|
24633
|
-
|
|
24634
|
-
/**
|
|
24635
|
-
* Session createManyAndReturn
|
|
24636
|
-
*/
|
|
24637
|
-
export type SessionCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24638
|
-
/**
|
|
24639
|
-
* Select specific fields to fetch from the Session
|
|
24640
|
-
*/
|
|
24641
|
-
select?: SessionSelectCreateManyAndReturn<ExtArgs> | null
|
|
24642
|
-
/**
|
|
24643
|
-
* Omit specific fields from the Session
|
|
24644
|
-
*/
|
|
24645
|
-
omit?: SessionOmit<ExtArgs> | null
|
|
24646
|
-
/**
|
|
24647
|
-
* The data used to create many Sessions.
|
|
24648
|
-
*/
|
|
24649
|
-
data: SessionCreateManyInput | SessionCreateManyInput[]
|
|
24650
|
-
skipDuplicates?: boolean
|
|
24651
|
-
/**
|
|
24652
|
-
* Choose, which related nodes to fetch as well
|
|
24653
|
-
*/
|
|
24654
|
-
include?: SessionIncludeCreateManyAndReturn<ExtArgs> | null
|
|
24655
|
-
}
|
|
24656
|
-
|
|
24657
|
-
/**
|
|
24658
|
-
* Session update
|
|
24659
|
-
*/
|
|
24660
|
-
export type SessionUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24661
|
-
/**
|
|
24662
|
-
* Select specific fields to fetch from the Session
|
|
24663
|
-
*/
|
|
24664
|
-
select?: SessionSelect<ExtArgs> | null
|
|
24665
|
-
/**
|
|
24666
|
-
* Omit specific fields from the Session
|
|
24667
|
-
*/
|
|
24668
|
-
omit?: SessionOmit<ExtArgs> | null
|
|
24669
|
-
/**
|
|
24670
|
-
* Choose, which related nodes to fetch as well
|
|
24671
|
-
*/
|
|
24672
|
-
include?: SessionInclude<ExtArgs> | null
|
|
24673
|
-
/**
|
|
24674
|
-
* The data needed to update a Session.
|
|
24675
|
-
*/
|
|
24676
|
-
data: XOR<SessionUpdateInput, SessionUncheckedUpdateInput>
|
|
24677
|
-
/**
|
|
24678
|
-
* Choose, which Session to update.
|
|
24679
|
-
*/
|
|
24680
|
-
where: SessionWhereUniqueInput
|
|
24681
|
-
}
|
|
24682
|
-
|
|
24683
|
-
/**
|
|
24684
|
-
* Session updateMany
|
|
24685
|
-
*/
|
|
24686
|
-
export type SessionUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24687
|
-
/**
|
|
24688
|
-
* The data used to update Sessions.
|
|
24689
|
-
*/
|
|
24690
|
-
data: XOR<SessionUpdateManyMutationInput, SessionUncheckedUpdateManyInput>
|
|
24691
|
-
/**
|
|
24692
|
-
* Filter which Sessions to update
|
|
24693
|
-
*/
|
|
24694
|
-
where?: SessionWhereInput
|
|
24695
|
-
/**
|
|
24696
|
-
* Limit how many Sessions to update.
|
|
24697
|
-
*/
|
|
24698
|
-
limit?: number
|
|
24699
|
-
}
|
|
24700
|
-
|
|
24701
|
-
/**
|
|
24702
|
-
* Session updateManyAndReturn
|
|
24703
|
-
*/
|
|
24704
|
-
export type SessionUpdateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24705
|
-
/**
|
|
24706
|
-
* Select specific fields to fetch from the Session
|
|
24707
|
-
*/
|
|
24708
|
-
select?: SessionSelectUpdateManyAndReturn<ExtArgs> | null
|
|
24709
|
-
/**
|
|
24710
|
-
* Omit specific fields from the Session
|
|
24711
|
-
*/
|
|
24712
|
-
omit?: SessionOmit<ExtArgs> | null
|
|
24713
|
-
/**
|
|
24714
|
-
* The data used to update Sessions.
|
|
24715
|
-
*/
|
|
24716
|
-
data: XOR<SessionUpdateManyMutationInput, SessionUncheckedUpdateManyInput>
|
|
24717
|
-
/**
|
|
24718
|
-
* Filter which Sessions to update
|
|
24719
|
-
*/
|
|
24720
|
-
where?: SessionWhereInput
|
|
24721
|
-
/**
|
|
24722
|
-
* Limit how many Sessions to update.
|
|
24723
|
-
*/
|
|
24724
|
-
limit?: number
|
|
24725
|
-
/**
|
|
24726
|
-
* Choose, which related nodes to fetch as well
|
|
24727
|
-
*/
|
|
24728
|
-
include?: SessionIncludeUpdateManyAndReturn<ExtArgs> | null
|
|
24729
|
-
}
|
|
24730
|
-
|
|
24731
|
-
/**
|
|
24732
|
-
* Session upsert
|
|
24733
|
-
*/
|
|
24734
|
-
export type SessionUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24735
|
-
/**
|
|
24736
|
-
* Select specific fields to fetch from the Session
|
|
24737
|
-
*/
|
|
24738
|
-
select?: SessionSelect<ExtArgs> | null
|
|
24739
|
-
/**
|
|
24740
|
-
* Omit specific fields from the Session
|
|
24741
|
-
*/
|
|
24742
|
-
omit?: SessionOmit<ExtArgs> | null
|
|
24743
|
-
/**
|
|
24744
|
-
* Choose, which related nodes to fetch as well
|
|
24745
|
-
*/
|
|
24746
|
-
include?: SessionInclude<ExtArgs> | null
|
|
24747
|
-
/**
|
|
24748
|
-
* The filter to search for the Session to update in case it exists.
|
|
24749
|
-
*/
|
|
24750
|
-
where: SessionWhereUniqueInput
|
|
24751
|
-
/**
|
|
24752
|
-
* In case the Session found by the `where` argument doesn't exist, create a new Session with this data.
|
|
24753
|
-
*/
|
|
24754
|
-
create: XOR<SessionCreateInput, SessionUncheckedCreateInput>
|
|
24755
|
-
/**
|
|
24756
|
-
* In case the Session was found with the provided `where` argument, update it with this data.
|
|
24757
|
-
*/
|
|
24758
|
-
update: XOR<SessionUpdateInput, SessionUncheckedUpdateInput>
|
|
24759
|
-
}
|
|
24760
|
-
|
|
24761
|
-
/**
|
|
24762
|
-
* Session delete
|
|
24763
|
-
*/
|
|
24764
|
-
export type SessionDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24765
|
-
/**
|
|
24766
|
-
* Select specific fields to fetch from the Session
|
|
24767
|
-
*/
|
|
24768
|
-
select?: SessionSelect<ExtArgs> | null
|
|
24769
|
-
/**
|
|
24770
|
-
* Omit specific fields from the Session
|
|
24771
|
-
*/
|
|
24772
|
-
omit?: SessionOmit<ExtArgs> | null
|
|
24773
|
-
/**
|
|
24774
|
-
* Choose, which related nodes to fetch as well
|
|
24775
|
-
*/
|
|
24776
|
-
include?: SessionInclude<ExtArgs> | null
|
|
24777
|
-
/**
|
|
24778
|
-
* Filter which Session to delete.
|
|
24779
|
-
*/
|
|
24780
|
-
where: SessionWhereUniqueInput
|
|
24781
|
-
}
|
|
24782
|
-
|
|
24783
|
-
/**
|
|
24784
|
-
* Session deleteMany
|
|
24785
|
-
*/
|
|
24786
|
-
export type SessionDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24787
|
-
/**
|
|
24788
|
-
* Filter which Sessions to delete
|
|
24789
|
-
*/
|
|
24790
|
-
where?: SessionWhereInput
|
|
24791
|
-
/**
|
|
24792
|
-
* Limit how many Sessions to delete.
|
|
24793
|
-
*/
|
|
24794
|
-
limit?: number
|
|
24795
|
-
}
|
|
24796
|
-
|
|
24797
|
-
/**
|
|
24798
|
-
* Session without action
|
|
24799
|
-
*/
|
|
24800
|
-
export type SessionDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24801
|
-
/**
|
|
24802
|
-
* Select specific fields to fetch from the Session
|
|
24803
|
-
*/
|
|
24804
|
-
select?: SessionSelect<ExtArgs> | null
|
|
24805
|
-
/**
|
|
24806
|
-
* Omit specific fields from the Session
|
|
24807
|
-
*/
|
|
24808
|
-
omit?: SessionOmit<ExtArgs> | null
|
|
24809
|
-
/**
|
|
24810
|
-
* Choose, which related nodes to fetch as well
|
|
24811
|
-
*/
|
|
24812
|
-
include?: SessionInclude<ExtArgs> | null
|
|
24813
|
-
}
|
|
24814
|
-
|
|
24815
|
-
|
|
24816
|
-
/**
|
|
24817
|
-
* Model QrLoginChallenge
|
|
24818
|
-
*/
|
|
24819
|
-
|
|
24820
|
-
export type AggregateQrLoginChallenge = {
|
|
24821
|
-
_count: QrLoginChallengeCountAggregateOutputType | null
|
|
24822
|
-
_min: QrLoginChallengeMinAggregateOutputType | null
|
|
24823
|
-
_max: QrLoginChallengeMaxAggregateOutputType | null
|
|
24824
|
-
}
|
|
24825
|
-
|
|
24826
|
-
export type QrLoginChallengeMinAggregateOutputType = {
|
|
24827
|
-
dbId: string | null
|
|
24828
|
-
secretHash: string | null
|
|
24829
|
-
status: string | null
|
|
24830
|
-
approvedByUserId: string | null
|
|
24831
|
-
sessionExpiresAt: Date | null
|
|
24832
|
-
createdAt: Date | null
|
|
24833
|
-
expiresAt: Date | null
|
|
24834
|
-
approvedAt: Date | null
|
|
24835
|
-
consumedAt: Date | null
|
|
24836
|
-
}
|
|
24837
|
-
|
|
24838
|
-
export type QrLoginChallengeMaxAggregateOutputType = {
|
|
24839
|
-
dbId: string | null
|
|
24840
|
-
secretHash: string | null
|
|
24841
|
-
status: string | null
|
|
24842
|
-
approvedByUserId: string | null
|
|
24843
|
-
sessionExpiresAt: Date | null
|
|
24844
|
-
createdAt: Date | null
|
|
24845
|
-
expiresAt: Date | null
|
|
24846
|
-
approvedAt: Date | null
|
|
24847
|
-
consumedAt: Date | null
|
|
24848
|
-
}
|
|
24849
|
-
|
|
24850
|
-
export type QrLoginChallengeCountAggregateOutputType = {
|
|
24851
|
-
dbId: number
|
|
24852
|
-
secretHash: number
|
|
24853
|
-
status: number
|
|
24854
|
-
approvedByUserId: number
|
|
24855
|
-
sessionExpiresAt: number
|
|
24856
|
-
createdAt: number
|
|
24857
|
-
expiresAt: number
|
|
24858
|
-
approvedAt: number
|
|
24859
|
-
consumedAt: number
|
|
24860
|
-
_all: number
|
|
24861
|
-
}
|
|
24862
|
-
|
|
24863
|
-
|
|
24864
|
-
export type QrLoginChallengeMinAggregateInputType = {
|
|
24865
|
-
dbId?: true
|
|
24866
|
-
secretHash?: true
|
|
24867
|
-
status?: true
|
|
24868
|
-
approvedByUserId?: true
|
|
24869
|
-
sessionExpiresAt?: true
|
|
24870
|
-
createdAt?: true
|
|
24871
|
-
expiresAt?: true
|
|
24872
|
-
approvedAt?: true
|
|
24873
|
-
consumedAt?: true
|
|
24874
|
-
}
|
|
24875
|
-
|
|
24876
|
-
export type QrLoginChallengeMaxAggregateInputType = {
|
|
24877
|
-
dbId?: true
|
|
24878
|
-
secretHash?: true
|
|
24879
|
-
status?: true
|
|
24880
|
-
approvedByUserId?: true
|
|
24881
|
-
sessionExpiresAt?: true
|
|
24882
|
-
createdAt?: true
|
|
24883
|
-
expiresAt?: true
|
|
24884
|
-
approvedAt?: true
|
|
24885
|
-
consumedAt?: true
|
|
24886
|
-
}
|
|
24887
|
-
|
|
24888
|
-
export type QrLoginChallengeCountAggregateInputType = {
|
|
24889
|
-
dbId?: true
|
|
24890
|
-
secretHash?: true
|
|
24891
|
-
status?: true
|
|
24892
|
-
approvedByUserId?: true
|
|
24893
|
-
sessionExpiresAt?: true
|
|
24894
|
-
createdAt?: true
|
|
24895
|
-
expiresAt?: true
|
|
24896
|
-
approvedAt?: true
|
|
24897
|
-
consumedAt?: true
|
|
24898
|
-
_all?: true
|
|
24899
|
-
}
|
|
24900
|
-
|
|
24901
|
-
export type QrLoginChallengeAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24902
|
-
/**
|
|
24903
|
-
* Filter which QrLoginChallenge to aggregate.
|
|
24904
|
-
*/
|
|
24905
|
-
where?: QrLoginChallengeWhereInput
|
|
24906
|
-
/**
|
|
24907
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
24908
|
-
*
|
|
24909
|
-
* Determine the order of QrLoginChallenges to fetch.
|
|
24910
|
-
*/
|
|
24911
|
-
orderBy?: QrLoginChallengeOrderByWithRelationInput | QrLoginChallengeOrderByWithRelationInput[]
|
|
24912
|
-
/**
|
|
24913
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
24914
|
-
*
|
|
24915
|
-
* Sets the start position
|
|
24916
|
-
*/
|
|
24917
|
-
cursor?: QrLoginChallengeWhereUniqueInput
|
|
24918
|
-
/**
|
|
24919
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
24920
|
-
*
|
|
24921
|
-
* Take `±n` QrLoginChallenges from the position of the cursor.
|
|
24922
|
-
*/
|
|
24923
|
-
take?: number
|
|
24924
|
-
/**
|
|
24925
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
24926
|
-
*
|
|
24927
|
-
* Skip the first `n` QrLoginChallenges.
|
|
24928
|
-
*/
|
|
24929
|
-
skip?: number
|
|
24930
|
-
/**
|
|
24931
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
24932
|
-
*
|
|
24933
|
-
* Count returned QrLoginChallenges
|
|
24934
|
-
**/
|
|
24935
|
-
_count?: true | QrLoginChallengeCountAggregateInputType
|
|
24936
|
-
/**
|
|
24937
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
24938
|
-
*
|
|
24939
|
-
* Select which fields to find the minimum value
|
|
24940
|
-
**/
|
|
24941
|
-
_min?: QrLoginChallengeMinAggregateInputType
|
|
24942
|
-
/**
|
|
24943
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
24944
|
-
*
|
|
24945
|
-
* Select which fields to find the maximum value
|
|
24946
|
-
**/
|
|
24947
|
-
_max?: QrLoginChallengeMaxAggregateInputType
|
|
24948
|
-
}
|
|
24949
|
-
|
|
24950
|
-
export type GetQrLoginChallengeAggregateType<T extends QrLoginChallengeAggregateArgs> = {
|
|
24951
|
-
[P in keyof T & keyof AggregateQrLoginChallenge]: P extends '_count' | 'count'
|
|
24952
|
-
? T[P] extends true
|
|
24953
|
-
? number
|
|
24954
|
-
: GetScalarType<T[P], AggregateQrLoginChallenge[P]>
|
|
24955
|
-
: GetScalarType<T[P], AggregateQrLoginChallenge[P]>
|
|
24956
|
-
}
|
|
24957
|
-
|
|
24958
|
-
|
|
24959
|
-
|
|
24960
|
-
|
|
24961
|
-
export type QrLoginChallengeGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24962
|
-
where?: QrLoginChallengeWhereInput
|
|
24963
|
-
orderBy?: QrLoginChallengeOrderByWithAggregationInput | QrLoginChallengeOrderByWithAggregationInput[]
|
|
24964
|
-
by: QrLoginChallengeScalarFieldEnum[] | QrLoginChallengeScalarFieldEnum
|
|
24965
|
-
having?: QrLoginChallengeScalarWhereWithAggregatesInput
|
|
24966
|
-
take?: number
|
|
24967
|
-
skip?: number
|
|
24968
|
-
_count?: QrLoginChallengeCountAggregateInputType | true
|
|
24969
|
-
_min?: QrLoginChallengeMinAggregateInputType
|
|
24970
|
-
_max?: QrLoginChallengeMaxAggregateInputType
|
|
24971
|
-
}
|
|
24972
|
-
|
|
24973
|
-
export type QrLoginChallengeGroupByOutputType = {
|
|
24974
|
-
dbId: string
|
|
24975
|
-
secretHash: string
|
|
24976
|
-
status: string
|
|
24977
|
-
approvedByUserId: string | null
|
|
24978
|
-
sessionExpiresAt: Date | null
|
|
24979
|
-
createdAt: Date
|
|
24980
|
-
expiresAt: Date
|
|
24981
|
-
approvedAt: Date | null
|
|
24982
|
-
consumedAt: Date | null
|
|
24983
|
-
_count: QrLoginChallengeCountAggregateOutputType | null
|
|
24984
|
-
_min: QrLoginChallengeMinAggregateOutputType | null
|
|
24985
|
-
_max: QrLoginChallengeMaxAggregateOutputType | null
|
|
24986
|
-
}
|
|
24987
|
-
|
|
24988
|
-
type GetQrLoginChallengeGroupByPayload<T extends QrLoginChallengeGroupByArgs> = Prisma.PrismaPromise<
|
|
24989
|
-
Array<
|
|
24990
|
-
PickEnumerable<QrLoginChallengeGroupByOutputType, T['by']> &
|
|
24991
|
-
{
|
|
24992
|
-
[P in ((keyof T) & (keyof QrLoginChallengeGroupByOutputType))]: P extends '_count'
|
|
24993
|
-
? T[P] extends boolean
|
|
24994
|
-
? number
|
|
24995
|
-
: GetScalarType<T[P], QrLoginChallengeGroupByOutputType[P]>
|
|
24996
|
-
: GetScalarType<T[P], QrLoginChallengeGroupByOutputType[P]>
|
|
24997
|
-
}
|
|
24998
|
-
>
|
|
24999
|
-
>
|
|
25000
|
-
|
|
25001
|
-
|
|
25002
|
-
export type QrLoginChallengeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
25003
|
-
dbId?: boolean
|
|
25004
|
-
secretHash?: boolean
|
|
25005
|
-
status?: boolean
|
|
25006
|
-
approvedByUserId?: boolean
|
|
25007
|
-
sessionExpiresAt?: boolean
|
|
25008
|
-
createdAt?: boolean
|
|
25009
|
-
expiresAt?: boolean
|
|
25010
|
-
approvedAt?: boolean
|
|
25011
|
-
consumedAt?: boolean
|
|
25012
|
-
}, ExtArgs["result"]["qrLoginChallenge"]>
|
|
25013
|
-
|
|
25014
|
-
export type QrLoginChallengeSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
25015
|
-
dbId?: boolean
|
|
25016
|
-
secretHash?: boolean
|
|
25017
|
-
status?: boolean
|
|
25018
|
-
approvedByUserId?: boolean
|
|
25019
|
-
sessionExpiresAt?: boolean
|
|
25020
|
-
createdAt?: boolean
|
|
25021
|
-
expiresAt?: boolean
|
|
25022
|
-
approvedAt?: boolean
|
|
25023
|
-
consumedAt?: boolean
|
|
25024
|
-
}, ExtArgs["result"]["qrLoginChallenge"]>
|
|
25025
|
-
|
|
25026
|
-
export type QrLoginChallengeSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
25027
|
-
dbId?: boolean
|
|
25028
|
-
secretHash?: boolean
|
|
25029
|
-
status?: boolean
|
|
25030
|
-
approvedByUserId?: boolean
|
|
25031
|
-
sessionExpiresAt?: boolean
|
|
25032
|
-
createdAt?: boolean
|
|
25033
|
-
expiresAt?: boolean
|
|
25034
|
-
approvedAt?: boolean
|
|
25035
|
-
consumedAt?: boolean
|
|
25036
|
-
}, ExtArgs["result"]["qrLoginChallenge"]>
|
|
25037
|
-
|
|
25038
|
-
export type QrLoginChallengeSelectScalar = {
|
|
25039
|
-
dbId?: boolean
|
|
25040
|
-
secretHash?: boolean
|
|
25041
|
-
status?: boolean
|
|
25042
|
-
approvedByUserId?: boolean
|
|
25043
|
-
sessionExpiresAt?: boolean
|
|
25044
|
-
createdAt?: boolean
|
|
25045
|
-
expiresAt?: boolean
|
|
25046
|
-
approvedAt?: boolean
|
|
25047
|
-
consumedAt?: boolean
|
|
25048
|
-
}
|
|
25049
|
-
|
|
25050
|
-
export type QrLoginChallengeOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"dbId" | "secretHash" | "status" | "approvedByUserId" | "sessionExpiresAt" | "createdAt" | "expiresAt" | "approvedAt" | "consumedAt", ExtArgs["result"]["qrLoginChallenge"]>
|
|
25051
|
-
|
|
25052
|
-
export type $QrLoginChallengePayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
25053
|
-
name: "QrLoginChallenge"
|
|
25054
|
-
objects: {}
|
|
25055
|
-
scalars: $Extensions.GetPayloadResult<{
|
|
25056
|
-
dbId: string
|
|
25057
|
-
secretHash: string
|
|
25058
|
-
status: string
|
|
25059
|
-
approvedByUserId: string | null
|
|
25060
|
-
sessionExpiresAt: Date | null
|
|
25061
|
-
createdAt: Date
|
|
25062
|
-
expiresAt: Date
|
|
25063
|
-
approvedAt: Date | null
|
|
25064
|
-
consumedAt: Date | null
|
|
25065
|
-
}, ExtArgs["result"]["qrLoginChallenge"]>
|
|
25066
|
-
composites: {}
|
|
25067
|
-
}
|
|
25068
|
-
|
|
25069
|
-
type QrLoginChallengeGetPayload<S extends boolean | null | undefined | QrLoginChallengeDefaultArgs> = $Result.GetResult<Prisma.$QrLoginChallengePayload, S>
|
|
25070
|
-
|
|
25071
|
-
type QrLoginChallengeCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
25072
|
-
Omit<QrLoginChallengeFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
|
|
25073
|
-
select?: QrLoginChallengeCountAggregateInputType | true
|
|
25074
|
-
}
|
|
25075
|
-
|
|
25076
|
-
export interface QrLoginChallengeDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, GlobalOmitOptions = {}> {
|
|
25077
|
-
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['QrLoginChallenge'], meta: { name: 'QrLoginChallenge' } }
|
|
25078
|
-
/**
|
|
25079
|
-
* Find zero or one QrLoginChallenge that matches the filter.
|
|
25080
|
-
* @param {QrLoginChallengeFindUniqueArgs} args - Arguments to find a QrLoginChallenge
|
|
25081
|
-
* @example
|
|
25082
|
-
* // Get one QrLoginChallenge
|
|
25083
|
-
* const qrLoginChallenge = await prisma.qrLoginChallenge.findUnique({
|
|
25084
|
-
* where: {
|
|
25085
|
-
* // ... provide filter here
|
|
25086
|
-
* }
|
|
25087
|
-
* })
|
|
25088
|
-
*/
|
|
25089
|
-
findUnique<T extends QrLoginChallengeFindUniqueArgs>(args: SelectSubset<T, QrLoginChallengeFindUniqueArgs<ExtArgs>>): Prisma__QrLoginChallengeClient<$Result.GetResult<Prisma.$QrLoginChallengePayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
25090
|
-
|
|
25091
|
-
/**
|
|
25092
|
-
* Find one QrLoginChallenge that matches the filter or throw an error with `error.code='P2025'`
|
|
25093
|
-
* if no matches were found.
|
|
25094
|
-
* @param {QrLoginChallengeFindUniqueOrThrowArgs} args - Arguments to find a QrLoginChallenge
|
|
25095
|
-
* @example
|
|
25096
|
-
* // Get one QrLoginChallenge
|
|
25097
|
-
* const qrLoginChallenge = await prisma.qrLoginChallenge.findUniqueOrThrow({
|
|
25098
|
-
* where: {
|
|
25099
|
-
* // ... provide filter here
|
|
25100
|
-
* }
|
|
25101
|
-
* })
|
|
25102
|
-
*/
|
|
25103
|
-
findUniqueOrThrow<T extends QrLoginChallengeFindUniqueOrThrowArgs>(args: SelectSubset<T, QrLoginChallengeFindUniqueOrThrowArgs<ExtArgs>>): Prisma__QrLoginChallengeClient<$Result.GetResult<Prisma.$QrLoginChallengePayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
25104
|
-
|
|
25105
|
-
/**
|
|
25106
|
-
* Find the first QrLoginChallenge that matches the filter.
|
|
25107
|
-
* Note, that providing `undefined` is treated as the value not being there.
|
|
25108
|
-
* Read more here: https://pris.ly/d/null-undefined
|
|
25109
|
-
* @param {QrLoginChallengeFindFirstArgs} args - Arguments to find a QrLoginChallenge
|
|
25110
|
-
* @example
|
|
25111
|
-
* // Get one QrLoginChallenge
|
|
25112
|
-
* const qrLoginChallenge = await prisma.qrLoginChallenge.findFirst({
|
|
25113
|
-
* where: {
|
|
25114
|
-
* // ... provide filter here
|
|
25115
|
-
* }
|
|
25116
|
-
* })
|
|
25117
|
-
*/
|
|
25118
|
-
findFirst<T extends QrLoginChallengeFindFirstArgs>(args?: SelectSubset<T, QrLoginChallengeFindFirstArgs<ExtArgs>>): Prisma__QrLoginChallengeClient<$Result.GetResult<Prisma.$QrLoginChallengePayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
25119
|
-
|
|
25120
|
-
/**
|
|
25121
|
-
* Find the first QrLoginChallenge that matches the filter or
|
|
25122
|
-
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
25123
|
-
* Note, that providing `undefined` is treated as the value not being there.
|
|
25124
|
-
* Read more here: https://pris.ly/d/null-undefined
|
|
25125
|
-
* @param {QrLoginChallengeFindFirstOrThrowArgs} args - Arguments to find a QrLoginChallenge
|
|
25126
|
-
* @example
|
|
25127
|
-
* // Get one QrLoginChallenge
|
|
25128
|
-
* const qrLoginChallenge = await prisma.qrLoginChallenge.findFirstOrThrow({
|
|
25129
|
-
* where: {
|
|
25130
|
-
* // ... provide filter here
|
|
25131
|
-
* }
|
|
25132
|
-
* })
|
|
25133
|
-
*/
|
|
25134
|
-
findFirstOrThrow<T extends QrLoginChallengeFindFirstOrThrowArgs>(args?: SelectSubset<T, QrLoginChallengeFindFirstOrThrowArgs<ExtArgs>>): Prisma__QrLoginChallengeClient<$Result.GetResult<Prisma.$QrLoginChallengePayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
25135
|
-
|
|
25136
|
-
/**
|
|
25137
|
-
* Find zero or more QrLoginChallenges that matches the filter.
|
|
25138
|
-
* Note, that providing `undefined` is treated as the value not being there.
|
|
25139
|
-
* Read more here: https://pris.ly/d/null-undefined
|
|
25140
|
-
* @param {QrLoginChallengeFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
25141
|
-
* @example
|
|
25142
|
-
* // Get all QrLoginChallenges
|
|
25143
|
-
* const qrLoginChallenges = await prisma.qrLoginChallenge.findMany()
|
|
25144
|
-
*
|
|
25145
|
-
* // Get first 10 QrLoginChallenges
|
|
25146
|
-
* const qrLoginChallenges = await prisma.qrLoginChallenge.findMany({ take: 10 })
|
|
25147
|
-
*
|
|
25148
|
-
* // Only select the `dbId`
|
|
25149
|
-
* const qrLoginChallengeWithDbIdOnly = await prisma.qrLoginChallenge.findMany({ select: { dbId: true } })
|
|
25150
|
-
*
|
|
25151
|
-
*/
|
|
25152
|
-
findMany<T extends QrLoginChallengeFindManyArgs>(args?: SelectSubset<T, QrLoginChallengeFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$QrLoginChallengePayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>
|
|
25153
|
-
|
|
25154
|
-
/**
|
|
25155
|
-
* Create a QrLoginChallenge.
|
|
25156
|
-
* @param {QrLoginChallengeCreateArgs} args - Arguments to create a QrLoginChallenge.
|
|
25157
|
-
* @example
|
|
25158
|
-
* // Create one QrLoginChallenge
|
|
25159
|
-
* const QrLoginChallenge = await prisma.qrLoginChallenge.create({
|
|
25160
|
-
* data: {
|
|
25161
|
-
* // ... data to create a QrLoginChallenge
|
|
25162
|
-
* }
|
|
25163
|
-
* })
|
|
25164
|
-
*
|
|
25165
|
-
*/
|
|
25166
|
-
create<T extends QrLoginChallengeCreateArgs>(args: SelectSubset<T, QrLoginChallengeCreateArgs<ExtArgs>>): Prisma__QrLoginChallengeClient<$Result.GetResult<Prisma.$QrLoginChallengePayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
25167
|
-
|
|
25168
|
-
/**
|
|
25169
|
-
* Create many QrLoginChallenges.
|
|
25170
|
-
* @param {QrLoginChallengeCreateManyArgs} args - Arguments to create many QrLoginChallenges.
|
|
25171
|
-
* @example
|
|
25172
|
-
* // Create many QrLoginChallenges
|
|
25173
|
-
* const qrLoginChallenge = await prisma.qrLoginChallenge.createMany({
|
|
25174
|
-
* data: [
|
|
25175
|
-
* // ... provide data here
|
|
25176
|
-
* ]
|
|
25177
|
-
* })
|
|
25178
|
-
*
|
|
25179
|
-
*/
|
|
25180
|
-
createMany<T extends QrLoginChallengeCreateManyArgs>(args?: SelectSubset<T, QrLoginChallengeCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
25181
|
-
|
|
25182
|
-
/**
|
|
25183
|
-
* Create many QrLoginChallenges and returns the data saved in the database.
|
|
25184
|
-
* @param {QrLoginChallengeCreateManyAndReturnArgs} args - Arguments to create many QrLoginChallenges.
|
|
25185
|
-
* @example
|
|
25186
|
-
* // Create many QrLoginChallenges
|
|
25187
|
-
* const qrLoginChallenge = await prisma.qrLoginChallenge.createManyAndReturn({
|
|
25188
|
-
* data: [
|
|
25189
|
-
* // ... provide data here
|
|
25190
|
-
* ]
|
|
25191
|
-
* })
|
|
25192
|
-
*
|
|
25193
|
-
* // Create many QrLoginChallenges and only return the `dbId`
|
|
25194
|
-
* const qrLoginChallengeWithDbIdOnly = await prisma.qrLoginChallenge.createManyAndReturn({
|
|
25195
|
-
* select: { dbId: true },
|
|
25196
|
-
* data: [
|
|
25197
|
-
* // ... provide data here
|
|
25198
|
-
* ]
|
|
25199
|
-
* })
|
|
25200
|
-
* Note, that providing `undefined` is treated as the value not being there.
|
|
25201
|
-
* Read more here: https://pris.ly/d/null-undefined
|
|
25202
|
-
*
|
|
25203
|
-
*/
|
|
25204
|
-
createManyAndReturn<T extends QrLoginChallengeCreateManyAndReturnArgs>(args?: SelectSubset<T, QrLoginChallengeCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$QrLoginChallengePayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>
|
|
25205
|
-
|
|
25206
|
-
/**
|
|
25207
|
-
* Delete a QrLoginChallenge.
|
|
25208
|
-
* @param {QrLoginChallengeDeleteArgs} args - Arguments to delete one QrLoginChallenge.
|
|
25209
|
-
* @example
|
|
25210
|
-
* // Delete one QrLoginChallenge
|
|
25211
|
-
* const QrLoginChallenge = await prisma.qrLoginChallenge.delete({
|
|
25212
|
-
* where: {
|
|
25213
|
-
* // ... filter to delete one QrLoginChallenge
|
|
25214
|
-
* }
|
|
25215
|
-
* })
|
|
25216
|
-
*
|
|
25217
|
-
*/
|
|
25218
|
-
delete<T extends QrLoginChallengeDeleteArgs>(args: SelectSubset<T, QrLoginChallengeDeleteArgs<ExtArgs>>): Prisma__QrLoginChallengeClient<$Result.GetResult<Prisma.$QrLoginChallengePayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
25219
|
-
|
|
25220
|
-
/**
|
|
25221
|
-
* Update one QrLoginChallenge.
|
|
25222
|
-
* @param {QrLoginChallengeUpdateArgs} args - Arguments to update one QrLoginChallenge.
|
|
25223
|
-
* @example
|
|
25224
|
-
* // Update one QrLoginChallenge
|
|
25225
|
-
* const qrLoginChallenge = await prisma.qrLoginChallenge.update({
|
|
25226
|
-
* where: {
|
|
25227
|
-
* // ... provide filter here
|
|
25228
|
-
* },
|
|
25229
|
-
* data: {
|
|
25230
|
-
* // ... provide data here
|
|
25231
|
-
* }
|
|
25232
|
-
* })
|
|
25233
|
-
*
|
|
25234
|
-
*/
|
|
25235
|
-
update<T extends QrLoginChallengeUpdateArgs>(args: SelectSubset<T, QrLoginChallengeUpdateArgs<ExtArgs>>): Prisma__QrLoginChallengeClient<$Result.GetResult<Prisma.$QrLoginChallengePayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
25236
|
-
|
|
25237
|
-
/**
|
|
25238
|
-
* Delete zero or more QrLoginChallenges.
|
|
25239
|
-
* @param {QrLoginChallengeDeleteManyArgs} args - Arguments to filter QrLoginChallenges to delete.
|
|
25240
|
-
* @example
|
|
25241
|
-
* // Delete a few QrLoginChallenges
|
|
25242
|
-
* const { count } = await prisma.qrLoginChallenge.deleteMany({
|
|
25243
|
-
* where: {
|
|
25244
|
-
* // ... provide filter here
|
|
25245
|
-
* }
|
|
25246
|
-
* })
|
|
25247
|
-
*
|
|
25248
|
-
*/
|
|
25249
|
-
deleteMany<T extends QrLoginChallengeDeleteManyArgs>(args?: SelectSubset<T, QrLoginChallengeDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
25250
|
-
|
|
25251
|
-
/**
|
|
25252
|
-
* Update zero or more QrLoginChallenges.
|
|
25253
|
-
* Note, that providing `undefined` is treated as the value not being there.
|
|
25254
|
-
* Read more here: https://pris.ly/d/null-undefined
|
|
25255
|
-
* @param {QrLoginChallengeUpdateManyArgs} args - Arguments to update one or more rows.
|
|
25256
|
-
* @example
|
|
25257
|
-
* // Update many QrLoginChallenges
|
|
25258
|
-
* const qrLoginChallenge = await prisma.qrLoginChallenge.updateMany({
|
|
25259
|
-
* where: {
|
|
25260
|
-
* // ... provide filter here
|
|
25261
|
-
* },
|
|
25262
|
-
* data: {
|
|
25263
|
-
* // ... provide data here
|
|
25264
|
-
* }
|
|
25265
|
-
* })
|
|
25266
|
-
*
|
|
25267
|
-
*/
|
|
25268
|
-
updateMany<T extends QrLoginChallengeUpdateManyArgs>(args: SelectSubset<T, QrLoginChallengeUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
25269
|
-
|
|
25270
|
-
/**
|
|
25271
|
-
* Update zero or more QrLoginChallenges and returns the data updated in the database.
|
|
25272
|
-
* @param {QrLoginChallengeUpdateManyAndReturnArgs} args - Arguments to update many QrLoginChallenges.
|
|
25273
|
-
* @example
|
|
25274
|
-
* // Update many QrLoginChallenges
|
|
25275
|
-
* const qrLoginChallenge = await prisma.qrLoginChallenge.updateManyAndReturn({
|
|
25276
|
-
* where: {
|
|
25277
|
-
* // ... provide filter here
|
|
25278
|
-
* },
|
|
25279
|
-
* data: [
|
|
25280
|
-
* // ... provide data here
|
|
25281
|
-
* ]
|
|
25282
|
-
* })
|
|
25283
|
-
*
|
|
25284
|
-
* // Update zero or more QrLoginChallenges and only return the `dbId`
|
|
25285
|
-
* const qrLoginChallengeWithDbIdOnly = await prisma.qrLoginChallenge.updateManyAndReturn({
|
|
25286
|
-
* select: { dbId: true },
|
|
25287
|
-
* where: {
|
|
25288
|
-
* // ... provide filter here
|
|
25289
|
-
* },
|
|
25290
|
-
* data: [
|
|
25291
|
-
* // ... provide data here
|
|
25292
|
-
* ]
|
|
25293
|
-
* })
|
|
25294
|
-
* Note, that providing `undefined` is treated as the value not being there.
|
|
25295
|
-
* Read more here: https://pris.ly/d/null-undefined
|
|
25296
|
-
*
|
|
25297
|
-
*/
|
|
25298
|
-
updateManyAndReturn<T extends QrLoginChallengeUpdateManyAndReturnArgs>(args: SelectSubset<T, QrLoginChallengeUpdateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$QrLoginChallengePayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>
|
|
25299
|
-
|
|
25300
|
-
/**
|
|
25301
|
-
* Create or update one QrLoginChallenge.
|
|
25302
|
-
* @param {QrLoginChallengeUpsertArgs} args - Arguments to update or create a QrLoginChallenge.
|
|
25303
|
-
* @example
|
|
25304
|
-
* // Update or create a QrLoginChallenge
|
|
25305
|
-
* const qrLoginChallenge = await prisma.qrLoginChallenge.upsert({
|
|
25306
|
-
* create: {
|
|
25307
|
-
* // ... data to create a QrLoginChallenge
|
|
25308
|
-
* },
|
|
25309
|
-
* update: {
|
|
25310
|
-
* // ... in case it already exists, update
|
|
25311
|
-
* },
|
|
25312
|
-
* where: {
|
|
25313
|
-
* // ... the filter for the QrLoginChallenge we want to update
|
|
25314
|
-
* }
|
|
25315
|
-
* })
|
|
25316
|
-
*/
|
|
25317
|
-
upsert<T extends QrLoginChallengeUpsertArgs>(args: SelectSubset<T, QrLoginChallengeUpsertArgs<ExtArgs>>): Prisma__QrLoginChallengeClient<$Result.GetResult<Prisma.$QrLoginChallengePayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
25318
|
-
|
|
25319
|
-
|
|
25320
|
-
/**
|
|
25321
|
-
* Count the number of QrLoginChallenges.
|
|
25322
|
-
* Note, that providing `undefined` is treated as the value not being there.
|
|
25323
|
-
* Read more here: https://pris.ly/d/null-undefined
|
|
25324
|
-
* @param {QrLoginChallengeCountArgs} args - Arguments to filter QrLoginChallenges to count.
|
|
25325
|
-
* @example
|
|
25326
|
-
* // Count the number of QrLoginChallenges
|
|
25327
|
-
* const count = await prisma.qrLoginChallenge.count({
|
|
25328
|
-
* where: {
|
|
25329
|
-
* // ... the filter for the QrLoginChallenges we want to count
|
|
25330
|
-
* }
|
|
25331
|
-
* })
|
|
25332
|
-
**/
|
|
25333
|
-
count<T extends QrLoginChallengeCountArgs>(
|
|
25334
|
-
args?: Subset<T, QrLoginChallengeCountArgs>,
|
|
25335
|
-
): Prisma.PrismaPromise<
|
|
25336
|
-
T extends $Utils.Record<'select', any>
|
|
25337
|
-
? T['select'] extends true
|
|
25338
|
-
? number
|
|
25339
|
-
: GetScalarType<T['select'], QrLoginChallengeCountAggregateOutputType>
|
|
25340
|
-
: number
|
|
25341
|
-
>
|
|
25342
|
-
|
|
25343
|
-
/**
|
|
25344
|
-
* Allows you to perform aggregations operations on a QrLoginChallenge.
|
|
25345
|
-
* Note, that providing `undefined` is treated as the value not being there.
|
|
25346
|
-
* Read more here: https://pris.ly/d/null-undefined
|
|
25347
|
-
* @param {QrLoginChallengeAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
25348
|
-
* @example
|
|
25349
|
-
* // Ordered by age ascending
|
|
25350
|
-
* // Where email contains prisma.io
|
|
25351
|
-
* // Limited to the 10 users
|
|
25352
|
-
* const aggregations = await prisma.user.aggregate({
|
|
25353
|
-
* _avg: {
|
|
25354
|
-
* age: true,
|
|
25355
|
-
* },
|
|
25356
|
-
* where: {
|
|
25357
|
-
* email: {
|
|
25358
|
-
* contains: "prisma.io",
|
|
25359
|
-
* },
|
|
25360
|
-
* },
|
|
25361
|
-
* orderBy: {
|
|
25362
|
-
* age: "asc",
|
|
25363
|
-
* },
|
|
25364
|
-
* take: 10,
|
|
25365
|
-
* })
|
|
25366
|
-
**/
|
|
25367
|
-
aggregate<T extends QrLoginChallengeAggregateArgs>(args: Subset<T, QrLoginChallengeAggregateArgs>): Prisma.PrismaPromise<GetQrLoginChallengeAggregateType<T>>
|
|
25368
|
-
|
|
25369
|
-
/**
|
|
25370
|
-
* Group by QrLoginChallenge.
|
|
25371
|
-
* Note, that providing `undefined` is treated as the value not being there.
|
|
25372
|
-
* Read more here: https://pris.ly/d/null-undefined
|
|
25373
|
-
* @param {QrLoginChallengeGroupByArgs} args - Group by arguments.
|
|
25374
|
-
* @example
|
|
25375
|
-
* // Group by city, order by createdAt, get count
|
|
25376
|
-
* const result = await prisma.user.groupBy({
|
|
25377
|
-
* by: ['city', 'createdAt'],
|
|
25378
|
-
* orderBy: {
|
|
25379
|
-
* createdAt: true
|
|
25380
|
-
* },
|
|
25381
|
-
* _count: {
|
|
25382
|
-
* _all: true
|
|
25383
|
-
* },
|
|
25384
|
-
* })
|
|
25385
|
-
*
|
|
25386
|
-
**/
|
|
25387
|
-
groupBy<
|
|
25388
|
-
T extends QrLoginChallengeGroupByArgs,
|
|
25389
|
-
HasSelectOrTake extends Or<
|
|
25390
|
-
Extends<'skip', Keys<T>>,
|
|
25391
|
-
Extends<'take', Keys<T>>
|
|
25392
|
-
>,
|
|
25393
|
-
OrderByArg extends True extends HasSelectOrTake
|
|
25394
|
-
? { orderBy: QrLoginChallengeGroupByArgs['orderBy'] }
|
|
25395
|
-
: { orderBy?: QrLoginChallengeGroupByArgs['orderBy'] },
|
|
25396
|
-
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
25397
|
-
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
25398
|
-
ByValid extends Has<ByFields, OrderFields>,
|
|
25399
|
-
HavingFields extends GetHavingFields<T['having']>,
|
|
25400
|
-
HavingValid extends Has<ByFields, HavingFields>,
|
|
25401
|
-
ByEmpty extends T['by'] extends never[] ? True : False,
|
|
25402
|
-
InputErrors extends ByEmpty extends True
|
|
25403
|
-
? `Error: "by" must not be empty.`
|
|
25404
|
-
: HavingValid extends False
|
|
25405
|
-
? {
|
|
25406
|
-
[P in HavingFields]: P extends ByFields
|
|
25407
|
-
? never
|
|
25408
|
-
: P extends string
|
|
25409
|
-
? `Error: Field "${P}" used in "having" needs to be provided in "by".`
|
|
25410
|
-
: [
|
|
25411
|
-
Error,
|
|
25412
|
-
'Field ',
|
|
25413
|
-
P,
|
|
25414
|
-
` in "having" needs to be provided in "by"`,
|
|
25415
|
-
]
|
|
25416
|
-
}[HavingFields]
|
|
25417
|
-
: 'take' extends Keys<T>
|
|
25418
|
-
? 'orderBy' extends Keys<T>
|
|
25419
|
-
? ByValid extends True
|
|
25420
|
-
? {}
|
|
25421
|
-
: {
|
|
25422
|
-
[P in OrderFields]: P extends ByFields
|
|
25423
|
-
? never
|
|
25424
|
-
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
25425
|
-
}[OrderFields]
|
|
25426
|
-
: 'Error: If you provide "take", you also need to provide "orderBy"'
|
|
25427
|
-
: 'skip' extends Keys<T>
|
|
25428
|
-
? 'orderBy' extends Keys<T>
|
|
25429
|
-
? ByValid extends True
|
|
25430
|
-
? {}
|
|
25431
|
-
: {
|
|
25432
|
-
[P in OrderFields]: P extends ByFields
|
|
25433
|
-
? never
|
|
25434
|
-
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
25435
|
-
}[OrderFields]
|
|
25436
|
-
: 'Error: If you provide "skip", you also need to provide "orderBy"'
|
|
25437
|
-
: ByValid extends True
|
|
25438
|
-
? {}
|
|
25439
|
-
: {
|
|
25440
|
-
[P in OrderFields]: P extends ByFields
|
|
25441
|
-
? never
|
|
25442
|
-
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
25443
|
-
}[OrderFields]
|
|
25444
|
-
>(args: SubsetIntersection<T, QrLoginChallengeGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetQrLoginChallengeGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
|
25445
|
-
/**
|
|
25446
|
-
* Fields of the QrLoginChallenge model
|
|
25447
|
-
*/
|
|
25448
|
-
readonly fields: QrLoginChallengeFieldRefs;
|
|
25449
|
-
}
|
|
25450
|
-
|
|
25451
|
-
/**
|
|
25452
|
-
* The delegate class that acts as a "Promise-like" for QrLoginChallenge.
|
|
25453
|
-
* Why is this prefixed with `Prisma__`?
|
|
25454
|
-
* Because we want to prevent naming conflicts as mentioned in
|
|
25455
|
-
* https://github.com/prisma/prisma-client-js/issues/707
|
|
25456
|
-
*/
|
|
25457
|
-
export interface Prisma__QrLoginChallengeClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
|
25458
|
-
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
25459
|
-
/**
|
|
25460
|
-
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
25461
|
-
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
25462
|
-
* @param onrejected The callback to execute when the Promise is rejected.
|
|
25463
|
-
* @returns A Promise for the completion of which ever callback is executed.
|
|
25464
|
-
*/
|
|
25465
|
-
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2>
|
|
25466
|
-
/**
|
|
25467
|
-
* Attaches a callback for only the rejection of the Promise.
|
|
25468
|
-
* @param onrejected The callback to execute when the Promise is rejected.
|
|
25469
|
-
* @returns A Promise for the completion of the callback.
|
|
25470
|
-
*/
|
|
25471
|
-
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>
|
|
25472
|
-
/**
|
|
25473
|
-
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
25474
|
-
* resolved value cannot be modified from the callback.
|
|
25475
|
-
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
25476
|
-
* @returns A Promise for the completion of the callback.
|
|
25477
|
-
*/
|
|
25478
|
-
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>
|
|
25479
|
-
}
|
|
25480
|
-
|
|
25481
|
-
|
|
25482
|
-
|
|
25483
|
-
|
|
25484
|
-
/**
|
|
25485
|
-
* Fields of the QrLoginChallenge model
|
|
24312
|
+
* Fields of the Session model
|
|
25486
24313
|
*/
|
|
25487
|
-
interface
|
|
25488
|
-
readonly dbId: FieldRef<"
|
|
25489
|
-
readonly
|
|
25490
|
-
readonly
|
|
25491
|
-
readonly
|
|
25492
|
-
readonly
|
|
25493
|
-
readonly
|
|
25494
|
-
readonly
|
|
25495
|
-
readonly
|
|
25496
|
-
readonly
|
|
24314
|
+
interface SessionFieldRefs {
|
|
24315
|
+
readonly dbId: FieldRef<"Session", 'String'>
|
|
24316
|
+
readonly token: FieldRef<"Session", 'String'>
|
|
24317
|
+
readonly device: FieldRef<"Session", 'Device'>
|
|
24318
|
+
readonly locationEncrypted: FieldRef<"Session", 'String'>
|
|
24319
|
+
readonly isQrLogin: FieldRef<"Session", 'Boolean'>
|
|
24320
|
+
readonly userId: FieldRef<"Session", 'String'>
|
|
24321
|
+
readonly createdAt: FieldRef<"Session", 'DateTime'>
|
|
24322
|
+
readonly expiresAt: FieldRef<"Session", 'DateTime'>
|
|
24323
|
+
readonly lastUsed: FieldRef<"Session", 'DateTime'>
|
|
25497
24324
|
}
|
|
25498
24325
|
|
|
25499
24326
|
|
|
25500
24327
|
// Custom InputTypes
|
|
25501
24328
|
/**
|
|
25502
|
-
*
|
|
24329
|
+
* Session findUnique
|
|
25503
24330
|
*/
|
|
25504
|
-
export type
|
|
24331
|
+
export type SessionFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24332
|
+
/**
|
|
24333
|
+
* Select specific fields to fetch from the Session
|
|
24334
|
+
*/
|
|
24335
|
+
select?: SessionSelect<ExtArgs> | null
|
|
25505
24336
|
/**
|
|
25506
|
-
*
|
|
24337
|
+
* Omit specific fields from the Session
|
|
25507
24338
|
*/
|
|
25508
|
-
|
|
24339
|
+
omit?: SessionOmit<ExtArgs> | null
|
|
25509
24340
|
/**
|
|
25510
|
-
*
|
|
24341
|
+
* Choose, which related nodes to fetch as well
|
|
25511
24342
|
*/
|
|
25512
|
-
|
|
24343
|
+
include?: SessionInclude<ExtArgs> | null
|
|
25513
24344
|
/**
|
|
25514
|
-
* Filter, which
|
|
24345
|
+
* Filter, which Session to fetch.
|
|
25515
24346
|
*/
|
|
25516
|
-
where:
|
|
24347
|
+
where: SessionWhereUniqueInput
|
|
25517
24348
|
}
|
|
25518
24349
|
|
|
25519
24350
|
/**
|
|
25520
|
-
*
|
|
24351
|
+
* Session findUniqueOrThrow
|
|
25521
24352
|
*/
|
|
25522
|
-
export type
|
|
24353
|
+
export type SessionFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
25523
24354
|
/**
|
|
25524
|
-
* Select specific fields to fetch from the
|
|
24355
|
+
* Select specific fields to fetch from the Session
|
|
25525
24356
|
*/
|
|
25526
|
-
select?:
|
|
24357
|
+
select?: SessionSelect<ExtArgs> | null
|
|
24358
|
+
/**
|
|
24359
|
+
* Omit specific fields from the Session
|
|
24360
|
+
*/
|
|
24361
|
+
omit?: SessionOmit<ExtArgs> | null
|
|
25527
24362
|
/**
|
|
25528
|
-
*
|
|
24363
|
+
* Choose, which related nodes to fetch as well
|
|
25529
24364
|
*/
|
|
25530
|
-
|
|
24365
|
+
include?: SessionInclude<ExtArgs> | null
|
|
25531
24366
|
/**
|
|
25532
|
-
* Filter, which
|
|
24367
|
+
* Filter, which Session to fetch.
|
|
25533
24368
|
*/
|
|
25534
|
-
where:
|
|
24369
|
+
where: SessionWhereUniqueInput
|
|
25535
24370
|
}
|
|
25536
24371
|
|
|
25537
24372
|
/**
|
|
25538
|
-
*
|
|
24373
|
+
* Session findFirst
|
|
25539
24374
|
*/
|
|
25540
|
-
export type
|
|
24375
|
+
export type SessionFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
25541
24376
|
/**
|
|
25542
|
-
* Select specific fields to fetch from the
|
|
24377
|
+
* Select specific fields to fetch from the Session
|
|
25543
24378
|
*/
|
|
25544
|
-
select?:
|
|
24379
|
+
select?: SessionSelect<ExtArgs> | null
|
|
25545
24380
|
/**
|
|
25546
|
-
* Omit specific fields from the
|
|
24381
|
+
* Omit specific fields from the Session
|
|
25547
24382
|
*/
|
|
25548
|
-
omit?:
|
|
24383
|
+
omit?: SessionOmit<ExtArgs> | null
|
|
25549
24384
|
/**
|
|
25550
|
-
*
|
|
24385
|
+
* Choose, which related nodes to fetch as well
|
|
25551
24386
|
*/
|
|
25552
|
-
|
|
24387
|
+
include?: SessionInclude<ExtArgs> | null
|
|
24388
|
+
/**
|
|
24389
|
+
* Filter, which Session to fetch.
|
|
24390
|
+
*/
|
|
24391
|
+
where?: SessionWhereInput
|
|
25553
24392
|
/**
|
|
25554
24393
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
25555
24394
|
*
|
|
25556
|
-
* Determine the order of
|
|
24395
|
+
* Determine the order of Sessions to fetch.
|
|
25557
24396
|
*/
|
|
25558
|
-
orderBy?:
|
|
24397
|
+
orderBy?: SessionOrderByWithRelationInput | SessionOrderByWithRelationInput[]
|
|
25559
24398
|
/**
|
|
25560
24399
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
25561
24400
|
*
|
|
25562
|
-
* Sets the position for searching for
|
|
24401
|
+
* Sets the position for searching for Sessions.
|
|
25563
24402
|
*/
|
|
25564
|
-
cursor?:
|
|
24403
|
+
cursor?: SessionWhereUniqueInput
|
|
25565
24404
|
/**
|
|
25566
24405
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
25567
24406
|
*
|
|
25568
|
-
* Take `±n`
|
|
24407
|
+
* Take `±n` Sessions from the position of the cursor.
|
|
25569
24408
|
*/
|
|
25570
24409
|
take?: number
|
|
25571
24410
|
/**
|
|
25572
24411
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
25573
24412
|
*
|
|
25574
|
-
* Skip the first `n`
|
|
24413
|
+
* Skip the first `n` Sessions.
|
|
25575
24414
|
*/
|
|
25576
24415
|
skip?: number
|
|
25577
24416
|
/**
|
|
25578
24417
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
25579
24418
|
*
|
|
25580
|
-
* Filter by unique combinations of
|
|
24419
|
+
* Filter by unique combinations of Sessions.
|
|
25581
24420
|
*/
|
|
25582
|
-
distinct?:
|
|
24421
|
+
distinct?: SessionScalarFieldEnum | SessionScalarFieldEnum[]
|
|
25583
24422
|
}
|
|
25584
24423
|
|
|
25585
24424
|
/**
|
|
25586
|
-
*
|
|
24425
|
+
* Session findFirstOrThrow
|
|
25587
24426
|
*/
|
|
25588
|
-
export type
|
|
24427
|
+
export type SessionFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
25589
24428
|
/**
|
|
25590
|
-
* Select specific fields to fetch from the
|
|
24429
|
+
* Select specific fields to fetch from the Session
|
|
25591
24430
|
*/
|
|
25592
|
-
select?:
|
|
24431
|
+
select?: SessionSelect<ExtArgs> | null
|
|
25593
24432
|
/**
|
|
25594
|
-
* Omit specific fields from the
|
|
24433
|
+
* Omit specific fields from the Session
|
|
25595
24434
|
*/
|
|
25596
|
-
omit?:
|
|
24435
|
+
omit?: SessionOmit<ExtArgs> | null
|
|
24436
|
+
/**
|
|
24437
|
+
* Choose, which related nodes to fetch as well
|
|
24438
|
+
*/
|
|
24439
|
+
include?: SessionInclude<ExtArgs> | null
|
|
25597
24440
|
/**
|
|
25598
|
-
* Filter, which
|
|
24441
|
+
* Filter, which Session to fetch.
|
|
25599
24442
|
*/
|
|
25600
|
-
where?:
|
|
24443
|
+
where?: SessionWhereInput
|
|
25601
24444
|
/**
|
|
25602
24445
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
25603
24446
|
*
|
|
25604
|
-
* Determine the order of
|
|
24447
|
+
* Determine the order of Sessions to fetch.
|
|
25605
24448
|
*/
|
|
25606
|
-
orderBy?:
|
|
24449
|
+
orderBy?: SessionOrderByWithRelationInput | SessionOrderByWithRelationInput[]
|
|
25607
24450
|
/**
|
|
25608
24451
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
25609
24452
|
*
|
|
25610
|
-
* Sets the position for searching for
|
|
24453
|
+
* Sets the position for searching for Sessions.
|
|
25611
24454
|
*/
|
|
25612
|
-
cursor?:
|
|
24455
|
+
cursor?: SessionWhereUniqueInput
|
|
25613
24456
|
/**
|
|
25614
24457
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
25615
24458
|
*
|
|
25616
|
-
* Take `±n`
|
|
24459
|
+
* Take `±n` Sessions from the position of the cursor.
|
|
25617
24460
|
*/
|
|
25618
24461
|
take?: number
|
|
25619
24462
|
/**
|
|
25620
24463
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
25621
24464
|
*
|
|
25622
|
-
* Skip the first `n`
|
|
24465
|
+
* Skip the first `n` Sessions.
|
|
25623
24466
|
*/
|
|
25624
24467
|
skip?: number
|
|
25625
24468
|
/**
|
|
25626
24469
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
25627
24470
|
*
|
|
25628
|
-
* Filter by unique combinations of
|
|
24471
|
+
* Filter by unique combinations of Sessions.
|
|
25629
24472
|
*/
|
|
25630
|
-
distinct?:
|
|
24473
|
+
distinct?: SessionScalarFieldEnum | SessionScalarFieldEnum[]
|
|
25631
24474
|
}
|
|
25632
24475
|
|
|
25633
24476
|
/**
|
|
25634
|
-
*
|
|
24477
|
+
* Session findMany
|
|
25635
24478
|
*/
|
|
25636
|
-
export type
|
|
24479
|
+
export type SessionFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
25637
24480
|
/**
|
|
25638
|
-
* Select specific fields to fetch from the
|
|
24481
|
+
* Select specific fields to fetch from the Session
|
|
24482
|
+
*/
|
|
24483
|
+
select?: SessionSelect<ExtArgs> | null
|
|
24484
|
+
/**
|
|
24485
|
+
* Omit specific fields from the Session
|
|
25639
24486
|
*/
|
|
25640
|
-
|
|
24487
|
+
omit?: SessionOmit<ExtArgs> | null
|
|
25641
24488
|
/**
|
|
25642
|
-
*
|
|
24489
|
+
* Choose, which related nodes to fetch as well
|
|
25643
24490
|
*/
|
|
25644
|
-
|
|
24491
|
+
include?: SessionInclude<ExtArgs> | null
|
|
25645
24492
|
/**
|
|
25646
|
-
* Filter, which
|
|
24493
|
+
* Filter, which Sessions to fetch.
|
|
25647
24494
|
*/
|
|
25648
|
-
where?:
|
|
24495
|
+
where?: SessionWhereInput
|
|
25649
24496
|
/**
|
|
25650
24497
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
25651
24498
|
*
|
|
25652
|
-
* Determine the order of
|
|
24499
|
+
* Determine the order of Sessions to fetch.
|
|
25653
24500
|
*/
|
|
25654
|
-
orderBy?:
|
|
24501
|
+
orderBy?: SessionOrderByWithRelationInput | SessionOrderByWithRelationInput[]
|
|
25655
24502
|
/**
|
|
25656
24503
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
25657
24504
|
*
|
|
25658
|
-
* Sets the position for listing
|
|
24505
|
+
* Sets the position for listing Sessions.
|
|
25659
24506
|
*/
|
|
25660
|
-
cursor?:
|
|
24507
|
+
cursor?: SessionWhereUniqueInput
|
|
25661
24508
|
/**
|
|
25662
24509
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
25663
24510
|
*
|
|
25664
|
-
* Take `±n`
|
|
24511
|
+
* Take `±n` Sessions from the position of the cursor.
|
|
25665
24512
|
*/
|
|
25666
24513
|
take?: number
|
|
25667
24514
|
/**
|
|
25668
24515
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
25669
24516
|
*
|
|
25670
|
-
* Skip the first `n`
|
|
24517
|
+
* Skip the first `n` Sessions.
|
|
25671
24518
|
*/
|
|
25672
24519
|
skip?: number
|
|
25673
|
-
distinct?:
|
|
24520
|
+
distinct?: SessionScalarFieldEnum | SessionScalarFieldEnum[]
|
|
25674
24521
|
}
|
|
25675
24522
|
|
|
25676
24523
|
/**
|
|
25677
|
-
*
|
|
24524
|
+
* Session create
|
|
25678
24525
|
*/
|
|
25679
|
-
export type
|
|
24526
|
+
export type SessionCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24527
|
+
/**
|
|
24528
|
+
* Select specific fields to fetch from the Session
|
|
24529
|
+
*/
|
|
24530
|
+
select?: SessionSelect<ExtArgs> | null
|
|
25680
24531
|
/**
|
|
25681
|
-
*
|
|
24532
|
+
* Omit specific fields from the Session
|
|
25682
24533
|
*/
|
|
25683
|
-
|
|
24534
|
+
omit?: SessionOmit<ExtArgs> | null
|
|
25684
24535
|
/**
|
|
25685
|
-
*
|
|
24536
|
+
* Choose, which related nodes to fetch as well
|
|
25686
24537
|
*/
|
|
25687
|
-
|
|
24538
|
+
include?: SessionInclude<ExtArgs> | null
|
|
25688
24539
|
/**
|
|
25689
|
-
* The data needed to create a
|
|
24540
|
+
* The data needed to create a Session.
|
|
25690
24541
|
*/
|
|
25691
|
-
data: XOR<
|
|
24542
|
+
data: XOR<SessionCreateInput, SessionUncheckedCreateInput>
|
|
25692
24543
|
}
|
|
25693
24544
|
|
|
25694
24545
|
/**
|
|
25695
|
-
*
|
|
24546
|
+
* Session createMany
|
|
25696
24547
|
*/
|
|
25697
|
-
export type
|
|
24548
|
+
export type SessionCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
25698
24549
|
/**
|
|
25699
|
-
* The data used to create many
|
|
24550
|
+
* The data used to create many Sessions.
|
|
25700
24551
|
*/
|
|
25701
|
-
data:
|
|
24552
|
+
data: SessionCreateManyInput | SessionCreateManyInput[]
|
|
25702
24553
|
skipDuplicates?: boolean
|
|
25703
24554
|
}
|
|
25704
24555
|
|
|
25705
24556
|
/**
|
|
25706
|
-
*
|
|
24557
|
+
* Session createManyAndReturn
|
|
25707
24558
|
*/
|
|
25708
|
-
export type
|
|
24559
|
+
export type SessionCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
25709
24560
|
/**
|
|
25710
|
-
* Select specific fields to fetch from the
|
|
24561
|
+
* Select specific fields to fetch from the Session
|
|
25711
24562
|
*/
|
|
25712
|
-
select?:
|
|
24563
|
+
select?: SessionSelectCreateManyAndReturn<ExtArgs> | null
|
|
25713
24564
|
/**
|
|
25714
|
-
* Omit specific fields from the
|
|
24565
|
+
* Omit specific fields from the Session
|
|
25715
24566
|
*/
|
|
25716
|
-
omit?:
|
|
24567
|
+
omit?: SessionOmit<ExtArgs> | null
|
|
25717
24568
|
/**
|
|
25718
|
-
* The data used to create many
|
|
24569
|
+
* The data used to create many Sessions.
|
|
25719
24570
|
*/
|
|
25720
|
-
data:
|
|
24571
|
+
data: SessionCreateManyInput | SessionCreateManyInput[]
|
|
25721
24572
|
skipDuplicates?: boolean
|
|
24573
|
+
/**
|
|
24574
|
+
* Choose, which related nodes to fetch as well
|
|
24575
|
+
*/
|
|
24576
|
+
include?: SessionIncludeCreateManyAndReturn<ExtArgs> | null
|
|
25722
24577
|
}
|
|
25723
24578
|
|
|
25724
24579
|
/**
|
|
25725
|
-
*
|
|
24580
|
+
* Session update
|
|
25726
24581
|
*/
|
|
25727
|
-
export type
|
|
24582
|
+
export type SessionUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
25728
24583
|
/**
|
|
25729
|
-
* Select specific fields to fetch from the
|
|
24584
|
+
* Select specific fields to fetch from the Session
|
|
25730
24585
|
*/
|
|
25731
|
-
select?:
|
|
24586
|
+
select?: SessionSelect<ExtArgs> | null
|
|
25732
24587
|
/**
|
|
25733
|
-
* Omit specific fields from the
|
|
24588
|
+
* Omit specific fields from the Session
|
|
25734
24589
|
*/
|
|
25735
|
-
omit?:
|
|
24590
|
+
omit?: SessionOmit<ExtArgs> | null
|
|
25736
24591
|
/**
|
|
25737
|
-
*
|
|
24592
|
+
* Choose, which related nodes to fetch as well
|
|
24593
|
+
*/
|
|
24594
|
+
include?: SessionInclude<ExtArgs> | null
|
|
24595
|
+
/**
|
|
24596
|
+
* The data needed to update a Session.
|
|
25738
24597
|
*/
|
|
25739
|
-
data: XOR<
|
|
24598
|
+
data: XOR<SessionUpdateInput, SessionUncheckedUpdateInput>
|
|
25740
24599
|
/**
|
|
25741
|
-
* Choose, which
|
|
24600
|
+
* Choose, which Session to update.
|
|
25742
24601
|
*/
|
|
25743
|
-
where:
|
|
24602
|
+
where: SessionWhereUniqueInput
|
|
25744
24603
|
}
|
|
25745
24604
|
|
|
25746
24605
|
/**
|
|
25747
|
-
*
|
|
24606
|
+
* Session updateMany
|
|
25748
24607
|
*/
|
|
25749
|
-
export type
|
|
24608
|
+
export type SessionUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
25750
24609
|
/**
|
|
25751
|
-
* The data used to update
|
|
24610
|
+
* The data used to update Sessions.
|
|
25752
24611
|
*/
|
|
25753
|
-
data: XOR<
|
|
24612
|
+
data: XOR<SessionUpdateManyMutationInput, SessionUncheckedUpdateManyInput>
|
|
25754
24613
|
/**
|
|
25755
|
-
* Filter which
|
|
24614
|
+
* Filter which Sessions to update
|
|
25756
24615
|
*/
|
|
25757
|
-
where?:
|
|
24616
|
+
where?: SessionWhereInput
|
|
25758
24617
|
/**
|
|
25759
|
-
* Limit how many
|
|
24618
|
+
* Limit how many Sessions to update.
|
|
25760
24619
|
*/
|
|
25761
24620
|
limit?: number
|
|
25762
24621
|
}
|
|
25763
24622
|
|
|
25764
24623
|
/**
|
|
25765
|
-
*
|
|
24624
|
+
* Session updateManyAndReturn
|
|
25766
24625
|
*/
|
|
25767
|
-
export type
|
|
24626
|
+
export type SessionUpdateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
25768
24627
|
/**
|
|
25769
|
-
* Select specific fields to fetch from the
|
|
24628
|
+
* Select specific fields to fetch from the Session
|
|
25770
24629
|
*/
|
|
25771
|
-
select?:
|
|
24630
|
+
select?: SessionSelectUpdateManyAndReturn<ExtArgs> | null
|
|
25772
24631
|
/**
|
|
25773
|
-
* Omit specific fields from the
|
|
24632
|
+
* Omit specific fields from the Session
|
|
25774
24633
|
*/
|
|
25775
|
-
omit?:
|
|
24634
|
+
omit?: SessionOmit<ExtArgs> | null
|
|
25776
24635
|
/**
|
|
25777
|
-
* The data used to update
|
|
24636
|
+
* The data used to update Sessions.
|
|
25778
24637
|
*/
|
|
25779
|
-
data: XOR<
|
|
24638
|
+
data: XOR<SessionUpdateManyMutationInput, SessionUncheckedUpdateManyInput>
|
|
25780
24639
|
/**
|
|
25781
|
-
* Filter which
|
|
24640
|
+
* Filter which Sessions to update
|
|
25782
24641
|
*/
|
|
25783
|
-
where?:
|
|
24642
|
+
where?: SessionWhereInput
|
|
25784
24643
|
/**
|
|
25785
|
-
* Limit how many
|
|
24644
|
+
* Limit how many Sessions to update.
|
|
25786
24645
|
*/
|
|
25787
24646
|
limit?: number
|
|
24647
|
+
/**
|
|
24648
|
+
* Choose, which related nodes to fetch as well
|
|
24649
|
+
*/
|
|
24650
|
+
include?: SessionIncludeUpdateManyAndReturn<ExtArgs> | null
|
|
25788
24651
|
}
|
|
25789
24652
|
|
|
25790
24653
|
/**
|
|
25791
|
-
*
|
|
24654
|
+
* Session upsert
|
|
25792
24655
|
*/
|
|
25793
|
-
export type
|
|
24656
|
+
export type SessionUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
25794
24657
|
/**
|
|
25795
|
-
* Select specific fields to fetch from the
|
|
24658
|
+
* Select specific fields to fetch from the Session
|
|
25796
24659
|
*/
|
|
25797
|
-
select?:
|
|
24660
|
+
select?: SessionSelect<ExtArgs> | null
|
|
25798
24661
|
/**
|
|
25799
|
-
* Omit specific fields from the
|
|
24662
|
+
* Omit specific fields from the Session
|
|
24663
|
+
*/
|
|
24664
|
+
omit?: SessionOmit<ExtArgs> | null
|
|
24665
|
+
/**
|
|
24666
|
+
* Choose, which related nodes to fetch as well
|
|
25800
24667
|
*/
|
|
25801
|
-
|
|
24668
|
+
include?: SessionInclude<ExtArgs> | null
|
|
25802
24669
|
/**
|
|
25803
|
-
* The filter to search for the
|
|
24670
|
+
* The filter to search for the Session to update in case it exists.
|
|
25804
24671
|
*/
|
|
25805
|
-
where:
|
|
24672
|
+
where: SessionWhereUniqueInput
|
|
25806
24673
|
/**
|
|
25807
|
-
* In case the
|
|
24674
|
+
* In case the Session found by the `where` argument doesn't exist, create a new Session with this data.
|
|
25808
24675
|
*/
|
|
25809
|
-
create: XOR<
|
|
24676
|
+
create: XOR<SessionCreateInput, SessionUncheckedCreateInput>
|
|
25810
24677
|
/**
|
|
25811
|
-
* In case the
|
|
24678
|
+
* In case the Session was found with the provided `where` argument, update it with this data.
|
|
25812
24679
|
*/
|
|
25813
|
-
update: XOR<
|
|
24680
|
+
update: XOR<SessionUpdateInput, SessionUncheckedUpdateInput>
|
|
25814
24681
|
}
|
|
25815
24682
|
|
|
25816
24683
|
/**
|
|
25817
|
-
*
|
|
24684
|
+
* Session delete
|
|
25818
24685
|
*/
|
|
25819
|
-
export type
|
|
24686
|
+
export type SessionDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
25820
24687
|
/**
|
|
25821
|
-
* Select specific fields to fetch from the
|
|
24688
|
+
* Select specific fields to fetch from the Session
|
|
25822
24689
|
*/
|
|
25823
|
-
select?:
|
|
24690
|
+
select?: SessionSelect<ExtArgs> | null
|
|
25824
24691
|
/**
|
|
25825
|
-
* Omit specific fields from the
|
|
24692
|
+
* Omit specific fields from the Session
|
|
25826
24693
|
*/
|
|
25827
|
-
omit?:
|
|
24694
|
+
omit?: SessionOmit<ExtArgs> | null
|
|
24695
|
+
/**
|
|
24696
|
+
* Choose, which related nodes to fetch as well
|
|
24697
|
+
*/
|
|
24698
|
+
include?: SessionInclude<ExtArgs> | null
|
|
25828
24699
|
/**
|
|
25829
|
-
* Filter which
|
|
24700
|
+
* Filter which Session to delete.
|
|
25830
24701
|
*/
|
|
25831
|
-
where:
|
|
24702
|
+
where: SessionWhereUniqueInput
|
|
25832
24703
|
}
|
|
25833
24704
|
|
|
25834
24705
|
/**
|
|
25835
|
-
*
|
|
24706
|
+
* Session deleteMany
|
|
25836
24707
|
*/
|
|
25837
|
-
export type
|
|
24708
|
+
export type SessionDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
25838
24709
|
/**
|
|
25839
|
-
* Filter which
|
|
24710
|
+
* Filter which Sessions to delete
|
|
25840
24711
|
*/
|
|
25841
|
-
where?:
|
|
24712
|
+
where?: SessionWhereInput
|
|
25842
24713
|
/**
|
|
25843
|
-
* Limit how many
|
|
24714
|
+
* Limit how many Sessions to delete.
|
|
25844
24715
|
*/
|
|
25845
24716
|
limit?: number
|
|
25846
24717
|
}
|
|
25847
24718
|
|
|
25848
24719
|
/**
|
|
25849
|
-
*
|
|
24720
|
+
* Session without action
|
|
25850
24721
|
*/
|
|
25851
|
-
export type
|
|
24722
|
+
export type SessionDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
25852
24723
|
/**
|
|
25853
|
-
* Select specific fields to fetch from the
|
|
24724
|
+
* Select specific fields to fetch from the Session
|
|
25854
24725
|
*/
|
|
25855
|
-
select?:
|
|
24726
|
+
select?: SessionSelect<ExtArgs> | null
|
|
25856
24727
|
/**
|
|
25857
|
-
* Omit specific fields from the
|
|
24728
|
+
* Omit specific fields from the Session
|
|
25858
24729
|
*/
|
|
25859
|
-
omit?:
|
|
24730
|
+
omit?: SessionOmit<ExtArgs> | null
|
|
24731
|
+
/**
|
|
24732
|
+
* Choose, which related nodes to fetch as well
|
|
24733
|
+
*/
|
|
24734
|
+
include?: SessionInclude<ExtArgs> | null
|
|
25860
24735
|
}
|
|
25861
24736
|
|
|
25862
24737
|
|
|
@@ -27147,6 +26022,7 @@ export namespace Prisma {
|
|
|
27147
26022
|
avatarUrl: 'avatarUrl',
|
|
27148
26023
|
displayName: 'displayName',
|
|
27149
26024
|
mainGroupId: 'mainGroupId',
|
|
26025
|
+
qrLoginRedirectDelay: 'qrLoginRedirectDelay',
|
|
27150
26026
|
mainLoginType: 'mainLoginType',
|
|
27151
26027
|
invitedBy: 'invitedBy',
|
|
27152
26028
|
registrationMethod: 'registrationMethod'
|
|
@@ -27170,21 +26046,6 @@ export namespace Prisma {
|
|
|
27170
26046
|
export type SessionScalarFieldEnum = (typeof SessionScalarFieldEnum)[keyof typeof SessionScalarFieldEnum]
|
|
27171
26047
|
|
|
27172
26048
|
|
|
27173
|
-
export const QrLoginChallengeScalarFieldEnum: {
|
|
27174
|
-
dbId: 'dbId',
|
|
27175
|
-
secretHash: 'secretHash',
|
|
27176
|
-
status: 'status',
|
|
27177
|
-
approvedByUserId: 'approvedByUserId',
|
|
27178
|
-
sessionExpiresAt: 'sessionExpiresAt',
|
|
27179
|
-
createdAt: 'createdAt',
|
|
27180
|
-
expiresAt: 'expiresAt',
|
|
27181
|
-
approvedAt: 'approvedAt',
|
|
27182
|
-
consumedAt: 'consumedAt'
|
|
27183
|
-
};
|
|
27184
|
-
|
|
27185
|
-
export type QrLoginChallengeScalarFieldEnum = (typeof QrLoginChallengeScalarFieldEnum)[keyof typeof QrLoginChallengeScalarFieldEnum]
|
|
27186
|
-
|
|
27187
|
-
|
|
27188
26049
|
export const LoginMethodScalarFieldEnum: {
|
|
27189
26050
|
dbId: 'dbId',
|
|
27190
26051
|
platform: 'platform',
|
|
@@ -28601,6 +27462,7 @@ export namespace Prisma {
|
|
|
28601
27462
|
avatarUrl?: StringNullableFilter<"User"> | string | null
|
|
28602
27463
|
displayName?: StringFilter<"User"> | string
|
|
28603
27464
|
mainGroupId?: StringNullableFilter<"User"> | string | null
|
|
27465
|
+
qrLoginRedirectDelay?: BoolFilter<"User"> | boolean
|
|
28604
27466
|
mainLoginType?: EnumPlatformsFilter<"User"> | $Enums.Platforms
|
|
28605
27467
|
invitedBy?: StringNullableFilter<"User"> | string | null
|
|
28606
27468
|
registrationMethod?: EnumRegistrationMethodFilter<"User"> | $Enums.RegistrationMethod
|
|
@@ -28623,6 +27485,7 @@ export namespace Prisma {
|
|
|
28623
27485
|
avatarUrl?: SortOrderInput | SortOrder
|
|
28624
27486
|
displayName?: SortOrder
|
|
28625
27487
|
mainGroupId?: SortOrderInput | SortOrder
|
|
27488
|
+
qrLoginRedirectDelay?: SortOrder
|
|
28626
27489
|
mainLoginType?: SortOrder
|
|
28627
27490
|
invitedBy?: SortOrderInput | SortOrder
|
|
28628
27491
|
registrationMethod?: SortOrder
|
|
@@ -28648,6 +27511,7 @@ export namespace Prisma {
|
|
|
28648
27511
|
avatarUrl?: StringNullableFilter<"User"> | string | null
|
|
28649
27512
|
displayName?: StringFilter<"User"> | string
|
|
28650
27513
|
mainGroupId?: StringNullableFilter<"User"> | string | null
|
|
27514
|
+
qrLoginRedirectDelay?: BoolFilter<"User"> | boolean
|
|
28651
27515
|
mainLoginType?: EnumPlatformsFilter<"User"> | $Enums.Platforms
|
|
28652
27516
|
invitedBy?: StringNullableFilter<"User"> | string | null
|
|
28653
27517
|
registrationMethod?: EnumRegistrationMethodFilter<"User"> | $Enums.RegistrationMethod
|
|
@@ -28670,6 +27534,7 @@ export namespace Prisma {
|
|
|
28670
27534
|
avatarUrl?: SortOrderInput | SortOrder
|
|
28671
27535
|
displayName?: SortOrder
|
|
28672
27536
|
mainGroupId?: SortOrderInput | SortOrder
|
|
27537
|
+
qrLoginRedirectDelay?: SortOrder
|
|
28673
27538
|
mainLoginType?: SortOrder
|
|
28674
27539
|
invitedBy?: SortOrderInput | SortOrder
|
|
28675
27540
|
registrationMethod?: SortOrder
|
|
@@ -28688,6 +27553,7 @@ export namespace Prisma {
|
|
|
28688
27553
|
avatarUrl?: StringNullableWithAggregatesFilter<"User"> | string | null
|
|
28689
27554
|
displayName?: StringWithAggregatesFilter<"User"> | string
|
|
28690
27555
|
mainGroupId?: StringNullableWithAggregatesFilter<"User"> | string | null
|
|
27556
|
+
qrLoginRedirectDelay?: BoolWithAggregatesFilter<"User"> | boolean
|
|
28691
27557
|
mainLoginType?: EnumPlatformsWithAggregatesFilter<"User"> | $Enums.Platforms
|
|
28692
27558
|
invitedBy?: StringNullableWithAggregatesFilter<"User"> | string | null
|
|
28693
27559
|
registrationMethod?: EnumRegistrationMethodWithAggregatesFilter<"User"> | $Enums.RegistrationMethod
|
|
@@ -28768,78 +27634,6 @@ export namespace Prisma {
|
|
|
28768
27634
|
lastUsed?: DateTimeWithAggregatesFilter<"Session"> | Date | string
|
|
28769
27635
|
}
|
|
28770
27636
|
|
|
28771
|
-
export type QrLoginChallengeWhereInput = {
|
|
28772
|
-
AND?: QrLoginChallengeWhereInput | QrLoginChallengeWhereInput[]
|
|
28773
|
-
OR?: QrLoginChallengeWhereInput[]
|
|
28774
|
-
NOT?: QrLoginChallengeWhereInput | QrLoginChallengeWhereInput[]
|
|
28775
|
-
dbId?: StringFilter<"QrLoginChallenge"> | string
|
|
28776
|
-
secretHash?: StringFilter<"QrLoginChallenge"> | string
|
|
28777
|
-
status?: StringFilter<"QrLoginChallenge"> | string
|
|
28778
|
-
approvedByUserId?: StringNullableFilter<"QrLoginChallenge"> | string | null
|
|
28779
|
-
sessionExpiresAt?: DateTimeNullableFilter<"QrLoginChallenge"> | Date | string | null
|
|
28780
|
-
createdAt?: DateTimeFilter<"QrLoginChallenge"> | Date | string
|
|
28781
|
-
expiresAt?: DateTimeFilter<"QrLoginChallenge"> | Date | string
|
|
28782
|
-
approvedAt?: DateTimeNullableFilter<"QrLoginChallenge"> | Date | string | null
|
|
28783
|
-
consumedAt?: DateTimeNullableFilter<"QrLoginChallenge"> | Date | string | null
|
|
28784
|
-
}
|
|
28785
|
-
|
|
28786
|
-
export type QrLoginChallengeOrderByWithRelationInput = {
|
|
28787
|
-
dbId?: SortOrder
|
|
28788
|
-
secretHash?: SortOrder
|
|
28789
|
-
status?: SortOrder
|
|
28790
|
-
approvedByUserId?: SortOrderInput | SortOrder
|
|
28791
|
-
sessionExpiresAt?: SortOrderInput | SortOrder
|
|
28792
|
-
createdAt?: SortOrder
|
|
28793
|
-
expiresAt?: SortOrder
|
|
28794
|
-
approvedAt?: SortOrderInput | SortOrder
|
|
28795
|
-
consumedAt?: SortOrderInput | SortOrder
|
|
28796
|
-
}
|
|
28797
|
-
|
|
28798
|
-
export type QrLoginChallengeWhereUniqueInput = Prisma.AtLeast<{
|
|
28799
|
-
dbId?: string
|
|
28800
|
-
secretHash?: string
|
|
28801
|
-
AND?: QrLoginChallengeWhereInput | QrLoginChallengeWhereInput[]
|
|
28802
|
-
OR?: QrLoginChallengeWhereInput[]
|
|
28803
|
-
NOT?: QrLoginChallengeWhereInput | QrLoginChallengeWhereInput[]
|
|
28804
|
-
status?: StringFilter<"QrLoginChallenge"> | string
|
|
28805
|
-
approvedByUserId?: StringNullableFilter<"QrLoginChallenge"> | string | null
|
|
28806
|
-
sessionExpiresAt?: DateTimeNullableFilter<"QrLoginChallenge"> | Date | string | null
|
|
28807
|
-
createdAt?: DateTimeFilter<"QrLoginChallenge"> | Date | string
|
|
28808
|
-
expiresAt?: DateTimeFilter<"QrLoginChallenge"> | Date | string
|
|
28809
|
-
approvedAt?: DateTimeNullableFilter<"QrLoginChallenge"> | Date | string | null
|
|
28810
|
-
consumedAt?: DateTimeNullableFilter<"QrLoginChallenge"> | Date | string | null
|
|
28811
|
-
}, "dbId" | "secretHash">
|
|
28812
|
-
|
|
28813
|
-
export type QrLoginChallengeOrderByWithAggregationInput = {
|
|
28814
|
-
dbId?: SortOrder
|
|
28815
|
-
secretHash?: SortOrder
|
|
28816
|
-
status?: SortOrder
|
|
28817
|
-
approvedByUserId?: SortOrderInput | SortOrder
|
|
28818
|
-
sessionExpiresAt?: SortOrderInput | SortOrder
|
|
28819
|
-
createdAt?: SortOrder
|
|
28820
|
-
expiresAt?: SortOrder
|
|
28821
|
-
approvedAt?: SortOrderInput | SortOrder
|
|
28822
|
-
consumedAt?: SortOrderInput | SortOrder
|
|
28823
|
-
_count?: QrLoginChallengeCountOrderByAggregateInput
|
|
28824
|
-
_max?: QrLoginChallengeMaxOrderByAggregateInput
|
|
28825
|
-
_min?: QrLoginChallengeMinOrderByAggregateInput
|
|
28826
|
-
}
|
|
28827
|
-
|
|
28828
|
-
export type QrLoginChallengeScalarWhereWithAggregatesInput = {
|
|
28829
|
-
AND?: QrLoginChallengeScalarWhereWithAggregatesInput | QrLoginChallengeScalarWhereWithAggregatesInput[]
|
|
28830
|
-
OR?: QrLoginChallengeScalarWhereWithAggregatesInput[]
|
|
28831
|
-
NOT?: QrLoginChallengeScalarWhereWithAggregatesInput | QrLoginChallengeScalarWhereWithAggregatesInput[]
|
|
28832
|
-
dbId?: StringWithAggregatesFilter<"QrLoginChallenge"> | string
|
|
28833
|
-
secretHash?: StringWithAggregatesFilter<"QrLoginChallenge"> | string
|
|
28834
|
-
status?: StringWithAggregatesFilter<"QrLoginChallenge"> | string
|
|
28835
|
-
approvedByUserId?: StringNullableWithAggregatesFilter<"QrLoginChallenge"> | string | null
|
|
28836
|
-
sessionExpiresAt?: DateTimeNullableWithAggregatesFilter<"QrLoginChallenge"> | Date | string | null
|
|
28837
|
-
createdAt?: DateTimeWithAggregatesFilter<"QrLoginChallenge"> | Date | string
|
|
28838
|
-
expiresAt?: DateTimeWithAggregatesFilter<"QrLoginChallenge"> | Date | string
|
|
28839
|
-
approvedAt?: DateTimeNullableWithAggregatesFilter<"QrLoginChallenge"> | Date | string | null
|
|
28840
|
-
consumedAt?: DateTimeNullableWithAggregatesFilter<"QrLoginChallenge"> | Date | string | null
|
|
28841
|
-
}
|
|
28842
|
-
|
|
28843
27637
|
export type LoginMethodWhereInput = {
|
|
28844
27638
|
AND?: LoginMethodWhereInput | LoginMethodWhereInput[]
|
|
28845
27639
|
OR?: LoginMethodWhereInput[]
|
|
@@ -30131,6 +28925,7 @@ export namespace Prisma {
|
|
|
30131
28925
|
avatarUrl?: string | null
|
|
30132
28926
|
displayName: string
|
|
30133
28927
|
mainGroupId?: string | null
|
|
28928
|
+
qrLoginRedirectDelay?: boolean
|
|
30134
28929
|
mainLoginType: $Enums.Platforms
|
|
30135
28930
|
invitedBy?: string | null
|
|
30136
28931
|
registrationMethod?: $Enums.RegistrationMethod
|
|
@@ -30153,6 +28948,7 @@ export namespace Prisma {
|
|
|
30153
28948
|
avatarUrl?: string | null
|
|
30154
28949
|
displayName: string
|
|
30155
28950
|
mainGroupId?: string | null
|
|
28951
|
+
qrLoginRedirectDelay?: boolean
|
|
30156
28952
|
mainLoginType: $Enums.Platforms
|
|
30157
28953
|
invitedBy?: string | null
|
|
30158
28954
|
registrationMethod?: $Enums.RegistrationMethod
|
|
@@ -30175,6 +28971,7 @@ export namespace Prisma {
|
|
|
30175
28971
|
avatarUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30176
28972
|
displayName?: StringFieldUpdateOperationsInput | string
|
|
30177
28973
|
mainGroupId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
28974
|
+
qrLoginRedirectDelay?: BoolFieldUpdateOperationsInput | boolean
|
|
30178
28975
|
mainLoginType?: EnumPlatformsFieldUpdateOperationsInput | $Enums.Platforms
|
|
30179
28976
|
invitedBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30180
28977
|
registrationMethod?: EnumRegistrationMethodFieldUpdateOperationsInput | $Enums.RegistrationMethod
|
|
@@ -30197,6 +28994,7 @@ export namespace Prisma {
|
|
|
30197
28994
|
avatarUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30198
28995
|
displayName?: StringFieldUpdateOperationsInput | string
|
|
30199
28996
|
mainGroupId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
28997
|
+
qrLoginRedirectDelay?: BoolFieldUpdateOperationsInput | boolean
|
|
30200
28998
|
mainLoginType?: EnumPlatformsFieldUpdateOperationsInput | $Enums.Platforms
|
|
30201
28999
|
invitedBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30202
29000
|
registrationMethod?: EnumRegistrationMethodFieldUpdateOperationsInput | $Enums.RegistrationMethod
|
|
@@ -30219,6 +29017,7 @@ export namespace Prisma {
|
|
|
30219
29017
|
avatarUrl?: string | null
|
|
30220
29018
|
displayName: string
|
|
30221
29019
|
mainGroupId?: string | null
|
|
29020
|
+
qrLoginRedirectDelay?: boolean
|
|
30222
29021
|
mainLoginType: $Enums.Platforms
|
|
30223
29022
|
invitedBy?: string | null
|
|
30224
29023
|
registrationMethod?: $Enums.RegistrationMethod
|
|
@@ -30231,6 +29030,7 @@ export namespace Prisma {
|
|
|
30231
29030
|
avatarUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30232
29031
|
displayName?: StringFieldUpdateOperationsInput | string
|
|
30233
29032
|
mainGroupId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
29033
|
+
qrLoginRedirectDelay?: BoolFieldUpdateOperationsInput | boolean
|
|
30234
29034
|
mainLoginType?: EnumPlatformsFieldUpdateOperationsInput | $Enums.Platforms
|
|
30235
29035
|
invitedBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30236
29036
|
registrationMethod?: EnumRegistrationMethodFieldUpdateOperationsInput | $Enums.RegistrationMethod
|
|
@@ -30243,6 +29043,7 @@ export namespace Prisma {
|
|
|
30243
29043
|
avatarUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30244
29044
|
displayName?: StringFieldUpdateOperationsInput | string
|
|
30245
29045
|
mainGroupId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
29046
|
+
qrLoginRedirectDelay?: BoolFieldUpdateOperationsInput | boolean
|
|
30246
29047
|
mainLoginType?: EnumPlatformsFieldUpdateOperationsInput | $Enums.Platforms
|
|
30247
29048
|
invitedBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30248
29049
|
registrationMethod?: EnumRegistrationMethodFieldUpdateOperationsInput | $Enums.RegistrationMethod
|
|
@@ -30331,90 +29132,6 @@ export namespace Prisma {
|
|
|
30331
29132
|
lastUsed?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
30332
29133
|
}
|
|
30333
29134
|
|
|
30334
|
-
export type QrLoginChallengeCreateInput = {
|
|
30335
|
-
dbId?: string
|
|
30336
|
-
secretHash: string
|
|
30337
|
-
status?: string
|
|
30338
|
-
approvedByUserId?: string | null
|
|
30339
|
-
sessionExpiresAt?: Date | string | null
|
|
30340
|
-
createdAt?: Date | string
|
|
30341
|
-
expiresAt: Date | string
|
|
30342
|
-
approvedAt?: Date | string | null
|
|
30343
|
-
consumedAt?: Date | string | null
|
|
30344
|
-
}
|
|
30345
|
-
|
|
30346
|
-
export type QrLoginChallengeUncheckedCreateInput = {
|
|
30347
|
-
dbId?: string
|
|
30348
|
-
secretHash: string
|
|
30349
|
-
status?: string
|
|
30350
|
-
approvedByUserId?: string | null
|
|
30351
|
-
sessionExpiresAt?: Date | string | null
|
|
30352
|
-
createdAt?: Date | string
|
|
30353
|
-
expiresAt: Date | string
|
|
30354
|
-
approvedAt?: Date | string | null
|
|
30355
|
-
consumedAt?: Date | string | null
|
|
30356
|
-
}
|
|
30357
|
-
|
|
30358
|
-
export type QrLoginChallengeUpdateInput = {
|
|
30359
|
-
dbId?: StringFieldUpdateOperationsInput | string
|
|
30360
|
-
secretHash?: StringFieldUpdateOperationsInput | string
|
|
30361
|
-
status?: StringFieldUpdateOperationsInput | string
|
|
30362
|
-
approvedByUserId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30363
|
-
sessionExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
30364
|
-
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
30365
|
-
expiresAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
30366
|
-
approvedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
30367
|
-
consumedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
30368
|
-
}
|
|
30369
|
-
|
|
30370
|
-
export type QrLoginChallengeUncheckedUpdateInput = {
|
|
30371
|
-
dbId?: StringFieldUpdateOperationsInput | string
|
|
30372
|
-
secretHash?: StringFieldUpdateOperationsInput | string
|
|
30373
|
-
status?: StringFieldUpdateOperationsInput | string
|
|
30374
|
-
approvedByUserId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30375
|
-
sessionExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
30376
|
-
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
30377
|
-
expiresAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
30378
|
-
approvedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
30379
|
-
consumedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
30380
|
-
}
|
|
30381
|
-
|
|
30382
|
-
export type QrLoginChallengeCreateManyInput = {
|
|
30383
|
-
dbId?: string
|
|
30384
|
-
secretHash: string
|
|
30385
|
-
status?: string
|
|
30386
|
-
approvedByUserId?: string | null
|
|
30387
|
-
sessionExpiresAt?: Date | string | null
|
|
30388
|
-
createdAt?: Date | string
|
|
30389
|
-
expiresAt: Date | string
|
|
30390
|
-
approvedAt?: Date | string | null
|
|
30391
|
-
consumedAt?: Date | string | null
|
|
30392
|
-
}
|
|
30393
|
-
|
|
30394
|
-
export type QrLoginChallengeUpdateManyMutationInput = {
|
|
30395
|
-
dbId?: StringFieldUpdateOperationsInput | string
|
|
30396
|
-
secretHash?: StringFieldUpdateOperationsInput | string
|
|
30397
|
-
status?: StringFieldUpdateOperationsInput | string
|
|
30398
|
-
approvedByUserId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30399
|
-
sessionExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
30400
|
-
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
30401
|
-
expiresAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
30402
|
-
approvedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
30403
|
-
consumedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
30404
|
-
}
|
|
30405
|
-
|
|
30406
|
-
export type QrLoginChallengeUncheckedUpdateManyInput = {
|
|
30407
|
-
dbId?: StringFieldUpdateOperationsInput | string
|
|
30408
|
-
secretHash?: StringFieldUpdateOperationsInput | string
|
|
30409
|
-
status?: StringFieldUpdateOperationsInput | string
|
|
30410
|
-
approvedByUserId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30411
|
-
sessionExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
30412
|
-
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
30413
|
-
expiresAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
30414
|
-
approvedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
30415
|
-
consumedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
30416
|
-
}
|
|
30417
|
-
|
|
30418
29135
|
export type LoginMethodCreateInput = {
|
|
30419
29136
|
dbId?: string
|
|
30420
29137
|
platform: $Enums.Platforms
|
|
@@ -31623,6 +30340,7 @@ export namespace Prisma {
|
|
|
31623
30340
|
avatarUrl?: SortOrder
|
|
31624
30341
|
displayName?: SortOrder
|
|
31625
30342
|
mainGroupId?: SortOrder
|
|
30343
|
+
qrLoginRedirectDelay?: SortOrder
|
|
31626
30344
|
mainLoginType?: SortOrder
|
|
31627
30345
|
invitedBy?: SortOrder
|
|
31628
30346
|
registrationMethod?: SortOrder
|
|
@@ -31635,6 +30353,7 @@ export namespace Prisma {
|
|
|
31635
30353
|
avatarUrl?: SortOrder
|
|
31636
30354
|
displayName?: SortOrder
|
|
31637
30355
|
mainGroupId?: SortOrder
|
|
30356
|
+
qrLoginRedirectDelay?: SortOrder
|
|
31638
30357
|
mainLoginType?: SortOrder
|
|
31639
30358
|
invitedBy?: SortOrder
|
|
31640
30359
|
registrationMethod?: SortOrder
|
|
@@ -31647,6 +30366,7 @@ export namespace Prisma {
|
|
|
31647
30366
|
avatarUrl?: SortOrder
|
|
31648
30367
|
displayName?: SortOrder
|
|
31649
30368
|
mainGroupId?: SortOrder
|
|
30369
|
+
qrLoginRedirectDelay?: SortOrder
|
|
31650
30370
|
mainLoginType?: SortOrder
|
|
31651
30371
|
invitedBy?: SortOrder
|
|
31652
30372
|
registrationMethod?: SortOrder
|
|
@@ -31705,42 +30425,6 @@ export namespace Prisma {
|
|
|
31705
30425
|
_max?: NestedEnumDeviceNullableFilter<$PrismaModel>
|
|
31706
30426
|
}
|
|
31707
30427
|
|
|
31708
|
-
export type QrLoginChallengeCountOrderByAggregateInput = {
|
|
31709
|
-
dbId?: SortOrder
|
|
31710
|
-
secretHash?: SortOrder
|
|
31711
|
-
status?: SortOrder
|
|
31712
|
-
approvedByUserId?: SortOrder
|
|
31713
|
-
sessionExpiresAt?: SortOrder
|
|
31714
|
-
createdAt?: SortOrder
|
|
31715
|
-
expiresAt?: SortOrder
|
|
31716
|
-
approvedAt?: SortOrder
|
|
31717
|
-
consumedAt?: SortOrder
|
|
31718
|
-
}
|
|
31719
|
-
|
|
31720
|
-
export type QrLoginChallengeMaxOrderByAggregateInput = {
|
|
31721
|
-
dbId?: SortOrder
|
|
31722
|
-
secretHash?: SortOrder
|
|
31723
|
-
status?: SortOrder
|
|
31724
|
-
approvedByUserId?: SortOrder
|
|
31725
|
-
sessionExpiresAt?: SortOrder
|
|
31726
|
-
createdAt?: SortOrder
|
|
31727
|
-
expiresAt?: SortOrder
|
|
31728
|
-
approvedAt?: SortOrder
|
|
31729
|
-
consumedAt?: SortOrder
|
|
31730
|
-
}
|
|
31731
|
-
|
|
31732
|
-
export type QrLoginChallengeMinOrderByAggregateInput = {
|
|
31733
|
-
dbId?: SortOrder
|
|
31734
|
-
secretHash?: SortOrder
|
|
31735
|
-
status?: SortOrder
|
|
31736
|
-
approvedByUserId?: SortOrder
|
|
31737
|
-
sessionExpiresAt?: SortOrder
|
|
31738
|
-
createdAt?: SortOrder
|
|
31739
|
-
expiresAt?: SortOrder
|
|
31740
|
-
approvedAt?: SortOrder
|
|
31741
|
-
consumedAt?: SortOrder
|
|
31742
|
-
}
|
|
31743
|
-
|
|
31744
30428
|
export type LoginMethodPlatformPlatformEmailCompoundUniqueInput = {
|
|
31745
30429
|
platform: $Enums.Platforms
|
|
31746
30430
|
platformEmail: string
|
|
@@ -34489,6 +33173,7 @@ export namespace Prisma {
|
|
|
34489
33173
|
avatarUrl?: string | null
|
|
34490
33174
|
displayName: string
|
|
34491
33175
|
mainGroupId?: string | null
|
|
33176
|
+
qrLoginRedirectDelay?: boolean
|
|
34492
33177
|
mainLoginType: $Enums.Platforms
|
|
34493
33178
|
invitedBy?: string | null
|
|
34494
33179
|
registrationMethod?: $Enums.RegistrationMethod
|
|
@@ -34510,6 +33195,7 @@ export namespace Prisma {
|
|
|
34510
33195
|
avatarUrl?: string | null
|
|
34511
33196
|
displayName: string
|
|
34512
33197
|
mainGroupId?: string | null
|
|
33198
|
+
qrLoginRedirectDelay?: boolean
|
|
34513
33199
|
mainLoginType: $Enums.Platforms
|
|
34514
33200
|
invitedBy?: string | null
|
|
34515
33201
|
registrationMethod?: $Enums.RegistrationMethod
|
|
@@ -34586,6 +33272,7 @@ export namespace Prisma {
|
|
|
34586
33272
|
avatarUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34587
33273
|
displayName?: StringFieldUpdateOperationsInput | string
|
|
34588
33274
|
mainGroupId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
33275
|
+
qrLoginRedirectDelay?: BoolFieldUpdateOperationsInput | boolean
|
|
34589
33276
|
mainLoginType?: EnumPlatformsFieldUpdateOperationsInput | $Enums.Platforms
|
|
34590
33277
|
invitedBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34591
33278
|
registrationMethod?: EnumRegistrationMethodFieldUpdateOperationsInput | $Enums.RegistrationMethod
|
|
@@ -34607,6 +33294,7 @@ export namespace Prisma {
|
|
|
34607
33294
|
avatarUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34608
33295
|
displayName?: StringFieldUpdateOperationsInput | string
|
|
34609
33296
|
mainGroupId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
33297
|
+
qrLoginRedirectDelay?: BoolFieldUpdateOperationsInput | boolean
|
|
34610
33298
|
mainLoginType?: EnumPlatformsFieldUpdateOperationsInput | $Enums.Platforms
|
|
34611
33299
|
invitedBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34612
33300
|
registrationMethod?: EnumRegistrationMethodFieldUpdateOperationsInput | $Enums.RegistrationMethod
|
|
@@ -34784,6 +33472,7 @@ export namespace Prisma {
|
|
|
34784
33472
|
avatarUrl?: string | null
|
|
34785
33473
|
displayName: string
|
|
34786
33474
|
mainGroupId?: string | null
|
|
33475
|
+
qrLoginRedirectDelay?: boolean
|
|
34787
33476
|
mainLoginType: $Enums.Platforms
|
|
34788
33477
|
invitedBy?: string | null
|
|
34789
33478
|
registrationMethod?: $Enums.RegistrationMethod
|
|
@@ -34805,6 +33494,7 @@ export namespace Prisma {
|
|
|
34805
33494
|
avatarUrl?: string | null
|
|
34806
33495
|
displayName: string
|
|
34807
33496
|
mainGroupId?: string | null
|
|
33497
|
+
qrLoginRedirectDelay?: boolean
|
|
34808
33498
|
mainLoginType: $Enums.Platforms
|
|
34809
33499
|
invitedBy?: string | null
|
|
34810
33500
|
registrationMethod?: $Enums.RegistrationMethod
|
|
@@ -34875,6 +33565,7 @@ export namespace Prisma {
|
|
|
34875
33565
|
avatarUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34876
33566
|
displayName?: StringFieldUpdateOperationsInput | string
|
|
34877
33567
|
mainGroupId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
33568
|
+
qrLoginRedirectDelay?: BoolFieldUpdateOperationsInput | boolean
|
|
34878
33569
|
mainLoginType?: EnumPlatformsFieldUpdateOperationsInput | $Enums.Platforms
|
|
34879
33570
|
invitedBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34880
33571
|
registrationMethod?: EnumRegistrationMethodFieldUpdateOperationsInput | $Enums.RegistrationMethod
|
|
@@ -34896,6 +33587,7 @@ export namespace Prisma {
|
|
|
34896
33587
|
avatarUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34897
33588
|
displayName?: StringFieldUpdateOperationsInput | string
|
|
34898
33589
|
mainGroupId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
33590
|
+
qrLoginRedirectDelay?: BoolFieldUpdateOperationsInput | boolean
|
|
34899
33591
|
mainLoginType?: EnumPlatformsFieldUpdateOperationsInput | $Enums.Platforms
|
|
34900
33592
|
invitedBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34901
33593
|
registrationMethod?: EnumRegistrationMethodFieldUpdateOperationsInput | $Enums.RegistrationMethod
|
|
@@ -35190,6 +33882,7 @@ export namespace Prisma {
|
|
|
35190
33882
|
avatarUrl?: string | null
|
|
35191
33883
|
displayName: string
|
|
35192
33884
|
mainGroupId?: string | null
|
|
33885
|
+
qrLoginRedirectDelay?: boolean
|
|
35193
33886
|
mainLoginType: $Enums.Platforms
|
|
35194
33887
|
invitedBy?: string | null
|
|
35195
33888
|
registrationMethod?: $Enums.RegistrationMethod
|
|
@@ -35211,6 +33904,7 @@ export namespace Prisma {
|
|
|
35211
33904
|
avatarUrl?: string | null
|
|
35212
33905
|
displayName: string
|
|
35213
33906
|
mainGroupId?: string | null
|
|
33907
|
+
qrLoginRedirectDelay?: boolean
|
|
35214
33908
|
mainLoginType: $Enums.Platforms
|
|
35215
33909
|
invitedBy?: string | null
|
|
35216
33910
|
registrationMethod?: $Enums.RegistrationMethod
|
|
@@ -35277,6 +33971,7 @@ export namespace Prisma {
|
|
|
35277
33971
|
avatarUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35278
33972
|
displayName?: StringFieldUpdateOperationsInput | string
|
|
35279
33973
|
mainGroupId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
33974
|
+
qrLoginRedirectDelay?: BoolFieldUpdateOperationsInput | boolean
|
|
35280
33975
|
mainLoginType?: EnumPlatformsFieldUpdateOperationsInput | $Enums.Platforms
|
|
35281
33976
|
invitedBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35282
33977
|
registrationMethod?: EnumRegistrationMethodFieldUpdateOperationsInput | $Enums.RegistrationMethod
|
|
@@ -35298,6 +33993,7 @@ export namespace Prisma {
|
|
|
35298
33993
|
avatarUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35299
33994
|
displayName?: StringFieldUpdateOperationsInput | string
|
|
35300
33995
|
mainGroupId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
33996
|
+
qrLoginRedirectDelay?: BoolFieldUpdateOperationsInput | boolean
|
|
35301
33997
|
mainLoginType?: EnumPlatformsFieldUpdateOperationsInput | $Enums.Platforms
|
|
35302
33998
|
invitedBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35303
33999
|
registrationMethod?: EnumRegistrationMethodFieldUpdateOperationsInput | $Enums.RegistrationMethod
|
|
@@ -35346,6 +34042,7 @@ export namespace Prisma {
|
|
|
35346
34042
|
avatarUrl?: string | null
|
|
35347
34043
|
displayName: string
|
|
35348
34044
|
mainGroupId?: string | null
|
|
34045
|
+
qrLoginRedirectDelay?: boolean
|
|
35349
34046
|
mainLoginType: $Enums.Platforms
|
|
35350
34047
|
invitedBy?: string | null
|
|
35351
34048
|
registrationMethod?: $Enums.RegistrationMethod
|
|
@@ -35367,6 +34064,7 @@ export namespace Prisma {
|
|
|
35367
34064
|
avatarUrl?: string | null
|
|
35368
34065
|
displayName: string
|
|
35369
34066
|
mainGroupId?: string | null
|
|
34067
|
+
qrLoginRedirectDelay?: boolean
|
|
35370
34068
|
mainLoginType: $Enums.Platforms
|
|
35371
34069
|
invitedBy?: string | null
|
|
35372
34070
|
registrationMethod?: $Enums.RegistrationMethod
|
|
@@ -35437,6 +34135,7 @@ export namespace Prisma {
|
|
|
35437
34135
|
avatarUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35438
34136
|
displayName?: StringFieldUpdateOperationsInput | string
|
|
35439
34137
|
mainGroupId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34138
|
+
qrLoginRedirectDelay?: BoolFieldUpdateOperationsInput | boolean
|
|
35440
34139
|
mainLoginType?: EnumPlatformsFieldUpdateOperationsInput | $Enums.Platforms
|
|
35441
34140
|
invitedBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35442
34141
|
registrationMethod?: EnumRegistrationMethodFieldUpdateOperationsInput | $Enums.RegistrationMethod
|
|
@@ -35458,6 +34157,7 @@ export namespace Prisma {
|
|
|
35458
34157
|
avatarUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35459
34158
|
displayName?: StringFieldUpdateOperationsInput | string
|
|
35460
34159
|
mainGroupId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34160
|
+
qrLoginRedirectDelay?: BoolFieldUpdateOperationsInput | boolean
|
|
35461
34161
|
mainLoginType?: EnumPlatformsFieldUpdateOperationsInput | $Enums.Platforms
|
|
35462
34162
|
invitedBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35463
34163
|
registrationMethod?: EnumRegistrationMethodFieldUpdateOperationsInput | $Enums.RegistrationMethod
|
|
@@ -35504,6 +34204,7 @@ export namespace Prisma {
|
|
|
35504
34204
|
avatarUrl?: string | null
|
|
35505
34205
|
displayName: string
|
|
35506
34206
|
mainGroupId?: string | null
|
|
34207
|
+
qrLoginRedirectDelay?: boolean
|
|
35507
34208
|
mainLoginType: $Enums.Platforms
|
|
35508
34209
|
invitedBy?: string | null
|
|
35509
34210
|
registrationMethod?: $Enums.RegistrationMethod
|
|
@@ -35525,6 +34226,7 @@ export namespace Prisma {
|
|
|
35525
34226
|
avatarUrl?: string | null
|
|
35526
34227
|
displayName: string
|
|
35527
34228
|
mainGroupId?: string | null
|
|
34229
|
+
qrLoginRedirectDelay?: boolean
|
|
35528
34230
|
mainLoginType: $Enums.Platforms
|
|
35529
34231
|
invitedBy?: string | null
|
|
35530
34232
|
registrationMethod?: $Enums.RegistrationMethod
|
|
@@ -35593,6 +34295,7 @@ export namespace Prisma {
|
|
|
35593
34295
|
avatarUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35594
34296
|
displayName?: StringFieldUpdateOperationsInput | string
|
|
35595
34297
|
mainGroupId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34298
|
+
qrLoginRedirectDelay?: BoolFieldUpdateOperationsInput | boolean
|
|
35596
34299
|
mainLoginType?: EnumPlatformsFieldUpdateOperationsInput | $Enums.Platforms
|
|
35597
34300
|
invitedBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35598
34301
|
registrationMethod?: EnumRegistrationMethodFieldUpdateOperationsInput | $Enums.RegistrationMethod
|
|
@@ -35614,6 +34317,7 @@ export namespace Prisma {
|
|
|
35614
34317
|
avatarUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35615
34318
|
displayName?: StringFieldUpdateOperationsInput | string
|
|
35616
34319
|
mainGroupId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34320
|
+
qrLoginRedirectDelay?: BoolFieldUpdateOperationsInput | boolean
|
|
35617
34321
|
mainLoginType?: EnumPlatformsFieldUpdateOperationsInput | $Enums.Platforms
|
|
35618
34322
|
invitedBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35619
34323
|
registrationMethod?: EnumRegistrationMethodFieldUpdateOperationsInput | $Enums.RegistrationMethod
|
|
@@ -35674,6 +34378,7 @@ export namespace Prisma {
|
|
|
35674
34378
|
avatarUrl?: string | null
|
|
35675
34379
|
displayName: string
|
|
35676
34380
|
mainGroupId?: string | null
|
|
34381
|
+
qrLoginRedirectDelay?: boolean
|
|
35677
34382
|
mainLoginType: $Enums.Platforms
|
|
35678
34383
|
invitedBy?: string | null
|
|
35679
34384
|
registrationMethod?: $Enums.RegistrationMethod
|
|
@@ -35695,6 +34400,7 @@ export namespace Prisma {
|
|
|
35695
34400
|
avatarUrl?: string | null
|
|
35696
34401
|
displayName: string
|
|
35697
34402
|
mainGroupId?: string | null
|
|
34403
|
+
qrLoginRedirectDelay?: boolean
|
|
35698
34404
|
mainLoginType: $Enums.Platforms
|
|
35699
34405
|
invitedBy?: string | null
|
|
35700
34406
|
registrationMethod?: $Enums.RegistrationMethod
|
|
@@ -35777,6 +34483,7 @@ export namespace Prisma {
|
|
|
35777
34483
|
avatarUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35778
34484
|
displayName?: StringFieldUpdateOperationsInput | string
|
|
35779
34485
|
mainGroupId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34486
|
+
qrLoginRedirectDelay?: BoolFieldUpdateOperationsInput | boolean
|
|
35780
34487
|
mainLoginType?: EnumPlatformsFieldUpdateOperationsInput | $Enums.Platforms
|
|
35781
34488
|
invitedBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35782
34489
|
registrationMethod?: EnumRegistrationMethodFieldUpdateOperationsInput | $Enums.RegistrationMethod
|
|
@@ -35798,6 +34505,7 @@ export namespace Prisma {
|
|
|
35798
34505
|
avatarUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35799
34506
|
displayName?: StringFieldUpdateOperationsInput | string
|
|
35800
34507
|
mainGroupId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34508
|
+
qrLoginRedirectDelay?: BoolFieldUpdateOperationsInput | boolean
|
|
35801
34509
|
mainLoginType?: EnumPlatformsFieldUpdateOperationsInput | $Enums.Platforms
|
|
35802
34510
|
invitedBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35803
34511
|
registrationMethod?: EnumRegistrationMethodFieldUpdateOperationsInput | $Enums.RegistrationMethod
|
|
@@ -35819,6 +34527,7 @@ export namespace Prisma {
|
|
|
35819
34527
|
avatarUrl?: string | null
|
|
35820
34528
|
displayName: string
|
|
35821
34529
|
mainGroupId?: string | null
|
|
34530
|
+
qrLoginRedirectDelay?: boolean
|
|
35822
34531
|
mainLoginType: $Enums.Platforms
|
|
35823
34532
|
invitedBy?: string | null
|
|
35824
34533
|
registrationMethod?: $Enums.RegistrationMethod
|
|
@@ -35840,6 +34549,7 @@ export namespace Prisma {
|
|
|
35840
34549
|
avatarUrl?: string | null
|
|
35841
34550
|
displayName: string
|
|
35842
34551
|
mainGroupId?: string | null
|
|
34552
|
+
qrLoginRedirectDelay?: boolean
|
|
35843
34553
|
mainLoginType: $Enums.Platforms
|
|
35844
34554
|
invitedBy?: string | null
|
|
35845
34555
|
registrationMethod?: $Enums.RegistrationMethod
|
|
@@ -35877,6 +34587,7 @@ export namespace Prisma {
|
|
|
35877
34587
|
avatarUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35878
34588
|
displayName?: StringFieldUpdateOperationsInput | string
|
|
35879
34589
|
mainGroupId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34590
|
+
qrLoginRedirectDelay?: BoolFieldUpdateOperationsInput | boolean
|
|
35880
34591
|
mainLoginType?: EnumPlatformsFieldUpdateOperationsInput | $Enums.Platforms
|
|
35881
34592
|
invitedBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35882
34593
|
registrationMethod?: EnumRegistrationMethodFieldUpdateOperationsInput | $Enums.RegistrationMethod
|
|
@@ -35898,6 +34609,7 @@ export namespace Prisma {
|
|
|
35898
34609
|
avatarUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35899
34610
|
displayName?: StringFieldUpdateOperationsInput | string
|
|
35900
34611
|
mainGroupId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34612
|
+
qrLoginRedirectDelay?: BoolFieldUpdateOperationsInput | boolean
|
|
35901
34613
|
mainLoginType?: EnumPlatformsFieldUpdateOperationsInput | $Enums.Platforms
|
|
35902
34614
|
invitedBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35903
34615
|
registrationMethod?: EnumRegistrationMethodFieldUpdateOperationsInput | $Enums.RegistrationMethod
|
|
@@ -35919,6 +34631,7 @@ export namespace Prisma {
|
|
|
35919
34631
|
avatarUrl?: string | null
|
|
35920
34632
|
displayName: string
|
|
35921
34633
|
mainGroupId?: string | null
|
|
34634
|
+
qrLoginRedirectDelay?: boolean
|
|
35922
34635
|
mainLoginType: $Enums.Platforms
|
|
35923
34636
|
invitedBy?: string | null
|
|
35924
34637
|
registrationMethod?: $Enums.RegistrationMethod
|
|
@@ -35940,6 +34653,7 @@ export namespace Prisma {
|
|
|
35940
34653
|
avatarUrl?: string | null
|
|
35941
34654
|
displayName: string
|
|
35942
34655
|
mainGroupId?: string | null
|
|
34656
|
+
qrLoginRedirectDelay?: boolean
|
|
35943
34657
|
mainLoginType: $Enums.Platforms
|
|
35944
34658
|
invitedBy?: string | null
|
|
35945
34659
|
registrationMethod?: $Enums.RegistrationMethod
|
|
@@ -36054,6 +34768,7 @@ export namespace Prisma {
|
|
|
36054
34768
|
avatarUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
36055
34769
|
displayName?: StringFieldUpdateOperationsInput | string
|
|
36056
34770
|
mainGroupId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34771
|
+
qrLoginRedirectDelay?: BoolFieldUpdateOperationsInput | boolean
|
|
36057
34772
|
mainLoginType?: EnumPlatformsFieldUpdateOperationsInput | $Enums.Platforms
|
|
36058
34773
|
invitedBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
36059
34774
|
registrationMethod?: EnumRegistrationMethodFieldUpdateOperationsInput | $Enums.RegistrationMethod
|
|
@@ -36075,6 +34790,7 @@ export namespace Prisma {
|
|
|
36075
34790
|
avatarUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
36076
34791
|
displayName?: StringFieldUpdateOperationsInput | string
|
|
36077
34792
|
mainGroupId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34793
|
+
qrLoginRedirectDelay?: BoolFieldUpdateOperationsInput | boolean
|
|
36078
34794
|
mainLoginType?: EnumPlatformsFieldUpdateOperationsInput | $Enums.Platforms
|
|
36079
34795
|
invitedBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
36080
34796
|
registrationMethod?: EnumRegistrationMethodFieldUpdateOperationsInput | $Enums.RegistrationMethod
|
|
@@ -37023,6 +35739,7 @@ export namespace Prisma {
|
|
|
37023
35739
|
avatarUrl?: string | null
|
|
37024
35740
|
displayName: string
|
|
37025
35741
|
mainGroupId?: string | null
|
|
35742
|
+
qrLoginRedirectDelay?: boolean
|
|
37026
35743
|
mainLoginType: $Enums.Platforms
|
|
37027
35744
|
invitedBy?: string | null
|
|
37028
35745
|
registrationMethod?: $Enums.RegistrationMethod
|
|
@@ -37044,6 +35761,7 @@ export namespace Prisma {
|
|
|
37044
35761
|
avatarUrl?: string | null
|
|
37045
35762
|
displayName: string
|
|
37046
35763
|
mainGroupId?: string | null
|
|
35764
|
+
qrLoginRedirectDelay?: boolean
|
|
37047
35765
|
mainLoginType: $Enums.Platforms
|
|
37048
35766
|
invitedBy?: string | null
|
|
37049
35767
|
registrationMethod?: $Enums.RegistrationMethod
|
|
@@ -37081,6 +35799,7 @@ export namespace Prisma {
|
|
|
37081
35799
|
avatarUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
37082
35800
|
displayName?: StringFieldUpdateOperationsInput | string
|
|
37083
35801
|
mainGroupId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35802
|
+
qrLoginRedirectDelay?: BoolFieldUpdateOperationsInput | boolean
|
|
37084
35803
|
mainLoginType?: EnumPlatformsFieldUpdateOperationsInput | $Enums.Platforms
|
|
37085
35804
|
invitedBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
37086
35805
|
registrationMethod?: EnumRegistrationMethodFieldUpdateOperationsInput | $Enums.RegistrationMethod
|
|
@@ -37102,6 +35821,7 @@ export namespace Prisma {
|
|
|
37102
35821
|
avatarUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
37103
35822
|
displayName?: StringFieldUpdateOperationsInput | string
|
|
37104
35823
|
mainGroupId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35824
|
+
qrLoginRedirectDelay?: BoolFieldUpdateOperationsInput | boolean
|
|
37105
35825
|
mainLoginType?: EnumPlatformsFieldUpdateOperationsInput | $Enums.Platforms
|
|
37106
35826
|
invitedBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
37107
35827
|
registrationMethod?: EnumRegistrationMethodFieldUpdateOperationsInput | $Enums.RegistrationMethod
|
|
@@ -37123,6 +35843,7 @@ export namespace Prisma {
|
|
|
37123
35843
|
avatarUrl?: string | null
|
|
37124
35844
|
displayName: string
|
|
37125
35845
|
mainGroupId?: string | null
|
|
35846
|
+
qrLoginRedirectDelay?: boolean
|
|
37126
35847
|
mainLoginType: $Enums.Platforms
|
|
37127
35848
|
invitedBy?: string | null
|
|
37128
35849
|
registrationMethod?: $Enums.RegistrationMethod
|
|
@@ -37144,6 +35865,7 @@ export namespace Prisma {
|
|
|
37144
35865
|
avatarUrl?: string | null
|
|
37145
35866
|
displayName: string
|
|
37146
35867
|
mainGroupId?: string | null
|
|
35868
|
+
qrLoginRedirectDelay?: boolean
|
|
37147
35869
|
mainLoginType: $Enums.Platforms
|
|
37148
35870
|
invitedBy?: string | null
|
|
37149
35871
|
registrationMethod?: $Enums.RegistrationMethod
|
|
@@ -37181,6 +35903,7 @@ export namespace Prisma {
|
|
|
37181
35903
|
avatarUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
37182
35904
|
displayName?: StringFieldUpdateOperationsInput | string
|
|
37183
35905
|
mainGroupId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35906
|
+
qrLoginRedirectDelay?: BoolFieldUpdateOperationsInput | boolean
|
|
37184
35907
|
mainLoginType?: EnumPlatformsFieldUpdateOperationsInput | $Enums.Platforms
|
|
37185
35908
|
invitedBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
37186
35909
|
registrationMethod?: EnumRegistrationMethodFieldUpdateOperationsInput | $Enums.RegistrationMethod
|
|
@@ -37202,6 +35925,7 @@ export namespace Prisma {
|
|
|
37202
35925
|
avatarUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
37203
35926
|
displayName?: StringFieldUpdateOperationsInput | string
|
|
37204
35927
|
mainGroupId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35928
|
+
qrLoginRedirectDelay?: BoolFieldUpdateOperationsInput | boolean
|
|
37205
35929
|
mainLoginType?: EnumPlatformsFieldUpdateOperationsInput | $Enums.Platforms
|
|
37206
35930
|
invitedBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
37207
35931
|
registrationMethod?: EnumRegistrationMethodFieldUpdateOperationsInput | $Enums.RegistrationMethod
|