@valentine-efagene/qshelter-common 2.0.125 → 2.0.127
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 +5 -0
- package/dist/generated/client/client.d.ts +5 -0
- package/dist/generated/client/commonInputTypes.d.ts +60 -0
- package/dist/generated/client/enums.d.ts +22 -0
- package/dist/generated/client/enums.js +21 -1
- package/dist/generated/client/internal/class.d.ts +11 -0
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +118 -1
- package/dist/generated/client/internal/prismaNamespace.js +41 -1
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +42 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +41 -1
- package/dist/generated/client/models/ApplicationDocument.d.ts +632 -1
- package/dist/generated/client/models/DocumentReview.d.ts +2231 -0
- package/dist/generated/client/models/DocumentReview.js +1 -0
- package/dist/generated/client/models/DocumentationPlanStep.d.ts +61 -1
- package/dist/generated/client/models/DocumentationStep.d.ts +121 -1
- package/dist/generated/client/models/Organization.d.ts +38 -1
- package/dist/generated/client/models/Tenant.d.ts +563 -0
- package/dist/generated/client/models/User.d.ts +401 -0
- package/dist/generated/client/models/index.d.ts +3 -0
- package/dist/generated/client/models/index.js +3 -0
- package/dist/generated/client/models.d.ts +1 -0
- package/package.json +1 -1
- package/prisma/migrations/20260116152051_add_multi_party_document_review/migration.sql +59 -0
- package/prisma/schema.prisma +123 -1
|
@@ -17,6 +17,7 @@ export type OrganizationMinAggregateOutputType = {
|
|
|
17
17
|
name: string | null;
|
|
18
18
|
type: $Enums.OrganizationType | null;
|
|
19
19
|
status: $Enums.OrganizationStatus | null;
|
|
20
|
+
isPlatformOrg: boolean | null;
|
|
20
21
|
email: string | null;
|
|
21
22
|
phone: string | null;
|
|
22
23
|
address: string | null;
|
|
@@ -44,6 +45,7 @@ export type OrganizationMaxAggregateOutputType = {
|
|
|
44
45
|
name: string | null;
|
|
45
46
|
type: $Enums.OrganizationType | null;
|
|
46
47
|
status: $Enums.OrganizationStatus | null;
|
|
48
|
+
isPlatformOrg: boolean | null;
|
|
47
49
|
email: string | null;
|
|
48
50
|
phone: string | null;
|
|
49
51
|
address: string | null;
|
|
@@ -71,6 +73,7 @@ export type OrganizationCountAggregateOutputType = {
|
|
|
71
73
|
name: number;
|
|
72
74
|
type: number;
|
|
73
75
|
status: number;
|
|
76
|
+
isPlatformOrg: number;
|
|
74
77
|
email: number;
|
|
75
78
|
phone: number;
|
|
76
79
|
address: number;
|
|
@@ -99,6 +102,7 @@ export type OrganizationMinAggregateInputType = {
|
|
|
99
102
|
name?: true;
|
|
100
103
|
type?: true;
|
|
101
104
|
status?: true;
|
|
105
|
+
isPlatformOrg?: true;
|
|
102
106
|
email?: true;
|
|
103
107
|
phone?: true;
|
|
104
108
|
address?: true;
|
|
@@ -126,6 +130,7 @@ export type OrganizationMaxAggregateInputType = {
|
|
|
126
130
|
name?: true;
|
|
127
131
|
type?: true;
|
|
128
132
|
status?: true;
|
|
133
|
+
isPlatformOrg?: true;
|
|
129
134
|
email?: true;
|
|
130
135
|
phone?: true;
|
|
131
136
|
address?: true;
|
|
@@ -153,6 +158,7 @@ export type OrganizationCountAggregateInputType = {
|
|
|
153
158
|
name?: true;
|
|
154
159
|
type?: true;
|
|
155
160
|
status?: true;
|
|
161
|
+
isPlatformOrg?: true;
|
|
156
162
|
email?: true;
|
|
157
163
|
phone?: true;
|
|
158
164
|
address?: true;
|
|
@@ -243,6 +249,7 @@ export type OrganizationGroupByOutputType = {
|
|
|
243
249
|
name: string;
|
|
244
250
|
type: $Enums.OrganizationType;
|
|
245
251
|
status: $Enums.OrganizationStatus;
|
|
252
|
+
isPlatformOrg: boolean;
|
|
246
253
|
email: string | null;
|
|
247
254
|
phone: string | null;
|
|
248
255
|
address: string | null;
|
|
@@ -279,6 +286,7 @@ export type OrganizationWhereInput = {
|
|
|
279
286
|
name?: Prisma.StringFilter<"Organization"> | string;
|
|
280
287
|
type?: Prisma.EnumOrganizationTypeFilter<"Organization"> | $Enums.OrganizationType;
|
|
281
288
|
status?: Prisma.EnumOrganizationStatusFilter<"Organization"> | $Enums.OrganizationStatus;
|
|
289
|
+
isPlatformOrg?: Prisma.BoolFilter<"Organization"> | boolean;
|
|
282
290
|
email?: Prisma.StringNullableFilter<"Organization"> | string | null;
|
|
283
291
|
phone?: Prisma.StringNullableFilter<"Organization"> | string | null;
|
|
284
292
|
address?: Prisma.StringNullableFilter<"Organization"> | string | null;
|
|
@@ -308,6 +316,7 @@ export type OrganizationOrderByWithRelationInput = {
|
|
|
308
316
|
name?: Prisma.SortOrder;
|
|
309
317
|
type?: Prisma.SortOrder;
|
|
310
318
|
status?: Prisma.SortOrder;
|
|
319
|
+
isPlatformOrg?: Prisma.SortOrder;
|
|
311
320
|
email?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
312
321
|
phone?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
313
322
|
address?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
@@ -343,6 +352,7 @@ export type OrganizationWhereUniqueInput = Prisma.AtLeast<{
|
|
|
343
352
|
name?: Prisma.StringFilter<"Organization"> | string;
|
|
344
353
|
type?: Prisma.EnumOrganizationTypeFilter<"Organization"> | $Enums.OrganizationType;
|
|
345
354
|
status?: Prisma.EnumOrganizationStatusFilter<"Organization"> | $Enums.OrganizationStatus;
|
|
355
|
+
isPlatformOrg?: Prisma.BoolFilter<"Organization"> | boolean;
|
|
346
356
|
email?: Prisma.StringNullableFilter<"Organization"> | string | null;
|
|
347
357
|
phone?: Prisma.StringNullableFilter<"Organization"> | string | null;
|
|
348
358
|
address?: Prisma.StringNullableFilter<"Organization"> | string | null;
|
|
@@ -372,6 +382,7 @@ export type OrganizationOrderByWithAggregationInput = {
|
|
|
372
382
|
name?: Prisma.SortOrder;
|
|
373
383
|
type?: Prisma.SortOrder;
|
|
374
384
|
status?: Prisma.SortOrder;
|
|
385
|
+
isPlatformOrg?: Prisma.SortOrder;
|
|
375
386
|
email?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
376
387
|
phone?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
377
388
|
address?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
@@ -405,6 +416,7 @@ export type OrganizationScalarWhereWithAggregatesInput = {
|
|
|
405
416
|
name?: Prisma.StringWithAggregatesFilter<"Organization"> | string;
|
|
406
417
|
type?: Prisma.EnumOrganizationTypeWithAggregatesFilter<"Organization"> | $Enums.OrganizationType;
|
|
407
418
|
status?: Prisma.EnumOrganizationStatusWithAggregatesFilter<"Organization"> | $Enums.OrganizationStatus;
|
|
419
|
+
isPlatformOrg?: Prisma.BoolWithAggregatesFilter<"Organization"> | boolean;
|
|
408
420
|
email?: Prisma.StringNullableWithAggregatesFilter<"Organization"> | string | null;
|
|
409
421
|
phone?: Prisma.StringNullableWithAggregatesFilter<"Organization"> | string | null;
|
|
410
422
|
address?: Prisma.StringNullableWithAggregatesFilter<"Organization"> | string | null;
|
|
@@ -431,6 +443,7 @@ export type OrganizationCreateInput = {
|
|
|
431
443
|
name: string;
|
|
432
444
|
type: $Enums.OrganizationType;
|
|
433
445
|
status?: $Enums.OrganizationStatus;
|
|
446
|
+
isPlatformOrg?: boolean;
|
|
434
447
|
email?: string | null;
|
|
435
448
|
phone?: string | null;
|
|
436
449
|
address?: string | null;
|
|
@@ -460,6 +473,7 @@ export type OrganizationUncheckedCreateInput = {
|
|
|
460
473
|
name: string;
|
|
461
474
|
type: $Enums.OrganizationType;
|
|
462
475
|
status?: $Enums.OrganizationStatus;
|
|
476
|
+
isPlatformOrg?: boolean;
|
|
463
477
|
email?: string | null;
|
|
464
478
|
phone?: string | null;
|
|
465
479
|
address?: string | null;
|
|
@@ -487,6 +501,7 @@ export type OrganizationUpdateInput = {
|
|
|
487
501
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
488
502
|
type?: Prisma.EnumOrganizationTypeFieldUpdateOperationsInput | $Enums.OrganizationType;
|
|
489
503
|
status?: Prisma.EnumOrganizationStatusFieldUpdateOperationsInput | $Enums.OrganizationStatus;
|
|
504
|
+
isPlatformOrg?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
490
505
|
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
491
506
|
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
492
507
|
address?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -516,6 +531,7 @@ export type OrganizationUncheckedUpdateInput = {
|
|
|
516
531
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
517
532
|
type?: Prisma.EnumOrganizationTypeFieldUpdateOperationsInput | $Enums.OrganizationType;
|
|
518
533
|
status?: Prisma.EnumOrganizationStatusFieldUpdateOperationsInput | $Enums.OrganizationStatus;
|
|
534
|
+
isPlatformOrg?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
519
535
|
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
520
536
|
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
521
537
|
address?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -544,6 +560,7 @@ export type OrganizationCreateManyInput = {
|
|
|
544
560
|
name: string;
|
|
545
561
|
type: $Enums.OrganizationType;
|
|
546
562
|
status?: $Enums.OrganizationStatus;
|
|
563
|
+
isPlatformOrg?: boolean;
|
|
547
564
|
email?: string | null;
|
|
548
565
|
phone?: string | null;
|
|
549
566
|
address?: string | null;
|
|
@@ -570,6 +587,7 @@ export type OrganizationUpdateManyMutationInput = {
|
|
|
570
587
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
571
588
|
type?: Prisma.EnumOrganizationTypeFieldUpdateOperationsInput | $Enums.OrganizationType;
|
|
572
589
|
status?: Prisma.EnumOrganizationStatusFieldUpdateOperationsInput | $Enums.OrganizationStatus;
|
|
590
|
+
isPlatformOrg?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
573
591
|
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
574
592
|
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
575
593
|
address?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -597,6 +615,7 @@ export type OrganizationUncheckedUpdateManyInput = {
|
|
|
597
615
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
598
616
|
type?: Prisma.EnumOrganizationTypeFieldUpdateOperationsInput | $Enums.OrganizationType;
|
|
599
617
|
status?: Prisma.EnumOrganizationStatusFieldUpdateOperationsInput | $Enums.OrganizationStatus;
|
|
618
|
+
isPlatformOrg?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
600
619
|
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
601
620
|
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
602
621
|
address?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -637,6 +656,7 @@ export type OrganizationCountOrderByAggregateInput = {
|
|
|
637
656
|
name?: Prisma.SortOrder;
|
|
638
657
|
type?: Prisma.SortOrder;
|
|
639
658
|
status?: Prisma.SortOrder;
|
|
659
|
+
isPlatformOrg?: Prisma.SortOrder;
|
|
640
660
|
email?: Prisma.SortOrder;
|
|
641
661
|
phone?: Prisma.SortOrder;
|
|
642
662
|
address?: Prisma.SortOrder;
|
|
@@ -664,6 +684,7 @@ export type OrganizationMaxOrderByAggregateInput = {
|
|
|
664
684
|
name?: Prisma.SortOrder;
|
|
665
685
|
type?: Prisma.SortOrder;
|
|
666
686
|
status?: Prisma.SortOrder;
|
|
687
|
+
isPlatformOrg?: Prisma.SortOrder;
|
|
667
688
|
email?: Prisma.SortOrder;
|
|
668
689
|
phone?: Prisma.SortOrder;
|
|
669
690
|
address?: Prisma.SortOrder;
|
|
@@ -691,6 +712,7 @@ export type OrganizationMinOrderByAggregateInput = {
|
|
|
691
712
|
name?: Prisma.SortOrder;
|
|
692
713
|
type?: Prisma.SortOrder;
|
|
693
714
|
status?: Prisma.SortOrder;
|
|
715
|
+
isPlatformOrg?: Prisma.SortOrder;
|
|
694
716
|
email?: Prisma.SortOrder;
|
|
695
717
|
phone?: Prisma.SortOrder;
|
|
696
718
|
address?: Prisma.SortOrder;
|
|
@@ -785,6 +807,7 @@ export type OrganizationCreateWithoutMembersInput = {
|
|
|
785
807
|
name: string;
|
|
786
808
|
type: $Enums.OrganizationType;
|
|
787
809
|
status?: $Enums.OrganizationStatus;
|
|
810
|
+
isPlatformOrg?: boolean;
|
|
788
811
|
email?: string | null;
|
|
789
812
|
phone?: string | null;
|
|
790
813
|
address?: string | null;
|
|
@@ -813,6 +836,7 @@ export type OrganizationUncheckedCreateWithoutMembersInput = {
|
|
|
813
836
|
name: string;
|
|
814
837
|
type: $Enums.OrganizationType;
|
|
815
838
|
status?: $Enums.OrganizationStatus;
|
|
839
|
+
isPlatformOrg?: boolean;
|
|
816
840
|
email?: string | null;
|
|
817
841
|
phone?: string | null;
|
|
818
842
|
address?: string | null;
|
|
@@ -852,6 +876,7 @@ export type OrganizationUpdateWithoutMembersInput = {
|
|
|
852
876
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
853
877
|
type?: Prisma.EnumOrganizationTypeFieldUpdateOperationsInput | $Enums.OrganizationType;
|
|
854
878
|
status?: Prisma.EnumOrganizationStatusFieldUpdateOperationsInput | $Enums.OrganizationStatus;
|
|
879
|
+
isPlatformOrg?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
855
880
|
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
856
881
|
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
857
882
|
address?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -880,6 +905,7 @@ export type OrganizationUncheckedUpdateWithoutMembersInput = {
|
|
|
880
905
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
881
906
|
type?: Prisma.EnumOrganizationTypeFieldUpdateOperationsInput | $Enums.OrganizationType;
|
|
882
907
|
status?: Prisma.EnumOrganizationStatusFieldUpdateOperationsInput | $Enums.OrganizationStatus;
|
|
908
|
+
isPlatformOrg?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
883
909
|
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
884
910
|
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
885
911
|
address?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -906,6 +932,7 @@ export type OrganizationCreateWithoutTenantInput = {
|
|
|
906
932
|
name: string;
|
|
907
933
|
type: $Enums.OrganizationType;
|
|
908
934
|
status?: $Enums.OrganizationStatus;
|
|
935
|
+
isPlatformOrg?: boolean;
|
|
909
936
|
email?: string | null;
|
|
910
937
|
phone?: string | null;
|
|
911
938
|
address?: string | null;
|
|
@@ -933,6 +960,7 @@ export type OrganizationUncheckedCreateWithoutTenantInput = {
|
|
|
933
960
|
name: string;
|
|
934
961
|
type: $Enums.OrganizationType;
|
|
935
962
|
status?: $Enums.OrganizationStatus;
|
|
963
|
+
isPlatformOrg?: boolean;
|
|
936
964
|
email?: string | null;
|
|
937
965
|
phone?: string | null;
|
|
938
966
|
address?: string | null;
|
|
@@ -985,6 +1013,7 @@ export type OrganizationScalarWhereInput = {
|
|
|
985
1013
|
name?: Prisma.StringFilter<"Organization"> | string;
|
|
986
1014
|
type?: Prisma.EnumOrganizationTypeFilter<"Organization"> | $Enums.OrganizationType;
|
|
987
1015
|
status?: Prisma.EnumOrganizationStatusFilter<"Organization"> | $Enums.OrganizationStatus;
|
|
1016
|
+
isPlatformOrg?: Prisma.BoolFilter<"Organization"> | boolean;
|
|
988
1017
|
email?: Prisma.StringNullableFilter<"Organization"> | string | null;
|
|
989
1018
|
phone?: Prisma.StringNullableFilter<"Organization"> | string | null;
|
|
990
1019
|
address?: Prisma.StringNullableFilter<"Organization"> | string | null;
|
|
@@ -1011,6 +1040,7 @@ export type OrganizationCreateManyTenantInput = {
|
|
|
1011
1040
|
name: string;
|
|
1012
1041
|
type: $Enums.OrganizationType;
|
|
1013
1042
|
status?: $Enums.OrganizationStatus;
|
|
1043
|
+
isPlatformOrg?: boolean;
|
|
1014
1044
|
email?: string | null;
|
|
1015
1045
|
phone?: string | null;
|
|
1016
1046
|
address?: string | null;
|
|
@@ -1037,6 +1067,7 @@ export type OrganizationUpdateWithoutTenantInput = {
|
|
|
1037
1067
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1038
1068
|
type?: Prisma.EnumOrganizationTypeFieldUpdateOperationsInput | $Enums.OrganizationType;
|
|
1039
1069
|
status?: Prisma.EnumOrganizationStatusFieldUpdateOperationsInput | $Enums.OrganizationStatus;
|
|
1070
|
+
isPlatformOrg?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1040
1071
|
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1041
1072
|
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1042
1073
|
address?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -1064,6 +1095,7 @@ export type OrganizationUncheckedUpdateWithoutTenantInput = {
|
|
|
1064
1095
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1065
1096
|
type?: Prisma.EnumOrganizationTypeFieldUpdateOperationsInput | $Enums.OrganizationType;
|
|
1066
1097
|
status?: Prisma.EnumOrganizationStatusFieldUpdateOperationsInput | $Enums.OrganizationStatus;
|
|
1098
|
+
isPlatformOrg?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1067
1099
|
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1068
1100
|
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1069
1101
|
address?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -1091,6 +1123,7 @@ export type OrganizationUncheckedUpdateManyWithoutTenantInput = {
|
|
|
1091
1123
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1092
1124
|
type?: Prisma.EnumOrganizationTypeFieldUpdateOperationsInput | $Enums.OrganizationType;
|
|
1093
1125
|
status?: Prisma.EnumOrganizationStatusFieldUpdateOperationsInput | $Enums.OrganizationStatus;
|
|
1126
|
+
isPlatformOrg?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1094
1127
|
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1095
1128
|
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1096
1129
|
address?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -1142,6 +1175,7 @@ export type OrganizationSelect<ExtArgs extends runtime.Types.Extensions.Internal
|
|
|
1142
1175
|
name?: boolean;
|
|
1143
1176
|
type?: boolean;
|
|
1144
1177
|
status?: boolean;
|
|
1178
|
+
isPlatformOrg?: boolean;
|
|
1145
1179
|
email?: boolean;
|
|
1146
1180
|
phone?: boolean;
|
|
1147
1181
|
address?: boolean;
|
|
@@ -1172,6 +1206,7 @@ export type OrganizationSelectScalar = {
|
|
|
1172
1206
|
name?: boolean;
|
|
1173
1207
|
type?: boolean;
|
|
1174
1208
|
status?: boolean;
|
|
1209
|
+
isPlatformOrg?: boolean;
|
|
1175
1210
|
email?: boolean;
|
|
1176
1211
|
phone?: boolean;
|
|
1177
1212
|
address?: boolean;
|
|
@@ -1193,7 +1228,7 @@ export type OrganizationSelectScalar = {
|
|
|
1193
1228
|
createdAt?: boolean;
|
|
1194
1229
|
updatedAt?: boolean;
|
|
1195
1230
|
};
|
|
1196
|
-
export type OrganizationOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "tenantId" | "name" | "type" | "status" | "email" | "phone" | "address" | "city" | "state" | "country" | "website" | "logoUrl" | "description" | "bankCode" | "bankLicenseNo" | "swiftCode" | "sortCode" | "cacNumber" | "cacCertificateUrl" | "taxId" | "approvedAt" | "approvedById" | "createdAt" | "updatedAt", ExtArgs["result"]["organization"]>;
|
|
1231
|
+
export type OrganizationOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "tenantId" | "name" | "type" | "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"]>;
|
|
1197
1232
|
export type OrganizationInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1198
1233
|
tenant?: boolean | Prisma.TenantDefaultArgs<ExtArgs>;
|
|
1199
1234
|
members?: boolean | Prisma.Organization$membersArgs<ExtArgs>;
|
|
@@ -1211,6 +1246,7 @@ export type $OrganizationPayload<ExtArgs extends runtime.Types.Extensions.Intern
|
|
|
1211
1246
|
name: string;
|
|
1212
1247
|
type: $Enums.OrganizationType;
|
|
1213
1248
|
status: $Enums.OrganizationStatus;
|
|
1249
|
+
isPlatformOrg: boolean;
|
|
1214
1250
|
email: string | null;
|
|
1215
1251
|
phone: string | null;
|
|
1216
1252
|
address: string | null;
|
|
@@ -1540,6 +1576,7 @@ export interface OrganizationFieldRefs {
|
|
|
1540
1576
|
readonly name: Prisma.FieldRef<"Organization", 'String'>;
|
|
1541
1577
|
readonly type: Prisma.FieldRef<"Organization", 'OrganizationType'>;
|
|
1542
1578
|
readonly status: Prisma.FieldRef<"Organization", 'OrganizationStatus'>;
|
|
1579
|
+
readonly isPlatformOrg: Prisma.FieldRef<"Organization", 'Boolean'>;
|
|
1543
1580
|
readonly email: Prisma.FieldRef<"Organization", 'String'>;
|
|
1544
1581
|
readonly phone: Prisma.FieldRef<"Organization", 'String'>;
|
|
1545
1582
|
readonly address: Prisma.FieldRef<"Organization", 'String'>;
|