@a_team/prisma 3.31.0-win → 3.31.1-linux
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/client/edge.js +5 -4
- package/dist/client/index-browser.js +1 -0
- package/dist/client/index.d.ts +68 -0
- package/dist/client/index.js +7 -6
- package/dist/client/{query_engine-windows.dll.node → libquery_engine-linux-musl-openssl-3.0.x.so.node} +0 -0
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +13 -11
- package/dist/client/wasm.js +1 -0
- package/package.json +2 -2
|
@@ -718,6 +718,7 @@ exports.Prisma.VettingProcessScalarFieldEnum = {
|
|
|
718
718
|
interviewDate: 'interviewDate',
|
|
719
719
|
calComBookingUid: 'calComBookingUid',
|
|
720
720
|
calComBookingId: 'calComBookingId',
|
|
721
|
+
calComBookingUidsHistory: 'calComBookingUidsHistory',
|
|
721
722
|
calendarEventId: 'calendarEventId',
|
|
722
723
|
migrations: 'migrations',
|
|
723
724
|
createdAt: 'createdAt',
|
package/dist/client/index.d.ts
CHANGED
|
@@ -57415,6 +57415,7 @@ export namespace Prisma {
|
|
|
57415
57415
|
interviewDate: number
|
|
57416
57416
|
calComBookingUid: number
|
|
57417
57417
|
calComBookingId: number
|
|
57418
|
+
calComBookingUidsHistory: number
|
|
57418
57419
|
calendarEventId: number
|
|
57419
57420
|
migrations: number
|
|
57420
57421
|
createdAt: number
|
|
@@ -57496,6 +57497,7 @@ export namespace Prisma {
|
|
|
57496
57497
|
interviewDate?: true
|
|
57497
57498
|
calComBookingUid?: true
|
|
57498
57499
|
calComBookingId?: true
|
|
57500
|
+
calComBookingUidsHistory?: true
|
|
57499
57501
|
calendarEventId?: true
|
|
57500
57502
|
migrations?: true
|
|
57501
57503
|
createdAt?: true
|
|
@@ -57608,6 +57610,7 @@ export namespace Prisma {
|
|
|
57608
57610
|
interviewDate: Date | null
|
|
57609
57611
|
calComBookingUid: string | null
|
|
57610
57612
|
calComBookingId: number | null
|
|
57613
|
+
calComBookingUidsHistory: string[]
|
|
57611
57614
|
calendarEventId: string | null
|
|
57612
57615
|
migrations: string[]
|
|
57613
57616
|
createdAt: Date | null
|
|
@@ -57652,6 +57655,7 @@ export namespace Prisma {
|
|
|
57652
57655
|
interviewDate?: boolean
|
|
57653
57656
|
calComBookingUid?: boolean
|
|
57654
57657
|
calComBookingId?: boolean
|
|
57658
|
+
calComBookingUidsHistory?: boolean
|
|
57655
57659
|
calendarEventId?: boolean
|
|
57656
57660
|
migrations?: boolean
|
|
57657
57661
|
createdAt?: boolean
|
|
@@ -57687,6 +57691,7 @@ export namespace Prisma {
|
|
|
57687
57691
|
interviewDate?: boolean
|
|
57688
57692
|
calComBookingUid?: boolean
|
|
57689
57693
|
calComBookingId?: boolean
|
|
57694
|
+
calComBookingUidsHistory?: boolean
|
|
57690
57695
|
calendarEventId?: boolean
|
|
57691
57696
|
migrations?: boolean
|
|
57692
57697
|
createdAt?: boolean
|
|
@@ -57753,6 +57758,10 @@ export namespace Prisma {
|
|
|
57753
57758
|
* CalCom booking ID
|
|
57754
57759
|
*/
|
|
57755
57760
|
calComBookingId: number | null
|
|
57761
|
+
/**
|
|
57762
|
+
* CalCom booking IDs history - used to keep all booking ids for the vetting process
|
|
57763
|
+
*/
|
|
57764
|
+
calComBookingUidsHistory: string[]
|
|
57756
57765
|
/**
|
|
57757
57766
|
* Interview scheduler calendar event ID
|
|
57758
57767
|
*/
|
|
@@ -58182,6 +58191,7 @@ export namespace Prisma {
|
|
|
58182
58191
|
readonly interviewDate: FieldRef<"VettingProcess", 'DateTime'>
|
|
58183
58192
|
readonly calComBookingUid: FieldRef<"VettingProcess", 'String'>
|
|
58184
58193
|
readonly calComBookingId: FieldRef<"VettingProcess", 'Int'>
|
|
58194
|
+
readonly calComBookingUidsHistory: FieldRef<"VettingProcess", 'String[]'>
|
|
58185
58195
|
readonly calendarEventId: FieldRef<"VettingProcess", 'String'>
|
|
58186
58196
|
readonly migrations: FieldRef<"VettingProcess", 'String[]'>
|
|
58187
58197
|
readonly createdAt: FieldRef<"VettingProcess", 'DateTime'>
|
|
@@ -60307,6 +60317,7 @@ export namespace Prisma {
|
|
|
60307
60317
|
interviewDate: 'interviewDate',
|
|
60308
60318
|
calComBookingUid: 'calComBookingUid',
|
|
60309
60319
|
calComBookingId: 'calComBookingId',
|
|
60320
|
+
calComBookingUidsHistory: 'calComBookingUidsHistory',
|
|
60310
60321
|
calendarEventId: 'calendarEventId',
|
|
60311
60322
|
migrations: 'migrations',
|
|
60312
60323
|
createdAt: 'createdAt',
|
|
@@ -65240,6 +65251,7 @@ export namespace Prisma {
|
|
|
65240
65251
|
interviewDate?: DateTimeNullableFilter<"VettingProcess"> | Date | string | null
|
|
65241
65252
|
calComBookingUid?: StringNullableFilter<"VettingProcess"> | string | null
|
|
65242
65253
|
calComBookingId?: IntNullableFilter<"VettingProcess"> | number | null
|
|
65254
|
+
calComBookingUidsHistory?: StringNullableListFilter<"VettingProcess">
|
|
65243
65255
|
calendarEventId?: StringNullableFilter<"VettingProcess"> | string | null
|
|
65244
65256
|
migrations?: StringNullableListFilter<"VettingProcess">
|
|
65245
65257
|
createdAt?: DateTimeNullableFilter<"VettingProcess"> | Date | string | null
|
|
@@ -65273,6 +65285,7 @@ export namespace Prisma {
|
|
|
65273
65285
|
interviewDate?: SortOrder
|
|
65274
65286
|
calComBookingUid?: SortOrder
|
|
65275
65287
|
calComBookingId?: SortOrder
|
|
65288
|
+
calComBookingUidsHistory?: SortOrder
|
|
65276
65289
|
calendarEventId?: SortOrder
|
|
65277
65290
|
migrations?: SortOrder
|
|
65278
65291
|
createdAt?: SortOrder
|
|
@@ -65309,6 +65322,7 @@ export namespace Prisma {
|
|
|
65309
65322
|
interviewDate?: DateTimeNullableFilter<"VettingProcess"> | Date | string | null
|
|
65310
65323
|
calComBookingUid?: StringNullableFilter<"VettingProcess"> | string | null
|
|
65311
65324
|
calComBookingId?: IntNullableFilter<"VettingProcess"> | number | null
|
|
65325
|
+
calComBookingUidsHistory?: StringNullableListFilter<"VettingProcess">
|
|
65312
65326
|
calendarEventId?: StringNullableFilter<"VettingProcess"> | string | null
|
|
65313
65327
|
migrations?: StringNullableListFilter<"VettingProcess">
|
|
65314
65328
|
createdAt?: DateTimeNullableFilter<"VettingProcess"> | Date | string | null
|
|
@@ -65342,6 +65356,7 @@ export namespace Prisma {
|
|
|
65342
65356
|
interviewDate?: SortOrder
|
|
65343
65357
|
calComBookingUid?: SortOrder
|
|
65344
65358
|
calComBookingId?: SortOrder
|
|
65359
|
+
calComBookingUidsHistory?: SortOrder
|
|
65345
65360
|
calendarEventId?: SortOrder
|
|
65346
65361
|
migrations?: SortOrder
|
|
65347
65362
|
createdAt?: SortOrder
|
|
@@ -65375,6 +65390,7 @@ export namespace Prisma {
|
|
|
65375
65390
|
interviewDate?: DateTimeNullableWithAggregatesFilter<"VettingProcess"> | Date | string | null
|
|
65376
65391
|
calComBookingUid?: StringNullableWithAggregatesFilter<"VettingProcess"> | string | null
|
|
65377
65392
|
calComBookingId?: IntNullableWithAggregatesFilter<"VettingProcess"> | number | null
|
|
65393
|
+
calComBookingUidsHistory?: StringNullableListFilter<"VettingProcess">
|
|
65378
65394
|
calendarEventId?: StringNullableWithAggregatesFilter<"VettingProcess"> | string | null
|
|
65379
65395
|
migrations?: StringNullableListFilter<"VettingProcess">
|
|
65380
65396
|
createdAt?: DateTimeNullableWithAggregatesFilter<"VettingProcess"> | Date | string | null
|
|
@@ -70170,6 +70186,7 @@ export namespace Prisma {
|
|
|
70170
70186
|
interviewDate?: Date | string | null
|
|
70171
70187
|
calComBookingUid?: string | null
|
|
70172
70188
|
calComBookingId?: number | null
|
|
70189
|
+
calComBookingUidsHistory?: VettingProcessCreatecalComBookingUidsHistoryInput | string[]
|
|
70173
70190
|
calendarEventId?: string | null
|
|
70174
70191
|
migrations?: VettingProcessCreatemigrationsInput | string[]
|
|
70175
70192
|
createdAt?: Date | string | null
|
|
@@ -70203,6 +70220,7 @@ export namespace Prisma {
|
|
|
70203
70220
|
interviewDate?: Date | string | null
|
|
70204
70221
|
calComBookingUid?: string | null
|
|
70205
70222
|
calComBookingId?: number | null
|
|
70223
|
+
calComBookingUidsHistory?: VettingProcessCreatecalComBookingUidsHistoryInput | string[]
|
|
70206
70224
|
calendarEventId?: string | null
|
|
70207
70225
|
migrations?: VettingProcessCreatemigrationsInput | string[]
|
|
70208
70226
|
createdAt?: Date | string | null
|
|
@@ -70225,6 +70243,7 @@ export namespace Prisma {
|
|
|
70225
70243
|
interviewDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
70226
70244
|
calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
70227
70245
|
calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
70246
|
+
calComBookingUidsHistory?: VettingProcessUpdatecalComBookingUidsHistoryInput | string[]
|
|
70228
70247
|
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
70229
70248
|
migrations?: VettingProcessUpdatemigrationsInput | string[]
|
|
70230
70249
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -70257,6 +70276,7 @@ export namespace Prisma {
|
|
|
70257
70276
|
interviewDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
70258
70277
|
calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
70259
70278
|
calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
70279
|
+
calComBookingUidsHistory?: VettingProcessUpdatecalComBookingUidsHistoryInput | string[]
|
|
70260
70280
|
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
70261
70281
|
migrations?: VettingProcessUpdatemigrationsInput | string[]
|
|
70262
70282
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -70285,6 +70305,7 @@ export namespace Prisma {
|
|
|
70285
70305
|
interviewDate?: Date | string | null
|
|
70286
70306
|
calComBookingUid?: string | null
|
|
70287
70307
|
calComBookingId?: number | null
|
|
70308
|
+
calComBookingUidsHistory?: VettingProcessCreatecalComBookingUidsHistoryInput | string[]
|
|
70288
70309
|
calendarEventId?: string | null
|
|
70289
70310
|
migrations?: VettingProcessCreatemigrationsInput | string[]
|
|
70290
70311
|
createdAt?: Date | string | null
|
|
@@ -70306,6 +70327,7 @@ export namespace Prisma {
|
|
|
70306
70327
|
interviewDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
70307
70328
|
calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
70308
70329
|
calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
70330
|
+
calComBookingUidsHistory?: VettingProcessUpdatecalComBookingUidsHistoryInput | string[]
|
|
70309
70331
|
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
70310
70332
|
migrations?: VettingProcessUpdatemigrationsInput | string[]
|
|
70311
70333
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -70332,6 +70354,7 @@ export namespace Prisma {
|
|
|
70332
70354
|
interviewDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
70333
70355
|
calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
70334
70356
|
calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
70357
|
+
calComBookingUidsHistory?: VettingProcessUpdatecalComBookingUidsHistoryInput | string[]
|
|
70335
70358
|
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
70336
70359
|
migrations?: VettingProcessUpdatemigrationsInput | string[]
|
|
70337
70360
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -75274,6 +75297,7 @@ export namespace Prisma {
|
|
|
75274
75297
|
interviewDate?: SortOrder
|
|
75275
75298
|
calComBookingUid?: SortOrder
|
|
75276
75299
|
calComBookingId?: SortOrder
|
|
75300
|
+
calComBookingUidsHistory?: SortOrder
|
|
75277
75301
|
calendarEventId?: SortOrder
|
|
75278
75302
|
migrations?: SortOrder
|
|
75279
75303
|
createdAt?: SortOrder
|
|
@@ -80366,6 +80390,10 @@ export namespace Prisma {
|
|
|
80366
80390
|
set: string[]
|
|
80367
80391
|
}
|
|
80368
80392
|
|
|
80393
|
+
export type VettingProcessCreatecalComBookingUidsHistoryInput = {
|
|
80394
|
+
set: string[]
|
|
80395
|
+
}
|
|
80396
|
+
|
|
80369
80397
|
export type VettingProcessCreatemigrationsInput = {
|
|
80370
80398
|
set: string[]
|
|
80371
80399
|
}
|
|
@@ -80461,6 +80489,11 @@ export namespace Prisma {
|
|
|
80461
80489
|
push?: string | string[]
|
|
80462
80490
|
}
|
|
80463
80491
|
|
|
80492
|
+
export type VettingProcessUpdatecalComBookingUidsHistoryInput = {
|
|
80493
|
+
set?: string[]
|
|
80494
|
+
push?: string | string[]
|
|
80495
|
+
}
|
|
80496
|
+
|
|
80464
80497
|
export type VettingProcessUpdatemigrationsInput = {
|
|
80465
80498
|
set?: string[]
|
|
80466
80499
|
push?: string | string[]
|
|
@@ -93471,6 +93504,7 @@ export namespace Prisma {
|
|
|
93471
93504
|
interviewDate?: Date | string | null
|
|
93472
93505
|
calComBookingUid?: string | null
|
|
93473
93506
|
calComBookingId?: number | null
|
|
93507
|
+
calComBookingUidsHistory?: VettingProcessCreatecalComBookingUidsHistoryInput | string[]
|
|
93474
93508
|
calendarEventId?: string | null
|
|
93475
93509
|
migrations?: VettingProcessCreatemigrationsInput | string[]
|
|
93476
93510
|
createdAt?: Date | string | null
|
|
@@ -93502,6 +93536,7 @@ export namespace Prisma {
|
|
|
93502
93536
|
interviewDate?: Date | string | null
|
|
93503
93537
|
calComBookingUid?: string | null
|
|
93504
93538
|
calComBookingId?: number | null
|
|
93539
|
+
calComBookingUidsHistory?: VettingProcessCreatecalComBookingUidsHistoryInput | string[]
|
|
93505
93540
|
calendarEventId?: string | null
|
|
93506
93541
|
migrations?: VettingProcessCreatemigrationsInput | string[]
|
|
93507
93542
|
createdAt?: Date | string | null
|
|
@@ -93634,6 +93669,7 @@ export namespace Prisma {
|
|
|
93634
93669
|
interviewDate?: DateTimeNullableFilter<"VettingProcess"> | Date | string | null
|
|
93635
93670
|
calComBookingUid?: StringNullableFilter<"VettingProcess"> | string | null
|
|
93636
93671
|
calComBookingId?: IntNullableFilter<"VettingProcess"> | number | null
|
|
93672
|
+
calComBookingUidsHistory?: StringNullableListFilter<"VettingProcess">
|
|
93637
93673
|
calendarEventId?: StringNullableFilter<"VettingProcess"> | string | null
|
|
93638
93674
|
migrations?: StringNullableListFilter<"VettingProcess">
|
|
93639
93675
|
createdAt?: DateTimeNullableFilter<"VettingProcess"> | Date | string | null
|
|
@@ -93735,6 +93771,7 @@ export namespace Prisma {
|
|
|
93735
93771
|
interviewDate?: Date | string | null
|
|
93736
93772
|
calComBookingUid?: string | null
|
|
93737
93773
|
calComBookingId?: number | null
|
|
93774
|
+
calComBookingUidsHistory?: VettingProcessCreatecalComBookingUidsHistoryInput | string[]
|
|
93738
93775
|
calendarEventId?: string | null
|
|
93739
93776
|
migrations?: VettingProcessCreatemigrationsInput | string[]
|
|
93740
93777
|
createdAt?: Date | string | null
|
|
@@ -93766,6 +93803,7 @@ export namespace Prisma {
|
|
|
93766
93803
|
interviewDate?: Date | string | null
|
|
93767
93804
|
calComBookingUid?: string | null
|
|
93768
93805
|
calComBookingId?: number | null
|
|
93806
|
+
calComBookingUidsHistory?: VettingProcessCreatecalComBookingUidsHistoryInput | string[]
|
|
93769
93807
|
calendarEventId?: string | null
|
|
93770
93808
|
migrations?: VettingProcessCreatemigrationsInput | string[]
|
|
93771
93809
|
createdAt?: Date | string | null
|
|
@@ -95211,6 +95249,7 @@ export namespace Prisma {
|
|
|
95211
95249
|
interviewDate?: Date | string | null
|
|
95212
95250
|
calComBookingUid?: string | null
|
|
95213
95251
|
calComBookingId?: number | null
|
|
95252
|
+
calComBookingUidsHistory?: VettingProcessCreatecalComBookingUidsHistoryInput | string[]
|
|
95214
95253
|
calendarEventId?: string | null
|
|
95215
95254
|
migrations?: VettingProcessCreatemigrationsInput | string[]
|
|
95216
95255
|
createdAt?: Date | string | null
|
|
@@ -95242,6 +95281,7 @@ export namespace Prisma {
|
|
|
95242
95281
|
interviewDate?: Date | string | null
|
|
95243
95282
|
calComBookingUid?: string | null
|
|
95244
95283
|
calComBookingId?: number | null
|
|
95284
|
+
calComBookingUidsHistory?: VettingProcessCreatecalComBookingUidsHistoryInput | string[]
|
|
95245
95285
|
calendarEventId?: string | null
|
|
95246
95286
|
migrations?: VettingProcessCreatemigrationsInput | string[]
|
|
95247
95287
|
createdAt?: Date | string | null
|
|
@@ -95274,6 +95314,7 @@ export namespace Prisma {
|
|
|
95274
95314
|
interviewDate?: Date | string | null
|
|
95275
95315
|
calComBookingUid?: string | null
|
|
95276
95316
|
calComBookingId?: number | null
|
|
95317
|
+
calComBookingUidsHistory?: VettingProcessCreatecalComBookingUidsHistoryInput | string[]
|
|
95277
95318
|
calendarEventId?: string | null
|
|
95278
95319
|
migrations?: VettingProcessCreatemigrationsInput | string[]
|
|
95279
95320
|
createdAt?: Date | string | null
|
|
@@ -95305,6 +95346,7 @@ export namespace Prisma {
|
|
|
95305
95346
|
interviewDate?: Date | string | null
|
|
95306
95347
|
calComBookingUid?: string | null
|
|
95307
95348
|
calComBookingId?: number | null
|
|
95349
|
+
calComBookingUidsHistory?: VettingProcessCreatecalComBookingUidsHistoryInput | string[]
|
|
95308
95350
|
calendarEventId?: string | null
|
|
95309
95351
|
migrations?: VettingProcessCreatemigrationsInput | string[]
|
|
95310
95352
|
createdAt?: Date | string | null
|
|
@@ -95426,6 +95468,7 @@ export namespace Prisma {
|
|
|
95426
95468
|
interviewDate?: Date | string | null
|
|
95427
95469
|
calComBookingUid?: string | null
|
|
95428
95470
|
calComBookingId?: number | null
|
|
95471
|
+
calComBookingUidsHistory?: VettingProcessCreatecalComBookingUidsHistoryInput | string[]
|
|
95429
95472
|
calendarEventId?: string | null
|
|
95430
95473
|
migrations?: VettingProcessCreatemigrationsInput | string[]
|
|
95431
95474
|
createdAt?: Date | string | null
|
|
@@ -95457,6 +95500,7 @@ export namespace Prisma {
|
|
|
95457
95500
|
interviewDate?: Date | string | null
|
|
95458
95501
|
calComBookingUid?: string | null
|
|
95459
95502
|
calComBookingId?: number | null
|
|
95503
|
+
calComBookingUidsHistory?: VettingProcessCreatecalComBookingUidsHistoryInput | string[]
|
|
95460
95504
|
calendarEventId?: string | null
|
|
95461
95505
|
migrations?: VettingProcessCreatemigrationsInput | string[]
|
|
95462
95506
|
createdAt?: Date | string | null
|
|
@@ -98755,6 +98799,7 @@ export namespace Prisma {
|
|
|
98755
98799
|
interviewDate?: Date | string | null
|
|
98756
98800
|
calComBookingUid?: string | null
|
|
98757
98801
|
calComBookingId?: number | null
|
|
98802
|
+
calComBookingUidsHistory?: VettingProcessCreatecalComBookingUidsHistoryInput | string[]
|
|
98758
98803
|
calendarEventId?: string | null
|
|
98759
98804
|
migrations?: VettingProcessCreatemigrationsInput | string[]
|
|
98760
98805
|
createdAt?: Date | string | null
|
|
@@ -98787,6 +98832,7 @@ export namespace Prisma {
|
|
|
98787
98832
|
interviewDate?: Date | string | null
|
|
98788
98833
|
calComBookingUid?: string | null
|
|
98789
98834
|
calComBookingId?: number | null
|
|
98835
|
+
calComBookingUidsHistory?: VettingProcessCreatecalComBookingUidsHistoryInput | string[]
|
|
98790
98836
|
calendarEventId?: string | null
|
|
98791
98837
|
migrations?: VettingProcessCreatemigrationsInput | string[]
|
|
98792
98838
|
createdAt?: Date | string | null
|
|
@@ -98969,6 +99015,7 @@ export namespace Prisma {
|
|
|
98969
99015
|
interviewDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
98970
99016
|
calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98971
99017
|
calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
99018
|
+
calComBookingUidsHistory?: VettingProcessUpdatecalComBookingUidsHistoryInput | string[]
|
|
98972
99019
|
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98973
99020
|
migrations?: VettingProcessUpdatemigrationsInput | string[]
|
|
98974
99021
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -99000,6 +99047,7 @@ export namespace Prisma {
|
|
|
99000
99047
|
interviewDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
99001
99048
|
calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99002
99049
|
calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
99050
|
+
calComBookingUidsHistory?: VettingProcessUpdatecalComBookingUidsHistoryInput | string[]
|
|
99003
99051
|
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99004
99052
|
migrations?: VettingProcessUpdatemigrationsInput | string[]
|
|
99005
99053
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -101990,6 +102038,7 @@ export namespace Prisma {
|
|
|
101990
102038
|
interviewDate?: Date | string | null
|
|
101991
102039
|
calComBookingUid?: string | null
|
|
101992
102040
|
calComBookingId?: number | null
|
|
102041
|
+
calComBookingUidsHistory?: VettingProcessCreatecalComBookingUidsHistoryInput | string[]
|
|
101993
102042
|
calendarEventId?: string | null
|
|
101994
102043
|
migrations?: VettingProcessCreatemigrationsInput | string[]
|
|
101995
102044
|
createdAt?: Date | string | null
|
|
@@ -102119,6 +102168,7 @@ export namespace Prisma {
|
|
|
102119
102168
|
interviewDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
102120
102169
|
calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102121
102170
|
calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
102171
|
+
calComBookingUidsHistory?: VettingProcessUpdatecalComBookingUidsHistoryInput | string[]
|
|
102122
102172
|
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102123
102173
|
migrations?: VettingProcessUpdatemigrationsInput | string[]
|
|
102124
102174
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -102149,6 +102199,7 @@ export namespace Prisma {
|
|
|
102149
102199
|
interviewDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
102150
102200
|
calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102151
102201
|
calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
102202
|
+
calComBookingUidsHistory?: VettingProcessUpdatecalComBookingUidsHistoryInput | string[]
|
|
102152
102203
|
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102153
102204
|
migrations?: VettingProcessUpdatemigrationsInput | string[]
|
|
102154
102205
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -102175,6 +102226,7 @@ export namespace Prisma {
|
|
|
102175
102226
|
interviewDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
102176
102227
|
calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102177
102228
|
calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
102229
|
+
calComBookingUidsHistory?: VettingProcessUpdatecalComBookingUidsHistoryInput | string[]
|
|
102178
102230
|
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102179
102231
|
migrations?: VettingProcessUpdatemigrationsInput | string[]
|
|
102180
102232
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -102267,6 +102319,7 @@ export namespace Prisma {
|
|
|
102267
102319
|
interviewDate?: Date | string | null
|
|
102268
102320
|
calComBookingUid?: string | null
|
|
102269
102321
|
calComBookingId?: number | null
|
|
102322
|
+
calComBookingUidsHistory?: VettingProcessCreatecalComBookingUidsHistoryInput | string[]
|
|
102270
102323
|
calendarEventId?: string | null
|
|
102271
102324
|
migrations?: VettingProcessCreatemigrationsInput | string[]
|
|
102272
102325
|
createdAt?: Date | string | null
|
|
@@ -102288,6 +102341,7 @@ export namespace Prisma {
|
|
|
102288
102341
|
interviewDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
102289
102342
|
calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102290
102343
|
calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
102344
|
+
calComBookingUidsHistory?: VettingProcessUpdatecalComBookingUidsHistoryInput | string[]
|
|
102291
102345
|
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102292
102346
|
migrations?: VettingProcessUpdatemigrationsInput | string[]
|
|
102293
102347
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -102318,6 +102372,7 @@ export namespace Prisma {
|
|
|
102318
102372
|
interviewDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
102319
102373
|
calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102320
102374
|
calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
102375
|
+
calComBookingUidsHistory?: VettingProcessUpdatecalComBookingUidsHistoryInput | string[]
|
|
102321
102376
|
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102322
102377
|
migrations?: VettingProcessUpdatemigrationsInput | string[]
|
|
102323
102378
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -102344,6 +102399,7 @@ export namespace Prisma {
|
|
|
102344
102399
|
interviewDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
102345
102400
|
calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102346
102401
|
calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
102402
|
+
calComBookingUidsHistory?: VettingProcessUpdatecalComBookingUidsHistoryInput | string[]
|
|
102347
102403
|
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102348
102404
|
migrations?: VettingProcessUpdatemigrationsInput | string[]
|
|
102349
102405
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -102901,6 +102957,7 @@ export namespace Prisma {
|
|
|
102901
102957
|
interviewDate?: Date | string | null
|
|
102902
102958
|
calComBookingUid?: string | null
|
|
102903
102959
|
calComBookingId?: number | null
|
|
102960
|
+
calComBookingUidsHistory?: VettingProcessCreatecalComBookingUidsHistoryInput | string[]
|
|
102904
102961
|
calendarEventId?: string | null
|
|
102905
102962
|
migrations?: VettingProcessCreatemigrationsInput | string[]
|
|
102906
102963
|
createdAt?: Date | string | null
|
|
@@ -102927,6 +102984,7 @@ export namespace Prisma {
|
|
|
102927
102984
|
interviewDate?: Date | string | null
|
|
102928
102985
|
calComBookingUid?: string | null
|
|
102929
102986
|
calComBookingId?: number | null
|
|
102987
|
+
calComBookingUidsHistory?: VettingProcessCreatecalComBookingUidsHistoryInput | string[]
|
|
102930
102988
|
calendarEventId?: string | null
|
|
102931
102989
|
migrations?: VettingProcessCreatemigrationsInput | string[]
|
|
102932
102990
|
createdAt?: Date | string | null
|
|
@@ -102984,6 +103042,7 @@ export namespace Prisma {
|
|
|
102984
103042
|
interviewDate?: Date | string | null
|
|
102985
103043
|
calComBookingUid?: string | null
|
|
102986
103044
|
calComBookingId?: number | null
|
|
103045
|
+
calComBookingUidsHistory?: VettingProcessCreatecalComBookingUidsHistoryInput | string[]
|
|
102987
103046
|
calendarEventId?: string | null
|
|
102988
103047
|
migrations?: VettingProcessCreatemigrationsInput | string[]
|
|
102989
103048
|
createdAt?: Date | string | null
|
|
@@ -104563,6 +104622,7 @@ export namespace Prisma {
|
|
|
104563
104622
|
interviewDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
104564
104623
|
calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104565
104624
|
calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
104625
|
+
calComBookingUidsHistory?: VettingProcessUpdatecalComBookingUidsHistoryInput | string[]
|
|
104566
104626
|
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104567
104627
|
migrations?: VettingProcessUpdatemigrationsInput | string[]
|
|
104568
104628
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -104593,6 +104653,7 @@ export namespace Prisma {
|
|
|
104593
104653
|
interviewDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
104594
104654
|
calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104595
104655
|
calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
104656
|
+
calComBookingUidsHistory?: VettingProcessUpdatecalComBookingUidsHistoryInput | string[]
|
|
104596
104657
|
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104597
104658
|
migrations?: VettingProcessUpdatemigrationsInput | string[]
|
|
104598
104659
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -104619,6 +104680,7 @@ export namespace Prisma {
|
|
|
104619
104680
|
interviewDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
104620
104681
|
calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104621
104682
|
calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
104683
|
+
calComBookingUidsHistory?: VettingProcessUpdatecalComBookingUidsHistoryInput | string[]
|
|
104622
104684
|
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104623
104685
|
migrations?: VettingProcessUpdatemigrationsInput | string[]
|
|
104624
104686
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -104640,6 +104702,7 @@ export namespace Prisma {
|
|
|
104640
104702
|
interviewDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
104641
104703
|
calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104642
104704
|
calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
104705
|
+
calComBookingUidsHistory?: VettingProcessUpdatecalComBookingUidsHistoryInput | string[]
|
|
104643
104706
|
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104644
104707
|
migrations?: VettingProcessUpdatemigrationsInput | string[]
|
|
104645
104708
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -104670,6 +104733,7 @@ export namespace Prisma {
|
|
|
104670
104733
|
interviewDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
104671
104734
|
calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104672
104735
|
calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
104736
|
+
calComBookingUidsHistory?: VettingProcessUpdatecalComBookingUidsHistoryInput | string[]
|
|
104673
104737
|
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104674
104738
|
migrations?: VettingProcessUpdatemigrationsInput | string[]
|
|
104675
104739
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -104696,6 +104760,7 @@ export namespace Prisma {
|
|
|
104696
104760
|
interviewDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
104697
104761
|
calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104698
104762
|
calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
104763
|
+
calComBookingUidsHistory?: VettingProcessUpdatecalComBookingUidsHistoryInput | string[]
|
|
104699
104764
|
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104700
104765
|
migrations?: VettingProcessUpdatemigrationsInput | string[]
|
|
104701
104766
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -104801,6 +104866,7 @@ export namespace Prisma {
|
|
|
104801
104866
|
interviewDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
104802
104867
|
calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104803
104868
|
calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
104869
|
+
calComBookingUidsHistory?: VettingProcessUpdatecalComBookingUidsHistoryInput | string[]
|
|
104804
104870
|
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104805
104871
|
migrations?: VettingProcessUpdatemigrationsInput | string[]
|
|
104806
104872
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -104831,6 +104897,7 @@ export namespace Prisma {
|
|
|
104831
104897
|
interviewDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
104832
104898
|
calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104833
104899
|
calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
104900
|
+
calComBookingUidsHistory?: VettingProcessUpdatecalComBookingUidsHistoryInput | string[]
|
|
104834
104901
|
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104835
104902
|
migrations?: VettingProcessUpdatemigrationsInput | string[]
|
|
104836
104903
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -104857,6 +104924,7 @@ export namespace Prisma {
|
|
|
104857
104924
|
interviewDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
104858
104925
|
calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104859
104926
|
calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
104927
|
+
calComBookingUidsHistory?: VettingProcessUpdatecalComBookingUidsHistoryInput | string[]
|
|
104860
104928
|
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104861
104929
|
migrations?: VettingProcessUpdatemigrationsInput | string[]
|
|
104862
104930
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|