@valentine-efagene/qshelter-common 2.0.151 → 2.0.153
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 +13 -2
- package/dist/generated/client/client.d.ts +15 -4
- package/dist/generated/client/client.js +2 -2
- package/dist/generated/client/commonInputTypes.d.ts +20 -190
- package/dist/generated/client/enums.d.ts +0 -34
- package/dist/generated/client/enums.js +0 -30
- package/dist/generated/client/internal/class.d.ts +29 -7
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +181 -32
- package/dist/generated/client/internal/prismaNamespace.js +42 -11
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +46 -11
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +42 -11
- package/dist/generated/client/models/ApplicationOrganization.d.ts +308 -67
- package/dist/generated/client/models/ApprovalStage.d.ts +210 -91
- package/dist/generated/client/models/ApprovalStageProgress.d.ts +258 -69
- package/dist/generated/client/models/DocumentApproval.d.ts +196 -65
- package/dist/generated/client/models/DocumentReview.d.ts +475 -86
- package/dist/generated/client/models/Organization.d.ts +424 -52
- package/dist/generated/client/models/OrganizationMember.d.ts +42 -169
- package/dist/generated/client/models/OrganizationType.d.ts +1982 -0
- package/dist/generated/client/models/OrganizationType.js +1 -0
- package/dist/generated/client/models/OrganizationTypeAssignment.d.ts +1159 -0
- package/dist/generated/client/models/OrganizationTypeAssignment.js +1 -0
- package/dist/generated/client/models/Tenant.d.ts +575 -4
- package/dist/generated/client/models/User.d.ts +0 -12
- package/dist/generated/client/models/index.d.ts +2 -0
- package/dist/generated/client/models/index.js +2 -0
- package/dist/generated/client/models.d.ts +2 -0
- package/package.json +1 -1
- package/prisma/migrations/20260125102448_org_types_many_to_many/migration.sql +153 -0
- package/prisma/migrations/20260125103700_20260125102448_org_types_many_to_many_fix/migration.sql +5 -0
- package/prisma/schema.prisma +113 -79
|
@@ -15,7 +15,6 @@ export type OrganizationMinAggregateOutputType = {
|
|
|
15
15
|
id: string | null;
|
|
16
16
|
tenantId: string | null;
|
|
17
17
|
name: string | null;
|
|
18
|
-
type: $Enums.OrganizationType | null;
|
|
19
18
|
status: $Enums.OrganizationStatus | null;
|
|
20
19
|
isPlatformOrg: boolean | null;
|
|
21
20
|
email: string | null;
|
|
@@ -43,7 +42,6 @@ export type OrganizationMaxAggregateOutputType = {
|
|
|
43
42
|
id: string | null;
|
|
44
43
|
tenantId: string | null;
|
|
45
44
|
name: string | null;
|
|
46
|
-
type: $Enums.OrganizationType | null;
|
|
47
45
|
status: $Enums.OrganizationStatus | null;
|
|
48
46
|
isPlatformOrg: boolean | null;
|
|
49
47
|
email: string | null;
|
|
@@ -71,7 +69,6 @@ export type OrganizationCountAggregateOutputType = {
|
|
|
71
69
|
id: number;
|
|
72
70
|
tenantId: number;
|
|
73
71
|
name: number;
|
|
74
|
-
type: number;
|
|
75
72
|
status: number;
|
|
76
73
|
isPlatformOrg: number;
|
|
77
74
|
email: number;
|
|
@@ -100,7 +97,6 @@ export type OrganizationMinAggregateInputType = {
|
|
|
100
97
|
id?: true;
|
|
101
98
|
tenantId?: true;
|
|
102
99
|
name?: true;
|
|
103
|
-
type?: true;
|
|
104
100
|
status?: true;
|
|
105
101
|
isPlatformOrg?: true;
|
|
106
102
|
email?: true;
|
|
@@ -128,7 +124,6 @@ export type OrganizationMaxAggregateInputType = {
|
|
|
128
124
|
id?: true;
|
|
129
125
|
tenantId?: true;
|
|
130
126
|
name?: true;
|
|
131
|
-
type?: true;
|
|
132
127
|
status?: true;
|
|
133
128
|
isPlatformOrg?: true;
|
|
134
129
|
email?: true;
|
|
@@ -156,7 +151,6 @@ export type OrganizationCountAggregateInputType = {
|
|
|
156
151
|
id?: true;
|
|
157
152
|
tenantId?: true;
|
|
158
153
|
name?: true;
|
|
159
|
-
type?: true;
|
|
160
154
|
status?: true;
|
|
161
155
|
isPlatformOrg?: true;
|
|
162
156
|
email?: true;
|
|
@@ -247,7 +241,6 @@ export type OrganizationGroupByOutputType = {
|
|
|
247
241
|
id: string;
|
|
248
242
|
tenantId: string;
|
|
249
243
|
name: string;
|
|
250
|
-
type: $Enums.OrganizationType;
|
|
251
244
|
status: $Enums.OrganizationStatus;
|
|
252
245
|
isPlatformOrg: boolean;
|
|
253
246
|
email: string | null;
|
|
@@ -284,7 +277,6 @@ export type OrganizationWhereInput = {
|
|
|
284
277
|
id?: Prisma.StringFilter<"Organization"> | string;
|
|
285
278
|
tenantId?: Prisma.StringFilter<"Organization"> | string;
|
|
286
279
|
name?: Prisma.StringFilter<"Organization"> | string;
|
|
287
|
-
type?: Prisma.EnumOrganizationTypeFilter<"Organization"> | $Enums.OrganizationType;
|
|
288
280
|
status?: Prisma.EnumOrganizationStatusFilter<"Organization"> | $Enums.OrganizationStatus;
|
|
289
281
|
isPlatformOrg?: Prisma.BoolFilter<"Organization"> | boolean;
|
|
290
282
|
email?: Prisma.StringNullableFilter<"Organization"> | string | null;
|
|
@@ -307,16 +299,17 @@ export type OrganizationWhereInput = {
|
|
|
307
299
|
approvedById?: Prisma.StringNullableFilter<"Organization"> | string | null;
|
|
308
300
|
createdAt?: Prisma.DateTimeFilter<"Organization"> | Date | string;
|
|
309
301
|
updatedAt?: Prisma.DateTimeFilter<"Organization"> | Date | string;
|
|
302
|
+
types?: Prisma.OrganizationTypeAssignmentListRelationFilter;
|
|
310
303
|
tenant?: Prisma.XOR<Prisma.TenantScalarRelationFilter, Prisma.TenantWhereInput>;
|
|
311
304
|
members?: Prisma.OrganizationMemberListRelationFilter;
|
|
312
305
|
applicationAssignments?: Prisma.ApplicationOrganizationListRelationFilter;
|
|
313
306
|
documentRequirements?: Prisma.BankDocumentRequirementListRelationFilter;
|
|
307
|
+
documentReviews?: Prisma.DocumentReviewListRelationFilter;
|
|
314
308
|
};
|
|
315
309
|
export type OrganizationOrderByWithRelationInput = {
|
|
316
310
|
id?: Prisma.SortOrder;
|
|
317
311
|
tenantId?: Prisma.SortOrder;
|
|
318
312
|
name?: Prisma.SortOrder;
|
|
319
|
-
type?: Prisma.SortOrder;
|
|
320
313
|
status?: Prisma.SortOrder;
|
|
321
314
|
isPlatformOrg?: Prisma.SortOrder;
|
|
322
315
|
email?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
@@ -339,10 +332,12 @@ export type OrganizationOrderByWithRelationInput = {
|
|
|
339
332
|
approvedById?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
340
333
|
createdAt?: Prisma.SortOrder;
|
|
341
334
|
updatedAt?: Prisma.SortOrder;
|
|
335
|
+
types?: Prisma.OrganizationTypeAssignmentOrderByRelationAggregateInput;
|
|
342
336
|
tenant?: Prisma.TenantOrderByWithRelationInput;
|
|
343
337
|
members?: Prisma.OrganizationMemberOrderByRelationAggregateInput;
|
|
344
338
|
applicationAssignments?: Prisma.ApplicationOrganizationOrderByRelationAggregateInput;
|
|
345
339
|
documentRequirements?: Prisma.BankDocumentRequirementOrderByRelationAggregateInput;
|
|
340
|
+
documentReviews?: Prisma.DocumentReviewOrderByRelationAggregateInput;
|
|
346
341
|
_relevance?: Prisma.OrganizationOrderByRelevanceInput;
|
|
347
342
|
};
|
|
348
343
|
export type OrganizationWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -354,7 +349,6 @@ export type OrganizationWhereUniqueInput = Prisma.AtLeast<{
|
|
|
354
349
|
NOT?: Prisma.OrganizationWhereInput | Prisma.OrganizationWhereInput[];
|
|
355
350
|
tenantId?: Prisma.StringFilter<"Organization"> | string;
|
|
356
351
|
name?: Prisma.StringFilter<"Organization"> | string;
|
|
357
|
-
type?: Prisma.EnumOrganizationTypeFilter<"Organization"> | $Enums.OrganizationType;
|
|
358
352
|
status?: Prisma.EnumOrganizationStatusFilter<"Organization"> | $Enums.OrganizationStatus;
|
|
359
353
|
isPlatformOrg?: Prisma.BoolFilter<"Organization"> | boolean;
|
|
360
354
|
email?: Prisma.StringNullableFilter<"Organization"> | string | null;
|
|
@@ -377,16 +371,17 @@ export type OrganizationWhereUniqueInput = Prisma.AtLeast<{
|
|
|
377
371
|
approvedById?: Prisma.StringNullableFilter<"Organization"> | string | null;
|
|
378
372
|
createdAt?: Prisma.DateTimeFilter<"Organization"> | Date | string;
|
|
379
373
|
updatedAt?: Prisma.DateTimeFilter<"Organization"> | Date | string;
|
|
374
|
+
types?: Prisma.OrganizationTypeAssignmentListRelationFilter;
|
|
380
375
|
tenant?: Prisma.XOR<Prisma.TenantScalarRelationFilter, Prisma.TenantWhereInput>;
|
|
381
376
|
members?: Prisma.OrganizationMemberListRelationFilter;
|
|
382
377
|
applicationAssignments?: Prisma.ApplicationOrganizationListRelationFilter;
|
|
383
378
|
documentRequirements?: Prisma.BankDocumentRequirementListRelationFilter;
|
|
379
|
+
documentReviews?: Prisma.DocumentReviewListRelationFilter;
|
|
384
380
|
}, "id" | "tenantId_bankCode" | "tenantId_cacNumber">;
|
|
385
381
|
export type OrganizationOrderByWithAggregationInput = {
|
|
386
382
|
id?: Prisma.SortOrder;
|
|
387
383
|
tenantId?: Prisma.SortOrder;
|
|
388
384
|
name?: Prisma.SortOrder;
|
|
389
|
-
type?: Prisma.SortOrder;
|
|
390
385
|
status?: Prisma.SortOrder;
|
|
391
386
|
isPlatformOrg?: Prisma.SortOrder;
|
|
392
387
|
email?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
@@ -420,7 +415,6 @@ export type OrganizationScalarWhereWithAggregatesInput = {
|
|
|
420
415
|
id?: Prisma.StringWithAggregatesFilter<"Organization"> | string;
|
|
421
416
|
tenantId?: Prisma.StringWithAggregatesFilter<"Organization"> | string;
|
|
422
417
|
name?: Prisma.StringWithAggregatesFilter<"Organization"> | string;
|
|
423
|
-
type?: Prisma.EnumOrganizationTypeWithAggregatesFilter<"Organization"> | $Enums.OrganizationType;
|
|
424
418
|
status?: Prisma.EnumOrganizationStatusWithAggregatesFilter<"Organization"> | $Enums.OrganizationStatus;
|
|
425
419
|
isPlatformOrg?: Prisma.BoolWithAggregatesFilter<"Organization"> | boolean;
|
|
426
420
|
email?: Prisma.StringNullableWithAggregatesFilter<"Organization"> | string | null;
|
|
@@ -447,7 +441,6 @@ export type OrganizationScalarWhereWithAggregatesInput = {
|
|
|
447
441
|
export type OrganizationCreateInput = {
|
|
448
442
|
id?: string;
|
|
449
443
|
name: string;
|
|
450
|
-
type: $Enums.OrganizationType;
|
|
451
444
|
status?: $Enums.OrganizationStatus;
|
|
452
445
|
isPlatformOrg?: boolean;
|
|
453
446
|
email?: string | null;
|
|
@@ -470,16 +463,17 @@ export type OrganizationCreateInput = {
|
|
|
470
463
|
approvedById?: string | null;
|
|
471
464
|
createdAt?: Date | string;
|
|
472
465
|
updatedAt?: Date | string;
|
|
466
|
+
types?: Prisma.OrganizationTypeAssignmentCreateNestedManyWithoutOrganizationInput;
|
|
473
467
|
tenant: Prisma.TenantCreateNestedOneWithoutOrganizationsInput;
|
|
474
468
|
members?: Prisma.OrganizationMemberCreateNestedManyWithoutOrganizationInput;
|
|
475
469
|
applicationAssignments?: Prisma.ApplicationOrganizationCreateNestedManyWithoutOrganizationInput;
|
|
476
470
|
documentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutOrganizationInput;
|
|
471
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutOrganizationInput;
|
|
477
472
|
};
|
|
478
473
|
export type OrganizationUncheckedCreateInput = {
|
|
479
474
|
id?: string;
|
|
480
475
|
tenantId: string;
|
|
481
476
|
name: string;
|
|
482
|
-
type: $Enums.OrganizationType;
|
|
483
477
|
status?: $Enums.OrganizationStatus;
|
|
484
478
|
isPlatformOrg?: boolean;
|
|
485
479
|
email?: string | null;
|
|
@@ -502,14 +496,15 @@ export type OrganizationUncheckedCreateInput = {
|
|
|
502
496
|
approvedById?: string | null;
|
|
503
497
|
createdAt?: Date | string;
|
|
504
498
|
updatedAt?: Date | string;
|
|
499
|
+
types?: Prisma.OrganizationTypeAssignmentUncheckedCreateNestedManyWithoutOrganizationInput;
|
|
505
500
|
members?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutOrganizationInput;
|
|
506
501
|
applicationAssignments?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutOrganizationInput;
|
|
507
502
|
documentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutOrganizationInput;
|
|
503
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutOrganizationInput;
|
|
508
504
|
};
|
|
509
505
|
export type OrganizationUpdateInput = {
|
|
510
506
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
511
507
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
512
|
-
type?: Prisma.EnumOrganizationTypeFieldUpdateOperationsInput | $Enums.OrganizationType;
|
|
513
508
|
status?: Prisma.EnumOrganizationStatusFieldUpdateOperationsInput | $Enums.OrganizationStatus;
|
|
514
509
|
isPlatformOrg?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
515
510
|
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -532,16 +527,17 @@ export type OrganizationUpdateInput = {
|
|
|
532
527
|
approvedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
533
528
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
534
529
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
530
|
+
types?: Prisma.OrganizationTypeAssignmentUpdateManyWithoutOrganizationNestedInput;
|
|
535
531
|
tenant?: Prisma.TenantUpdateOneRequiredWithoutOrganizationsNestedInput;
|
|
536
532
|
members?: Prisma.OrganizationMemberUpdateManyWithoutOrganizationNestedInput;
|
|
537
533
|
applicationAssignments?: Prisma.ApplicationOrganizationUpdateManyWithoutOrganizationNestedInput;
|
|
538
534
|
documentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutOrganizationNestedInput;
|
|
535
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutOrganizationNestedInput;
|
|
539
536
|
};
|
|
540
537
|
export type OrganizationUncheckedUpdateInput = {
|
|
541
538
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
542
539
|
tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
543
540
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
544
|
-
type?: Prisma.EnumOrganizationTypeFieldUpdateOperationsInput | $Enums.OrganizationType;
|
|
545
541
|
status?: Prisma.EnumOrganizationStatusFieldUpdateOperationsInput | $Enums.OrganizationStatus;
|
|
546
542
|
isPlatformOrg?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
547
543
|
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -564,15 +560,16 @@ export type OrganizationUncheckedUpdateInput = {
|
|
|
564
560
|
approvedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
565
561
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
566
562
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
563
|
+
types?: Prisma.OrganizationTypeAssignmentUncheckedUpdateManyWithoutOrganizationNestedInput;
|
|
567
564
|
members?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutOrganizationNestedInput;
|
|
568
565
|
applicationAssignments?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutOrganizationNestedInput;
|
|
569
566
|
documentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutOrganizationNestedInput;
|
|
567
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutOrganizationNestedInput;
|
|
570
568
|
};
|
|
571
569
|
export type OrganizationCreateManyInput = {
|
|
572
570
|
id?: string;
|
|
573
571
|
tenantId: string;
|
|
574
572
|
name: string;
|
|
575
|
-
type: $Enums.OrganizationType;
|
|
576
573
|
status?: $Enums.OrganizationStatus;
|
|
577
574
|
isPlatformOrg?: boolean;
|
|
578
575
|
email?: string | null;
|
|
@@ -599,7 +596,6 @@ export type OrganizationCreateManyInput = {
|
|
|
599
596
|
export type OrganizationUpdateManyMutationInput = {
|
|
600
597
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
601
598
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
602
|
-
type?: Prisma.EnumOrganizationTypeFieldUpdateOperationsInput | $Enums.OrganizationType;
|
|
603
599
|
status?: Prisma.EnumOrganizationStatusFieldUpdateOperationsInput | $Enums.OrganizationStatus;
|
|
604
600
|
isPlatformOrg?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
605
601
|
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -627,7 +623,6 @@ export type OrganizationUncheckedUpdateManyInput = {
|
|
|
627
623
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
628
624
|
tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
629
625
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
630
|
-
type?: Prisma.EnumOrganizationTypeFieldUpdateOperationsInput | $Enums.OrganizationType;
|
|
631
626
|
status?: Prisma.EnumOrganizationStatusFieldUpdateOperationsInput | $Enums.OrganizationStatus;
|
|
632
627
|
isPlatformOrg?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
633
628
|
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -651,6 +646,10 @@ export type OrganizationUncheckedUpdateManyInput = {
|
|
|
651
646
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
652
647
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
653
648
|
};
|
|
649
|
+
export type OrganizationScalarRelationFilter = {
|
|
650
|
+
is?: Prisma.OrganizationWhereInput;
|
|
651
|
+
isNot?: Prisma.OrganizationWhereInput;
|
|
652
|
+
};
|
|
654
653
|
export type OrganizationOrderByRelevanceInput = {
|
|
655
654
|
fields: Prisma.OrganizationOrderByRelevanceFieldEnum | Prisma.OrganizationOrderByRelevanceFieldEnum[];
|
|
656
655
|
sort: Prisma.SortOrder;
|
|
@@ -668,7 +667,6 @@ export type OrganizationCountOrderByAggregateInput = {
|
|
|
668
667
|
id?: Prisma.SortOrder;
|
|
669
668
|
tenantId?: Prisma.SortOrder;
|
|
670
669
|
name?: Prisma.SortOrder;
|
|
671
|
-
type?: Prisma.SortOrder;
|
|
672
670
|
status?: Prisma.SortOrder;
|
|
673
671
|
isPlatformOrg?: Prisma.SortOrder;
|
|
674
672
|
email?: Prisma.SortOrder;
|
|
@@ -696,7 +694,6 @@ export type OrganizationMaxOrderByAggregateInput = {
|
|
|
696
694
|
id?: Prisma.SortOrder;
|
|
697
695
|
tenantId?: Prisma.SortOrder;
|
|
698
696
|
name?: Prisma.SortOrder;
|
|
699
|
-
type?: Prisma.SortOrder;
|
|
700
697
|
status?: Prisma.SortOrder;
|
|
701
698
|
isPlatformOrg?: Prisma.SortOrder;
|
|
702
699
|
email?: Prisma.SortOrder;
|
|
@@ -724,7 +721,6 @@ export type OrganizationMinOrderByAggregateInput = {
|
|
|
724
721
|
id?: Prisma.SortOrder;
|
|
725
722
|
tenantId?: Prisma.SortOrder;
|
|
726
723
|
name?: Prisma.SortOrder;
|
|
727
|
-
type?: Prisma.SortOrder;
|
|
728
724
|
status?: Prisma.SortOrder;
|
|
729
725
|
isPlatformOrg?: Prisma.SortOrder;
|
|
730
726
|
email?: Prisma.SortOrder;
|
|
@@ -748,10 +744,6 @@ export type OrganizationMinOrderByAggregateInput = {
|
|
|
748
744
|
createdAt?: Prisma.SortOrder;
|
|
749
745
|
updatedAt?: Prisma.SortOrder;
|
|
750
746
|
};
|
|
751
|
-
export type OrganizationScalarRelationFilter = {
|
|
752
|
-
is?: Prisma.OrganizationWhereInput;
|
|
753
|
-
isNot?: Prisma.OrganizationWhereInput;
|
|
754
|
-
};
|
|
755
747
|
export type OrganizationListRelationFilter = {
|
|
756
748
|
every?: Prisma.OrganizationWhereInput;
|
|
757
749
|
some?: Prisma.OrganizationWhereInput;
|
|
@@ -760,8 +752,21 @@ export type OrganizationListRelationFilter = {
|
|
|
760
752
|
export type OrganizationOrderByRelationAggregateInput = {
|
|
761
753
|
_count?: Prisma.SortOrder;
|
|
762
754
|
};
|
|
763
|
-
export type
|
|
764
|
-
|
|
755
|
+
export type OrganizationNullableScalarRelationFilter = {
|
|
756
|
+
is?: Prisma.OrganizationWhereInput | null;
|
|
757
|
+
isNot?: Prisma.OrganizationWhereInput | null;
|
|
758
|
+
};
|
|
759
|
+
export type OrganizationCreateNestedOneWithoutTypesInput = {
|
|
760
|
+
create?: Prisma.XOR<Prisma.OrganizationCreateWithoutTypesInput, Prisma.OrganizationUncheckedCreateWithoutTypesInput>;
|
|
761
|
+
connectOrCreate?: Prisma.OrganizationCreateOrConnectWithoutTypesInput;
|
|
762
|
+
connect?: Prisma.OrganizationWhereUniqueInput;
|
|
763
|
+
};
|
|
764
|
+
export type OrganizationUpdateOneRequiredWithoutTypesNestedInput = {
|
|
765
|
+
create?: Prisma.XOR<Prisma.OrganizationCreateWithoutTypesInput, Prisma.OrganizationUncheckedCreateWithoutTypesInput>;
|
|
766
|
+
connectOrCreate?: Prisma.OrganizationCreateOrConnectWithoutTypesInput;
|
|
767
|
+
upsert?: Prisma.OrganizationUpsertWithoutTypesInput;
|
|
768
|
+
connect?: Prisma.OrganizationWhereUniqueInput;
|
|
769
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.OrganizationUpdateToOneWithWhereWithoutTypesInput, Prisma.OrganizationUpdateWithoutTypesInput>, Prisma.OrganizationUncheckedUpdateWithoutTypesInput>;
|
|
765
770
|
};
|
|
766
771
|
export type EnumOrganizationStatusFieldUpdateOperationsInput = {
|
|
767
772
|
set?: $Enums.OrganizationStatus;
|
|
@@ -840,10 +845,160 @@ export type OrganizationUpdateOneRequiredWithoutApplicationAssignmentsNestedInpu
|
|
|
840
845
|
connect?: Prisma.OrganizationWhereUniqueInput;
|
|
841
846
|
update?: Prisma.XOR<Prisma.XOR<Prisma.OrganizationUpdateToOneWithWhereWithoutApplicationAssignmentsInput, Prisma.OrganizationUpdateWithoutApplicationAssignmentsInput>, Prisma.OrganizationUncheckedUpdateWithoutApplicationAssignmentsInput>;
|
|
842
847
|
};
|
|
848
|
+
export type OrganizationCreateNestedOneWithoutDocumentReviewsInput = {
|
|
849
|
+
create?: Prisma.XOR<Prisma.OrganizationCreateWithoutDocumentReviewsInput, Prisma.OrganizationUncheckedCreateWithoutDocumentReviewsInput>;
|
|
850
|
+
connectOrCreate?: Prisma.OrganizationCreateOrConnectWithoutDocumentReviewsInput;
|
|
851
|
+
connect?: Prisma.OrganizationWhereUniqueInput;
|
|
852
|
+
};
|
|
853
|
+
export type OrganizationUpdateOneWithoutDocumentReviewsNestedInput = {
|
|
854
|
+
create?: Prisma.XOR<Prisma.OrganizationCreateWithoutDocumentReviewsInput, Prisma.OrganizationUncheckedCreateWithoutDocumentReviewsInput>;
|
|
855
|
+
connectOrCreate?: Prisma.OrganizationCreateOrConnectWithoutDocumentReviewsInput;
|
|
856
|
+
upsert?: Prisma.OrganizationUpsertWithoutDocumentReviewsInput;
|
|
857
|
+
disconnect?: Prisma.OrganizationWhereInput | boolean;
|
|
858
|
+
delete?: Prisma.OrganizationWhereInput | boolean;
|
|
859
|
+
connect?: Prisma.OrganizationWhereUniqueInput;
|
|
860
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.OrganizationUpdateToOneWithWhereWithoutDocumentReviewsInput, Prisma.OrganizationUpdateWithoutDocumentReviewsInput>, Prisma.OrganizationUncheckedUpdateWithoutDocumentReviewsInput>;
|
|
861
|
+
};
|
|
862
|
+
export type OrganizationCreateWithoutTypesInput = {
|
|
863
|
+
id?: string;
|
|
864
|
+
name: string;
|
|
865
|
+
status?: $Enums.OrganizationStatus;
|
|
866
|
+
isPlatformOrg?: boolean;
|
|
867
|
+
email?: string | null;
|
|
868
|
+
phone?: string | null;
|
|
869
|
+
address?: string | null;
|
|
870
|
+
city?: string | null;
|
|
871
|
+
state?: string | null;
|
|
872
|
+
country?: string | null;
|
|
873
|
+
website?: string | null;
|
|
874
|
+
logoUrl?: string | null;
|
|
875
|
+
description?: string | null;
|
|
876
|
+
bankCode?: string | null;
|
|
877
|
+
bankLicenseNo?: string | null;
|
|
878
|
+
swiftCode?: string | null;
|
|
879
|
+
sortCode?: string | null;
|
|
880
|
+
cacNumber?: string | null;
|
|
881
|
+
cacCertificateUrl?: string | null;
|
|
882
|
+
taxId?: string | null;
|
|
883
|
+
approvedAt?: Date | string | null;
|
|
884
|
+
approvedById?: string | null;
|
|
885
|
+
createdAt?: Date | string;
|
|
886
|
+
updatedAt?: Date | string;
|
|
887
|
+
tenant: Prisma.TenantCreateNestedOneWithoutOrganizationsInput;
|
|
888
|
+
members?: Prisma.OrganizationMemberCreateNestedManyWithoutOrganizationInput;
|
|
889
|
+
applicationAssignments?: Prisma.ApplicationOrganizationCreateNestedManyWithoutOrganizationInput;
|
|
890
|
+
documentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutOrganizationInput;
|
|
891
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutOrganizationInput;
|
|
892
|
+
};
|
|
893
|
+
export type OrganizationUncheckedCreateWithoutTypesInput = {
|
|
894
|
+
id?: string;
|
|
895
|
+
tenantId: string;
|
|
896
|
+
name: string;
|
|
897
|
+
status?: $Enums.OrganizationStatus;
|
|
898
|
+
isPlatformOrg?: boolean;
|
|
899
|
+
email?: string | null;
|
|
900
|
+
phone?: string | null;
|
|
901
|
+
address?: string | null;
|
|
902
|
+
city?: string | null;
|
|
903
|
+
state?: string | null;
|
|
904
|
+
country?: string | null;
|
|
905
|
+
website?: string | null;
|
|
906
|
+
logoUrl?: string | null;
|
|
907
|
+
description?: string | null;
|
|
908
|
+
bankCode?: string | null;
|
|
909
|
+
bankLicenseNo?: string | null;
|
|
910
|
+
swiftCode?: string | null;
|
|
911
|
+
sortCode?: string | null;
|
|
912
|
+
cacNumber?: string | null;
|
|
913
|
+
cacCertificateUrl?: string | null;
|
|
914
|
+
taxId?: string | null;
|
|
915
|
+
approvedAt?: Date | string | null;
|
|
916
|
+
approvedById?: string | null;
|
|
917
|
+
createdAt?: Date | string;
|
|
918
|
+
updatedAt?: Date | string;
|
|
919
|
+
members?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutOrganizationInput;
|
|
920
|
+
applicationAssignments?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutOrganizationInput;
|
|
921
|
+
documentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutOrganizationInput;
|
|
922
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutOrganizationInput;
|
|
923
|
+
};
|
|
924
|
+
export type OrganizationCreateOrConnectWithoutTypesInput = {
|
|
925
|
+
where: Prisma.OrganizationWhereUniqueInput;
|
|
926
|
+
create: Prisma.XOR<Prisma.OrganizationCreateWithoutTypesInput, Prisma.OrganizationUncheckedCreateWithoutTypesInput>;
|
|
927
|
+
};
|
|
928
|
+
export type OrganizationUpsertWithoutTypesInput = {
|
|
929
|
+
update: Prisma.XOR<Prisma.OrganizationUpdateWithoutTypesInput, Prisma.OrganizationUncheckedUpdateWithoutTypesInput>;
|
|
930
|
+
create: Prisma.XOR<Prisma.OrganizationCreateWithoutTypesInput, Prisma.OrganizationUncheckedCreateWithoutTypesInput>;
|
|
931
|
+
where?: Prisma.OrganizationWhereInput;
|
|
932
|
+
};
|
|
933
|
+
export type OrganizationUpdateToOneWithWhereWithoutTypesInput = {
|
|
934
|
+
where?: Prisma.OrganizationWhereInput;
|
|
935
|
+
data: Prisma.XOR<Prisma.OrganizationUpdateWithoutTypesInput, Prisma.OrganizationUncheckedUpdateWithoutTypesInput>;
|
|
936
|
+
};
|
|
937
|
+
export type OrganizationUpdateWithoutTypesInput = {
|
|
938
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
939
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
940
|
+
status?: Prisma.EnumOrganizationStatusFieldUpdateOperationsInput | $Enums.OrganizationStatus;
|
|
941
|
+
isPlatformOrg?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
942
|
+
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
943
|
+
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
944
|
+
address?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
945
|
+
city?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
946
|
+
state?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
947
|
+
country?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
948
|
+
website?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
949
|
+
logoUrl?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
950
|
+
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
951
|
+
bankCode?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
952
|
+
bankLicenseNo?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
953
|
+
swiftCode?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
954
|
+
sortCode?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
955
|
+
cacNumber?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
956
|
+
cacCertificateUrl?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
957
|
+
taxId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
958
|
+
approvedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
959
|
+
approvedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
960
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
961
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
962
|
+
tenant?: Prisma.TenantUpdateOneRequiredWithoutOrganizationsNestedInput;
|
|
963
|
+
members?: Prisma.OrganizationMemberUpdateManyWithoutOrganizationNestedInput;
|
|
964
|
+
applicationAssignments?: Prisma.ApplicationOrganizationUpdateManyWithoutOrganizationNestedInput;
|
|
965
|
+
documentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutOrganizationNestedInput;
|
|
966
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutOrganizationNestedInput;
|
|
967
|
+
};
|
|
968
|
+
export type OrganizationUncheckedUpdateWithoutTypesInput = {
|
|
969
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
970
|
+
tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
971
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
972
|
+
status?: Prisma.EnumOrganizationStatusFieldUpdateOperationsInput | $Enums.OrganizationStatus;
|
|
973
|
+
isPlatformOrg?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
974
|
+
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
975
|
+
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
976
|
+
address?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
977
|
+
city?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
978
|
+
state?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
979
|
+
country?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
980
|
+
website?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
981
|
+
logoUrl?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
982
|
+
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
983
|
+
bankCode?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
984
|
+
bankLicenseNo?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
985
|
+
swiftCode?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
986
|
+
sortCode?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
987
|
+
cacNumber?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
988
|
+
cacCertificateUrl?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
989
|
+
taxId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
990
|
+
approvedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
991
|
+
approvedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
992
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
993
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
994
|
+
members?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutOrganizationNestedInput;
|
|
995
|
+
applicationAssignments?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutOrganizationNestedInput;
|
|
996
|
+
documentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutOrganizationNestedInput;
|
|
997
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutOrganizationNestedInput;
|
|
998
|
+
};
|
|
843
999
|
export type OrganizationCreateWithoutMembersInput = {
|
|
844
1000
|
id?: string;
|
|
845
1001
|
name: string;
|
|
846
|
-
type: $Enums.OrganizationType;
|
|
847
1002
|
status?: $Enums.OrganizationStatus;
|
|
848
1003
|
isPlatformOrg?: boolean;
|
|
849
1004
|
email?: string | null;
|
|
@@ -866,15 +1021,16 @@ export type OrganizationCreateWithoutMembersInput = {
|
|
|
866
1021
|
approvedById?: string | null;
|
|
867
1022
|
createdAt?: Date | string;
|
|
868
1023
|
updatedAt?: Date | string;
|
|
1024
|
+
types?: Prisma.OrganizationTypeAssignmentCreateNestedManyWithoutOrganizationInput;
|
|
869
1025
|
tenant: Prisma.TenantCreateNestedOneWithoutOrganizationsInput;
|
|
870
1026
|
applicationAssignments?: Prisma.ApplicationOrganizationCreateNestedManyWithoutOrganizationInput;
|
|
871
1027
|
documentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutOrganizationInput;
|
|
1028
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutOrganizationInput;
|
|
872
1029
|
};
|
|
873
1030
|
export type OrganizationUncheckedCreateWithoutMembersInput = {
|
|
874
1031
|
id?: string;
|
|
875
1032
|
tenantId: string;
|
|
876
1033
|
name: string;
|
|
877
|
-
type: $Enums.OrganizationType;
|
|
878
1034
|
status?: $Enums.OrganizationStatus;
|
|
879
1035
|
isPlatformOrg?: boolean;
|
|
880
1036
|
email?: string | null;
|
|
@@ -897,8 +1053,10 @@ export type OrganizationUncheckedCreateWithoutMembersInput = {
|
|
|
897
1053
|
approvedById?: string | null;
|
|
898
1054
|
createdAt?: Date | string;
|
|
899
1055
|
updatedAt?: Date | string;
|
|
1056
|
+
types?: Prisma.OrganizationTypeAssignmentUncheckedCreateNestedManyWithoutOrganizationInput;
|
|
900
1057
|
applicationAssignments?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutOrganizationInput;
|
|
901
1058
|
documentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutOrganizationInput;
|
|
1059
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutOrganizationInput;
|
|
902
1060
|
};
|
|
903
1061
|
export type OrganizationCreateOrConnectWithoutMembersInput = {
|
|
904
1062
|
where: Prisma.OrganizationWhereUniqueInput;
|
|
@@ -916,7 +1074,6 @@ export type OrganizationUpdateToOneWithWhereWithoutMembersInput = {
|
|
|
916
1074
|
export type OrganizationUpdateWithoutMembersInput = {
|
|
917
1075
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
918
1076
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
919
|
-
type?: Prisma.EnumOrganizationTypeFieldUpdateOperationsInput | $Enums.OrganizationType;
|
|
920
1077
|
status?: Prisma.EnumOrganizationStatusFieldUpdateOperationsInput | $Enums.OrganizationStatus;
|
|
921
1078
|
isPlatformOrg?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
922
1079
|
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -939,15 +1096,16 @@ export type OrganizationUpdateWithoutMembersInput = {
|
|
|
939
1096
|
approvedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
940
1097
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
941
1098
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1099
|
+
types?: Prisma.OrganizationTypeAssignmentUpdateManyWithoutOrganizationNestedInput;
|
|
942
1100
|
tenant?: Prisma.TenantUpdateOneRequiredWithoutOrganizationsNestedInput;
|
|
943
1101
|
applicationAssignments?: Prisma.ApplicationOrganizationUpdateManyWithoutOrganizationNestedInput;
|
|
944
1102
|
documentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutOrganizationNestedInput;
|
|
1103
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutOrganizationNestedInput;
|
|
945
1104
|
};
|
|
946
1105
|
export type OrganizationUncheckedUpdateWithoutMembersInput = {
|
|
947
1106
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
948
1107
|
tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
949
1108
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
950
|
-
type?: Prisma.EnumOrganizationTypeFieldUpdateOperationsInput | $Enums.OrganizationType;
|
|
951
1109
|
status?: Prisma.EnumOrganizationStatusFieldUpdateOperationsInput | $Enums.OrganizationStatus;
|
|
952
1110
|
isPlatformOrg?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
953
1111
|
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -970,13 +1128,14 @@ export type OrganizationUncheckedUpdateWithoutMembersInput = {
|
|
|
970
1128
|
approvedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
971
1129
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
972
1130
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1131
|
+
types?: Prisma.OrganizationTypeAssignmentUncheckedUpdateManyWithoutOrganizationNestedInput;
|
|
973
1132
|
applicationAssignments?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutOrganizationNestedInput;
|
|
974
1133
|
documentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutOrganizationNestedInput;
|
|
1134
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutOrganizationNestedInput;
|
|
975
1135
|
};
|
|
976
1136
|
export type OrganizationCreateWithoutDocumentRequirementsInput = {
|
|
977
1137
|
id?: string;
|
|
978
1138
|
name: string;
|
|
979
|
-
type: $Enums.OrganizationType;
|
|
980
1139
|
status?: $Enums.OrganizationStatus;
|
|
981
1140
|
isPlatformOrg?: boolean;
|
|
982
1141
|
email?: string | null;
|
|
@@ -999,15 +1158,16 @@ export type OrganizationCreateWithoutDocumentRequirementsInput = {
|
|
|
999
1158
|
approvedById?: string | null;
|
|
1000
1159
|
createdAt?: Date | string;
|
|
1001
1160
|
updatedAt?: Date | string;
|
|
1161
|
+
types?: Prisma.OrganizationTypeAssignmentCreateNestedManyWithoutOrganizationInput;
|
|
1002
1162
|
tenant: Prisma.TenantCreateNestedOneWithoutOrganizationsInput;
|
|
1003
1163
|
members?: Prisma.OrganizationMemberCreateNestedManyWithoutOrganizationInput;
|
|
1004
1164
|
applicationAssignments?: Prisma.ApplicationOrganizationCreateNestedManyWithoutOrganizationInput;
|
|
1165
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutOrganizationInput;
|
|
1005
1166
|
};
|
|
1006
1167
|
export type OrganizationUncheckedCreateWithoutDocumentRequirementsInput = {
|
|
1007
1168
|
id?: string;
|
|
1008
1169
|
tenantId: string;
|
|
1009
1170
|
name: string;
|
|
1010
|
-
type: $Enums.OrganizationType;
|
|
1011
1171
|
status?: $Enums.OrganizationStatus;
|
|
1012
1172
|
isPlatformOrg?: boolean;
|
|
1013
1173
|
email?: string | null;
|
|
@@ -1030,8 +1190,10 @@ export type OrganizationUncheckedCreateWithoutDocumentRequirementsInput = {
|
|
|
1030
1190
|
approvedById?: string | null;
|
|
1031
1191
|
createdAt?: Date | string;
|
|
1032
1192
|
updatedAt?: Date | string;
|
|
1193
|
+
types?: Prisma.OrganizationTypeAssignmentUncheckedCreateNestedManyWithoutOrganizationInput;
|
|
1033
1194
|
members?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutOrganizationInput;
|
|
1034
1195
|
applicationAssignments?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutOrganizationInput;
|
|
1196
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutOrganizationInput;
|
|
1035
1197
|
};
|
|
1036
1198
|
export type OrganizationCreateOrConnectWithoutDocumentRequirementsInput = {
|
|
1037
1199
|
where: Prisma.OrganizationWhereUniqueInput;
|
|
@@ -1049,7 +1211,6 @@ export type OrganizationUpdateToOneWithWhereWithoutDocumentRequirementsInput = {
|
|
|
1049
1211
|
export type OrganizationUpdateWithoutDocumentRequirementsInput = {
|
|
1050
1212
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1051
1213
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1052
|
-
type?: Prisma.EnumOrganizationTypeFieldUpdateOperationsInput | $Enums.OrganizationType;
|
|
1053
1214
|
status?: Prisma.EnumOrganizationStatusFieldUpdateOperationsInput | $Enums.OrganizationStatus;
|
|
1054
1215
|
isPlatformOrg?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1055
1216
|
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -1072,15 +1233,16 @@ export type OrganizationUpdateWithoutDocumentRequirementsInput = {
|
|
|
1072
1233
|
approvedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1073
1234
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1074
1235
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1236
|
+
types?: Prisma.OrganizationTypeAssignmentUpdateManyWithoutOrganizationNestedInput;
|
|
1075
1237
|
tenant?: Prisma.TenantUpdateOneRequiredWithoutOrganizationsNestedInput;
|
|
1076
1238
|
members?: Prisma.OrganizationMemberUpdateManyWithoutOrganizationNestedInput;
|
|
1077
1239
|
applicationAssignments?: Prisma.ApplicationOrganizationUpdateManyWithoutOrganizationNestedInput;
|
|
1240
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutOrganizationNestedInput;
|
|
1078
1241
|
};
|
|
1079
1242
|
export type OrganizationUncheckedUpdateWithoutDocumentRequirementsInput = {
|
|
1080
1243
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1081
1244
|
tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1082
1245
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1083
|
-
type?: Prisma.EnumOrganizationTypeFieldUpdateOperationsInput | $Enums.OrganizationType;
|
|
1084
1246
|
status?: Prisma.EnumOrganizationStatusFieldUpdateOperationsInput | $Enums.OrganizationStatus;
|
|
1085
1247
|
isPlatformOrg?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1086
1248
|
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -1103,13 +1265,14 @@ export type OrganizationUncheckedUpdateWithoutDocumentRequirementsInput = {
|
|
|
1103
1265
|
approvedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1104
1266
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1105
1267
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1268
|
+
types?: Prisma.OrganizationTypeAssignmentUncheckedUpdateManyWithoutOrganizationNestedInput;
|
|
1106
1269
|
members?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutOrganizationNestedInput;
|
|
1107
1270
|
applicationAssignments?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutOrganizationNestedInput;
|
|
1271
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutOrganizationNestedInput;
|
|
1108
1272
|
};
|
|
1109
1273
|
export type OrganizationCreateWithoutTenantInput = {
|
|
1110
1274
|
id?: string;
|
|
1111
1275
|
name: string;
|
|
1112
|
-
type: $Enums.OrganizationType;
|
|
1113
1276
|
status?: $Enums.OrganizationStatus;
|
|
1114
1277
|
isPlatformOrg?: boolean;
|
|
1115
1278
|
email?: string | null;
|
|
@@ -1132,14 +1295,15 @@ export type OrganizationCreateWithoutTenantInput = {
|
|
|
1132
1295
|
approvedById?: string | null;
|
|
1133
1296
|
createdAt?: Date | string;
|
|
1134
1297
|
updatedAt?: Date | string;
|
|
1298
|
+
types?: Prisma.OrganizationTypeAssignmentCreateNestedManyWithoutOrganizationInput;
|
|
1135
1299
|
members?: Prisma.OrganizationMemberCreateNestedManyWithoutOrganizationInput;
|
|
1136
1300
|
applicationAssignments?: Prisma.ApplicationOrganizationCreateNestedManyWithoutOrganizationInput;
|
|
1137
1301
|
documentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutOrganizationInput;
|
|
1302
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutOrganizationInput;
|
|
1138
1303
|
};
|
|
1139
1304
|
export type OrganizationUncheckedCreateWithoutTenantInput = {
|
|
1140
1305
|
id?: string;
|
|
1141
1306
|
name: string;
|
|
1142
|
-
type: $Enums.OrganizationType;
|
|
1143
1307
|
status?: $Enums.OrganizationStatus;
|
|
1144
1308
|
isPlatformOrg?: boolean;
|
|
1145
1309
|
email?: string | null;
|
|
@@ -1162,9 +1326,11 @@ export type OrganizationUncheckedCreateWithoutTenantInput = {
|
|
|
1162
1326
|
approvedById?: string | null;
|
|
1163
1327
|
createdAt?: Date | string;
|
|
1164
1328
|
updatedAt?: Date | string;
|
|
1329
|
+
types?: Prisma.OrganizationTypeAssignmentUncheckedCreateNestedManyWithoutOrganizationInput;
|
|
1165
1330
|
members?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutOrganizationInput;
|
|
1166
1331
|
applicationAssignments?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutOrganizationInput;
|
|
1167
1332
|
documentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutOrganizationInput;
|
|
1333
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutOrganizationInput;
|
|
1168
1334
|
};
|
|
1169
1335
|
export type OrganizationCreateOrConnectWithoutTenantInput = {
|
|
1170
1336
|
where: Prisma.OrganizationWhereUniqueInput;
|
|
@@ -1194,7 +1360,6 @@ export type OrganizationScalarWhereInput = {
|
|
|
1194
1360
|
id?: Prisma.StringFilter<"Organization"> | string;
|
|
1195
1361
|
tenantId?: Prisma.StringFilter<"Organization"> | string;
|
|
1196
1362
|
name?: Prisma.StringFilter<"Organization"> | string;
|
|
1197
|
-
type?: Prisma.EnumOrganizationTypeFilter<"Organization"> | $Enums.OrganizationType;
|
|
1198
1363
|
status?: Prisma.EnumOrganizationStatusFilter<"Organization"> | $Enums.OrganizationStatus;
|
|
1199
1364
|
isPlatformOrg?: Prisma.BoolFilter<"Organization"> | boolean;
|
|
1200
1365
|
email?: Prisma.StringNullableFilter<"Organization"> | string | null;
|
|
@@ -1221,7 +1386,6 @@ export type OrganizationScalarWhereInput = {
|
|
|
1221
1386
|
export type OrganizationCreateWithoutApplicationAssignmentsInput = {
|
|
1222
1387
|
id?: string;
|
|
1223
1388
|
name: string;
|
|
1224
|
-
type: $Enums.OrganizationType;
|
|
1225
1389
|
status?: $Enums.OrganizationStatus;
|
|
1226
1390
|
isPlatformOrg?: boolean;
|
|
1227
1391
|
email?: string | null;
|
|
@@ -1244,15 +1408,16 @@ export type OrganizationCreateWithoutApplicationAssignmentsInput = {
|
|
|
1244
1408
|
approvedById?: string | null;
|
|
1245
1409
|
createdAt?: Date | string;
|
|
1246
1410
|
updatedAt?: Date | string;
|
|
1411
|
+
types?: Prisma.OrganizationTypeAssignmentCreateNestedManyWithoutOrganizationInput;
|
|
1247
1412
|
tenant: Prisma.TenantCreateNestedOneWithoutOrganizationsInput;
|
|
1248
1413
|
members?: Prisma.OrganizationMemberCreateNestedManyWithoutOrganizationInput;
|
|
1249
1414
|
documentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutOrganizationInput;
|
|
1415
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutOrganizationInput;
|
|
1250
1416
|
};
|
|
1251
1417
|
export type OrganizationUncheckedCreateWithoutApplicationAssignmentsInput = {
|
|
1252
1418
|
id?: string;
|
|
1253
1419
|
tenantId: string;
|
|
1254
1420
|
name: string;
|
|
1255
|
-
type: $Enums.OrganizationType;
|
|
1256
1421
|
status?: $Enums.OrganizationStatus;
|
|
1257
1422
|
isPlatformOrg?: boolean;
|
|
1258
1423
|
email?: string | null;
|
|
@@ -1275,8 +1440,10 @@ export type OrganizationUncheckedCreateWithoutApplicationAssignmentsInput = {
|
|
|
1275
1440
|
approvedById?: string | null;
|
|
1276
1441
|
createdAt?: Date | string;
|
|
1277
1442
|
updatedAt?: Date | string;
|
|
1443
|
+
types?: Prisma.OrganizationTypeAssignmentUncheckedCreateNestedManyWithoutOrganizationInput;
|
|
1278
1444
|
members?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutOrganizationInput;
|
|
1279
1445
|
documentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutOrganizationInput;
|
|
1446
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutOrganizationInput;
|
|
1280
1447
|
};
|
|
1281
1448
|
export type OrganizationCreateOrConnectWithoutApplicationAssignmentsInput = {
|
|
1282
1449
|
where: Prisma.OrganizationWhereUniqueInput;
|
|
@@ -1294,7 +1461,6 @@ export type OrganizationUpdateToOneWithWhereWithoutApplicationAssignmentsInput =
|
|
|
1294
1461
|
export type OrganizationUpdateWithoutApplicationAssignmentsInput = {
|
|
1295
1462
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1296
1463
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1297
|
-
type?: Prisma.EnumOrganizationTypeFieldUpdateOperationsInput | $Enums.OrganizationType;
|
|
1298
1464
|
status?: Prisma.EnumOrganizationStatusFieldUpdateOperationsInput | $Enums.OrganizationStatus;
|
|
1299
1465
|
isPlatformOrg?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1300
1466
|
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -1317,15 +1483,16 @@ export type OrganizationUpdateWithoutApplicationAssignmentsInput = {
|
|
|
1317
1483
|
approvedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1318
1484
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1319
1485
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1486
|
+
types?: Prisma.OrganizationTypeAssignmentUpdateManyWithoutOrganizationNestedInput;
|
|
1320
1487
|
tenant?: Prisma.TenantUpdateOneRequiredWithoutOrganizationsNestedInput;
|
|
1321
1488
|
members?: Prisma.OrganizationMemberUpdateManyWithoutOrganizationNestedInput;
|
|
1322
1489
|
documentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutOrganizationNestedInput;
|
|
1490
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutOrganizationNestedInput;
|
|
1323
1491
|
};
|
|
1324
1492
|
export type OrganizationUncheckedUpdateWithoutApplicationAssignmentsInput = {
|
|
1325
1493
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1326
1494
|
tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1327
1495
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1328
|
-
type?: Prisma.EnumOrganizationTypeFieldUpdateOperationsInput | $Enums.OrganizationType;
|
|
1329
1496
|
status?: Prisma.EnumOrganizationStatusFieldUpdateOperationsInput | $Enums.OrganizationStatus;
|
|
1330
1497
|
isPlatformOrg?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1331
1498
|
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -1348,13 +1515,151 @@ export type OrganizationUncheckedUpdateWithoutApplicationAssignmentsInput = {
|
|
|
1348
1515
|
approvedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1349
1516
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1350
1517
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1518
|
+
types?: Prisma.OrganizationTypeAssignmentUncheckedUpdateManyWithoutOrganizationNestedInput;
|
|
1519
|
+
members?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutOrganizationNestedInput;
|
|
1520
|
+
documentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutOrganizationNestedInput;
|
|
1521
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutOrganizationNestedInput;
|
|
1522
|
+
};
|
|
1523
|
+
export type OrganizationCreateWithoutDocumentReviewsInput = {
|
|
1524
|
+
id?: string;
|
|
1525
|
+
name: string;
|
|
1526
|
+
status?: $Enums.OrganizationStatus;
|
|
1527
|
+
isPlatformOrg?: boolean;
|
|
1528
|
+
email?: string | null;
|
|
1529
|
+
phone?: string | null;
|
|
1530
|
+
address?: string | null;
|
|
1531
|
+
city?: string | null;
|
|
1532
|
+
state?: string | null;
|
|
1533
|
+
country?: string | null;
|
|
1534
|
+
website?: string | null;
|
|
1535
|
+
logoUrl?: string | null;
|
|
1536
|
+
description?: string | null;
|
|
1537
|
+
bankCode?: string | null;
|
|
1538
|
+
bankLicenseNo?: string | null;
|
|
1539
|
+
swiftCode?: string | null;
|
|
1540
|
+
sortCode?: string | null;
|
|
1541
|
+
cacNumber?: string | null;
|
|
1542
|
+
cacCertificateUrl?: string | null;
|
|
1543
|
+
taxId?: string | null;
|
|
1544
|
+
approvedAt?: Date | string | null;
|
|
1545
|
+
approvedById?: string | null;
|
|
1546
|
+
createdAt?: Date | string;
|
|
1547
|
+
updatedAt?: Date | string;
|
|
1548
|
+
types?: Prisma.OrganizationTypeAssignmentCreateNestedManyWithoutOrganizationInput;
|
|
1549
|
+
tenant: Prisma.TenantCreateNestedOneWithoutOrganizationsInput;
|
|
1550
|
+
members?: Prisma.OrganizationMemberCreateNestedManyWithoutOrganizationInput;
|
|
1551
|
+
applicationAssignments?: Prisma.ApplicationOrganizationCreateNestedManyWithoutOrganizationInput;
|
|
1552
|
+
documentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutOrganizationInput;
|
|
1553
|
+
};
|
|
1554
|
+
export type OrganizationUncheckedCreateWithoutDocumentReviewsInput = {
|
|
1555
|
+
id?: string;
|
|
1556
|
+
tenantId: string;
|
|
1557
|
+
name: string;
|
|
1558
|
+
status?: $Enums.OrganizationStatus;
|
|
1559
|
+
isPlatformOrg?: boolean;
|
|
1560
|
+
email?: string | null;
|
|
1561
|
+
phone?: string | null;
|
|
1562
|
+
address?: string | null;
|
|
1563
|
+
city?: string | null;
|
|
1564
|
+
state?: string | null;
|
|
1565
|
+
country?: string | null;
|
|
1566
|
+
website?: string | null;
|
|
1567
|
+
logoUrl?: string | null;
|
|
1568
|
+
description?: string | null;
|
|
1569
|
+
bankCode?: string | null;
|
|
1570
|
+
bankLicenseNo?: string | null;
|
|
1571
|
+
swiftCode?: string | null;
|
|
1572
|
+
sortCode?: string | null;
|
|
1573
|
+
cacNumber?: string | null;
|
|
1574
|
+
cacCertificateUrl?: string | null;
|
|
1575
|
+
taxId?: string | null;
|
|
1576
|
+
approvedAt?: Date | string | null;
|
|
1577
|
+
approvedById?: string | null;
|
|
1578
|
+
createdAt?: Date | string;
|
|
1579
|
+
updatedAt?: Date | string;
|
|
1580
|
+
types?: Prisma.OrganizationTypeAssignmentUncheckedCreateNestedManyWithoutOrganizationInput;
|
|
1581
|
+
members?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutOrganizationInput;
|
|
1582
|
+
applicationAssignments?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutOrganizationInput;
|
|
1583
|
+
documentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutOrganizationInput;
|
|
1584
|
+
};
|
|
1585
|
+
export type OrganizationCreateOrConnectWithoutDocumentReviewsInput = {
|
|
1586
|
+
where: Prisma.OrganizationWhereUniqueInput;
|
|
1587
|
+
create: Prisma.XOR<Prisma.OrganizationCreateWithoutDocumentReviewsInput, Prisma.OrganizationUncheckedCreateWithoutDocumentReviewsInput>;
|
|
1588
|
+
};
|
|
1589
|
+
export type OrganizationUpsertWithoutDocumentReviewsInput = {
|
|
1590
|
+
update: Prisma.XOR<Prisma.OrganizationUpdateWithoutDocumentReviewsInput, Prisma.OrganizationUncheckedUpdateWithoutDocumentReviewsInput>;
|
|
1591
|
+
create: Prisma.XOR<Prisma.OrganizationCreateWithoutDocumentReviewsInput, Prisma.OrganizationUncheckedCreateWithoutDocumentReviewsInput>;
|
|
1592
|
+
where?: Prisma.OrganizationWhereInput;
|
|
1593
|
+
};
|
|
1594
|
+
export type OrganizationUpdateToOneWithWhereWithoutDocumentReviewsInput = {
|
|
1595
|
+
where?: Prisma.OrganizationWhereInput;
|
|
1596
|
+
data: Prisma.XOR<Prisma.OrganizationUpdateWithoutDocumentReviewsInput, Prisma.OrganizationUncheckedUpdateWithoutDocumentReviewsInput>;
|
|
1597
|
+
};
|
|
1598
|
+
export type OrganizationUpdateWithoutDocumentReviewsInput = {
|
|
1599
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1600
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1601
|
+
status?: Prisma.EnumOrganizationStatusFieldUpdateOperationsInput | $Enums.OrganizationStatus;
|
|
1602
|
+
isPlatformOrg?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1603
|
+
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1604
|
+
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1605
|
+
address?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1606
|
+
city?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1607
|
+
state?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1608
|
+
country?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1609
|
+
website?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1610
|
+
logoUrl?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1611
|
+
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1612
|
+
bankCode?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1613
|
+
bankLicenseNo?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1614
|
+
swiftCode?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1615
|
+
sortCode?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1616
|
+
cacNumber?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1617
|
+
cacCertificateUrl?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1618
|
+
taxId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1619
|
+
approvedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1620
|
+
approvedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1621
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1622
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1623
|
+
types?: Prisma.OrganizationTypeAssignmentUpdateManyWithoutOrganizationNestedInput;
|
|
1624
|
+
tenant?: Prisma.TenantUpdateOneRequiredWithoutOrganizationsNestedInput;
|
|
1625
|
+
members?: Prisma.OrganizationMemberUpdateManyWithoutOrganizationNestedInput;
|
|
1626
|
+
applicationAssignments?: Prisma.ApplicationOrganizationUpdateManyWithoutOrganizationNestedInput;
|
|
1627
|
+
documentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutOrganizationNestedInput;
|
|
1628
|
+
};
|
|
1629
|
+
export type OrganizationUncheckedUpdateWithoutDocumentReviewsInput = {
|
|
1630
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1631
|
+
tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1632
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1633
|
+
status?: Prisma.EnumOrganizationStatusFieldUpdateOperationsInput | $Enums.OrganizationStatus;
|
|
1634
|
+
isPlatformOrg?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1635
|
+
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1636
|
+
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1637
|
+
address?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1638
|
+
city?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1639
|
+
state?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1640
|
+
country?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1641
|
+
website?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1642
|
+
logoUrl?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1643
|
+
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1644
|
+
bankCode?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1645
|
+
bankLicenseNo?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1646
|
+
swiftCode?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1647
|
+
sortCode?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1648
|
+
cacNumber?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1649
|
+
cacCertificateUrl?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1650
|
+
taxId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1651
|
+
approvedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1652
|
+
approvedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1653
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1654
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1655
|
+
types?: Prisma.OrganizationTypeAssignmentUncheckedUpdateManyWithoutOrganizationNestedInput;
|
|
1351
1656
|
members?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutOrganizationNestedInput;
|
|
1657
|
+
applicationAssignments?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutOrganizationNestedInput;
|
|
1352
1658
|
documentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutOrganizationNestedInput;
|
|
1353
1659
|
};
|
|
1354
1660
|
export type OrganizationCreateManyTenantInput = {
|
|
1355
1661
|
id?: string;
|
|
1356
1662
|
name: string;
|
|
1357
|
-
type: $Enums.OrganizationType;
|
|
1358
1663
|
status?: $Enums.OrganizationStatus;
|
|
1359
1664
|
isPlatformOrg?: boolean;
|
|
1360
1665
|
email?: string | null;
|
|
@@ -1381,7 +1686,6 @@ export type OrganizationCreateManyTenantInput = {
|
|
|
1381
1686
|
export type OrganizationUpdateWithoutTenantInput = {
|
|
1382
1687
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1383
1688
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1384
|
-
type?: Prisma.EnumOrganizationTypeFieldUpdateOperationsInput | $Enums.OrganizationType;
|
|
1385
1689
|
status?: Prisma.EnumOrganizationStatusFieldUpdateOperationsInput | $Enums.OrganizationStatus;
|
|
1386
1690
|
isPlatformOrg?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1387
1691
|
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -1404,14 +1708,15 @@ export type OrganizationUpdateWithoutTenantInput = {
|
|
|
1404
1708
|
approvedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1405
1709
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1406
1710
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1711
|
+
types?: Prisma.OrganizationTypeAssignmentUpdateManyWithoutOrganizationNestedInput;
|
|
1407
1712
|
members?: Prisma.OrganizationMemberUpdateManyWithoutOrganizationNestedInput;
|
|
1408
1713
|
applicationAssignments?: Prisma.ApplicationOrganizationUpdateManyWithoutOrganizationNestedInput;
|
|
1409
1714
|
documentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutOrganizationNestedInput;
|
|
1715
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutOrganizationNestedInput;
|
|
1410
1716
|
};
|
|
1411
1717
|
export type OrganizationUncheckedUpdateWithoutTenantInput = {
|
|
1412
1718
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1413
1719
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1414
|
-
type?: Prisma.EnumOrganizationTypeFieldUpdateOperationsInput | $Enums.OrganizationType;
|
|
1415
1720
|
status?: Prisma.EnumOrganizationStatusFieldUpdateOperationsInput | $Enums.OrganizationStatus;
|
|
1416
1721
|
isPlatformOrg?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1417
1722
|
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -1434,14 +1739,15 @@ export type OrganizationUncheckedUpdateWithoutTenantInput = {
|
|
|
1434
1739
|
approvedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1435
1740
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1436
1741
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1742
|
+
types?: Prisma.OrganizationTypeAssignmentUncheckedUpdateManyWithoutOrganizationNestedInput;
|
|
1437
1743
|
members?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutOrganizationNestedInput;
|
|
1438
1744
|
applicationAssignments?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutOrganizationNestedInput;
|
|
1439
1745
|
documentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutOrganizationNestedInput;
|
|
1746
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutOrganizationNestedInput;
|
|
1440
1747
|
};
|
|
1441
1748
|
export type OrganizationUncheckedUpdateManyWithoutTenantInput = {
|
|
1442
1749
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1443
1750
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1444
|
-
type?: Prisma.EnumOrganizationTypeFieldUpdateOperationsInput | $Enums.OrganizationType;
|
|
1445
1751
|
status?: Prisma.EnumOrganizationStatusFieldUpdateOperationsInput | $Enums.OrganizationStatus;
|
|
1446
1752
|
isPlatformOrg?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1447
1753
|
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -1469,14 +1775,18 @@ export type OrganizationUncheckedUpdateManyWithoutTenantInput = {
|
|
|
1469
1775
|
* Count Type OrganizationCountOutputType
|
|
1470
1776
|
*/
|
|
1471
1777
|
export type OrganizationCountOutputType = {
|
|
1778
|
+
types: number;
|
|
1472
1779
|
members: number;
|
|
1473
1780
|
applicationAssignments: number;
|
|
1474
1781
|
documentRequirements: number;
|
|
1782
|
+
documentReviews: number;
|
|
1475
1783
|
};
|
|
1476
1784
|
export type OrganizationCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1785
|
+
types?: boolean | OrganizationCountOutputTypeCountTypesArgs;
|
|
1477
1786
|
members?: boolean | OrganizationCountOutputTypeCountMembersArgs;
|
|
1478
1787
|
applicationAssignments?: boolean | OrganizationCountOutputTypeCountApplicationAssignmentsArgs;
|
|
1479
1788
|
documentRequirements?: boolean | OrganizationCountOutputTypeCountDocumentRequirementsArgs;
|
|
1789
|
+
documentReviews?: boolean | OrganizationCountOutputTypeCountDocumentReviewsArgs;
|
|
1480
1790
|
};
|
|
1481
1791
|
/**
|
|
1482
1792
|
* OrganizationCountOutputType without action
|
|
@@ -1487,6 +1797,12 @@ export type OrganizationCountOutputTypeDefaultArgs<ExtArgs extends runtime.Types
|
|
|
1487
1797
|
*/
|
|
1488
1798
|
select?: Prisma.OrganizationCountOutputTypeSelect<ExtArgs> | null;
|
|
1489
1799
|
};
|
|
1800
|
+
/**
|
|
1801
|
+
* OrganizationCountOutputType without action
|
|
1802
|
+
*/
|
|
1803
|
+
export type OrganizationCountOutputTypeCountTypesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1804
|
+
where?: Prisma.OrganizationTypeAssignmentWhereInput;
|
|
1805
|
+
};
|
|
1490
1806
|
/**
|
|
1491
1807
|
* OrganizationCountOutputType without action
|
|
1492
1808
|
*/
|
|
@@ -1505,11 +1821,16 @@ export type OrganizationCountOutputTypeCountApplicationAssignmentsArgs<ExtArgs e
|
|
|
1505
1821
|
export type OrganizationCountOutputTypeCountDocumentRequirementsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1506
1822
|
where?: Prisma.BankDocumentRequirementWhereInput;
|
|
1507
1823
|
};
|
|
1824
|
+
/**
|
|
1825
|
+
* OrganizationCountOutputType without action
|
|
1826
|
+
*/
|
|
1827
|
+
export type OrganizationCountOutputTypeCountDocumentReviewsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1828
|
+
where?: Prisma.DocumentReviewWhereInput;
|
|
1829
|
+
};
|
|
1508
1830
|
export type OrganizationSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
1509
1831
|
id?: boolean;
|
|
1510
1832
|
tenantId?: boolean;
|
|
1511
1833
|
name?: boolean;
|
|
1512
|
-
type?: boolean;
|
|
1513
1834
|
status?: boolean;
|
|
1514
1835
|
isPlatformOrg?: boolean;
|
|
1515
1836
|
email?: boolean;
|
|
@@ -1532,17 +1853,18 @@ export type OrganizationSelect<ExtArgs extends runtime.Types.Extensions.Internal
|
|
|
1532
1853
|
approvedById?: boolean;
|
|
1533
1854
|
createdAt?: boolean;
|
|
1534
1855
|
updatedAt?: boolean;
|
|
1856
|
+
types?: boolean | Prisma.Organization$typesArgs<ExtArgs>;
|
|
1535
1857
|
tenant?: boolean | Prisma.TenantDefaultArgs<ExtArgs>;
|
|
1536
1858
|
members?: boolean | Prisma.Organization$membersArgs<ExtArgs>;
|
|
1537
1859
|
applicationAssignments?: boolean | Prisma.Organization$applicationAssignmentsArgs<ExtArgs>;
|
|
1538
1860
|
documentRequirements?: boolean | Prisma.Organization$documentRequirementsArgs<ExtArgs>;
|
|
1861
|
+
documentReviews?: boolean | Prisma.Organization$documentReviewsArgs<ExtArgs>;
|
|
1539
1862
|
_count?: boolean | Prisma.OrganizationCountOutputTypeDefaultArgs<ExtArgs>;
|
|
1540
1863
|
}, ExtArgs["result"]["organization"]>;
|
|
1541
1864
|
export type OrganizationSelectScalar = {
|
|
1542
1865
|
id?: boolean;
|
|
1543
1866
|
tenantId?: boolean;
|
|
1544
1867
|
name?: boolean;
|
|
1545
|
-
type?: boolean;
|
|
1546
1868
|
status?: boolean;
|
|
1547
1869
|
isPlatformOrg?: boolean;
|
|
1548
1870
|
email?: boolean;
|
|
@@ -1566,27 +1888,30 @@ export type OrganizationSelectScalar = {
|
|
|
1566
1888
|
createdAt?: boolean;
|
|
1567
1889
|
updatedAt?: boolean;
|
|
1568
1890
|
};
|
|
1569
|
-
export type OrganizationOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "tenantId" | "name" | "
|
|
1891
|
+
export type OrganizationOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "tenantId" | "name" | "status" | "isPlatformOrg" | "email" | "phone" | "address" | "city" | "state" | "country" | "website" | "logoUrl" | "description" | "bankCode" | "bankLicenseNo" | "swiftCode" | "sortCode" | "cacNumber" | "cacCertificateUrl" | "taxId" | "approvedAt" | "approvedById" | "createdAt" | "updatedAt", ExtArgs["result"]["organization"]>;
|
|
1570
1892
|
export type OrganizationInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1893
|
+
types?: boolean | Prisma.Organization$typesArgs<ExtArgs>;
|
|
1571
1894
|
tenant?: boolean | Prisma.TenantDefaultArgs<ExtArgs>;
|
|
1572
1895
|
members?: boolean | Prisma.Organization$membersArgs<ExtArgs>;
|
|
1573
1896
|
applicationAssignments?: boolean | Prisma.Organization$applicationAssignmentsArgs<ExtArgs>;
|
|
1574
1897
|
documentRequirements?: boolean | Prisma.Organization$documentRequirementsArgs<ExtArgs>;
|
|
1898
|
+
documentReviews?: boolean | Prisma.Organization$documentReviewsArgs<ExtArgs>;
|
|
1575
1899
|
_count?: boolean | Prisma.OrganizationCountOutputTypeDefaultArgs<ExtArgs>;
|
|
1576
1900
|
};
|
|
1577
1901
|
export type $OrganizationPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1578
1902
|
name: "Organization";
|
|
1579
1903
|
objects: {
|
|
1904
|
+
types: Prisma.$OrganizationTypeAssignmentPayload<ExtArgs>[];
|
|
1580
1905
|
tenant: Prisma.$TenantPayload<ExtArgs>;
|
|
1581
1906
|
members: Prisma.$OrganizationMemberPayload<ExtArgs>[];
|
|
1582
1907
|
applicationAssignments: Prisma.$ApplicationOrganizationPayload<ExtArgs>[];
|
|
1583
1908
|
documentRequirements: Prisma.$BankDocumentRequirementPayload<ExtArgs>[];
|
|
1909
|
+
documentReviews: Prisma.$DocumentReviewPayload<ExtArgs>[];
|
|
1584
1910
|
};
|
|
1585
1911
|
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
|
1586
1912
|
id: string;
|
|
1587
1913
|
tenantId: string;
|
|
1588
1914
|
name: string;
|
|
1589
|
-
type: $Enums.OrganizationType;
|
|
1590
1915
|
status: $Enums.OrganizationStatus;
|
|
1591
1916
|
isPlatformOrg: boolean;
|
|
1592
1917
|
email: string | null;
|
|
@@ -1886,10 +2211,12 @@ export interface OrganizationDelegate<ExtArgs extends runtime.Types.Extensions.I
|
|
|
1886
2211
|
*/
|
|
1887
2212
|
export interface Prisma__OrganizationClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
|
1888
2213
|
readonly [Symbol.toStringTag]: "PrismaPromise";
|
|
2214
|
+
types<T extends Prisma.Organization$typesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Organization$typesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$OrganizationTypeAssignmentPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1889
2215
|
tenant<T extends Prisma.TenantDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.TenantDefaultArgs<ExtArgs>>): Prisma.Prisma__TenantClient<runtime.Types.Result.GetResult<Prisma.$TenantPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>;
|
|
1890
2216
|
members<T extends Prisma.Organization$membersArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Organization$membersArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$OrganizationMemberPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1891
2217
|
applicationAssignments<T extends Prisma.Organization$applicationAssignmentsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Organization$applicationAssignmentsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ApplicationOrganizationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1892
2218
|
documentRequirements<T extends Prisma.Organization$documentRequirementsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Organization$documentRequirementsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$BankDocumentRequirementPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
2219
|
+
documentReviews<T extends Prisma.Organization$documentReviewsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Organization$documentReviewsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$DocumentReviewPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1893
2220
|
/**
|
|
1894
2221
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
1895
2222
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -1918,7 +2245,6 @@ export interface OrganizationFieldRefs {
|
|
|
1918
2245
|
readonly id: Prisma.FieldRef<"Organization", 'String'>;
|
|
1919
2246
|
readonly tenantId: Prisma.FieldRef<"Organization", 'String'>;
|
|
1920
2247
|
readonly name: Prisma.FieldRef<"Organization", 'String'>;
|
|
1921
|
-
readonly type: Prisma.FieldRef<"Organization", 'OrganizationType'>;
|
|
1922
2248
|
readonly status: Prisma.FieldRef<"Organization", 'OrganizationStatus'>;
|
|
1923
2249
|
readonly isPlatformOrg: Prisma.FieldRef<"Organization", 'Boolean'>;
|
|
1924
2250
|
readonly email: Prisma.FieldRef<"Organization", 'String'>;
|
|
@@ -2268,6 +2594,29 @@ export type OrganizationDeleteManyArgs<ExtArgs extends runtime.Types.Extensions.
|
|
|
2268
2594
|
*/
|
|
2269
2595
|
limit?: number;
|
|
2270
2596
|
};
|
|
2597
|
+
/**
|
|
2598
|
+
* Organization.types
|
|
2599
|
+
*/
|
|
2600
|
+
export type Organization$typesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
2601
|
+
/**
|
|
2602
|
+
* Select specific fields to fetch from the OrganizationTypeAssignment
|
|
2603
|
+
*/
|
|
2604
|
+
select?: Prisma.OrganizationTypeAssignmentSelect<ExtArgs> | null;
|
|
2605
|
+
/**
|
|
2606
|
+
* Omit specific fields from the OrganizationTypeAssignment
|
|
2607
|
+
*/
|
|
2608
|
+
omit?: Prisma.OrganizationTypeAssignmentOmit<ExtArgs> | null;
|
|
2609
|
+
/**
|
|
2610
|
+
* Choose, which related nodes to fetch as well
|
|
2611
|
+
*/
|
|
2612
|
+
include?: Prisma.OrganizationTypeAssignmentInclude<ExtArgs> | null;
|
|
2613
|
+
where?: Prisma.OrganizationTypeAssignmentWhereInput;
|
|
2614
|
+
orderBy?: Prisma.OrganizationTypeAssignmentOrderByWithRelationInput | Prisma.OrganizationTypeAssignmentOrderByWithRelationInput[];
|
|
2615
|
+
cursor?: Prisma.OrganizationTypeAssignmentWhereUniqueInput;
|
|
2616
|
+
take?: number;
|
|
2617
|
+
skip?: number;
|
|
2618
|
+
distinct?: Prisma.OrganizationTypeAssignmentScalarFieldEnum | Prisma.OrganizationTypeAssignmentScalarFieldEnum[];
|
|
2619
|
+
};
|
|
2271
2620
|
/**
|
|
2272
2621
|
* Organization.members
|
|
2273
2622
|
*/
|
|
@@ -2337,6 +2686,29 @@ export type Organization$documentRequirementsArgs<ExtArgs extends runtime.Types.
|
|
|
2337
2686
|
skip?: number;
|
|
2338
2687
|
distinct?: Prisma.BankDocumentRequirementScalarFieldEnum | Prisma.BankDocumentRequirementScalarFieldEnum[];
|
|
2339
2688
|
};
|
|
2689
|
+
/**
|
|
2690
|
+
* Organization.documentReviews
|
|
2691
|
+
*/
|
|
2692
|
+
export type Organization$documentReviewsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
2693
|
+
/**
|
|
2694
|
+
* Select specific fields to fetch from the DocumentReview
|
|
2695
|
+
*/
|
|
2696
|
+
select?: Prisma.DocumentReviewSelect<ExtArgs> | null;
|
|
2697
|
+
/**
|
|
2698
|
+
* Omit specific fields from the DocumentReview
|
|
2699
|
+
*/
|
|
2700
|
+
omit?: Prisma.DocumentReviewOmit<ExtArgs> | null;
|
|
2701
|
+
/**
|
|
2702
|
+
* Choose, which related nodes to fetch as well
|
|
2703
|
+
*/
|
|
2704
|
+
include?: Prisma.DocumentReviewInclude<ExtArgs> | null;
|
|
2705
|
+
where?: Prisma.DocumentReviewWhereInput;
|
|
2706
|
+
orderBy?: Prisma.DocumentReviewOrderByWithRelationInput | Prisma.DocumentReviewOrderByWithRelationInput[];
|
|
2707
|
+
cursor?: Prisma.DocumentReviewWhereUniqueInput;
|
|
2708
|
+
take?: number;
|
|
2709
|
+
skip?: number;
|
|
2710
|
+
distinct?: Prisma.DocumentReviewScalarFieldEnum | Prisma.DocumentReviewScalarFieldEnum[];
|
|
2711
|
+
};
|
|
2340
2712
|
/**
|
|
2341
2713
|
* Organization without action
|
|
2342
2714
|
*/
|