@valentine-efagene/qshelter-common 2.0.143 → 2.0.144
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/generated/client/browser.d.ts +32 -0
- package/dist/generated/client/client.d.ts +32 -0
- package/dist/generated/client/commonInputTypes.d.ts +354 -144
- package/dist/generated/client/enums.d.ts +45 -0
- package/dist/generated/client/enums.js +39 -0
- package/dist/generated/client/internal/class.d.ts +66 -0
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +633 -3
- package/dist/generated/client/internal/prismaNamespace.js +193 -1
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +204 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +193 -1
- package/dist/generated/client/models/Application.d.ts +669 -1
- package/dist/generated/client/models/ApplicationDocument.d.ts +577 -1
- package/dist/generated/client/models/ApplicationOrganization.d.ts +2385 -0
- package/dist/generated/client/models/ApplicationOrganization.js +1 -0
- package/dist/generated/client/models/BankDocumentRequirement.d.ts +1932 -0
- package/dist/generated/client/models/BankDocumentRequirement.js +1 -0
- package/dist/generated/client/models/DocumentExpiryWarning.d.ts +1141 -0
- package/dist/generated/client/models/DocumentExpiryWarning.js +1 -0
- package/dist/generated/client/models/Organization.d.ts +390 -0
- package/dist/generated/client/models/PropertyMedia.d.ts +0 -7
- package/dist/generated/client/models/PropertyPaymentMethod.d.ts +192 -3
- package/dist/generated/client/models/PropertyVariant.d.ts +0 -7
- package/dist/generated/client/models/ScheduledJob.d.ts +1317 -0
- package/dist/generated/client/models/ScheduledJob.js +1 -0
- package/dist/generated/client/models/StateTransitionDefinition.d.ts +1104 -0
- package/dist/generated/client/models/StateTransitionDefinition.js +1 -0
- package/dist/generated/client/models/StateTransitionLog.d.ts +1383 -0
- package/dist/generated/client/models/StateTransitionLog.js +1 -0
- package/dist/generated/client/models/Tenant.d.ts +2535 -798
- package/dist/generated/client/models/index.d.ts +6 -0
- package/dist/generated/client/models/index.js +6 -0
- package/dist/generated/client/models.d.ts +6 -0
- package/dist/src/prisma/tenant.js +4 -0
- package/package.json +1 -1
- package/prisma/schema.prisma +423 -2
|
@@ -14,9 +14,11 @@ export type AggregateApplicationDocument = {
|
|
|
14
14
|
_max: ApplicationDocumentMaxAggregateOutputType | null;
|
|
15
15
|
};
|
|
16
16
|
export type ApplicationDocumentAvgAggregateOutputType = {
|
|
17
|
+
expiryDays: number | null;
|
|
17
18
|
version: number | null;
|
|
18
19
|
};
|
|
19
20
|
export type ApplicationDocumentSumAggregateOutputType = {
|
|
21
|
+
expiryDays: number | null;
|
|
20
22
|
version: number | null;
|
|
21
23
|
};
|
|
22
24
|
export type ApplicationDocumentMinAggregateOutputType = {
|
|
@@ -31,6 +33,15 @@ export type ApplicationDocumentMinAggregateOutputType = {
|
|
|
31
33
|
url: string | null;
|
|
32
34
|
type: string | null;
|
|
33
35
|
uploadedById: string | null;
|
|
36
|
+
expectedUploader: $Enums.UploadedBy | null;
|
|
37
|
+
expectedOrganizationId: string | null;
|
|
38
|
+
documentDate: Date | null;
|
|
39
|
+
expiresAt: Date | null;
|
|
40
|
+
expiryDays: number | null;
|
|
41
|
+
isExpired: boolean | null;
|
|
42
|
+
expiredAt: Date | null;
|
|
43
|
+
expiryWarningAt: Date | null;
|
|
44
|
+
revalidatedAt: Date | null;
|
|
34
45
|
status: $Enums.DocumentStatus | null;
|
|
35
46
|
version: number | null;
|
|
36
47
|
replacesDocumentId: string | null;
|
|
@@ -49,6 +60,15 @@ export type ApplicationDocumentMaxAggregateOutputType = {
|
|
|
49
60
|
url: string | null;
|
|
50
61
|
type: string | null;
|
|
51
62
|
uploadedById: string | null;
|
|
63
|
+
expectedUploader: $Enums.UploadedBy | null;
|
|
64
|
+
expectedOrganizationId: string | null;
|
|
65
|
+
documentDate: Date | null;
|
|
66
|
+
expiresAt: Date | null;
|
|
67
|
+
expiryDays: number | null;
|
|
68
|
+
isExpired: boolean | null;
|
|
69
|
+
expiredAt: Date | null;
|
|
70
|
+
expiryWarningAt: Date | null;
|
|
71
|
+
revalidatedAt: Date | null;
|
|
52
72
|
status: $Enums.DocumentStatus | null;
|
|
53
73
|
version: number | null;
|
|
54
74
|
replacesDocumentId: string | null;
|
|
@@ -67,6 +87,15 @@ export type ApplicationDocumentCountAggregateOutputType = {
|
|
|
67
87
|
url: number;
|
|
68
88
|
type: number;
|
|
69
89
|
uploadedById: number;
|
|
90
|
+
expectedUploader: number;
|
|
91
|
+
expectedOrganizationId: number;
|
|
92
|
+
documentDate: number;
|
|
93
|
+
expiresAt: number;
|
|
94
|
+
expiryDays: number;
|
|
95
|
+
isExpired: number;
|
|
96
|
+
expiredAt: number;
|
|
97
|
+
expiryWarningAt: number;
|
|
98
|
+
revalidatedAt: number;
|
|
70
99
|
status: number;
|
|
71
100
|
version: number;
|
|
72
101
|
replacesDocumentId: number;
|
|
@@ -75,9 +104,11 @@ export type ApplicationDocumentCountAggregateOutputType = {
|
|
|
75
104
|
_all: number;
|
|
76
105
|
};
|
|
77
106
|
export type ApplicationDocumentAvgAggregateInputType = {
|
|
107
|
+
expiryDays?: true;
|
|
78
108
|
version?: true;
|
|
79
109
|
};
|
|
80
110
|
export type ApplicationDocumentSumAggregateInputType = {
|
|
111
|
+
expiryDays?: true;
|
|
81
112
|
version?: true;
|
|
82
113
|
};
|
|
83
114
|
export type ApplicationDocumentMinAggregateInputType = {
|
|
@@ -92,6 +123,15 @@ export type ApplicationDocumentMinAggregateInputType = {
|
|
|
92
123
|
url?: true;
|
|
93
124
|
type?: true;
|
|
94
125
|
uploadedById?: true;
|
|
126
|
+
expectedUploader?: true;
|
|
127
|
+
expectedOrganizationId?: true;
|
|
128
|
+
documentDate?: true;
|
|
129
|
+
expiresAt?: true;
|
|
130
|
+
expiryDays?: true;
|
|
131
|
+
isExpired?: true;
|
|
132
|
+
expiredAt?: true;
|
|
133
|
+
expiryWarningAt?: true;
|
|
134
|
+
revalidatedAt?: true;
|
|
95
135
|
status?: true;
|
|
96
136
|
version?: true;
|
|
97
137
|
replacesDocumentId?: true;
|
|
@@ -110,6 +150,15 @@ export type ApplicationDocumentMaxAggregateInputType = {
|
|
|
110
150
|
url?: true;
|
|
111
151
|
type?: true;
|
|
112
152
|
uploadedById?: true;
|
|
153
|
+
expectedUploader?: true;
|
|
154
|
+
expectedOrganizationId?: true;
|
|
155
|
+
documentDate?: true;
|
|
156
|
+
expiresAt?: true;
|
|
157
|
+
expiryDays?: true;
|
|
158
|
+
isExpired?: true;
|
|
159
|
+
expiredAt?: true;
|
|
160
|
+
expiryWarningAt?: true;
|
|
161
|
+
revalidatedAt?: true;
|
|
113
162
|
status?: true;
|
|
114
163
|
version?: true;
|
|
115
164
|
replacesDocumentId?: true;
|
|
@@ -128,6 +177,15 @@ export type ApplicationDocumentCountAggregateInputType = {
|
|
|
128
177
|
url?: true;
|
|
129
178
|
type?: true;
|
|
130
179
|
uploadedById?: true;
|
|
180
|
+
expectedUploader?: true;
|
|
181
|
+
expectedOrganizationId?: true;
|
|
182
|
+
documentDate?: true;
|
|
183
|
+
expiresAt?: true;
|
|
184
|
+
expiryDays?: true;
|
|
185
|
+
isExpired?: true;
|
|
186
|
+
expiredAt?: true;
|
|
187
|
+
expiryWarningAt?: true;
|
|
188
|
+
revalidatedAt?: true;
|
|
131
189
|
status?: true;
|
|
132
190
|
version?: true;
|
|
133
191
|
replacesDocumentId?: true;
|
|
@@ -223,6 +281,15 @@ export type ApplicationDocumentGroupByOutputType = {
|
|
|
223
281
|
url: string;
|
|
224
282
|
type: string;
|
|
225
283
|
uploadedById: string | null;
|
|
284
|
+
expectedUploader: $Enums.UploadedBy | null;
|
|
285
|
+
expectedOrganizationId: string | null;
|
|
286
|
+
documentDate: Date | null;
|
|
287
|
+
expiresAt: Date | null;
|
|
288
|
+
expiryDays: number | null;
|
|
289
|
+
isExpired: boolean;
|
|
290
|
+
expiredAt: Date | null;
|
|
291
|
+
expiryWarningAt: Date | null;
|
|
292
|
+
revalidatedAt: Date | null;
|
|
226
293
|
status: $Enums.DocumentStatus;
|
|
227
294
|
version: number;
|
|
228
295
|
replacesDocumentId: string | null;
|
|
@@ -252,6 +319,15 @@ export type ApplicationDocumentWhereInput = {
|
|
|
252
319
|
url?: Prisma.StringFilter<"ApplicationDocument"> | string;
|
|
253
320
|
type?: Prisma.StringFilter<"ApplicationDocument"> | string;
|
|
254
321
|
uploadedById?: Prisma.StringNullableFilter<"ApplicationDocument"> | string | null;
|
|
322
|
+
expectedUploader?: Prisma.EnumUploadedByNullableFilter<"ApplicationDocument"> | $Enums.UploadedBy | null;
|
|
323
|
+
expectedOrganizationId?: Prisma.StringNullableFilter<"ApplicationDocument"> | string | null;
|
|
324
|
+
documentDate?: Prisma.DateTimeNullableFilter<"ApplicationDocument"> | Date | string | null;
|
|
325
|
+
expiresAt?: Prisma.DateTimeNullableFilter<"ApplicationDocument"> | Date | string | null;
|
|
326
|
+
expiryDays?: Prisma.IntNullableFilter<"ApplicationDocument"> | number | null;
|
|
327
|
+
isExpired?: Prisma.BoolFilter<"ApplicationDocument"> | boolean;
|
|
328
|
+
expiredAt?: Prisma.DateTimeNullableFilter<"ApplicationDocument"> | Date | string | null;
|
|
329
|
+
expiryWarningAt?: Prisma.DateTimeNullableFilter<"ApplicationDocument"> | Date | string | null;
|
|
330
|
+
revalidatedAt?: Prisma.DateTimeNullableFilter<"ApplicationDocument"> | Date | string | null;
|
|
255
331
|
status?: Prisma.EnumDocumentStatusFilter<"ApplicationDocument"> | $Enums.DocumentStatus;
|
|
256
332
|
version?: Prisma.IntFilter<"ApplicationDocument"> | number;
|
|
257
333
|
replacesDocumentId?: Prisma.StringNullableFilter<"ApplicationDocument"> | string | null;
|
|
@@ -277,6 +353,15 @@ export type ApplicationDocumentOrderByWithRelationInput = {
|
|
|
277
353
|
url?: Prisma.SortOrder;
|
|
278
354
|
type?: Prisma.SortOrder;
|
|
279
355
|
uploadedById?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
356
|
+
expectedUploader?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
357
|
+
expectedOrganizationId?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
358
|
+
documentDate?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
359
|
+
expiresAt?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
360
|
+
expiryDays?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
361
|
+
isExpired?: Prisma.SortOrder;
|
|
362
|
+
expiredAt?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
363
|
+
expiryWarningAt?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
364
|
+
revalidatedAt?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
280
365
|
status?: Prisma.SortOrder;
|
|
281
366
|
version?: Prisma.SortOrder;
|
|
282
367
|
replacesDocumentId?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
@@ -306,6 +391,15 @@ export type ApplicationDocumentWhereUniqueInput = Prisma.AtLeast<{
|
|
|
306
391
|
url?: Prisma.StringFilter<"ApplicationDocument"> | string;
|
|
307
392
|
type?: Prisma.StringFilter<"ApplicationDocument"> | string;
|
|
308
393
|
uploadedById?: Prisma.StringNullableFilter<"ApplicationDocument"> | string | null;
|
|
394
|
+
expectedUploader?: Prisma.EnumUploadedByNullableFilter<"ApplicationDocument"> | $Enums.UploadedBy | null;
|
|
395
|
+
expectedOrganizationId?: Prisma.StringNullableFilter<"ApplicationDocument"> | string | null;
|
|
396
|
+
documentDate?: Prisma.DateTimeNullableFilter<"ApplicationDocument"> | Date | string | null;
|
|
397
|
+
expiresAt?: Prisma.DateTimeNullableFilter<"ApplicationDocument"> | Date | string | null;
|
|
398
|
+
expiryDays?: Prisma.IntNullableFilter<"ApplicationDocument"> | number | null;
|
|
399
|
+
isExpired?: Prisma.BoolFilter<"ApplicationDocument"> | boolean;
|
|
400
|
+
expiredAt?: Prisma.DateTimeNullableFilter<"ApplicationDocument"> | Date | string | null;
|
|
401
|
+
expiryWarningAt?: Prisma.DateTimeNullableFilter<"ApplicationDocument"> | Date | string | null;
|
|
402
|
+
revalidatedAt?: Prisma.DateTimeNullableFilter<"ApplicationDocument"> | Date | string | null;
|
|
309
403
|
status?: Prisma.EnumDocumentStatusFilter<"ApplicationDocument"> | $Enums.DocumentStatus;
|
|
310
404
|
version?: Prisma.IntFilter<"ApplicationDocument"> | number;
|
|
311
405
|
replacesDocumentId?: Prisma.StringNullableFilter<"ApplicationDocument"> | string | null;
|
|
@@ -331,6 +425,15 @@ export type ApplicationDocumentOrderByWithAggregationInput = {
|
|
|
331
425
|
url?: Prisma.SortOrder;
|
|
332
426
|
type?: Prisma.SortOrder;
|
|
333
427
|
uploadedById?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
428
|
+
expectedUploader?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
429
|
+
expectedOrganizationId?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
430
|
+
documentDate?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
431
|
+
expiresAt?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
432
|
+
expiryDays?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
433
|
+
isExpired?: Prisma.SortOrder;
|
|
434
|
+
expiredAt?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
435
|
+
expiryWarningAt?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
436
|
+
revalidatedAt?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
334
437
|
status?: Prisma.SortOrder;
|
|
335
438
|
version?: Prisma.SortOrder;
|
|
336
439
|
replacesDocumentId?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
@@ -357,6 +460,15 @@ export type ApplicationDocumentScalarWhereWithAggregatesInput = {
|
|
|
357
460
|
url?: Prisma.StringWithAggregatesFilter<"ApplicationDocument"> | string;
|
|
358
461
|
type?: Prisma.StringWithAggregatesFilter<"ApplicationDocument"> | string;
|
|
359
462
|
uploadedById?: Prisma.StringNullableWithAggregatesFilter<"ApplicationDocument"> | string | null;
|
|
463
|
+
expectedUploader?: Prisma.EnumUploadedByNullableWithAggregatesFilter<"ApplicationDocument"> | $Enums.UploadedBy | null;
|
|
464
|
+
expectedOrganizationId?: Prisma.StringNullableWithAggregatesFilter<"ApplicationDocument"> | string | null;
|
|
465
|
+
documentDate?: Prisma.DateTimeNullableWithAggregatesFilter<"ApplicationDocument"> | Date | string | null;
|
|
466
|
+
expiresAt?: Prisma.DateTimeNullableWithAggregatesFilter<"ApplicationDocument"> | Date | string | null;
|
|
467
|
+
expiryDays?: Prisma.IntNullableWithAggregatesFilter<"ApplicationDocument"> | number | null;
|
|
468
|
+
isExpired?: Prisma.BoolWithAggregatesFilter<"ApplicationDocument"> | boolean;
|
|
469
|
+
expiredAt?: Prisma.DateTimeNullableWithAggregatesFilter<"ApplicationDocument"> | Date | string | null;
|
|
470
|
+
expiryWarningAt?: Prisma.DateTimeNullableWithAggregatesFilter<"ApplicationDocument"> | Date | string | null;
|
|
471
|
+
revalidatedAt?: Prisma.DateTimeNullableWithAggregatesFilter<"ApplicationDocument"> | Date | string | null;
|
|
360
472
|
status?: Prisma.EnumDocumentStatusWithAggregatesFilter<"ApplicationDocument"> | $Enums.DocumentStatus;
|
|
361
473
|
version?: Prisma.IntWithAggregatesFilter<"ApplicationDocument"> | number;
|
|
362
474
|
replacesDocumentId?: Prisma.StringNullableWithAggregatesFilter<"ApplicationDocument"> | string | null;
|
|
@@ -372,6 +484,15 @@ export type ApplicationDocumentCreateInput = {
|
|
|
372
484
|
name: string;
|
|
373
485
|
url: string;
|
|
374
486
|
type: string;
|
|
487
|
+
expectedUploader?: $Enums.UploadedBy | null;
|
|
488
|
+
expectedOrganizationId?: string | null;
|
|
489
|
+
documentDate?: Date | string | null;
|
|
490
|
+
expiresAt?: Date | string | null;
|
|
491
|
+
expiryDays?: number | null;
|
|
492
|
+
isExpired?: boolean;
|
|
493
|
+
expiredAt?: Date | string | null;
|
|
494
|
+
expiryWarningAt?: Date | string | null;
|
|
495
|
+
revalidatedAt?: Date | string | null;
|
|
375
496
|
status?: $Enums.DocumentStatus;
|
|
376
497
|
version?: number;
|
|
377
498
|
createdAt?: Date | string;
|
|
@@ -396,6 +517,15 @@ export type ApplicationDocumentUncheckedCreateInput = {
|
|
|
396
517
|
url: string;
|
|
397
518
|
type: string;
|
|
398
519
|
uploadedById?: string | null;
|
|
520
|
+
expectedUploader?: $Enums.UploadedBy | null;
|
|
521
|
+
expectedOrganizationId?: string | null;
|
|
522
|
+
documentDate?: Date | string | null;
|
|
523
|
+
expiresAt?: Date | string | null;
|
|
524
|
+
expiryDays?: number | null;
|
|
525
|
+
isExpired?: boolean;
|
|
526
|
+
expiredAt?: Date | string | null;
|
|
527
|
+
expiryWarningAt?: Date | string | null;
|
|
528
|
+
revalidatedAt?: Date | string | null;
|
|
399
529
|
status?: $Enums.DocumentStatus;
|
|
400
530
|
version?: number;
|
|
401
531
|
replacesDocumentId?: string | null;
|
|
@@ -414,6 +544,15 @@ export type ApplicationDocumentUpdateInput = {
|
|
|
414
544
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
415
545
|
url?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
416
546
|
type?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
547
|
+
expectedUploader?: Prisma.NullableEnumUploadedByFieldUpdateOperationsInput | $Enums.UploadedBy | null;
|
|
548
|
+
expectedOrganizationId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
549
|
+
documentDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
550
|
+
expiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
551
|
+
expiryDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
552
|
+
isExpired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
553
|
+
expiredAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
554
|
+
expiryWarningAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
555
|
+
revalidatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
417
556
|
status?: Prisma.EnumDocumentStatusFieldUpdateOperationsInput | $Enums.DocumentStatus;
|
|
418
557
|
version?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
419
558
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
@@ -438,6 +577,15 @@ export type ApplicationDocumentUncheckedUpdateInput = {
|
|
|
438
577
|
url?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
439
578
|
type?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
440
579
|
uploadedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
580
|
+
expectedUploader?: Prisma.NullableEnumUploadedByFieldUpdateOperationsInput | $Enums.UploadedBy | null;
|
|
581
|
+
expectedOrganizationId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
582
|
+
documentDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
583
|
+
expiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
584
|
+
expiryDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
585
|
+
isExpired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
586
|
+
expiredAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
587
|
+
expiryWarningAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
588
|
+
revalidatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
441
589
|
status?: Prisma.EnumDocumentStatusFieldUpdateOperationsInput | $Enums.DocumentStatus;
|
|
442
590
|
version?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
443
591
|
replacesDocumentId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -459,6 +607,15 @@ export type ApplicationDocumentCreateManyInput = {
|
|
|
459
607
|
url: string;
|
|
460
608
|
type: string;
|
|
461
609
|
uploadedById?: string | null;
|
|
610
|
+
expectedUploader?: $Enums.UploadedBy | null;
|
|
611
|
+
expectedOrganizationId?: string | null;
|
|
612
|
+
documentDate?: Date | string | null;
|
|
613
|
+
expiresAt?: Date | string | null;
|
|
614
|
+
expiryDays?: number | null;
|
|
615
|
+
isExpired?: boolean;
|
|
616
|
+
expiredAt?: Date | string | null;
|
|
617
|
+
expiryWarningAt?: Date | string | null;
|
|
618
|
+
revalidatedAt?: Date | string | null;
|
|
462
619
|
status?: $Enums.DocumentStatus;
|
|
463
620
|
version?: number;
|
|
464
621
|
replacesDocumentId?: string | null;
|
|
@@ -474,6 +631,15 @@ export type ApplicationDocumentUpdateManyMutationInput = {
|
|
|
474
631
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
475
632
|
url?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
476
633
|
type?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
634
|
+
expectedUploader?: Prisma.NullableEnumUploadedByFieldUpdateOperationsInput | $Enums.UploadedBy | null;
|
|
635
|
+
expectedOrganizationId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
636
|
+
documentDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
637
|
+
expiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
638
|
+
expiryDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
639
|
+
isExpired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
640
|
+
expiredAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
641
|
+
expiryWarningAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
642
|
+
revalidatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
477
643
|
status?: Prisma.EnumDocumentStatusFieldUpdateOperationsInput | $Enums.DocumentStatus;
|
|
478
644
|
version?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
479
645
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
@@ -491,6 +657,15 @@ export type ApplicationDocumentUncheckedUpdateManyInput = {
|
|
|
491
657
|
url?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
492
658
|
type?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
493
659
|
uploadedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
660
|
+
expectedUploader?: Prisma.NullableEnumUploadedByFieldUpdateOperationsInput | $Enums.UploadedBy | null;
|
|
661
|
+
expectedOrganizationId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
662
|
+
documentDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
663
|
+
expiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
664
|
+
expiryDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
665
|
+
isExpired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
666
|
+
expiredAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
667
|
+
expiryWarningAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
668
|
+
revalidatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
494
669
|
status?: Prisma.EnumDocumentStatusFieldUpdateOperationsInput | $Enums.DocumentStatus;
|
|
495
670
|
version?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
496
671
|
replacesDocumentId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -526,6 +701,15 @@ export type ApplicationDocumentCountOrderByAggregateInput = {
|
|
|
526
701
|
url?: Prisma.SortOrder;
|
|
527
702
|
type?: Prisma.SortOrder;
|
|
528
703
|
uploadedById?: Prisma.SortOrder;
|
|
704
|
+
expectedUploader?: Prisma.SortOrder;
|
|
705
|
+
expectedOrganizationId?: Prisma.SortOrder;
|
|
706
|
+
documentDate?: Prisma.SortOrder;
|
|
707
|
+
expiresAt?: Prisma.SortOrder;
|
|
708
|
+
expiryDays?: Prisma.SortOrder;
|
|
709
|
+
isExpired?: Prisma.SortOrder;
|
|
710
|
+
expiredAt?: Prisma.SortOrder;
|
|
711
|
+
expiryWarningAt?: Prisma.SortOrder;
|
|
712
|
+
revalidatedAt?: Prisma.SortOrder;
|
|
529
713
|
status?: Prisma.SortOrder;
|
|
530
714
|
version?: Prisma.SortOrder;
|
|
531
715
|
replacesDocumentId?: Prisma.SortOrder;
|
|
@@ -533,6 +717,7 @@ export type ApplicationDocumentCountOrderByAggregateInput = {
|
|
|
533
717
|
updatedAt?: Prisma.SortOrder;
|
|
534
718
|
};
|
|
535
719
|
export type ApplicationDocumentAvgOrderByAggregateInput = {
|
|
720
|
+
expiryDays?: Prisma.SortOrder;
|
|
536
721
|
version?: Prisma.SortOrder;
|
|
537
722
|
};
|
|
538
723
|
export type ApplicationDocumentMaxOrderByAggregateInput = {
|
|
@@ -547,6 +732,15 @@ export type ApplicationDocumentMaxOrderByAggregateInput = {
|
|
|
547
732
|
url?: Prisma.SortOrder;
|
|
548
733
|
type?: Prisma.SortOrder;
|
|
549
734
|
uploadedById?: Prisma.SortOrder;
|
|
735
|
+
expectedUploader?: Prisma.SortOrder;
|
|
736
|
+
expectedOrganizationId?: Prisma.SortOrder;
|
|
737
|
+
documentDate?: Prisma.SortOrder;
|
|
738
|
+
expiresAt?: Prisma.SortOrder;
|
|
739
|
+
expiryDays?: Prisma.SortOrder;
|
|
740
|
+
isExpired?: Prisma.SortOrder;
|
|
741
|
+
expiredAt?: Prisma.SortOrder;
|
|
742
|
+
expiryWarningAt?: Prisma.SortOrder;
|
|
743
|
+
revalidatedAt?: Prisma.SortOrder;
|
|
550
744
|
status?: Prisma.SortOrder;
|
|
551
745
|
version?: Prisma.SortOrder;
|
|
552
746
|
replacesDocumentId?: Prisma.SortOrder;
|
|
@@ -565,6 +759,15 @@ export type ApplicationDocumentMinOrderByAggregateInput = {
|
|
|
565
759
|
url?: Prisma.SortOrder;
|
|
566
760
|
type?: Prisma.SortOrder;
|
|
567
761
|
uploadedById?: Prisma.SortOrder;
|
|
762
|
+
expectedUploader?: Prisma.SortOrder;
|
|
763
|
+
expectedOrganizationId?: Prisma.SortOrder;
|
|
764
|
+
documentDate?: Prisma.SortOrder;
|
|
765
|
+
expiresAt?: Prisma.SortOrder;
|
|
766
|
+
expiryDays?: Prisma.SortOrder;
|
|
767
|
+
isExpired?: Prisma.SortOrder;
|
|
768
|
+
expiredAt?: Prisma.SortOrder;
|
|
769
|
+
expiryWarningAt?: Prisma.SortOrder;
|
|
770
|
+
revalidatedAt?: Prisma.SortOrder;
|
|
568
771
|
status?: Prisma.SortOrder;
|
|
569
772
|
version?: Prisma.SortOrder;
|
|
570
773
|
replacesDocumentId?: Prisma.SortOrder;
|
|
@@ -572,6 +775,7 @@ export type ApplicationDocumentMinOrderByAggregateInput = {
|
|
|
572
775
|
updatedAt?: Prisma.SortOrder;
|
|
573
776
|
};
|
|
574
777
|
export type ApplicationDocumentSumOrderByAggregateInput = {
|
|
778
|
+
expiryDays?: Prisma.SortOrder;
|
|
575
779
|
version?: Prisma.SortOrder;
|
|
576
780
|
};
|
|
577
781
|
export type ApplicationDocumentScalarRelationFilter = {
|
|
@@ -709,6 +913,9 @@ export type ApplicationDocumentUncheckedCreateNestedManyWithoutReplacesDocumentI
|
|
|
709
913
|
createMany?: Prisma.ApplicationDocumentCreateManyReplacesDocumentInputEnvelope;
|
|
710
914
|
connect?: Prisma.ApplicationDocumentWhereUniqueInput | Prisma.ApplicationDocumentWhereUniqueInput[];
|
|
711
915
|
};
|
|
916
|
+
export type NullableEnumUploadedByFieldUpdateOperationsInput = {
|
|
917
|
+
set?: $Enums.UploadedBy | null;
|
|
918
|
+
};
|
|
712
919
|
export type EnumDocumentStatusFieldUpdateOperationsInput = {
|
|
713
920
|
set?: $Enums.DocumentStatus;
|
|
714
921
|
};
|
|
@@ -780,6 +987,15 @@ export type ApplicationDocumentCreateWithoutUploadedByInput = {
|
|
|
780
987
|
name: string;
|
|
781
988
|
url: string;
|
|
782
989
|
type: string;
|
|
990
|
+
expectedUploader?: $Enums.UploadedBy | null;
|
|
991
|
+
expectedOrganizationId?: string | null;
|
|
992
|
+
documentDate?: Date | string | null;
|
|
993
|
+
expiresAt?: Date | string | null;
|
|
994
|
+
expiryDays?: number | null;
|
|
995
|
+
isExpired?: boolean;
|
|
996
|
+
expiredAt?: Date | string | null;
|
|
997
|
+
expiryWarningAt?: Date | string | null;
|
|
998
|
+
revalidatedAt?: Date | string | null;
|
|
783
999
|
status?: $Enums.DocumentStatus;
|
|
784
1000
|
version?: number;
|
|
785
1001
|
createdAt?: Date | string;
|
|
@@ -802,6 +1018,15 @@ export type ApplicationDocumentUncheckedCreateWithoutUploadedByInput = {
|
|
|
802
1018
|
name: string;
|
|
803
1019
|
url: string;
|
|
804
1020
|
type: string;
|
|
1021
|
+
expectedUploader?: $Enums.UploadedBy | null;
|
|
1022
|
+
expectedOrganizationId?: string | null;
|
|
1023
|
+
documentDate?: Date | string | null;
|
|
1024
|
+
expiresAt?: Date | string | null;
|
|
1025
|
+
expiryDays?: number | null;
|
|
1026
|
+
isExpired?: boolean;
|
|
1027
|
+
expiredAt?: Date | string | null;
|
|
1028
|
+
expiryWarningAt?: Date | string | null;
|
|
1029
|
+
revalidatedAt?: Date | string | null;
|
|
805
1030
|
status?: $Enums.DocumentStatus;
|
|
806
1031
|
version?: number;
|
|
807
1032
|
replacesDocumentId?: string | null;
|
|
@@ -847,6 +1072,15 @@ export type ApplicationDocumentScalarWhereInput = {
|
|
|
847
1072
|
url?: Prisma.StringFilter<"ApplicationDocument"> | string;
|
|
848
1073
|
type?: Prisma.StringFilter<"ApplicationDocument"> | string;
|
|
849
1074
|
uploadedById?: Prisma.StringNullableFilter<"ApplicationDocument"> | string | null;
|
|
1075
|
+
expectedUploader?: Prisma.EnumUploadedByNullableFilter<"ApplicationDocument"> | $Enums.UploadedBy | null;
|
|
1076
|
+
expectedOrganizationId?: Prisma.StringNullableFilter<"ApplicationDocument"> | string | null;
|
|
1077
|
+
documentDate?: Prisma.DateTimeNullableFilter<"ApplicationDocument"> | Date | string | null;
|
|
1078
|
+
expiresAt?: Prisma.DateTimeNullableFilter<"ApplicationDocument"> | Date | string | null;
|
|
1079
|
+
expiryDays?: Prisma.IntNullableFilter<"ApplicationDocument"> | number | null;
|
|
1080
|
+
isExpired?: Prisma.BoolFilter<"ApplicationDocument"> | boolean;
|
|
1081
|
+
expiredAt?: Prisma.DateTimeNullableFilter<"ApplicationDocument"> | Date | string | null;
|
|
1082
|
+
expiryWarningAt?: Prisma.DateTimeNullableFilter<"ApplicationDocument"> | Date | string | null;
|
|
1083
|
+
revalidatedAt?: Prisma.DateTimeNullableFilter<"ApplicationDocument"> | Date | string | null;
|
|
850
1084
|
status?: Prisma.EnumDocumentStatusFilter<"ApplicationDocument"> | $Enums.DocumentStatus;
|
|
851
1085
|
version?: Prisma.IntFilter<"ApplicationDocument"> | number;
|
|
852
1086
|
replacesDocumentId?: Prisma.StringNullableFilter<"ApplicationDocument"> | string | null;
|
|
@@ -862,6 +1096,15 @@ export type ApplicationDocumentCreateWithoutTenantInput = {
|
|
|
862
1096
|
name: string;
|
|
863
1097
|
url: string;
|
|
864
1098
|
type: string;
|
|
1099
|
+
expectedUploader?: $Enums.UploadedBy | null;
|
|
1100
|
+
expectedOrganizationId?: string | null;
|
|
1101
|
+
documentDate?: Date | string | null;
|
|
1102
|
+
expiresAt?: Date | string | null;
|
|
1103
|
+
expiryDays?: number | null;
|
|
1104
|
+
isExpired?: boolean;
|
|
1105
|
+
expiredAt?: Date | string | null;
|
|
1106
|
+
expiryWarningAt?: Date | string | null;
|
|
1107
|
+
revalidatedAt?: Date | string | null;
|
|
865
1108
|
status?: $Enums.DocumentStatus;
|
|
866
1109
|
version?: number;
|
|
867
1110
|
createdAt?: Date | string;
|
|
@@ -884,6 +1127,15 @@ export type ApplicationDocumentUncheckedCreateWithoutTenantInput = {
|
|
|
884
1127
|
url: string;
|
|
885
1128
|
type: string;
|
|
886
1129
|
uploadedById?: string | null;
|
|
1130
|
+
expectedUploader?: $Enums.UploadedBy | null;
|
|
1131
|
+
expectedOrganizationId?: string | null;
|
|
1132
|
+
documentDate?: Date | string | null;
|
|
1133
|
+
expiresAt?: Date | string | null;
|
|
1134
|
+
expiryDays?: number | null;
|
|
1135
|
+
isExpired?: boolean;
|
|
1136
|
+
expiredAt?: Date | string | null;
|
|
1137
|
+
expiryWarningAt?: Date | string | null;
|
|
1138
|
+
revalidatedAt?: Date | string | null;
|
|
887
1139
|
status?: $Enums.DocumentStatus;
|
|
888
1140
|
version?: number;
|
|
889
1141
|
replacesDocumentId?: string | null;
|
|
@@ -923,6 +1175,15 @@ export type ApplicationDocumentCreateWithoutApplicationInput = {
|
|
|
923
1175
|
name: string;
|
|
924
1176
|
url: string;
|
|
925
1177
|
type: string;
|
|
1178
|
+
expectedUploader?: $Enums.UploadedBy | null;
|
|
1179
|
+
expectedOrganizationId?: string | null;
|
|
1180
|
+
documentDate?: Date | string | null;
|
|
1181
|
+
expiresAt?: Date | string | null;
|
|
1182
|
+
expiryDays?: number | null;
|
|
1183
|
+
isExpired?: boolean;
|
|
1184
|
+
expiredAt?: Date | string | null;
|
|
1185
|
+
expiryWarningAt?: Date | string | null;
|
|
1186
|
+
revalidatedAt?: Date | string | null;
|
|
926
1187
|
status?: $Enums.DocumentStatus;
|
|
927
1188
|
version?: number;
|
|
928
1189
|
createdAt?: Date | string;
|
|
@@ -945,6 +1206,15 @@ export type ApplicationDocumentUncheckedCreateWithoutApplicationInput = {
|
|
|
945
1206
|
url: string;
|
|
946
1207
|
type: string;
|
|
947
1208
|
uploadedById?: string | null;
|
|
1209
|
+
expectedUploader?: $Enums.UploadedBy | null;
|
|
1210
|
+
expectedOrganizationId?: string | null;
|
|
1211
|
+
documentDate?: Date | string | null;
|
|
1212
|
+
expiresAt?: Date | string | null;
|
|
1213
|
+
expiryDays?: number | null;
|
|
1214
|
+
isExpired?: boolean;
|
|
1215
|
+
expiredAt?: Date | string | null;
|
|
1216
|
+
expiryWarningAt?: Date | string | null;
|
|
1217
|
+
revalidatedAt?: Date | string | null;
|
|
948
1218
|
status?: $Enums.DocumentStatus;
|
|
949
1219
|
version?: number;
|
|
950
1220
|
replacesDocumentId?: string | null;
|
|
@@ -984,6 +1254,15 @@ export type ApplicationDocumentCreateWithoutRevisionsInput = {
|
|
|
984
1254
|
name: string;
|
|
985
1255
|
url: string;
|
|
986
1256
|
type: string;
|
|
1257
|
+
expectedUploader?: $Enums.UploadedBy | null;
|
|
1258
|
+
expectedOrganizationId?: string | null;
|
|
1259
|
+
documentDate?: Date | string | null;
|
|
1260
|
+
expiresAt?: Date | string | null;
|
|
1261
|
+
expiryDays?: number | null;
|
|
1262
|
+
isExpired?: boolean;
|
|
1263
|
+
expiredAt?: Date | string | null;
|
|
1264
|
+
expiryWarningAt?: Date | string | null;
|
|
1265
|
+
revalidatedAt?: Date | string | null;
|
|
987
1266
|
status?: $Enums.DocumentStatus;
|
|
988
1267
|
version?: number;
|
|
989
1268
|
createdAt?: Date | string;
|
|
@@ -1007,6 +1286,15 @@ export type ApplicationDocumentUncheckedCreateWithoutRevisionsInput = {
|
|
|
1007
1286
|
url: string;
|
|
1008
1287
|
type: string;
|
|
1009
1288
|
uploadedById?: string | null;
|
|
1289
|
+
expectedUploader?: $Enums.UploadedBy | null;
|
|
1290
|
+
expectedOrganizationId?: string | null;
|
|
1291
|
+
documentDate?: Date | string | null;
|
|
1292
|
+
expiresAt?: Date | string | null;
|
|
1293
|
+
expiryDays?: number | null;
|
|
1294
|
+
isExpired?: boolean;
|
|
1295
|
+
expiredAt?: Date | string | null;
|
|
1296
|
+
expiryWarningAt?: Date | string | null;
|
|
1297
|
+
revalidatedAt?: Date | string | null;
|
|
1010
1298
|
status?: $Enums.DocumentStatus;
|
|
1011
1299
|
version?: number;
|
|
1012
1300
|
replacesDocumentId?: string | null;
|
|
@@ -1028,6 +1316,15 @@ export type ApplicationDocumentCreateWithoutReplacesDocumentInput = {
|
|
|
1028
1316
|
name: string;
|
|
1029
1317
|
url: string;
|
|
1030
1318
|
type: string;
|
|
1319
|
+
expectedUploader?: $Enums.UploadedBy | null;
|
|
1320
|
+
expectedOrganizationId?: string | null;
|
|
1321
|
+
documentDate?: Date | string | null;
|
|
1322
|
+
expiresAt?: Date | string | null;
|
|
1323
|
+
expiryDays?: number | null;
|
|
1324
|
+
isExpired?: boolean;
|
|
1325
|
+
expiredAt?: Date | string | null;
|
|
1326
|
+
expiryWarningAt?: Date | string | null;
|
|
1327
|
+
revalidatedAt?: Date | string | null;
|
|
1031
1328
|
status?: $Enums.DocumentStatus;
|
|
1032
1329
|
version?: number;
|
|
1033
1330
|
createdAt?: Date | string;
|
|
@@ -1051,6 +1348,15 @@ export type ApplicationDocumentUncheckedCreateWithoutReplacesDocumentInput = {
|
|
|
1051
1348
|
url: string;
|
|
1052
1349
|
type: string;
|
|
1053
1350
|
uploadedById?: string | null;
|
|
1351
|
+
expectedUploader?: $Enums.UploadedBy | null;
|
|
1352
|
+
expectedOrganizationId?: string | null;
|
|
1353
|
+
documentDate?: Date | string | null;
|
|
1354
|
+
expiresAt?: Date | string | null;
|
|
1355
|
+
expiryDays?: number | null;
|
|
1356
|
+
isExpired?: boolean;
|
|
1357
|
+
expiredAt?: Date | string | null;
|
|
1358
|
+
expiryWarningAt?: Date | string | null;
|
|
1359
|
+
revalidatedAt?: Date | string | null;
|
|
1054
1360
|
status?: $Enums.DocumentStatus;
|
|
1055
1361
|
version?: number;
|
|
1056
1362
|
createdAt?: Date | string;
|
|
@@ -1085,6 +1391,15 @@ export type ApplicationDocumentUpdateWithoutRevisionsInput = {
|
|
|
1085
1391
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1086
1392
|
url?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1087
1393
|
type?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1394
|
+
expectedUploader?: Prisma.NullableEnumUploadedByFieldUpdateOperationsInput | $Enums.UploadedBy | null;
|
|
1395
|
+
expectedOrganizationId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1396
|
+
documentDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1397
|
+
expiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1398
|
+
expiryDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
1399
|
+
isExpired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1400
|
+
expiredAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1401
|
+
expiryWarningAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1402
|
+
revalidatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1088
1403
|
status?: Prisma.EnumDocumentStatusFieldUpdateOperationsInput | $Enums.DocumentStatus;
|
|
1089
1404
|
version?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
1090
1405
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
@@ -1108,6 +1423,15 @@ export type ApplicationDocumentUncheckedUpdateWithoutRevisionsInput = {
|
|
|
1108
1423
|
url?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1109
1424
|
type?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1110
1425
|
uploadedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1426
|
+
expectedUploader?: Prisma.NullableEnumUploadedByFieldUpdateOperationsInput | $Enums.UploadedBy | null;
|
|
1427
|
+
expectedOrganizationId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1428
|
+
documentDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1429
|
+
expiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1430
|
+
expiryDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
1431
|
+
isExpired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1432
|
+
expiredAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1433
|
+
expiryWarningAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1434
|
+
revalidatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1111
1435
|
status?: Prisma.EnumDocumentStatusFieldUpdateOperationsInput | $Enums.DocumentStatus;
|
|
1112
1436
|
version?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
1113
1437
|
replacesDocumentId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -1138,6 +1462,15 @@ export type ApplicationDocumentCreateWithoutReviewsInput = {
|
|
|
1138
1462
|
name: string;
|
|
1139
1463
|
url: string;
|
|
1140
1464
|
type: string;
|
|
1465
|
+
expectedUploader?: $Enums.UploadedBy | null;
|
|
1466
|
+
expectedOrganizationId?: string | null;
|
|
1467
|
+
documentDate?: Date | string | null;
|
|
1468
|
+
expiresAt?: Date | string | null;
|
|
1469
|
+
expiryDays?: number | null;
|
|
1470
|
+
isExpired?: boolean;
|
|
1471
|
+
expiredAt?: Date | string | null;
|
|
1472
|
+
expiryWarningAt?: Date | string | null;
|
|
1473
|
+
revalidatedAt?: Date | string | null;
|
|
1141
1474
|
status?: $Enums.DocumentStatus;
|
|
1142
1475
|
version?: number;
|
|
1143
1476
|
createdAt?: Date | string;
|
|
@@ -1161,6 +1494,15 @@ export type ApplicationDocumentUncheckedCreateWithoutReviewsInput = {
|
|
|
1161
1494
|
url: string;
|
|
1162
1495
|
type: string;
|
|
1163
1496
|
uploadedById?: string | null;
|
|
1497
|
+
expectedUploader?: $Enums.UploadedBy | null;
|
|
1498
|
+
expectedOrganizationId?: string | null;
|
|
1499
|
+
documentDate?: Date | string | null;
|
|
1500
|
+
expiresAt?: Date | string | null;
|
|
1501
|
+
expiryDays?: number | null;
|
|
1502
|
+
isExpired?: boolean;
|
|
1503
|
+
expiredAt?: Date | string | null;
|
|
1504
|
+
expiryWarningAt?: Date | string | null;
|
|
1505
|
+
revalidatedAt?: Date | string | null;
|
|
1164
1506
|
status?: $Enums.DocumentStatus;
|
|
1165
1507
|
version?: number;
|
|
1166
1508
|
replacesDocumentId?: string | null;
|
|
@@ -1191,6 +1533,15 @@ export type ApplicationDocumentUpdateWithoutReviewsInput = {
|
|
|
1191
1533
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1192
1534
|
url?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1193
1535
|
type?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1536
|
+
expectedUploader?: Prisma.NullableEnumUploadedByFieldUpdateOperationsInput | $Enums.UploadedBy | null;
|
|
1537
|
+
expectedOrganizationId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1538
|
+
documentDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1539
|
+
expiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1540
|
+
expiryDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
1541
|
+
isExpired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1542
|
+
expiredAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1543
|
+
expiryWarningAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1544
|
+
revalidatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1194
1545
|
status?: Prisma.EnumDocumentStatusFieldUpdateOperationsInput | $Enums.DocumentStatus;
|
|
1195
1546
|
version?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
1196
1547
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
@@ -1214,6 +1565,15 @@ export type ApplicationDocumentUncheckedUpdateWithoutReviewsInput = {
|
|
|
1214
1565
|
url?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1215
1566
|
type?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1216
1567
|
uploadedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1568
|
+
expectedUploader?: Prisma.NullableEnumUploadedByFieldUpdateOperationsInput | $Enums.UploadedBy | null;
|
|
1569
|
+
expectedOrganizationId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1570
|
+
documentDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1571
|
+
expiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1572
|
+
expiryDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
1573
|
+
isExpired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1574
|
+
expiredAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1575
|
+
expiryWarningAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1576
|
+
revalidatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1217
1577
|
status?: Prisma.EnumDocumentStatusFieldUpdateOperationsInput | $Enums.DocumentStatus;
|
|
1218
1578
|
version?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
1219
1579
|
replacesDocumentId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -1231,6 +1591,15 @@ export type ApplicationDocumentCreateWithoutApprovalTrailInput = {
|
|
|
1231
1591
|
name: string;
|
|
1232
1592
|
url: string;
|
|
1233
1593
|
type: string;
|
|
1594
|
+
expectedUploader?: $Enums.UploadedBy | null;
|
|
1595
|
+
expectedOrganizationId?: string | null;
|
|
1596
|
+
documentDate?: Date | string | null;
|
|
1597
|
+
expiresAt?: Date | string | null;
|
|
1598
|
+
expiryDays?: number | null;
|
|
1599
|
+
isExpired?: boolean;
|
|
1600
|
+
expiredAt?: Date | string | null;
|
|
1601
|
+
expiryWarningAt?: Date | string | null;
|
|
1602
|
+
revalidatedAt?: Date | string | null;
|
|
1234
1603
|
status?: $Enums.DocumentStatus;
|
|
1235
1604
|
version?: number;
|
|
1236
1605
|
createdAt?: Date | string;
|
|
@@ -1254,6 +1623,15 @@ export type ApplicationDocumentUncheckedCreateWithoutApprovalTrailInput = {
|
|
|
1254
1623
|
url: string;
|
|
1255
1624
|
type: string;
|
|
1256
1625
|
uploadedById?: string | null;
|
|
1626
|
+
expectedUploader?: $Enums.UploadedBy | null;
|
|
1627
|
+
expectedOrganizationId?: string | null;
|
|
1628
|
+
documentDate?: Date | string | null;
|
|
1629
|
+
expiresAt?: Date | string | null;
|
|
1630
|
+
expiryDays?: number | null;
|
|
1631
|
+
isExpired?: boolean;
|
|
1632
|
+
expiredAt?: Date | string | null;
|
|
1633
|
+
expiryWarningAt?: Date | string | null;
|
|
1634
|
+
revalidatedAt?: Date | string | null;
|
|
1257
1635
|
status?: $Enums.DocumentStatus;
|
|
1258
1636
|
version?: number;
|
|
1259
1637
|
replacesDocumentId?: string | null;
|
|
@@ -1284,6 +1662,15 @@ export type ApplicationDocumentUpdateWithoutApprovalTrailInput = {
|
|
|
1284
1662
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1285
1663
|
url?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1286
1664
|
type?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1665
|
+
expectedUploader?: Prisma.NullableEnumUploadedByFieldUpdateOperationsInput | $Enums.UploadedBy | null;
|
|
1666
|
+
expectedOrganizationId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1667
|
+
documentDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1668
|
+
expiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1669
|
+
expiryDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
1670
|
+
isExpired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1671
|
+
expiredAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1672
|
+
expiryWarningAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1673
|
+
revalidatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1287
1674
|
status?: Prisma.EnumDocumentStatusFieldUpdateOperationsInput | $Enums.DocumentStatus;
|
|
1288
1675
|
version?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
1289
1676
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
@@ -1307,6 +1694,15 @@ export type ApplicationDocumentUncheckedUpdateWithoutApprovalTrailInput = {
|
|
|
1307
1694
|
url?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1308
1695
|
type?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1309
1696
|
uploadedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1697
|
+
expectedUploader?: Prisma.NullableEnumUploadedByFieldUpdateOperationsInput | $Enums.UploadedBy | null;
|
|
1698
|
+
expectedOrganizationId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1699
|
+
documentDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1700
|
+
expiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1701
|
+
expiryDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
1702
|
+
isExpired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1703
|
+
expiredAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1704
|
+
expiryWarningAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1705
|
+
revalidatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1310
1706
|
status?: Prisma.EnumDocumentStatusFieldUpdateOperationsInput | $Enums.DocumentStatus;
|
|
1311
1707
|
version?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
1312
1708
|
replacesDocumentId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -1326,6 +1722,15 @@ export type ApplicationDocumentCreateManyUploadedByInput = {
|
|
|
1326
1722
|
name: string;
|
|
1327
1723
|
url: string;
|
|
1328
1724
|
type: string;
|
|
1725
|
+
expectedUploader?: $Enums.UploadedBy | null;
|
|
1726
|
+
expectedOrganizationId?: string | null;
|
|
1727
|
+
documentDate?: Date | string | null;
|
|
1728
|
+
expiresAt?: Date | string | null;
|
|
1729
|
+
expiryDays?: number | null;
|
|
1730
|
+
isExpired?: boolean;
|
|
1731
|
+
expiredAt?: Date | string | null;
|
|
1732
|
+
expiryWarningAt?: Date | string | null;
|
|
1733
|
+
revalidatedAt?: Date | string | null;
|
|
1329
1734
|
status?: $Enums.DocumentStatus;
|
|
1330
1735
|
version?: number;
|
|
1331
1736
|
replacesDocumentId?: string | null;
|
|
@@ -1341,6 +1746,15 @@ export type ApplicationDocumentUpdateWithoutUploadedByInput = {
|
|
|
1341
1746
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1342
1747
|
url?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1343
1748
|
type?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1749
|
+
expectedUploader?: Prisma.NullableEnumUploadedByFieldUpdateOperationsInput | $Enums.UploadedBy | null;
|
|
1750
|
+
expectedOrganizationId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1751
|
+
documentDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1752
|
+
expiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1753
|
+
expiryDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
1754
|
+
isExpired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1755
|
+
expiredAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1756
|
+
expiryWarningAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1757
|
+
revalidatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1344
1758
|
status?: Prisma.EnumDocumentStatusFieldUpdateOperationsInput | $Enums.DocumentStatus;
|
|
1345
1759
|
version?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
1346
1760
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
@@ -1363,6 +1777,15 @@ export type ApplicationDocumentUncheckedUpdateWithoutUploadedByInput = {
|
|
|
1363
1777
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1364
1778
|
url?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1365
1779
|
type?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1780
|
+
expectedUploader?: Prisma.NullableEnumUploadedByFieldUpdateOperationsInput | $Enums.UploadedBy | null;
|
|
1781
|
+
expectedOrganizationId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1782
|
+
documentDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1783
|
+
expiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1784
|
+
expiryDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
1785
|
+
isExpired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1786
|
+
expiredAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1787
|
+
expiryWarningAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1788
|
+
revalidatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1366
1789
|
status?: Prisma.EnumDocumentStatusFieldUpdateOperationsInput | $Enums.DocumentStatus;
|
|
1367
1790
|
version?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
1368
1791
|
replacesDocumentId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -1383,6 +1806,15 @@ export type ApplicationDocumentUncheckedUpdateManyWithoutUploadedByInput = {
|
|
|
1383
1806
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1384
1807
|
url?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1385
1808
|
type?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1809
|
+
expectedUploader?: Prisma.NullableEnumUploadedByFieldUpdateOperationsInput | $Enums.UploadedBy | null;
|
|
1810
|
+
expectedOrganizationId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1811
|
+
documentDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1812
|
+
expiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1813
|
+
expiryDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
1814
|
+
isExpired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1815
|
+
expiredAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1816
|
+
expiryWarningAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1817
|
+
revalidatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1386
1818
|
status?: Prisma.EnumDocumentStatusFieldUpdateOperationsInput | $Enums.DocumentStatus;
|
|
1387
1819
|
version?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
1388
1820
|
replacesDocumentId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -1400,6 +1832,15 @@ export type ApplicationDocumentCreateManyTenantInput = {
|
|
|
1400
1832
|
url: string;
|
|
1401
1833
|
type: string;
|
|
1402
1834
|
uploadedById?: string | null;
|
|
1835
|
+
expectedUploader?: $Enums.UploadedBy | null;
|
|
1836
|
+
expectedOrganizationId?: string | null;
|
|
1837
|
+
documentDate?: Date | string | null;
|
|
1838
|
+
expiresAt?: Date | string | null;
|
|
1839
|
+
expiryDays?: number | null;
|
|
1840
|
+
isExpired?: boolean;
|
|
1841
|
+
expiredAt?: Date | string | null;
|
|
1842
|
+
expiryWarningAt?: Date | string | null;
|
|
1843
|
+
revalidatedAt?: Date | string | null;
|
|
1403
1844
|
status?: $Enums.DocumentStatus;
|
|
1404
1845
|
version?: number;
|
|
1405
1846
|
replacesDocumentId?: string | null;
|
|
@@ -1415,6 +1856,15 @@ export type ApplicationDocumentUpdateWithoutTenantInput = {
|
|
|
1415
1856
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1416
1857
|
url?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1417
1858
|
type?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1859
|
+
expectedUploader?: Prisma.NullableEnumUploadedByFieldUpdateOperationsInput | $Enums.UploadedBy | null;
|
|
1860
|
+
expectedOrganizationId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1861
|
+
documentDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1862
|
+
expiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1863
|
+
expiryDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
1864
|
+
isExpired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1865
|
+
expiredAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1866
|
+
expiryWarningAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1867
|
+
revalidatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1418
1868
|
status?: Prisma.EnumDocumentStatusFieldUpdateOperationsInput | $Enums.DocumentStatus;
|
|
1419
1869
|
version?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
1420
1870
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
@@ -1437,6 +1887,15 @@ export type ApplicationDocumentUncheckedUpdateWithoutTenantInput = {
|
|
|
1437
1887
|
url?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1438
1888
|
type?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1439
1889
|
uploadedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1890
|
+
expectedUploader?: Prisma.NullableEnumUploadedByFieldUpdateOperationsInput | $Enums.UploadedBy | null;
|
|
1891
|
+
expectedOrganizationId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1892
|
+
documentDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1893
|
+
expiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1894
|
+
expiryDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
1895
|
+
isExpired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1896
|
+
expiredAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1897
|
+
expiryWarningAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1898
|
+
revalidatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1440
1899
|
status?: Prisma.EnumDocumentStatusFieldUpdateOperationsInput | $Enums.DocumentStatus;
|
|
1441
1900
|
version?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
1442
1901
|
replacesDocumentId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -1457,6 +1916,15 @@ export type ApplicationDocumentUncheckedUpdateManyWithoutTenantInput = {
|
|
|
1457
1916
|
url?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1458
1917
|
type?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1459
1918
|
uploadedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1919
|
+
expectedUploader?: Prisma.NullableEnumUploadedByFieldUpdateOperationsInput | $Enums.UploadedBy | null;
|
|
1920
|
+
expectedOrganizationId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1921
|
+
documentDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1922
|
+
expiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1923
|
+
expiryDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
1924
|
+
isExpired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1925
|
+
expiredAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1926
|
+
expiryWarningAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1927
|
+
revalidatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1460
1928
|
status?: Prisma.EnumDocumentStatusFieldUpdateOperationsInput | $Enums.DocumentStatus;
|
|
1461
1929
|
version?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
1462
1930
|
replacesDocumentId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -1474,6 +1942,15 @@ export type ApplicationDocumentCreateManyApplicationInput = {
|
|
|
1474
1942
|
url: string;
|
|
1475
1943
|
type: string;
|
|
1476
1944
|
uploadedById?: string | null;
|
|
1945
|
+
expectedUploader?: $Enums.UploadedBy | null;
|
|
1946
|
+
expectedOrganizationId?: string | null;
|
|
1947
|
+
documentDate?: Date | string | null;
|
|
1948
|
+
expiresAt?: Date | string | null;
|
|
1949
|
+
expiryDays?: number | null;
|
|
1950
|
+
isExpired?: boolean;
|
|
1951
|
+
expiredAt?: Date | string | null;
|
|
1952
|
+
expiryWarningAt?: Date | string | null;
|
|
1953
|
+
revalidatedAt?: Date | string | null;
|
|
1477
1954
|
status?: $Enums.DocumentStatus;
|
|
1478
1955
|
version?: number;
|
|
1479
1956
|
replacesDocumentId?: string | null;
|
|
@@ -1489,6 +1966,15 @@ export type ApplicationDocumentUpdateWithoutApplicationInput = {
|
|
|
1489
1966
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1490
1967
|
url?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1491
1968
|
type?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1969
|
+
expectedUploader?: Prisma.NullableEnumUploadedByFieldUpdateOperationsInput | $Enums.UploadedBy | null;
|
|
1970
|
+
expectedOrganizationId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1971
|
+
documentDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1972
|
+
expiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1973
|
+
expiryDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
1974
|
+
isExpired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1975
|
+
expiredAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1976
|
+
expiryWarningAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1977
|
+
revalidatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1492
1978
|
status?: Prisma.EnumDocumentStatusFieldUpdateOperationsInput | $Enums.DocumentStatus;
|
|
1493
1979
|
version?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
1494
1980
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
@@ -1511,6 +1997,15 @@ export type ApplicationDocumentUncheckedUpdateWithoutApplicationInput = {
|
|
|
1511
1997
|
url?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1512
1998
|
type?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1513
1999
|
uploadedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2000
|
+
expectedUploader?: Prisma.NullableEnumUploadedByFieldUpdateOperationsInput | $Enums.UploadedBy | null;
|
|
2001
|
+
expectedOrganizationId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2002
|
+
documentDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2003
|
+
expiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2004
|
+
expiryDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
2005
|
+
isExpired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
2006
|
+
expiredAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2007
|
+
expiryWarningAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2008
|
+
revalidatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1514
2009
|
status?: Prisma.EnumDocumentStatusFieldUpdateOperationsInput | $Enums.DocumentStatus;
|
|
1515
2010
|
version?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
1516
2011
|
replacesDocumentId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -1531,6 +2026,15 @@ export type ApplicationDocumentUncheckedUpdateManyWithoutApplicationInput = {
|
|
|
1531
2026
|
url?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1532
2027
|
type?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1533
2028
|
uploadedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2029
|
+
expectedUploader?: Prisma.NullableEnumUploadedByFieldUpdateOperationsInput | $Enums.UploadedBy | null;
|
|
2030
|
+
expectedOrganizationId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2031
|
+
documentDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2032
|
+
expiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2033
|
+
expiryDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
2034
|
+
isExpired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
2035
|
+
expiredAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2036
|
+
expiryWarningAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2037
|
+
revalidatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1534
2038
|
status?: Prisma.EnumDocumentStatusFieldUpdateOperationsInput | $Enums.DocumentStatus;
|
|
1535
2039
|
version?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
1536
2040
|
replacesDocumentId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -1549,6 +2053,15 @@ export type ApplicationDocumentCreateManyReplacesDocumentInput = {
|
|
|
1549
2053
|
url: string;
|
|
1550
2054
|
type: string;
|
|
1551
2055
|
uploadedById?: string | null;
|
|
2056
|
+
expectedUploader?: $Enums.UploadedBy | null;
|
|
2057
|
+
expectedOrganizationId?: string | null;
|
|
2058
|
+
documentDate?: Date | string | null;
|
|
2059
|
+
expiresAt?: Date | string | null;
|
|
2060
|
+
expiryDays?: number | null;
|
|
2061
|
+
isExpired?: boolean;
|
|
2062
|
+
expiredAt?: Date | string | null;
|
|
2063
|
+
expiryWarningAt?: Date | string | null;
|
|
2064
|
+
revalidatedAt?: Date | string | null;
|
|
1552
2065
|
status?: $Enums.DocumentStatus;
|
|
1553
2066
|
version?: number;
|
|
1554
2067
|
createdAt?: Date | string;
|
|
@@ -1563,6 +2076,15 @@ export type ApplicationDocumentUpdateWithoutReplacesDocumentInput = {
|
|
|
1563
2076
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1564
2077
|
url?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1565
2078
|
type?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
2079
|
+
expectedUploader?: Prisma.NullableEnumUploadedByFieldUpdateOperationsInput | $Enums.UploadedBy | null;
|
|
2080
|
+
expectedOrganizationId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2081
|
+
documentDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2082
|
+
expiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2083
|
+
expiryDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
2084
|
+
isExpired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
2085
|
+
expiredAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2086
|
+
expiryWarningAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2087
|
+
revalidatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1566
2088
|
status?: Prisma.EnumDocumentStatusFieldUpdateOperationsInput | $Enums.DocumentStatus;
|
|
1567
2089
|
version?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
1568
2090
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
@@ -1586,6 +2108,15 @@ export type ApplicationDocumentUncheckedUpdateWithoutReplacesDocumentInput = {
|
|
|
1586
2108
|
url?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1587
2109
|
type?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1588
2110
|
uploadedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2111
|
+
expectedUploader?: Prisma.NullableEnumUploadedByFieldUpdateOperationsInput | $Enums.UploadedBy | null;
|
|
2112
|
+
expectedOrganizationId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2113
|
+
documentDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2114
|
+
expiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2115
|
+
expiryDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
2116
|
+
isExpired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
2117
|
+
expiredAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2118
|
+
expiryWarningAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2119
|
+
revalidatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1589
2120
|
status?: Prisma.EnumDocumentStatusFieldUpdateOperationsInput | $Enums.DocumentStatus;
|
|
1590
2121
|
version?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
1591
2122
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
@@ -1606,6 +2137,15 @@ export type ApplicationDocumentUncheckedUpdateManyWithoutReplacesDocumentInput =
|
|
|
1606
2137
|
url?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1607
2138
|
type?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1608
2139
|
uploadedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2140
|
+
expectedUploader?: Prisma.NullableEnumUploadedByFieldUpdateOperationsInput | $Enums.UploadedBy | null;
|
|
2141
|
+
expectedOrganizationId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2142
|
+
documentDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2143
|
+
expiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2144
|
+
expiryDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
2145
|
+
isExpired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
2146
|
+
expiredAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2147
|
+
expiryWarningAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2148
|
+
revalidatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1609
2149
|
status?: Prisma.EnumDocumentStatusFieldUpdateOperationsInput | $Enums.DocumentStatus;
|
|
1610
2150
|
version?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
1611
2151
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
@@ -1663,6 +2203,15 @@ export type ApplicationDocumentSelect<ExtArgs extends runtime.Types.Extensions.I
|
|
|
1663
2203
|
url?: boolean;
|
|
1664
2204
|
type?: boolean;
|
|
1665
2205
|
uploadedById?: boolean;
|
|
2206
|
+
expectedUploader?: boolean;
|
|
2207
|
+
expectedOrganizationId?: boolean;
|
|
2208
|
+
documentDate?: boolean;
|
|
2209
|
+
expiresAt?: boolean;
|
|
2210
|
+
expiryDays?: boolean;
|
|
2211
|
+
isExpired?: boolean;
|
|
2212
|
+
expiredAt?: boolean;
|
|
2213
|
+
expiryWarningAt?: boolean;
|
|
2214
|
+
revalidatedAt?: boolean;
|
|
1666
2215
|
status?: boolean;
|
|
1667
2216
|
version?: boolean;
|
|
1668
2217
|
replacesDocumentId?: boolean;
|
|
@@ -1689,13 +2238,22 @@ export type ApplicationDocumentSelectScalar = {
|
|
|
1689
2238
|
url?: boolean;
|
|
1690
2239
|
type?: boolean;
|
|
1691
2240
|
uploadedById?: boolean;
|
|
2241
|
+
expectedUploader?: boolean;
|
|
2242
|
+
expectedOrganizationId?: boolean;
|
|
2243
|
+
documentDate?: boolean;
|
|
2244
|
+
expiresAt?: boolean;
|
|
2245
|
+
expiryDays?: boolean;
|
|
2246
|
+
isExpired?: boolean;
|
|
2247
|
+
expiredAt?: boolean;
|
|
2248
|
+
expiryWarningAt?: boolean;
|
|
2249
|
+
revalidatedAt?: boolean;
|
|
1692
2250
|
status?: boolean;
|
|
1693
2251
|
version?: boolean;
|
|
1694
2252
|
replacesDocumentId?: boolean;
|
|
1695
2253
|
createdAt?: boolean;
|
|
1696
2254
|
updatedAt?: boolean;
|
|
1697
2255
|
};
|
|
1698
|
-
export type ApplicationDocumentOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "tenantId" | "applicationId" | "phaseId" | "stepId" | "documentType" | "documentName" | "name" | "url" | "type" | "uploadedById" | "status" | "version" | "replacesDocumentId" | "createdAt" | "updatedAt", ExtArgs["result"]["applicationDocument"]>;
|
|
2256
|
+
export type ApplicationDocumentOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "tenantId" | "applicationId" | "phaseId" | "stepId" | "documentType" | "documentName" | "name" | "url" | "type" | "uploadedById" | "expectedUploader" | "expectedOrganizationId" | "documentDate" | "expiresAt" | "expiryDays" | "isExpired" | "expiredAt" | "expiryWarningAt" | "revalidatedAt" | "status" | "version" | "replacesDocumentId" | "createdAt" | "updatedAt", ExtArgs["result"]["applicationDocument"]>;
|
|
1699
2257
|
export type ApplicationDocumentInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1700
2258
|
tenant?: boolean | Prisma.TenantDefaultArgs<ExtArgs>;
|
|
1701
2259
|
application?: boolean | Prisma.ApplicationDefaultArgs<ExtArgs>;
|
|
@@ -1729,6 +2287,15 @@ export type $ApplicationDocumentPayload<ExtArgs extends runtime.Types.Extensions
|
|
|
1729
2287
|
url: string;
|
|
1730
2288
|
type: string;
|
|
1731
2289
|
uploadedById: string | null;
|
|
2290
|
+
expectedUploader: $Enums.UploadedBy | null;
|
|
2291
|
+
expectedOrganizationId: string | null;
|
|
2292
|
+
documentDate: Date | null;
|
|
2293
|
+
expiresAt: Date | null;
|
|
2294
|
+
expiryDays: number | null;
|
|
2295
|
+
isExpired: boolean;
|
|
2296
|
+
expiredAt: Date | null;
|
|
2297
|
+
expiryWarningAt: Date | null;
|
|
2298
|
+
revalidatedAt: Date | null;
|
|
1732
2299
|
status: $Enums.DocumentStatus;
|
|
1733
2300
|
version: number;
|
|
1734
2301
|
replacesDocumentId: string | null;
|
|
@@ -2054,6 +2621,15 @@ export interface ApplicationDocumentFieldRefs {
|
|
|
2054
2621
|
readonly url: Prisma.FieldRef<"ApplicationDocument", 'String'>;
|
|
2055
2622
|
readonly type: Prisma.FieldRef<"ApplicationDocument", 'String'>;
|
|
2056
2623
|
readonly uploadedById: Prisma.FieldRef<"ApplicationDocument", 'String'>;
|
|
2624
|
+
readonly expectedUploader: Prisma.FieldRef<"ApplicationDocument", 'UploadedBy'>;
|
|
2625
|
+
readonly expectedOrganizationId: Prisma.FieldRef<"ApplicationDocument", 'String'>;
|
|
2626
|
+
readonly documentDate: Prisma.FieldRef<"ApplicationDocument", 'DateTime'>;
|
|
2627
|
+
readonly expiresAt: Prisma.FieldRef<"ApplicationDocument", 'DateTime'>;
|
|
2628
|
+
readonly expiryDays: Prisma.FieldRef<"ApplicationDocument", 'Int'>;
|
|
2629
|
+
readonly isExpired: Prisma.FieldRef<"ApplicationDocument", 'Boolean'>;
|
|
2630
|
+
readonly expiredAt: Prisma.FieldRef<"ApplicationDocument", 'DateTime'>;
|
|
2631
|
+
readonly expiryWarningAt: Prisma.FieldRef<"ApplicationDocument", 'DateTime'>;
|
|
2632
|
+
readonly revalidatedAt: Prisma.FieldRef<"ApplicationDocument", 'DateTime'>;
|
|
2057
2633
|
readonly status: Prisma.FieldRef<"ApplicationDocument", 'DocumentStatus'>;
|
|
2058
2634
|
readonly version: Prisma.FieldRef<"ApplicationDocument", 'Int'>;
|
|
2059
2635
|
readonly replacesDocumentId: Prisma.FieldRef<"ApplicationDocument", 'String'>;
|