@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.
@@ -203,6 +203,7 @@ export type TenantWhereInput = {
203
203
  domainEvents?: Prisma.DomainEventListRelationFilter;
204
204
  workflowBlockers?: Prisma.WorkflowBlockerListRelationFilter;
205
205
  questionnairePlans?: Prisma.QuestionnairePlanListRelationFilter;
206
+ documentReviews?: Prisma.DocumentReviewListRelationFilter;
206
207
  organizations?: Prisma.OrganizationListRelationFilter;
207
208
  };
208
209
  export type TenantOrderByWithRelationInput = {
@@ -269,6 +270,7 @@ export type TenantOrderByWithRelationInput = {
269
270
  domainEvents?: Prisma.DomainEventOrderByRelationAggregateInput;
270
271
  workflowBlockers?: Prisma.WorkflowBlockerOrderByRelationAggregateInput;
271
272
  questionnairePlans?: Prisma.QuestionnairePlanOrderByRelationAggregateInput;
273
+ documentReviews?: Prisma.DocumentReviewOrderByRelationAggregateInput;
272
274
  organizations?: Prisma.OrganizationOrderByRelationAggregateInput;
273
275
  _relevance?: Prisma.TenantOrderByRelevanceInput;
274
276
  };
@@ -339,6 +341,7 @@ export type TenantWhereUniqueInput = Prisma.AtLeast<{
339
341
  domainEvents?: Prisma.DomainEventListRelationFilter;
340
342
  workflowBlockers?: Prisma.WorkflowBlockerListRelationFilter;
341
343
  questionnairePlans?: Prisma.QuestionnairePlanListRelationFilter;
344
+ documentReviews?: Prisma.DocumentReviewListRelationFilter;
342
345
  organizations?: Prisma.OrganizationListRelationFilter;
343
346
  }, "id" | "subdomain">;
344
347
  export type TenantOrderByWithAggregationInput = {
@@ -427,6 +430,7 @@ export type TenantCreateInput = {
427
430
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
428
431
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
429
432
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
433
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
430
434
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
431
435
  };
432
436
  export type TenantUncheckedCreateInput = {
@@ -493,6 +497,7 @@ export type TenantUncheckedCreateInput = {
493
497
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
494
498
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
495
499
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
500
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
496
501
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
497
502
  };
498
503
  export type TenantUpdateInput = {
@@ -559,6 +564,7 @@ export type TenantUpdateInput = {
559
564
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
560
565
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
561
566
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
567
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
562
568
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
563
569
  };
564
570
  export type TenantUncheckedUpdateInput = {
@@ -625,6 +631,7 @@ export type TenantUncheckedUpdateInput = {
625
631
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
626
632
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
627
633
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
634
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
628
635
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
629
636
  };
630
637
  export type TenantCreateManyInput = {
@@ -1228,6 +1235,18 @@ export type TenantUpdateOneRequiredWithoutApplicationDocumentsNestedInput = {
1228
1235
  connect?: Prisma.TenantWhereUniqueInput;
1229
1236
  update?: Prisma.XOR<Prisma.XOR<Prisma.TenantUpdateToOneWithWhereWithoutApplicationDocumentsInput, Prisma.TenantUpdateWithoutApplicationDocumentsInput>, Prisma.TenantUncheckedUpdateWithoutApplicationDocumentsInput>;
1230
1237
  };
1238
+ export type TenantCreateNestedOneWithoutDocumentReviewsInput = {
1239
+ create?: Prisma.XOR<Prisma.TenantCreateWithoutDocumentReviewsInput, Prisma.TenantUncheckedCreateWithoutDocumentReviewsInput>;
1240
+ connectOrCreate?: Prisma.TenantCreateOrConnectWithoutDocumentReviewsInput;
1241
+ connect?: Prisma.TenantWhereUniqueInput;
1242
+ };
1243
+ export type TenantUpdateOneRequiredWithoutDocumentReviewsNestedInput = {
1244
+ create?: Prisma.XOR<Prisma.TenantCreateWithoutDocumentReviewsInput, Prisma.TenantUncheckedCreateWithoutDocumentReviewsInput>;
1245
+ connectOrCreate?: Prisma.TenantCreateOrConnectWithoutDocumentReviewsInput;
1246
+ upsert?: Prisma.TenantUpsertWithoutDocumentReviewsInput;
1247
+ connect?: Prisma.TenantWhereUniqueInput;
1248
+ update?: Prisma.XOR<Prisma.XOR<Prisma.TenantUpdateToOneWithWhereWithoutDocumentReviewsInput, Prisma.TenantUpdateWithoutDocumentReviewsInput>, Prisma.TenantUncheckedUpdateWithoutDocumentReviewsInput>;
1249
+ };
1231
1250
  export type TenantCreateNestedOneWithoutDocumentTemplatesInput = {
1232
1251
  create?: Prisma.XOR<Prisma.TenantCreateWithoutDocumentTemplatesInput, Prisma.TenantUncheckedCreateWithoutDocumentTemplatesInput>;
1233
1252
  connectOrCreate?: Prisma.TenantCreateOrConnectWithoutDocumentTemplatesInput;
@@ -1459,6 +1478,7 @@ export type TenantCreateWithoutUsersInput = {
1459
1478
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
1460
1479
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
1461
1480
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
1481
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
1462
1482
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
1463
1483
  };
1464
1484
  export type TenantUncheckedCreateWithoutUsersInput = {
@@ -1524,6 +1544,7 @@ export type TenantUncheckedCreateWithoutUsersInput = {
1524
1544
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
1525
1545
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
1526
1546
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
1547
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
1527
1548
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
1528
1549
  };
1529
1550
  export type TenantCreateOrConnectWithoutUsersInput = {
@@ -1602,6 +1623,7 @@ export type TenantUpdateWithoutUsersInput = {
1602
1623
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
1603
1624
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
1604
1625
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
1626
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
1605
1627
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
1606
1628
  };
1607
1629
  export type TenantUncheckedUpdateWithoutUsersInput = {
@@ -1667,6 +1689,7 @@ export type TenantUncheckedUpdateWithoutUsersInput = {
1667
1689
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
1668
1690
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
1669
1691
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
1692
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
1670
1693
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
1671
1694
  };
1672
1695
  export type TenantCreateWithoutRolesInput = {
@@ -1732,6 +1755,7 @@ export type TenantCreateWithoutRolesInput = {
1732
1755
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
1733
1756
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
1734
1757
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
1758
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
1735
1759
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
1736
1760
  };
1737
1761
  export type TenantUncheckedCreateWithoutRolesInput = {
@@ -1797,6 +1821,7 @@ export type TenantUncheckedCreateWithoutRolesInput = {
1797
1821
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
1798
1822
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
1799
1823
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
1824
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
1800
1825
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
1801
1826
  };
1802
1827
  export type TenantCreateOrConnectWithoutRolesInput = {
@@ -1875,6 +1900,7 @@ export type TenantUpdateWithoutRolesInput = {
1875
1900
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
1876
1901
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
1877
1902
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
1903
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
1878
1904
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
1879
1905
  };
1880
1906
  export type TenantUncheckedUpdateWithoutRolesInput = {
@@ -1940,6 +1966,7 @@ export type TenantUncheckedUpdateWithoutRolesInput = {
1940
1966
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
1941
1967
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
1942
1968
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
1969
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
1943
1970
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
1944
1971
  };
1945
1972
  export type TenantCreateWithoutPermissionsInput = {
@@ -2005,6 +2032,7 @@ export type TenantCreateWithoutPermissionsInput = {
2005
2032
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
2006
2033
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
2007
2034
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
2035
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
2008
2036
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
2009
2037
  };
2010
2038
  export type TenantUncheckedCreateWithoutPermissionsInput = {
@@ -2070,6 +2098,7 @@ export type TenantUncheckedCreateWithoutPermissionsInput = {
2070
2098
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
2071
2099
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
2072
2100
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
2101
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
2073
2102
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
2074
2103
  };
2075
2104
  export type TenantCreateOrConnectWithoutPermissionsInput = {
@@ -2148,6 +2177,7 @@ export type TenantUpdateWithoutPermissionsInput = {
2148
2177
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
2149
2178
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
2150
2179
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
2180
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
2151
2181
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
2152
2182
  };
2153
2183
  export type TenantUncheckedUpdateWithoutPermissionsInput = {
@@ -2213,6 +2243,7 @@ export type TenantUncheckedUpdateWithoutPermissionsInput = {
2213
2243
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
2214
2244
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
2215
2245
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
2246
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
2216
2247
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
2217
2248
  };
2218
2249
  export type TenantCreateWithoutMembershipsInput = {
@@ -2278,6 +2309,7 @@ export type TenantCreateWithoutMembershipsInput = {
2278
2309
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
2279
2310
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
2280
2311
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
2312
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
2281
2313
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
2282
2314
  };
2283
2315
  export type TenantUncheckedCreateWithoutMembershipsInput = {
@@ -2343,6 +2375,7 @@ export type TenantUncheckedCreateWithoutMembershipsInput = {
2343
2375
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
2344
2376
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
2345
2377
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
2378
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
2346
2379
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
2347
2380
  };
2348
2381
  export type TenantCreateOrConnectWithoutMembershipsInput = {
@@ -2421,6 +2454,7 @@ export type TenantUpdateWithoutMembershipsInput = {
2421
2454
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
2422
2455
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
2423
2456
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
2457
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
2424
2458
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
2425
2459
  };
2426
2460
  export type TenantUncheckedUpdateWithoutMembershipsInput = {
@@ -2486,6 +2520,7 @@ export type TenantUncheckedUpdateWithoutMembershipsInput = {
2486
2520
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
2487
2521
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
2488
2522
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
2523
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
2489
2524
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
2490
2525
  };
2491
2526
  export type TenantCreateWithoutOrganizationsInput = {
@@ -2552,6 +2587,7 @@ export type TenantCreateWithoutOrganizationsInput = {
2552
2587
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
2553
2588
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
2554
2589
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
2590
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
2555
2591
  };
2556
2592
  export type TenantUncheckedCreateWithoutOrganizationsInput = {
2557
2593
  id?: string;
@@ -2617,6 +2653,7 @@ export type TenantUncheckedCreateWithoutOrganizationsInput = {
2617
2653
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
2618
2654
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
2619
2655
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
2656
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
2620
2657
  };
2621
2658
  export type TenantCreateOrConnectWithoutOrganizationsInput = {
2622
2659
  where: Prisma.TenantWhereUniqueInput;
@@ -2695,6 +2732,7 @@ export type TenantUpdateWithoutOrganizationsInput = {
2695
2732
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
2696
2733
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
2697
2734
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
2735
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
2698
2736
  };
2699
2737
  export type TenantUncheckedUpdateWithoutOrganizationsInput = {
2700
2738
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -2760,6 +2798,7 @@ export type TenantUncheckedUpdateWithoutOrganizationsInput = {
2760
2798
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
2761
2799
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
2762
2800
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
2801
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
2763
2802
  };
2764
2803
  export type TenantCreateWithoutApiKeysInput = {
2765
2804
  id?: string;
@@ -2824,6 +2863,7 @@ export type TenantCreateWithoutApiKeysInput = {
2824
2863
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
2825
2864
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
2826
2865
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
2866
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
2827
2867
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
2828
2868
  };
2829
2869
  export type TenantUncheckedCreateWithoutApiKeysInput = {
@@ -2889,6 +2929,7 @@ export type TenantUncheckedCreateWithoutApiKeysInput = {
2889
2929
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
2890
2930
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
2891
2931
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
2932
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
2892
2933
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
2893
2934
  };
2894
2935
  export type TenantCreateOrConnectWithoutApiKeysInput = {
@@ -2967,6 +3008,7 @@ export type TenantUpdateWithoutApiKeysInput = {
2967
3008
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
2968
3009
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
2969
3010
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
3011
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
2970
3012
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
2971
3013
  };
2972
3014
  export type TenantUncheckedUpdateWithoutApiKeysInput = {
@@ -3032,6 +3074,7 @@ export type TenantUncheckedUpdateWithoutApiKeysInput = {
3032
3074
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
3033
3075
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
3034
3076
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
3077
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
3035
3078
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
3036
3079
  };
3037
3080
  export type TenantCreateWithoutSocialsInput = {
@@ -3097,6 +3140,7 @@ export type TenantCreateWithoutSocialsInput = {
3097
3140
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
3098
3141
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
3099
3142
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
3143
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
3100
3144
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
3101
3145
  };
3102
3146
  export type TenantUncheckedCreateWithoutSocialsInput = {
@@ -3162,6 +3206,7 @@ export type TenantUncheckedCreateWithoutSocialsInput = {
3162
3206
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
3163
3207
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
3164
3208
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
3209
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
3165
3210
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
3166
3211
  };
3167
3212
  export type TenantCreateOrConnectWithoutSocialsInput = {
@@ -3240,6 +3285,7 @@ export type TenantUpdateWithoutSocialsInput = {
3240
3285
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
3241
3286
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
3242
3287
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
3288
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
3243
3289
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
3244
3290
  };
3245
3291
  export type TenantUncheckedUpdateWithoutSocialsInput = {
@@ -3305,6 +3351,7 @@ export type TenantUncheckedUpdateWithoutSocialsInput = {
3305
3351
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
3306
3352
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
3307
3353
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
3354
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
3308
3355
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
3309
3356
  };
3310
3357
  export type TenantCreateWithoutWalletsInput = {
@@ -3370,6 +3417,7 @@ export type TenantCreateWithoutWalletsInput = {
3370
3417
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
3371
3418
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
3372
3419
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
3420
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
3373
3421
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
3374
3422
  };
3375
3423
  export type TenantUncheckedCreateWithoutWalletsInput = {
@@ -3435,6 +3483,7 @@ export type TenantUncheckedCreateWithoutWalletsInput = {
3435
3483
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
3436
3484
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
3437
3485
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
3486
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
3438
3487
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
3439
3488
  };
3440
3489
  export type TenantCreateOrConnectWithoutWalletsInput = {
@@ -3513,6 +3562,7 @@ export type TenantUpdateWithoutWalletsInput = {
3513
3562
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
3514
3563
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
3515
3564
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
3565
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
3516
3566
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
3517
3567
  };
3518
3568
  export type TenantUncheckedUpdateWithoutWalletsInput = {
@@ -3578,6 +3628,7 @@ export type TenantUncheckedUpdateWithoutWalletsInput = {
3578
3628
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
3579
3629
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
3580
3630
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
3631
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
3581
3632
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
3582
3633
  };
3583
3634
  export type TenantCreateWithoutTransactionsInput = {
@@ -3643,6 +3694,7 @@ export type TenantCreateWithoutTransactionsInput = {
3643
3694
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
3644
3695
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
3645
3696
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
3697
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
3646
3698
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
3647
3699
  };
3648
3700
  export type TenantUncheckedCreateWithoutTransactionsInput = {
@@ -3708,6 +3760,7 @@ export type TenantUncheckedCreateWithoutTransactionsInput = {
3708
3760
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
3709
3761
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
3710
3762
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
3763
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
3711
3764
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
3712
3765
  };
3713
3766
  export type TenantCreateOrConnectWithoutTransactionsInput = {
@@ -3786,6 +3839,7 @@ export type TenantUpdateWithoutTransactionsInput = {
3786
3839
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
3787
3840
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
3788
3841
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
3842
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
3789
3843
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
3790
3844
  };
3791
3845
  export type TenantUncheckedUpdateWithoutTransactionsInput = {
@@ -3851,6 +3905,7 @@ export type TenantUncheckedUpdateWithoutTransactionsInput = {
3851
3905
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
3852
3906
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
3853
3907
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
3908
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
3854
3909
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
3855
3910
  };
3856
3911
  export type TenantCreateWithoutSettingsInput = {
@@ -3916,6 +3971,7 @@ export type TenantCreateWithoutSettingsInput = {
3916
3971
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
3917
3972
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
3918
3973
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
3974
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
3919
3975
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
3920
3976
  };
3921
3977
  export type TenantUncheckedCreateWithoutSettingsInput = {
@@ -3981,6 +4037,7 @@ export type TenantUncheckedCreateWithoutSettingsInput = {
3981
4037
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
3982
4038
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
3983
4039
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
4040
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
3984
4041
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
3985
4042
  };
3986
4043
  export type TenantCreateOrConnectWithoutSettingsInput = {
@@ -4059,6 +4116,7 @@ export type TenantUpdateWithoutSettingsInput = {
4059
4116
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
4060
4117
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
4061
4118
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
4119
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
4062
4120
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
4063
4121
  };
4064
4122
  export type TenantUncheckedUpdateWithoutSettingsInput = {
@@ -4124,6 +4182,7 @@ export type TenantUncheckedUpdateWithoutSettingsInput = {
4124
4182
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
4125
4183
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
4126
4184
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
4185
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
4127
4186
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
4128
4187
  };
4129
4188
  export type TenantCreateWithoutPropertiesInput = {
@@ -4189,6 +4248,7 @@ export type TenantCreateWithoutPropertiesInput = {
4189
4248
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
4190
4249
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
4191
4250
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
4251
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
4192
4252
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
4193
4253
  };
4194
4254
  export type TenantUncheckedCreateWithoutPropertiesInput = {
@@ -4254,6 +4314,7 @@ export type TenantUncheckedCreateWithoutPropertiesInput = {
4254
4314
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
4255
4315
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
4256
4316
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
4317
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
4257
4318
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
4258
4319
  };
4259
4320
  export type TenantCreateOrConnectWithoutPropertiesInput = {
@@ -4332,6 +4393,7 @@ export type TenantUpdateWithoutPropertiesInput = {
4332
4393
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
4333
4394
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
4334
4395
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
4396
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
4335
4397
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
4336
4398
  };
4337
4399
  export type TenantUncheckedUpdateWithoutPropertiesInput = {
@@ -4397,6 +4459,7 @@ export type TenantUncheckedUpdateWithoutPropertiesInput = {
4397
4459
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
4398
4460
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
4399
4461
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
4462
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
4400
4463
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
4401
4464
  };
4402
4465
  export type TenantCreateWithoutPropertyMediaInput = {
@@ -4462,6 +4525,7 @@ export type TenantCreateWithoutPropertyMediaInput = {
4462
4525
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
4463
4526
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
4464
4527
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
4528
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
4465
4529
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
4466
4530
  };
4467
4531
  export type TenantUncheckedCreateWithoutPropertyMediaInput = {
@@ -4527,6 +4591,7 @@ export type TenantUncheckedCreateWithoutPropertyMediaInput = {
4527
4591
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
4528
4592
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
4529
4593
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
4594
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
4530
4595
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
4531
4596
  };
4532
4597
  export type TenantCreateOrConnectWithoutPropertyMediaInput = {
@@ -4605,6 +4670,7 @@ export type TenantUpdateWithoutPropertyMediaInput = {
4605
4670
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
4606
4671
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
4607
4672
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
4673
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
4608
4674
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
4609
4675
  };
4610
4676
  export type TenantUncheckedUpdateWithoutPropertyMediaInput = {
@@ -4670,6 +4736,7 @@ export type TenantUncheckedUpdateWithoutPropertyMediaInput = {
4670
4736
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
4671
4737
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
4672
4738
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
4739
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
4673
4740
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
4674
4741
  };
4675
4742
  export type TenantCreateWithoutPropertyDocumentsInput = {
@@ -4735,6 +4802,7 @@ export type TenantCreateWithoutPropertyDocumentsInput = {
4735
4802
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
4736
4803
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
4737
4804
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
4805
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
4738
4806
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
4739
4807
  };
4740
4808
  export type TenantUncheckedCreateWithoutPropertyDocumentsInput = {
@@ -4800,6 +4868,7 @@ export type TenantUncheckedCreateWithoutPropertyDocumentsInput = {
4800
4868
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
4801
4869
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
4802
4870
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
4871
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
4803
4872
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
4804
4873
  };
4805
4874
  export type TenantCreateOrConnectWithoutPropertyDocumentsInput = {
@@ -4878,6 +4947,7 @@ export type TenantUpdateWithoutPropertyDocumentsInput = {
4878
4947
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
4879
4948
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
4880
4949
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
4950
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
4881
4951
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
4882
4952
  };
4883
4953
  export type TenantUncheckedUpdateWithoutPropertyDocumentsInput = {
@@ -4943,6 +5013,7 @@ export type TenantUncheckedUpdateWithoutPropertyDocumentsInput = {
4943
5013
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
4944
5014
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
4945
5015
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
5016
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
4946
5017
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
4947
5018
  };
4948
5019
  export type TenantCreateWithoutAmenitiesInput = {
@@ -5008,6 +5079,7 @@ export type TenantCreateWithoutAmenitiesInput = {
5008
5079
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
5009
5080
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
5010
5081
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
5082
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
5011
5083
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
5012
5084
  };
5013
5085
  export type TenantUncheckedCreateWithoutAmenitiesInput = {
@@ -5073,6 +5145,7 @@ export type TenantUncheckedCreateWithoutAmenitiesInput = {
5073
5145
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
5074
5146
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
5075
5147
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
5148
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
5076
5149
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
5077
5150
  };
5078
5151
  export type TenantCreateOrConnectWithoutAmenitiesInput = {
@@ -5151,6 +5224,7 @@ export type TenantUpdateWithoutAmenitiesInput = {
5151
5224
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
5152
5225
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
5153
5226
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
5227
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
5154
5228
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
5155
5229
  };
5156
5230
  export type TenantUncheckedUpdateWithoutAmenitiesInput = {
@@ -5216,6 +5290,7 @@ export type TenantUncheckedUpdateWithoutAmenitiesInput = {
5216
5290
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
5217
5291
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
5218
5292
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
5293
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
5219
5294
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
5220
5295
  };
5221
5296
  export type TenantCreateWithoutPropertyVariantsInput = {
@@ -5281,6 +5356,7 @@ export type TenantCreateWithoutPropertyVariantsInput = {
5281
5356
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
5282
5357
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
5283
5358
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
5359
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
5284
5360
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
5285
5361
  };
5286
5362
  export type TenantUncheckedCreateWithoutPropertyVariantsInput = {
@@ -5346,6 +5422,7 @@ export type TenantUncheckedCreateWithoutPropertyVariantsInput = {
5346
5422
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
5347
5423
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
5348
5424
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
5425
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
5349
5426
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
5350
5427
  };
5351
5428
  export type TenantCreateOrConnectWithoutPropertyVariantsInput = {
@@ -5424,6 +5501,7 @@ export type TenantUpdateWithoutPropertyVariantsInput = {
5424
5501
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
5425
5502
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
5426
5503
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
5504
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
5427
5505
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
5428
5506
  };
5429
5507
  export type TenantUncheckedUpdateWithoutPropertyVariantsInput = {
@@ -5489,6 +5567,7 @@ export type TenantUncheckedUpdateWithoutPropertyVariantsInput = {
5489
5567
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
5490
5568
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
5491
5569
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
5570
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
5492
5571
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
5493
5572
  };
5494
5573
  export type TenantCreateWithoutPropertyVariantAmenitiesInput = {
@@ -5554,6 +5633,7 @@ export type TenantCreateWithoutPropertyVariantAmenitiesInput = {
5554
5633
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
5555
5634
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
5556
5635
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
5636
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
5557
5637
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
5558
5638
  };
5559
5639
  export type TenantUncheckedCreateWithoutPropertyVariantAmenitiesInput = {
@@ -5619,6 +5699,7 @@ export type TenantUncheckedCreateWithoutPropertyVariantAmenitiesInput = {
5619
5699
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
5620
5700
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
5621
5701
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
5702
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
5622
5703
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
5623
5704
  };
5624
5705
  export type TenantCreateOrConnectWithoutPropertyVariantAmenitiesInput = {
@@ -5697,6 +5778,7 @@ export type TenantUpdateWithoutPropertyVariantAmenitiesInput = {
5697
5778
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
5698
5779
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
5699
5780
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
5781
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
5700
5782
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
5701
5783
  };
5702
5784
  export type TenantUncheckedUpdateWithoutPropertyVariantAmenitiesInput = {
@@ -5762,6 +5844,7 @@ export type TenantUncheckedUpdateWithoutPropertyVariantAmenitiesInput = {
5762
5844
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
5763
5845
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
5764
5846
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
5847
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
5765
5848
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
5766
5849
  };
5767
5850
  export type TenantCreateWithoutPropertyVariantMediaInput = {
@@ -5827,6 +5910,7 @@ export type TenantCreateWithoutPropertyVariantMediaInput = {
5827
5910
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
5828
5911
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
5829
5912
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
5913
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
5830
5914
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
5831
5915
  };
5832
5916
  export type TenantUncheckedCreateWithoutPropertyVariantMediaInput = {
@@ -5892,6 +5976,7 @@ export type TenantUncheckedCreateWithoutPropertyVariantMediaInput = {
5892
5976
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
5893
5977
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
5894
5978
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
5979
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
5895
5980
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
5896
5981
  };
5897
5982
  export type TenantCreateOrConnectWithoutPropertyVariantMediaInput = {
@@ -5970,6 +6055,7 @@ export type TenantUpdateWithoutPropertyVariantMediaInput = {
5970
6055
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
5971
6056
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
5972
6057
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
6058
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
5973
6059
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
5974
6060
  };
5975
6061
  export type TenantUncheckedUpdateWithoutPropertyVariantMediaInput = {
@@ -6035,6 +6121,7 @@ export type TenantUncheckedUpdateWithoutPropertyVariantMediaInput = {
6035
6121
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
6036
6122
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
6037
6123
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
6124
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
6038
6125
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
6039
6126
  };
6040
6127
  export type TenantCreateWithoutPropertyUnitsInput = {
@@ -6100,6 +6187,7 @@ export type TenantCreateWithoutPropertyUnitsInput = {
6100
6187
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
6101
6188
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
6102
6189
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
6190
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
6103
6191
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
6104
6192
  };
6105
6193
  export type TenantUncheckedCreateWithoutPropertyUnitsInput = {
@@ -6165,6 +6253,7 @@ export type TenantUncheckedCreateWithoutPropertyUnitsInput = {
6165
6253
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
6166
6254
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
6167
6255
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
6256
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
6168
6257
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
6169
6258
  };
6170
6259
  export type TenantCreateOrConnectWithoutPropertyUnitsInput = {
@@ -6243,6 +6332,7 @@ export type TenantUpdateWithoutPropertyUnitsInput = {
6243
6332
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
6244
6333
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
6245
6334
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
6335
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
6246
6336
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
6247
6337
  };
6248
6338
  export type TenantUncheckedUpdateWithoutPropertyUnitsInput = {
@@ -6308,6 +6398,7 @@ export type TenantUncheckedUpdateWithoutPropertyUnitsInput = {
6308
6398
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
6309
6399
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
6310
6400
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
6401
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
6311
6402
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
6312
6403
  };
6313
6404
  export type TenantCreateWithoutPropertyAmenitiesInput = {
@@ -6373,6 +6464,7 @@ export type TenantCreateWithoutPropertyAmenitiesInput = {
6373
6464
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
6374
6465
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
6375
6466
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
6467
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
6376
6468
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
6377
6469
  };
6378
6470
  export type TenantUncheckedCreateWithoutPropertyAmenitiesInput = {
@@ -6438,6 +6530,7 @@ export type TenantUncheckedCreateWithoutPropertyAmenitiesInput = {
6438
6530
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
6439
6531
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
6440
6532
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
6533
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
6441
6534
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
6442
6535
  };
6443
6536
  export type TenantCreateOrConnectWithoutPropertyAmenitiesInput = {
@@ -6516,6 +6609,7 @@ export type TenantUpdateWithoutPropertyAmenitiesInput = {
6516
6609
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
6517
6610
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
6518
6611
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
6612
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
6519
6613
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
6520
6614
  };
6521
6615
  export type TenantUncheckedUpdateWithoutPropertyAmenitiesInput = {
@@ -6581,6 +6675,7 @@ export type TenantUncheckedUpdateWithoutPropertyAmenitiesInput = {
6581
6675
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
6582
6676
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
6583
6677
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
6678
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
6584
6679
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
6585
6680
  };
6586
6681
  export type TenantCreateWithoutDocumentationPlansInput = {
@@ -6646,6 +6741,7 @@ export type TenantCreateWithoutDocumentationPlansInput = {
6646
6741
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
6647
6742
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
6648
6743
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
6744
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
6649
6745
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
6650
6746
  };
6651
6747
  export type TenantUncheckedCreateWithoutDocumentationPlansInput = {
@@ -6711,6 +6807,7 @@ export type TenantUncheckedCreateWithoutDocumentationPlansInput = {
6711
6807
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
6712
6808
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
6713
6809
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
6810
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
6714
6811
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
6715
6812
  };
6716
6813
  export type TenantCreateOrConnectWithoutDocumentationPlansInput = {
@@ -6789,6 +6886,7 @@ export type TenantUpdateWithoutDocumentationPlansInput = {
6789
6886
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
6790
6887
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
6791
6888
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
6889
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
6792
6890
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
6793
6891
  };
6794
6892
  export type TenantUncheckedUpdateWithoutDocumentationPlansInput = {
@@ -6854,6 +6952,7 @@ export type TenantUncheckedUpdateWithoutDocumentationPlansInput = {
6854
6952
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
6855
6953
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
6856
6954
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
6955
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
6857
6956
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
6858
6957
  };
6859
6958
  export type TenantCreateWithoutQuestionnairePlansInput = {
@@ -6919,6 +7018,7 @@ export type TenantCreateWithoutQuestionnairePlansInput = {
6919
7018
  settings?: Prisma.SettingsCreateNestedManyWithoutTenantInput;
6920
7019
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
6921
7020
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
7021
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
6922
7022
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
6923
7023
  };
6924
7024
  export type TenantUncheckedCreateWithoutQuestionnairePlansInput = {
@@ -6984,6 +7084,7 @@ export type TenantUncheckedCreateWithoutQuestionnairePlansInput = {
6984
7084
  settings?: Prisma.SettingsUncheckedCreateNestedManyWithoutTenantInput;
6985
7085
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
6986
7086
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
7087
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
6987
7088
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
6988
7089
  };
6989
7090
  export type TenantCreateOrConnectWithoutQuestionnairePlansInput = {
@@ -7062,6 +7163,7 @@ export type TenantUpdateWithoutQuestionnairePlansInput = {
7062
7163
  settings?: Prisma.SettingsUpdateManyWithoutTenantNestedInput;
7063
7164
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
7064
7165
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
7166
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
7065
7167
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
7066
7168
  };
7067
7169
  export type TenantUncheckedUpdateWithoutQuestionnairePlansInput = {
@@ -7127,6 +7229,7 @@ export type TenantUncheckedUpdateWithoutQuestionnairePlansInput = {
7127
7229
  settings?: Prisma.SettingsUncheckedUpdateManyWithoutTenantNestedInput;
7128
7230
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
7129
7231
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
7232
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
7130
7233
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
7131
7234
  };
7132
7235
  export type TenantCreateWithoutPaymentPlansInput = {
@@ -7192,6 +7295,7 @@ export type TenantCreateWithoutPaymentPlansInput = {
7192
7295
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
7193
7296
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
7194
7297
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
7298
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
7195
7299
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
7196
7300
  };
7197
7301
  export type TenantUncheckedCreateWithoutPaymentPlansInput = {
@@ -7257,6 +7361,7 @@ export type TenantUncheckedCreateWithoutPaymentPlansInput = {
7257
7361
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
7258
7362
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
7259
7363
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
7364
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
7260
7365
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
7261
7366
  };
7262
7367
  export type TenantCreateOrConnectWithoutPaymentPlansInput = {
@@ -7335,6 +7440,7 @@ export type TenantUpdateWithoutPaymentPlansInput = {
7335
7440
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
7336
7441
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
7337
7442
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
7443
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
7338
7444
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
7339
7445
  };
7340
7446
  export type TenantUncheckedUpdateWithoutPaymentPlansInput = {
@@ -7400,6 +7506,7 @@ export type TenantUncheckedUpdateWithoutPaymentPlansInput = {
7400
7506
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
7401
7507
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
7402
7508
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
7509
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
7403
7510
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
7404
7511
  };
7405
7512
  export type TenantCreateWithoutPaymentMethodsInput = {
@@ -7465,6 +7572,7 @@ export type TenantCreateWithoutPaymentMethodsInput = {
7465
7572
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
7466
7573
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
7467
7574
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
7575
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
7468
7576
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
7469
7577
  };
7470
7578
  export type TenantUncheckedCreateWithoutPaymentMethodsInput = {
@@ -7530,6 +7638,7 @@ export type TenantUncheckedCreateWithoutPaymentMethodsInput = {
7530
7638
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
7531
7639
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
7532
7640
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
7641
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
7533
7642
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
7534
7643
  };
7535
7644
  export type TenantCreateOrConnectWithoutPaymentMethodsInput = {
@@ -7608,6 +7717,7 @@ export type TenantUpdateWithoutPaymentMethodsInput = {
7608
7717
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
7609
7718
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
7610
7719
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
7720
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
7611
7721
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
7612
7722
  };
7613
7723
  export type TenantUncheckedUpdateWithoutPaymentMethodsInput = {
@@ -7673,6 +7783,7 @@ export type TenantUncheckedUpdateWithoutPaymentMethodsInput = {
7673
7783
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
7674
7784
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
7675
7785
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
7786
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
7676
7787
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
7677
7788
  };
7678
7789
  export type TenantCreateWithoutPropertyPaymentMethodLinksInput = {
@@ -7738,6 +7849,7 @@ export type TenantCreateWithoutPropertyPaymentMethodLinksInput = {
7738
7849
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
7739
7850
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
7740
7851
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
7852
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
7741
7853
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
7742
7854
  };
7743
7855
  export type TenantUncheckedCreateWithoutPropertyPaymentMethodLinksInput = {
@@ -7803,6 +7915,7 @@ export type TenantUncheckedCreateWithoutPropertyPaymentMethodLinksInput = {
7803
7915
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
7804
7916
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
7805
7917
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
7918
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
7806
7919
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
7807
7920
  };
7808
7921
  export type TenantCreateOrConnectWithoutPropertyPaymentMethodLinksInput = {
@@ -7881,6 +7994,7 @@ export type TenantUpdateWithoutPropertyPaymentMethodLinksInput = {
7881
7994
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
7882
7995
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
7883
7996
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
7997
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
7884
7998
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
7885
7999
  };
7886
8000
  export type TenantUncheckedUpdateWithoutPropertyPaymentMethodLinksInput = {
@@ -7946,6 +8060,7 @@ export type TenantUncheckedUpdateWithoutPropertyPaymentMethodLinksInput = {
7946
8060
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
7947
8061
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
7948
8062
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
8063
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
7949
8064
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
7950
8065
  };
7951
8066
  export type TenantCreateWithoutPropertyPaymentMethodPhasesInput = {
@@ -8011,6 +8126,7 @@ export type TenantCreateWithoutPropertyPaymentMethodPhasesInput = {
8011
8126
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
8012
8127
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
8013
8128
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
8129
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
8014
8130
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
8015
8131
  };
8016
8132
  export type TenantUncheckedCreateWithoutPropertyPaymentMethodPhasesInput = {
@@ -8076,6 +8192,7 @@ export type TenantUncheckedCreateWithoutPropertyPaymentMethodPhasesInput = {
8076
8192
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
8077
8193
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
8078
8194
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
8195
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
8079
8196
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
8080
8197
  };
8081
8198
  export type TenantCreateOrConnectWithoutPropertyPaymentMethodPhasesInput = {
@@ -8154,6 +8271,7 @@ export type TenantUpdateWithoutPropertyPaymentMethodPhasesInput = {
8154
8271
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
8155
8272
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
8156
8273
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
8274
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
8157
8275
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
8158
8276
  };
8159
8277
  export type TenantUncheckedUpdateWithoutPropertyPaymentMethodPhasesInput = {
@@ -8219,6 +8337,7 @@ export type TenantUncheckedUpdateWithoutPropertyPaymentMethodPhasesInput = {
8219
8337
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
8220
8338
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
8221
8339
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
8340
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
8222
8341
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
8223
8342
  };
8224
8343
  export type TenantCreateWithoutPhaseEventAttachmentsInput = {
@@ -8284,6 +8403,7 @@ export type TenantCreateWithoutPhaseEventAttachmentsInput = {
8284
8403
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
8285
8404
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
8286
8405
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
8406
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
8287
8407
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
8288
8408
  };
8289
8409
  export type TenantUncheckedCreateWithoutPhaseEventAttachmentsInput = {
@@ -8349,6 +8469,7 @@ export type TenantUncheckedCreateWithoutPhaseEventAttachmentsInput = {
8349
8469
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
8350
8470
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
8351
8471
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
8472
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
8352
8473
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
8353
8474
  };
8354
8475
  export type TenantCreateOrConnectWithoutPhaseEventAttachmentsInput = {
@@ -8427,6 +8548,7 @@ export type TenantUpdateWithoutPhaseEventAttachmentsInput = {
8427
8548
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
8428
8549
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
8429
8550
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
8551
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
8430
8552
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
8431
8553
  };
8432
8554
  export type TenantUncheckedUpdateWithoutPhaseEventAttachmentsInput = {
@@ -8492,6 +8614,7 @@ export type TenantUncheckedUpdateWithoutPhaseEventAttachmentsInput = {
8492
8614
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
8493
8615
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
8494
8616
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
8617
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
8495
8618
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
8496
8619
  };
8497
8620
  export type TenantCreateWithoutPaymentMethodPhaseStepsInput = {
@@ -8557,6 +8680,7 @@ export type TenantCreateWithoutPaymentMethodPhaseStepsInput = {
8557
8680
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
8558
8681
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
8559
8682
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
8683
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
8560
8684
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
8561
8685
  };
8562
8686
  export type TenantUncheckedCreateWithoutPaymentMethodPhaseStepsInput = {
@@ -8622,6 +8746,7 @@ export type TenantUncheckedCreateWithoutPaymentMethodPhaseStepsInput = {
8622
8746
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
8623
8747
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
8624
8748
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
8749
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
8625
8750
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
8626
8751
  };
8627
8752
  export type TenantCreateOrConnectWithoutPaymentMethodPhaseStepsInput = {
@@ -8700,6 +8825,7 @@ export type TenantUpdateWithoutPaymentMethodPhaseStepsInput = {
8700
8825
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
8701
8826
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
8702
8827
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
8828
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
8703
8829
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
8704
8830
  };
8705
8831
  export type TenantUncheckedUpdateWithoutPaymentMethodPhaseStepsInput = {
@@ -8765,6 +8891,7 @@ export type TenantUncheckedUpdateWithoutPaymentMethodPhaseStepsInput = {
8765
8891
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
8766
8892
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
8767
8893
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
8894
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
8768
8895
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
8769
8896
  };
8770
8897
  export type TenantCreateWithoutStepEventAttachmentsInput = {
@@ -8830,6 +8957,7 @@ export type TenantCreateWithoutStepEventAttachmentsInput = {
8830
8957
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
8831
8958
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
8832
8959
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
8960
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
8833
8961
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
8834
8962
  };
8835
8963
  export type TenantUncheckedCreateWithoutStepEventAttachmentsInput = {
@@ -8895,6 +9023,7 @@ export type TenantUncheckedCreateWithoutStepEventAttachmentsInput = {
8895
9023
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
8896
9024
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
8897
9025
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
9026
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
8898
9027
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
8899
9028
  };
8900
9029
  export type TenantCreateOrConnectWithoutStepEventAttachmentsInput = {
@@ -8973,6 +9102,7 @@ export type TenantUpdateWithoutStepEventAttachmentsInput = {
8973
9102
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
8974
9103
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
8975
9104
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
9105
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
8976
9106
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
8977
9107
  };
8978
9108
  export type TenantUncheckedUpdateWithoutStepEventAttachmentsInput = {
@@ -9038,6 +9168,7 @@ export type TenantUncheckedUpdateWithoutStepEventAttachmentsInput = {
9038
9168
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
9039
9169
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
9040
9170
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
9171
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
9041
9172
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
9042
9173
  };
9043
9174
  export type TenantCreateWithoutPaymentMethodPhaseDocumentsInput = {
@@ -9103,6 +9234,7 @@ export type TenantCreateWithoutPaymentMethodPhaseDocumentsInput = {
9103
9234
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
9104
9235
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
9105
9236
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
9237
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
9106
9238
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
9107
9239
  };
9108
9240
  export type TenantUncheckedCreateWithoutPaymentMethodPhaseDocumentsInput = {
@@ -9168,6 +9300,7 @@ export type TenantUncheckedCreateWithoutPaymentMethodPhaseDocumentsInput = {
9168
9300
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
9169
9301
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
9170
9302
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
9303
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
9171
9304
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
9172
9305
  };
9173
9306
  export type TenantCreateOrConnectWithoutPaymentMethodPhaseDocumentsInput = {
@@ -9246,6 +9379,7 @@ export type TenantUpdateWithoutPaymentMethodPhaseDocumentsInput = {
9246
9379
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
9247
9380
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
9248
9381
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
9382
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
9249
9383
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
9250
9384
  };
9251
9385
  export type TenantUncheckedUpdateWithoutPaymentMethodPhaseDocumentsInput = {
@@ -9311,6 +9445,7 @@ export type TenantUncheckedUpdateWithoutPaymentMethodPhaseDocumentsInput = {
9311
9445
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
9312
9446
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
9313
9447
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
9448
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
9314
9449
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
9315
9450
  };
9316
9451
  export type TenantCreateWithoutPaymentMethodPhaseFieldsInput = {
@@ -9376,6 +9511,7 @@ export type TenantCreateWithoutPaymentMethodPhaseFieldsInput = {
9376
9511
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
9377
9512
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
9378
9513
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
9514
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
9379
9515
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
9380
9516
  };
9381
9517
  export type TenantUncheckedCreateWithoutPaymentMethodPhaseFieldsInput = {
@@ -9441,6 +9577,7 @@ export type TenantUncheckedCreateWithoutPaymentMethodPhaseFieldsInput = {
9441
9577
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
9442
9578
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
9443
9579
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
9580
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
9444
9581
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
9445
9582
  };
9446
9583
  export type TenantCreateOrConnectWithoutPaymentMethodPhaseFieldsInput = {
@@ -9519,6 +9656,7 @@ export type TenantUpdateWithoutPaymentMethodPhaseFieldsInput = {
9519
9656
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
9520
9657
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
9521
9658
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
9659
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
9522
9660
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
9523
9661
  };
9524
9662
  export type TenantUncheckedUpdateWithoutPaymentMethodPhaseFieldsInput = {
@@ -9584,6 +9722,7 @@ export type TenantUncheckedUpdateWithoutPaymentMethodPhaseFieldsInput = {
9584
9722
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
9585
9723
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
9586
9724
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
9725
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
9587
9726
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
9588
9727
  };
9589
9728
  export type TenantCreateWithoutApplicationsInput = {
@@ -9649,6 +9788,7 @@ export type TenantCreateWithoutApplicationsInput = {
9649
9788
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
9650
9789
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
9651
9790
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
9791
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
9652
9792
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
9653
9793
  };
9654
9794
  export type TenantUncheckedCreateWithoutApplicationsInput = {
@@ -9714,6 +9854,7 @@ export type TenantUncheckedCreateWithoutApplicationsInput = {
9714
9854
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
9715
9855
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
9716
9856
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
9857
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
9717
9858
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
9718
9859
  };
9719
9860
  export type TenantCreateOrConnectWithoutApplicationsInput = {
@@ -9792,6 +9933,7 @@ export type TenantUpdateWithoutApplicationsInput = {
9792
9933
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
9793
9934
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
9794
9935
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
9936
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
9795
9937
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
9796
9938
  };
9797
9939
  export type TenantUncheckedUpdateWithoutApplicationsInput = {
@@ -9857,6 +9999,7 @@ export type TenantUncheckedUpdateWithoutApplicationsInput = {
9857
9999
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
9858
10000
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
9859
10001
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
10002
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
9860
10003
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
9861
10004
  };
9862
10005
  export type TenantCreateWithoutContractRefundsInput = {
@@ -9922,6 +10065,7 @@ export type TenantCreateWithoutContractRefundsInput = {
9922
10065
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
9923
10066
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
9924
10067
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
10068
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
9925
10069
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
9926
10070
  };
9927
10071
  export type TenantUncheckedCreateWithoutContractRefundsInput = {
@@ -9987,6 +10131,7 @@ export type TenantUncheckedCreateWithoutContractRefundsInput = {
9987
10131
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
9988
10132
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
9989
10133
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
10134
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
9990
10135
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
9991
10136
  };
9992
10137
  export type TenantCreateOrConnectWithoutContractRefundsInput = {
@@ -10065,6 +10210,7 @@ export type TenantUpdateWithoutContractRefundsInput = {
10065
10210
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
10066
10211
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
10067
10212
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
10213
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
10068
10214
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
10069
10215
  };
10070
10216
  export type TenantUncheckedUpdateWithoutContractRefundsInput = {
@@ -10130,6 +10276,7 @@ export type TenantUncheckedUpdateWithoutContractRefundsInput = {
10130
10276
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
10131
10277
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
10132
10278
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
10279
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
10133
10280
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
10134
10281
  };
10135
10282
  export type TenantCreateWithoutApplicationPhasesInput = {
@@ -10195,6 +10342,7 @@ export type TenantCreateWithoutApplicationPhasesInput = {
10195
10342
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
10196
10343
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
10197
10344
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
10345
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
10198
10346
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
10199
10347
  };
10200
10348
  export type TenantUncheckedCreateWithoutApplicationPhasesInput = {
@@ -10260,6 +10408,7 @@ export type TenantUncheckedCreateWithoutApplicationPhasesInput = {
10260
10408
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
10261
10409
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
10262
10410
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
10411
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
10263
10412
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
10264
10413
  };
10265
10414
  export type TenantCreateOrConnectWithoutApplicationPhasesInput = {
@@ -10338,6 +10487,7 @@ export type TenantUpdateWithoutApplicationPhasesInput = {
10338
10487
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
10339
10488
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
10340
10489
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
10490
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
10341
10491
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
10342
10492
  };
10343
10493
  export type TenantUncheckedUpdateWithoutApplicationPhasesInput = {
@@ -10403,6 +10553,7 @@ export type TenantUncheckedUpdateWithoutApplicationPhasesInput = {
10403
10553
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
10404
10554
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
10405
10555
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
10556
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
10406
10557
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
10407
10558
  };
10408
10559
  export type TenantCreateWithoutQuestionnairePhasesInput = {
@@ -10468,6 +10619,7 @@ export type TenantCreateWithoutQuestionnairePhasesInput = {
10468
10619
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
10469
10620
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
10470
10621
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
10622
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
10471
10623
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
10472
10624
  };
10473
10625
  export type TenantUncheckedCreateWithoutQuestionnairePhasesInput = {
@@ -10533,6 +10685,7 @@ export type TenantUncheckedCreateWithoutQuestionnairePhasesInput = {
10533
10685
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
10534
10686
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
10535
10687
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
10688
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
10536
10689
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
10537
10690
  };
10538
10691
  export type TenantCreateOrConnectWithoutQuestionnairePhasesInput = {
@@ -10611,6 +10764,7 @@ export type TenantUpdateWithoutQuestionnairePhasesInput = {
10611
10764
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
10612
10765
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
10613
10766
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
10767
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
10614
10768
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
10615
10769
  };
10616
10770
  export type TenantUncheckedUpdateWithoutQuestionnairePhasesInput = {
@@ -10676,6 +10830,7 @@ export type TenantUncheckedUpdateWithoutQuestionnairePhasesInput = {
10676
10830
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
10677
10831
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
10678
10832
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
10833
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
10679
10834
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
10680
10835
  };
10681
10836
  export type TenantCreateWithoutDocumentationPhasesInput = {
@@ -10741,6 +10896,7 @@ export type TenantCreateWithoutDocumentationPhasesInput = {
10741
10896
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
10742
10897
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
10743
10898
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
10899
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
10744
10900
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
10745
10901
  };
10746
10902
  export type TenantUncheckedCreateWithoutDocumentationPhasesInput = {
@@ -10806,6 +10962,7 @@ export type TenantUncheckedCreateWithoutDocumentationPhasesInput = {
10806
10962
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
10807
10963
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
10808
10964
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
10965
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
10809
10966
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
10810
10967
  };
10811
10968
  export type TenantCreateOrConnectWithoutDocumentationPhasesInput = {
@@ -10884,6 +11041,7 @@ export type TenantUpdateWithoutDocumentationPhasesInput = {
10884
11041
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
10885
11042
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
10886
11043
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
11044
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
10887
11045
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
10888
11046
  };
10889
11047
  export type TenantUncheckedUpdateWithoutDocumentationPhasesInput = {
@@ -10949,6 +11107,7 @@ export type TenantUncheckedUpdateWithoutDocumentationPhasesInput = {
10949
11107
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
10950
11108
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
10951
11109
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
11110
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
10952
11111
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
10953
11112
  };
10954
11113
  export type TenantCreateWithoutPaymentPhasesInput = {
@@ -11014,6 +11173,7 @@ export type TenantCreateWithoutPaymentPhasesInput = {
11014
11173
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
11015
11174
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
11016
11175
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
11176
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
11017
11177
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
11018
11178
  };
11019
11179
  export type TenantUncheckedCreateWithoutPaymentPhasesInput = {
@@ -11079,6 +11239,7 @@ export type TenantUncheckedCreateWithoutPaymentPhasesInput = {
11079
11239
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
11080
11240
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
11081
11241
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
11242
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
11082
11243
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
11083
11244
  };
11084
11245
  export type TenantCreateOrConnectWithoutPaymentPhasesInput = {
@@ -11157,6 +11318,7 @@ export type TenantUpdateWithoutPaymentPhasesInput = {
11157
11318
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
11158
11319
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
11159
11320
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
11321
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
11160
11322
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
11161
11323
  };
11162
11324
  export type TenantUncheckedUpdateWithoutPaymentPhasesInput = {
@@ -11222,6 +11384,7 @@ export type TenantUncheckedUpdateWithoutPaymentPhasesInput = {
11222
11384
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
11223
11385
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
11224
11386
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
11387
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
11225
11388
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
11226
11389
  };
11227
11390
  export type TenantCreateWithoutQuestionnaireFieldsInput = {
@@ -11287,6 +11450,7 @@ export type TenantCreateWithoutQuestionnaireFieldsInput = {
11287
11450
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
11288
11451
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
11289
11452
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
11453
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
11290
11454
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
11291
11455
  };
11292
11456
  export type TenantUncheckedCreateWithoutQuestionnaireFieldsInput = {
@@ -11352,6 +11516,7 @@ export type TenantUncheckedCreateWithoutQuestionnaireFieldsInput = {
11352
11516
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
11353
11517
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
11354
11518
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
11519
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
11355
11520
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
11356
11521
  };
11357
11522
  export type TenantCreateOrConnectWithoutQuestionnaireFieldsInput = {
@@ -11430,6 +11595,7 @@ export type TenantUpdateWithoutQuestionnaireFieldsInput = {
11430
11595
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
11431
11596
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
11432
11597
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
11598
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
11433
11599
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
11434
11600
  };
11435
11601
  export type TenantUncheckedUpdateWithoutQuestionnaireFieldsInput = {
@@ -11495,6 +11661,7 @@ export type TenantUncheckedUpdateWithoutQuestionnaireFieldsInput = {
11495
11661
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
11496
11662
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
11497
11663
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
11664
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
11498
11665
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
11499
11666
  };
11500
11667
  export type TenantCreateWithoutApplicationEventsInput = {
@@ -11560,6 +11727,7 @@ export type TenantCreateWithoutApplicationEventsInput = {
11560
11727
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
11561
11728
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
11562
11729
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
11730
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
11563
11731
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
11564
11732
  };
11565
11733
  export type TenantUncheckedCreateWithoutApplicationEventsInput = {
@@ -11625,6 +11793,7 @@ export type TenantUncheckedCreateWithoutApplicationEventsInput = {
11625
11793
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
11626
11794
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
11627
11795
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
11796
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
11628
11797
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
11629
11798
  };
11630
11799
  export type TenantCreateOrConnectWithoutApplicationEventsInput = {
@@ -11703,6 +11872,7 @@ export type TenantUpdateWithoutApplicationEventsInput = {
11703
11872
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
11704
11873
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
11705
11874
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
11875
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
11706
11876
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
11707
11877
  };
11708
11878
  export type TenantUncheckedUpdateWithoutApplicationEventsInput = {
@@ -11768,6 +11938,7 @@ export type TenantUncheckedUpdateWithoutApplicationEventsInput = {
11768
11938
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
11769
11939
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
11770
11940
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
11941
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
11771
11942
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
11772
11943
  };
11773
11944
  export type TenantCreateWithoutDocumentationStepsInput = {
@@ -11833,6 +12004,7 @@ export type TenantCreateWithoutDocumentationStepsInput = {
11833
12004
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
11834
12005
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
11835
12006
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
12007
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
11836
12008
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
11837
12009
  };
11838
12010
  export type TenantUncheckedCreateWithoutDocumentationStepsInput = {
@@ -11898,6 +12070,7 @@ export type TenantUncheckedCreateWithoutDocumentationStepsInput = {
11898
12070
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
11899
12071
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
11900
12072
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
12073
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
11901
12074
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
11902
12075
  };
11903
12076
  export type TenantCreateOrConnectWithoutDocumentationStepsInput = {
@@ -11976,6 +12149,7 @@ export type TenantUpdateWithoutDocumentationStepsInput = {
11976
12149
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
11977
12150
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
11978
12151
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
12152
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
11979
12153
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
11980
12154
  };
11981
12155
  export type TenantUncheckedUpdateWithoutDocumentationStepsInput = {
@@ -12041,6 +12215,7 @@ export type TenantUncheckedUpdateWithoutDocumentationStepsInput = {
12041
12215
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
12042
12216
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
12043
12217
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
12218
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
12044
12219
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
12045
12220
  };
12046
12221
  export type TenantCreateWithoutDocumentationStepDocumentsInput = {
@@ -12106,6 +12281,7 @@ export type TenantCreateWithoutDocumentationStepDocumentsInput = {
12106
12281
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
12107
12282
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
12108
12283
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
12284
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
12109
12285
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
12110
12286
  };
12111
12287
  export type TenantUncheckedCreateWithoutDocumentationStepDocumentsInput = {
@@ -12171,6 +12347,7 @@ export type TenantUncheckedCreateWithoutDocumentationStepDocumentsInput = {
12171
12347
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
12172
12348
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
12173
12349
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
12350
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
12174
12351
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
12175
12352
  };
12176
12353
  export type TenantCreateOrConnectWithoutDocumentationStepDocumentsInput = {
@@ -12249,6 +12426,7 @@ export type TenantUpdateWithoutDocumentationStepDocumentsInput = {
12249
12426
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
12250
12427
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
12251
12428
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
12429
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
12252
12430
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
12253
12431
  };
12254
12432
  export type TenantUncheckedUpdateWithoutDocumentationStepDocumentsInput = {
@@ -12314,6 +12492,7 @@ export type TenantUncheckedUpdateWithoutDocumentationStepDocumentsInput = {
12314
12492
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
12315
12493
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
12316
12494
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
12495
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
12317
12496
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
12318
12497
  };
12319
12498
  export type TenantCreateWithoutDocumentationStepApprovalsInput = {
@@ -12379,6 +12558,7 @@ export type TenantCreateWithoutDocumentationStepApprovalsInput = {
12379
12558
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
12380
12559
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
12381
12560
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
12561
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
12382
12562
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
12383
12563
  };
12384
12564
  export type TenantUncheckedCreateWithoutDocumentationStepApprovalsInput = {
@@ -12444,6 +12624,7 @@ export type TenantUncheckedCreateWithoutDocumentationStepApprovalsInput = {
12444
12624
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
12445
12625
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
12446
12626
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
12627
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
12447
12628
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
12448
12629
  };
12449
12630
  export type TenantCreateOrConnectWithoutDocumentationStepApprovalsInput = {
@@ -12522,6 +12703,7 @@ export type TenantUpdateWithoutDocumentationStepApprovalsInput = {
12522
12703
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
12523
12704
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
12524
12705
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
12706
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
12525
12707
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
12526
12708
  };
12527
12709
  export type TenantUncheckedUpdateWithoutDocumentationStepApprovalsInput = {
@@ -12587,6 +12769,7 @@ export type TenantUncheckedUpdateWithoutDocumentationStepApprovalsInput = {
12587
12769
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
12588
12770
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
12589
12771
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
12772
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
12590
12773
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
12591
12774
  };
12592
12775
  export type TenantCreateWithoutPaymentInstallmentsInput = {
@@ -12652,6 +12835,7 @@ export type TenantCreateWithoutPaymentInstallmentsInput = {
12652
12835
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
12653
12836
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
12654
12837
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
12838
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
12655
12839
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
12656
12840
  };
12657
12841
  export type TenantUncheckedCreateWithoutPaymentInstallmentsInput = {
@@ -12717,6 +12901,7 @@ export type TenantUncheckedCreateWithoutPaymentInstallmentsInput = {
12717
12901
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
12718
12902
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
12719
12903
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
12904
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
12720
12905
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
12721
12906
  };
12722
12907
  export type TenantCreateOrConnectWithoutPaymentInstallmentsInput = {
@@ -12795,6 +12980,7 @@ export type TenantUpdateWithoutPaymentInstallmentsInput = {
12795
12980
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
12796
12981
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
12797
12982
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
12983
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
12798
12984
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
12799
12985
  };
12800
12986
  export type TenantUncheckedUpdateWithoutPaymentInstallmentsInput = {
@@ -12860,6 +13046,7 @@ export type TenantUncheckedUpdateWithoutPaymentInstallmentsInput = {
12860
13046
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
12861
13047
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
12862
13048
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
13049
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
12863
13050
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
12864
13051
  };
12865
13052
  export type TenantCreateWithoutApplicationPaymentsInput = {
@@ -12925,6 +13112,7 @@ export type TenantCreateWithoutApplicationPaymentsInput = {
12925
13112
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
12926
13113
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
12927
13114
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
13115
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
12928
13116
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
12929
13117
  };
12930
13118
  export type TenantUncheckedCreateWithoutApplicationPaymentsInput = {
@@ -12990,6 +13178,7 @@ export type TenantUncheckedCreateWithoutApplicationPaymentsInput = {
12990
13178
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
12991
13179
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
12992
13180
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
13181
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
12993
13182
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
12994
13183
  };
12995
13184
  export type TenantCreateOrConnectWithoutApplicationPaymentsInput = {
@@ -13068,6 +13257,7 @@ export type TenantUpdateWithoutApplicationPaymentsInput = {
13068
13257
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
13069
13258
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
13070
13259
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
13260
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
13071
13261
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
13072
13262
  };
13073
13263
  export type TenantUncheckedUpdateWithoutApplicationPaymentsInput = {
@@ -13133,6 +13323,7 @@ export type TenantUncheckedUpdateWithoutApplicationPaymentsInput = {
13133
13323
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
13134
13324
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
13135
13325
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
13326
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
13136
13327
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
13137
13328
  };
13138
13329
  export type TenantCreateWithoutApplicationDocumentsInput = {
@@ -13198,6 +13389,7 @@ export type TenantCreateWithoutApplicationDocumentsInput = {
13198
13389
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
13199
13390
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
13200
13391
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
13392
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
13201
13393
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
13202
13394
  };
13203
13395
  export type TenantUncheckedCreateWithoutApplicationDocumentsInput = {
@@ -13263,6 +13455,7 @@ export type TenantUncheckedCreateWithoutApplicationDocumentsInput = {
13263
13455
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
13264
13456
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
13265
13457
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
13458
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
13266
13459
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
13267
13460
  };
13268
13461
  export type TenantCreateOrConnectWithoutApplicationDocumentsInput = {
@@ -13341,6 +13534,7 @@ export type TenantUpdateWithoutApplicationDocumentsInput = {
13341
13534
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
13342
13535
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
13343
13536
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
13537
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
13344
13538
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
13345
13539
  };
13346
13540
  export type TenantUncheckedUpdateWithoutApplicationDocumentsInput = {
@@ -13406,6 +13600,284 @@ export type TenantUncheckedUpdateWithoutApplicationDocumentsInput = {
13406
13600
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
13407
13601
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
13408
13602
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
13603
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
13604
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
13605
+ };
13606
+ export type TenantCreateWithoutDocumentReviewsInput = {
13607
+ id?: string;
13608
+ name: string;
13609
+ subdomain: string;
13610
+ isActive?: boolean;
13611
+ createdAt?: Date | string;
13612
+ updatedAt?: Date | string;
13613
+ users?: Prisma.UserCreateNestedManyWithoutTenantInput;
13614
+ properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
13615
+ paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
13616
+ documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
13617
+ paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
13618
+ applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
13619
+ roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
13620
+ permissions?: Prisma.PermissionCreateNestedManyWithoutTenantInput;
13621
+ memberships?: Prisma.TenantMembershipCreateNestedManyWithoutTenantInput;
13622
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutTenantInput;
13623
+ documentRequirementRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutTenantInput;
13624
+ contractTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutTenantInput;
13625
+ documentTemplates?: Prisma.DocumentTemplateCreateNestedManyWithoutTenantInput;
13626
+ offerLetters?: Prisma.OfferLetterCreateNestedManyWithoutTenantInput;
13627
+ apiKeys?: Prisma.ApiKeyCreateNestedManyWithoutTenantInput;
13628
+ eventChannels?: Prisma.EventChannelCreateNestedManyWithoutTenantInput;
13629
+ eventTypes?: Prisma.EventTypeCreateNestedManyWithoutTenantInput;
13630
+ eventHandlers?: Prisma.EventHandlerCreateNestedManyWithoutTenantInput;
13631
+ workflowEvents?: Prisma.WorkflowEventCreateNestedManyWithoutTenantInput;
13632
+ propertyTransferRequests?: Prisma.PropertyTransferRequestCreateNestedManyWithoutTenantInput;
13633
+ approvalRequests?: Prisma.ApprovalRequestCreateNestedManyWithoutTenantInput;
13634
+ contractRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutTenantInput;
13635
+ propertyPaymentMethodLinks?: Prisma.PropertyPaymentMethodLinkCreateNestedManyWithoutTenantInput;
13636
+ propertyPaymentMethodPhases?: Prisma.PropertyPaymentMethodPhaseCreateNestedManyWithoutTenantInput;
13637
+ phaseEventAttachments?: Prisma.PhaseEventAttachmentCreateNestedManyWithoutTenantInput;
13638
+ paymentMethodPhaseSteps?: Prisma.PaymentMethodPhaseStepCreateNestedManyWithoutTenantInput;
13639
+ stepEventAttachments?: Prisma.StepEventAttachmentCreateNestedManyWithoutTenantInput;
13640
+ paymentMethodPhaseDocuments?: Prisma.PaymentMethodPhaseDocumentCreateNestedManyWithoutTenantInput;
13641
+ paymentMethodPhaseFields?: Prisma.PaymentMethodPhaseFieldCreateNestedManyWithoutTenantInput;
13642
+ applicationPhases?: Prisma.ApplicationPhaseCreateNestedManyWithoutTenantInput;
13643
+ questionnairePhases?: Prisma.QuestionnairePhaseCreateNestedManyWithoutTenantInput;
13644
+ documentationPhases?: Prisma.DocumentationPhaseCreateNestedManyWithoutTenantInput;
13645
+ paymentPhases?: Prisma.PaymentPhaseCreateNestedManyWithoutTenantInput;
13646
+ questionnaireFields?: Prisma.QuestionnaireFieldCreateNestedManyWithoutTenantInput;
13647
+ applicationEvents?: Prisma.ApplicationEventCreateNestedManyWithoutTenantInput;
13648
+ documentationSteps?: Prisma.DocumentationStepCreateNestedManyWithoutTenantInput;
13649
+ documentationStepDocuments?: Prisma.DocumentationStepDocumentCreateNestedManyWithoutTenantInput;
13650
+ documentationStepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutTenantInput;
13651
+ paymentInstallments?: Prisma.PaymentInstallmentCreateNestedManyWithoutTenantInput;
13652
+ applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutTenantInput;
13653
+ applicationDocuments?: Prisma.ApplicationDocumentCreateNestedManyWithoutTenantInput;
13654
+ propertyMedia?: Prisma.PropertyMediaCreateNestedManyWithoutTenantInput;
13655
+ propertyDocuments?: Prisma.PropertyDocumentCreateNestedManyWithoutTenantInput;
13656
+ propertyVariants?: Prisma.PropertyVariantCreateNestedManyWithoutTenantInput;
13657
+ propertyVariantAmenities?: Prisma.PropertyVariantAmenityCreateNestedManyWithoutTenantInput;
13658
+ propertyVariantMedia?: Prisma.PropertyVariantMediaCreateNestedManyWithoutTenantInput;
13659
+ propertyUnits?: Prisma.PropertyUnitCreateNestedManyWithoutTenantInput;
13660
+ propertyAmenities?: Prisma.PropertyAmenityCreateNestedManyWithoutTenantInput;
13661
+ eventHandlerExecutions?: Prisma.EventHandlerExecutionCreateNestedManyWithoutTenantInput;
13662
+ amenities?: Prisma.AmenityCreateNestedManyWithoutTenantInput;
13663
+ socials?: Prisma.SocialCreateNestedManyWithoutTenantInput;
13664
+ wallets?: Prisma.WalletCreateNestedManyWithoutTenantInput;
13665
+ transactions?: Prisma.TransactionCreateNestedManyWithoutTenantInput;
13666
+ settings?: Prisma.SettingsCreateNestedManyWithoutTenantInput;
13667
+ domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
13668
+ workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
13669
+ questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
13670
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
13671
+ };
13672
+ export type TenantUncheckedCreateWithoutDocumentReviewsInput = {
13673
+ id?: string;
13674
+ name: string;
13675
+ subdomain: string;
13676
+ isActive?: boolean;
13677
+ createdAt?: Date | string;
13678
+ updatedAt?: Date | string;
13679
+ users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
13680
+ properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
13681
+ paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
13682
+ documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
13683
+ paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
13684
+ applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
13685
+ roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
13686
+ permissions?: Prisma.PermissionUncheckedCreateNestedManyWithoutTenantInput;
13687
+ memberships?: Prisma.TenantMembershipUncheckedCreateNestedManyWithoutTenantInput;
13688
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutTenantInput;
13689
+ documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutTenantInput;
13690
+ contractTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutTenantInput;
13691
+ documentTemplates?: Prisma.DocumentTemplateUncheckedCreateNestedManyWithoutTenantInput;
13692
+ offerLetters?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutTenantInput;
13693
+ apiKeys?: Prisma.ApiKeyUncheckedCreateNestedManyWithoutTenantInput;
13694
+ eventChannels?: Prisma.EventChannelUncheckedCreateNestedManyWithoutTenantInput;
13695
+ eventTypes?: Prisma.EventTypeUncheckedCreateNestedManyWithoutTenantInput;
13696
+ eventHandlers?: Prisma.EventHandlerUncheckedCreateNestedManyWithoutTenantInput;
13697
+ workflowEvents?: Prisma.WorkflowEventUncheckedCreateNestedManyWithoutTenantInput;
13698
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutTenantInput;
13699
+ approvalRequests?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutTenantInput;
13700
+ contractRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutTenantInput;
13701
+ propertyPaymentMethodLinks?: Prisma.PropertyPaymentMethodLinkUncheckedCreateNestedManyWithoutTenantInput;
13702
+ propertyPaymentMethodPhases?: Prisma.PropertyPaymentMethodPhaseUncheckedCreateNestedManyWithoutTenantInput;
13703
+ phaseEventAttachments?: Prisma.PhaseEventAttachmentUncheckedCreateNestedManyWithoutTenantInput;
13704
+ paymentMethodPhaseSteps?: Prisma.PaymentMethodPhaseStepUncheckedCreateNestedManyWithoutTenantInput;
13705
+ stepEventAttachments?: Prisma.StepEventAttachmentUncheckedCreateNestedManyWithoutTenantInput;
13706
+ paymentMethodPhaseDocuments?: Prisma.PaymentMethodPhaseDocumentUncheckedCreateNestedManyWithoutTenantInput;
13707
+ paymentMethodPhaseFields?: Prisma.PaymentMethodPhaseFieldUncheckedCreateNestedManyWithoutTenantInput;
13708
+ applicationPhases?: Prisma.ApplicationPhaseUncheckedCreateNestedManyWithoutTenantInput;
13709
+ questionnairePhases?: Prisma.QuestionnairePhaseUncheckedCreateNestedManyWithoutTenantInput;
13710
+ documentationPhases?: Prisma.DocumentationPhaseUncheckedCreateNestedManyWithoutTenantInput;
13711
+ paymentPhases?: Prisma.PaymentPhaseUncheckedCreateNestedManyWithoutTenantInput;
13712
+ questionnaireFields?: Prisma.QuestionnaireFieldUncheckedCreateNestedManyWithoutTenantInput;
13713
+ applicationEvents?: Prisma.ApplicationEventUncheckedCreateNestedManyWithoutTenantInput;
13714
+ documentationSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutTenantInput;
13715
+ documentationStepDocuments?: Prisma.DocumentationStepDocumentUncheckedCreateNestedManyWithoutTenantInput;
13716
+ documentationStepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutTenantInput;
13717
+ paymentInstallments?: Prisma.PaymentInstallmentUncheckedCreateNestedManyWithoutTenantInput;
13718
+ applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutTenantInput;
13719
+ applicationDocuments?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutTenantInput;
13720
+ propertyMedia?: Prisma.PropertyMediaUncheckedCreateNestedManyWithoutTenantInput;
13721
+ propertyDocuments?: Prisma.PropertyDocumentUncheckedCreateNestedManyWithoutTenantInput;
13722
+ propertyVariants?: Prisma.PropertyVariantUncheckedCreateNestedManyWithoutTenantInput;
13723
+ propertyVariantAmenities?: Prisma.PropertyVariantAmenityUncheckedCreateNestedManyWithoutTenantInput;
13724
+ propertyVariantMedia?: Prisma.PropertyVariantMediaUncheckedCreateNestedManyWithoutTenantInput;
13725
+ propertyUnits?: Prisma.PropertyUnitUncheckedCreateNestedManyWithoutTenantInput;
13726
+ propertyAmenities?: Prisma.PropertyAmenityUncheckedCreateNestedManyWithoutTenantInput;
13727
+ eventHandlerExecutions?: Prisma.EventHandlerExecutionUncheckedCreateNestedManyWithoutTenantInput;
13728
+ amenities?: Prisma.AmenityUncheckedCreateNestedManyWithoutTenantInput;
13729
+ socials?: Prisma.SocialUncheckedCreateNestedManyWithoutTenantInput;
13730
+ wallets?: Prisma.WalletUncheckedCreateNestedManyWithoutTenantInput;
13731
+ transactions?: Prisma.TransactionUncheckedCreateNestedManyWithoutTenantInput;
13732
+ settings?: Prisma.SettingsUncheckedCreateNestedManyWithoutTenantInput;
13733
+ domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
13734
+ workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
13735
+ questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
13736
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
13737
+ };
13738
+ export type TenantCreateOrConnectWithoutDocumentReviewsInput = {
13739
+ where: Prisma.TenantWhereUniqueInput;
13740
+ create: Prisma.XOR<Prisma.TenantCreateWithoutDocumentReviewsInput, Prisma.TenantUncheckedCreateWithoutDocumentReviewsInput>;
13741
+ };
13742
+ export type TenantUpsertWithoutDocumentReviewsInput = {
13743
+ update: Prisma.XOR<Prisma.TenantUpdateWithoutDocumentReviewsInput, Prisma.TenantUncheckedUpdateWithoutDocumentReviewsInput>;
13744
+ create: Prisma.XOR<Prisma.TenantCreateWithoutDocumentReviewsInput, Prisma.TenantUncheckedCreateWithoutDocumentReviewsInput>;
13745
+ where?: Prisma.TenantWhereInput;
13746
+ };
13747
+ export type TenantUpdateToOneWithWhereWithoutDocumentReviewsInput = {
13748
+ where?: Prisma.TenantWhereInput;
13749
+ data: Prisma.XOR<Prisma.TenantUpdateWithoutDocumentReviewsInput, Prisma.TenantUncheckedUpdateWithoutDocumentReviewsInput>;
13750
+ };
13751
+ export type TenantUpdateWithoutDocumentReviewsInput = {
13752
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
13753
+ name?: Prisma.StringFieldUpdateOperationsInput | string;
13754
+ subdomain?: Prisma.StringFieldUpdateOperationsInput | string;
13755
+ isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
13756
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
13757
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
13758
+ users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
13759
+ properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
13760
+ paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
13761
+ documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
13762
+ paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
13763
+ applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
13764
+ roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
13765
+ permissions?: Prisma.PermissionUpdateManyWithoutTenantNestedInput;
13766
+ memberships?: Prisma.TenantMembershipUpdateManyWithoutTenantNestedInput;
13767
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutTenantNestedInput;
13768
+ documentRequirementRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutTenantNestedInput;
13769
+ contractTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutTenantNestedInput;
13770
+ documentTemplates?: Prisma.DocumentTemplateUpdateManyWithoutTenantNestedInput;
13771
+ offerLetters?: Prisma.OfferLetterUpdateManyWithoutTenantNestedInput;
13772
+ apiKeys?: Prisma.ApiKeyUpdateManyWithoutTenantNestedInput;
13773
+ eventChannels?: Prisma.EventChannelUpdateManyWithoutTenantNestedInput;
13774
+ eventTypes?: Prisma.EventTypeUpdateManyWithoutTenantNestedInput;
13775
+ eventHandlers?: Prisma.EventHandlerUpdateManyWithoutTenantNestedInput;
13776
+ workflowEvents?: Prisma.WorkflowEventUpdateManyWithoutTenantNestedInput;
13777
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUpdateManyWithoutTenantNestedInput;
13778
+ approvalRequests?: Prisma.ApprovalRequestUpdateManyWithoutTenantNestedInput;
13779
+ contractRefunds?: Prisma.ApplicationRefundUpdateManyWithoutTenantNestedInput;
13780
+ propertyPaymentMethodLinks?: Prisma.PropertyPaymentMethodLinkUpdateManyWithoutTenantNestedInput;
13781
+ propertyPaymentMethodPhases?: Prisma.PropertyPaymentMethodPhaseUpdateManyWithoutTenantNestedInput;
13782
+ phaseEventAttachments?: Prisma.PhaseEventAttachmentUpdateManyWithoutTenantNestedInput;
13783
+ paymentMethodPhaseSteps?: Prisma.PaymentMethodPhaseStepUpdateManyWithoutTenantNestedInput;
13784
+ stepEventAttachments?: Prisma.StepEventAttachmentUpdateManyWithoutTenantNestedInput;
13785
+ paymentMethodPhaseDocuments?: Prisma.PaymentMethodPhaseDocumentUpdateManyWithoutTenantNestedInput;
13786
+ paymentMethodPhaseFields?: Prisma.PaymentMethodPhaseFieldUpdateManyWithoutTenantNestedInput;
13787
+ applicationPhases?: Prisma.ApplicationPhaseUpdateManyWithoutTenantNestedInput;
13788
+ questionnairePhases?: Prisma.QuestionnairePhaseUpdateManyWithoutTenantNestedInput;
13789
+ documentationPhases?: Prisma.DocumentationPhaseUpdateManyWithoutTenantNestedInput;
13790
+ paymentPhases?: Prisma.PaymentPhaseUpdateManyWithoutTenantNestedInput;
13791
+ questionnaireFields?: Prisma.QuestionnaireFieldUpdateManyWithoutTenantNestedInput;
13792
+ applicationEvents?: Prisma.ApplicationEventUpdateManyWithoutTenantNestedInput;
13793
+ documentationSteps?: Prisma.DocumentationStepUpdateManyWithoutTenantNestedInput;
13794
+ documentationStepDocuments?: Prisma.DocumentationStepDocumentUpdateManyWithoutTenantNestedInput;
13795
+ documentationStepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutTenantNestedInput;
13796
+ paymentInstallments?: Prisma.PaymentInstallmentUpdateManyWithoutTenantNestedInput;
13797
+ applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutTenantNestedInput;
13798
+ applicationDocuments?: Prisma.ApplicationDocumentUpdateManyWithoutTenantNestedInput;
13799
+ propertyMedia?: Prisma.PropertyMediaUpdateManyWithoutTenantNestedInput;
13800
+ propertyDocuments?: Prisma.PropertyDocumentUpdateManyWithoutTenantNestedInput;
13801
+ propertyVariants?: Prisma.PropertyVariantUpdateManyWithoutTenantNestedInput;
13802
+ propertyVariantAmenities?: Prisma.PropertyVariantAmenityUpdateManyWithoutTenantNestedInput;
13803
+ propertyVariantMedia?: Prisma.PropertyVariantMediaUpdateManyWithoutTenantNestedInput;
13804
+ propertyUnits?: Prisma.PropertyUnitUpdateManyWithoutTenantNestedInput;
13805
+ propertyAmenities?: Prisma.PropertyAmenityUpdateManyWithoutTenantNestedInput;
13806
+ eventHandlerExecutions?: Prisma.EventHandlerExecutionUpdateManyWithoutTenantNestedInput;
13807
+ amenities?: Prisma.AmenityUpdateManyWithoutTenantNestedInput;
13808
+ socials?: Prisma.SocialUpdateManyWithoutTenantNestedInput;
13809
+ wallets?: Prisma.WalletUpdateManyWithoutTenantNestedInput;
13810
+ transactions?: Prisma.TransactionUpdateManyWithoutTenantNestedInput;
13811
+ settings?: Prisma.SettingsUpdateManyWithoutTenantNestedInput;
13812
+ domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
13813
+ workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
13814
+ questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
13815
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
13816
+ };
13817
+ export type TenantUncheckedUpdateWithoutDocumentReviewsInput = {
13818
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
13819
+ name?: Prisma.StringFieldUpdateOperationsInput | string;
13820
+ subdomain?: Prisma.StringFieldUpdateOperationsInput | string;
13821
+ isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
13822
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
13823
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
13824
+ users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
13825
+ properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
13826
+ paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
13827
+ documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
13828
+ paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
13829
+ applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
13830
+ roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
13831
+ permissions?: Prisma.PermissionUncheckedUpdateManyWithoutTenantNestedInput;
13832
+ memberships?: Prisma.TenantMembershipUncheckedUpdateManyWithoutTenantNestedInput;
13833
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutTenantNestedInput;
13834
+ documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutTenantNestedInput;
13835
+ contractTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutTenantNestedInput;
13836
+ documentTemplates?: Prisma.DocumentTemplateUncheckedUpdateManyWithoutTenantNestedInput;
13837
+ offerLetters?: Prisma.OfferLetterUncheckedUpdateManyWithoutTenantNestedInput;
13838
+ apiKeys?: Prisma.ApiKeyUncheckedUpdateManyWithoutTenantNestedInput;
13839
+ eventChannels?: Prisma.EventChannelUncheckedUpdateManyWithoutTenantNestedInput;
13840
+ eventTypes?: Prisma.EventTypeUncheckedUpdateManyWithoutTenantNestedInput;
13841
+ eventHandlers?: Prisma.EventHandlerUncheckedUpdateManyWithoutTenantNestedInput;
13842
+ workflowEvents?: Prisma.WorkflowEventUncheckedUpdateManyWithoutTenantNestedInput;
13843
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutTenantNestedInput;
13844
+ approvalRequests?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutTenantNestedInput;
13845
+ contractRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutTenantNestedInput;
13846
+ propertyPaymentMethodLinks?: Prisma.PropertyPaymentMethodLinkUncheckedUpdateManyWithoutTenantNestedInput;
13847
+ propertyPaymentMethodPhases?: Prisma.PropertyPaymentMethodPhaseUncheckedUpdateManyWithoutTenantNestedInput;
13848
+ phaseEventAttachments?: Prisma.PhaseEventAttachmentUncheckedUpdateManyWithoutTenantNestedInput;
13849
+ paymentMethodPhaseSteps?: Prisma.PaymentMethodPhaseStepUncheckedUpdateManyWithoutTenantNestedInput;
13850
+ stepEventAttachments?: Prisma.StepEventAttachmentUncheckedUpdateManyWithoutTenantNestedInput;
13851
+ paymentMethodPhaseDocuments?: Prisma.PaymentMethodPhaseDocumentUncheckedUpdateManyWithoutTenantNestedInput;
13852
+ paymentMethodPhaseFields?: Prisma.PaymentMethodPhaseFieldUncheckedUpdateManyWithoutTenantNestedInput;
13853
+ applicationPhases?: Prisma.ApplicationPhaseUncheckedUpdateManyWithoutTenantNestedInput;
13854
+ questionnairePhases?: Prisma.QuestionnairePhaseUncheckedUpdateManyWithoutTenantNestedInput;
13855
+ documentationPhases?: Prisma.DocumentationPhaseUncheckedUpdateManyWithoutTenantNestedInput;
13856
+ paymentPhases?: Prisma.PaymentPhaseUncheckedUpdateManyWithoutTenantNestedInput;
13857
+ questionnaireFields?: Prisma.QuestionnaireFieldUncheckedUpdateManyWithoutTenantNestedInput;
13858
+ applicationEvents?: Prisma.ApplicationEventUncheckedUpdateManyWithoutTenantNestedInput;
13859
+ documentationSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutTenantNestedInput;
13860
+ documentationStepDocuments?: Prisma.DocumentationStepDocumentUncheckedUpdateManyWithoutTenantNestedInput;
13861
+ documentationStepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutTenantNestedInput;
13862
+ paymentInstallments?: Prisma.PaymentInstallmentUncheckedUpdateManyWithoutTenantNestedInput;
13863
+ applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutTenantNestedInput;
13864
+ applicationDocuments?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutTenantNestedInput;
13865
+ propertyMedia?: Prisma.PropertyMediaUncheckedUpdateManyWithoutTenantNestedInput;
13866
+ propertyDocuments?: Prisma.PropertyDocumentUncheckedUpdateManyWithoutTenantNestedInput;
13867
+ propertyVariants?: Prisma.PropertyVariantUncheckedUpdateManyWithoutTenantNestedInput;
13868
+ propertyVariantAmenities?: Prisma.PropertyVariantAmenityUncheckedUpdateManyWithoutTenantNestedInput;
13869
+ propertyVariantMedia?: Prisma.PropertyVariantMediaUncheckedUpdateManyWithoutTenantNestedInput;
13870
+ propertyUnits?: Prisma.PropertyUnitUncheckedUpdateManyWithoutTenantNestedInput;
13871
+ propertyAmenities?: Prisma.PropertyAmenityUncheckedUpdateManyWithoutTenantNestedInput;
13872
+ eventHandlerExecutions?: Prisma.EventHandlerExecutionUncheckedUpdateManyWithoutTenantNestedInput;
13873
+ amenities?: Prisma.AmenityUncheckedUpdateManyWithoutTenantNestedInput;
13874
+ socials?: Prisma.SocialUncheckedUpdateManyWithoutTenantNestedInput;
13875
+ wallets?: Prisma.WalletUncheckedUpdateManyWithoutTenantNestedInput;
13876
+ transactions?: Prisma.TransactionUncheckedUpdateManyWithoutTenantNestedInput;
13877
+ settings?: Prisma.SettingsUncheckedUpdateManyWithoutTenantNestedInput;
13878
+ domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
13879
+ workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
13880
+ questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
13409
13881
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
13410
13882
  };
13411
13883
  export type TenantCreateWithoutDocumentTemplatesInput = {
@@ -13471,6 +13943,7 @@ export type TenantCreateWithoutDocumentTemplatesInput = {
13471
13943
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
13472
13944
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
13473
13945
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
13946
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
13474
13947
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
13475
13948
  };
13476
13949
  export type TenantUncheckedCreateWithoutDocumentTemplatesInput = {
@@ -13536,6 +14009,7 @@ export type TenantUncheckedCreateWithoutDocumentTemplatesInput = {
13536
14009
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
13537
14010
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
13538
14011
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
14012
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
13539
14013
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
13540
14014
  };
13541
14015
  export type TenantCreateOrConnectWithoutDocumentTemplatesInput = {
@@ -13614,6 +14088,7 @@ export type TenantUpdateWithoutDocumentTemplatesInput = {
13614
14088
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
13615
14089
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
13616
14090
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
14091
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
13617
14092
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
13618
14093
  };
13619
14094
  export type TenantUncheckedUpdateWithoutDocumentTemplatesInput = {
@@ -13679,6 +14154,7 @@ export type TenantUncheckedUpdateWithoutDocumentTemplatesInput = {
13679
14154
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
13680
14155
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
13681
14156
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
14157
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
13682
14158
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
13683
14159
  };
13684
14160
  export type TenantCreateWithoutOfferLettersInput = {
@@ -13744,6 +14220,7 @@ export type TenantCreateWithoutOfferLettersInput = {
13744
14220
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
13745
14221
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
13746
14222
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
14223
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
13747
14224
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
13748
14225
  };
13749
14226
  export type TenantUncheckedCreateWithoutOfferLettersInput = {
@@ -13809,6 +14286,7 @@ export type TenantUncheckedCreateWithoutOfferLettersInput = {
13809
14286
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
13810
14287
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
13811
14288
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
14289
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
13812
14290
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
13813
14291
  };
13814
14292
  export type TenantCreateOrConnectWithoutOfferLettersInput = {
@@ -13887,6 +14365,7 @@ export type TenantUpdateWithoutOfferLettersInput = {
13887
14365
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
13888
14366
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
13889
14367
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
14368
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
13890
14369
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
13891
14370
  };
13892
14371
  export type TenantUncheckedUpdateWithoutOfferLettersInput = {
@@ -13952,6 +14431,7 @@ export type TenantUncheckedUpdateWithoutOfferLettersInput = {
13952
14431
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
13953
14432
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
13954
14433
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
14434
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
13955
14435
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
13956
14436
  };
13957
14437
  export type TenantCreateWithoutContractTerminationsInput = {
@@ -14017,6 +14497,7 @@ export type TenantCreateWithoutContractTerminationsInput = {
14017
14497
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
14018
14498
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
14019
14499
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
14500
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
14020
14501
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
14021
14502
  };
14022
14503
  export type TenantUncheckedCreateWithoutContractTerminationsInput = {
@@ -14082,6 +14563,7 @@ export type TenantUncheckedCreateWithoutContractTerminationsInput = {
14082
14563
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
14083
14564
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
14084
14565
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
14566
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
14085
14567
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
14086
14568
  };
14087
14569
  export type TenantCreateOrConnectWithoutContractTerminationsInput = {
@@ -14160,6 +14642,7 @@ export type TenantUpdateWithoutContractTerminationsInput = {
14160
14642
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
14161
14643
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
14162
14644
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
14645
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
14163
14646
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
14164
14647
  };
14165
14648
  export type TenantUncheckedUpdateWithoutContractTerminationsInput = {
@@ -14225,6 +14708,7 @@ export type TenantUncheckedUpdateWithoutContractTerminationsInput = {
14225
14708
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
14226
14709
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
14227
14710
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
14711
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
14228
14712
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
14229
14713
  };
14230
14714
  export type TenantCreateWithoutPaymentMethodChangeRequestsInput = {
@@ -14290,6 +14774,7 @@ export type TenantCreateWithoutPaymentMethodChangeRequestsInput = {
14290
14774
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
14291
14775
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
14292
14776
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
14777
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
14293
14778
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
14294
14779
  };
14295
14780
  export type TenantUncheckedCreateWithoutPaymentMethodChangeRequestsInput = {
@@ -14355,6 +14840,7 @@ export type TenantUncheckedCreateWithoutPaymentMethodChangeRequestsInput = {
14355
14840
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
14356
14841
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
14357
14842
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
14843
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
14358
14844
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
14359
14845
  };
14360
14846
  export type TenantCreateOrConnectWithoutPaymentMethodChangeRequestsInput = {
@@ -14433,6 +14919,7 @@ export type TenantUpdateWithoutPaymentMethodChangeRequestsInput = {
14433
14919
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
14434
14920
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
14435
14921
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
14922
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
14436
14923
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
14437
14924
  };
14438
14925
  export type TenantUncheckedUpdateWithoutPaymentMethodChangeRequestsInput = {
@@ -14498,6 +14985,7 @@ export type TenantUncheckedUpdateWithoutPaymentMethodChangeRequestsInput = {
14498
14985
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
14499
14986
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
14500
14987
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
14988
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
14501
14989
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
14502
14990
  };
14503
14991
  export type TenantCreateWithoutDocumentRequirementRulesInput = {
@@ -14563,6 +15051,7 @@ export type TenantCreateWithoutDocumentRequirementRulesInput = {
14563
15051
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
14564
15052
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
14565
15053
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
15054
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
14566
15055
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
14567
15056
  };
14568
15057
  export type TenantUncheckedCreateWithoutDocumentRequirementRulesInput = {
@@ -14628,6 +15117,7 @@ export type TenantUncheckedCreateWithoutDocumentRequirementRulesInput = {
14628
15117
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
14629
15118
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
14630
15119
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
15120
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
14631
15121
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
14632
15122
  };
14633
15123
  export type TenantCreateOrConnectWithoutDocumentRequirementRulesInput = {
@@ -14706,6 +15196,7 @@ export type TenantUpdateWithoutDocumentRequirementRulesInput = {
14706
15196
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
14707
15197
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
14708
15198
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
15199
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
14709
15200
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
14710
15201
  };
14711
15202
  export type TenantUncheckedUpdateWithoutDocumentRequirementRulesInput = {
@@ -14771,6 +15262,7 @@ export type TenantUncheckedUpdateWithoutDocumentRequirementRulesInput = {
14771
15262
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
14772
15263
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
14773
15264
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
15265
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
14774
15266
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
14775
15267
  };
14776
15268
  export type TenantCreateWithoutEventChannelsInput = {
@@ -14836,6 +15328,7 @@ export type TenantCreateWithoutEventChannelsInput = {
14836
15328
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
14837
15329
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
14838
15330
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
15331
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
14839
15332
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
14840
15333
  };
14841
15334
  export type TenantUncheckedCreateWithoutEventChannelsInput = {
@@ -14901,6 +15394,7 @@ export type TenantUncheckedCreateWithoutEventChannelsInput = {
14901
15394
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
14902
15395
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
14903
15396
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
15397
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
14904
15398
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
14905
15399
  };
14906
15400
  export type TenantCreateOrConnectWithoutEventChannelsInput = {
@@ -14979,6 +15473,7 @@ export type TenantUpdateWithoutEventChannelsInput = {
14979
15473
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
14980
15474
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
14981
15475
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
15476
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
14982
15477
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
14983
15478
  };
14984
15479
  export type TenantUncheckedUpdateWithoutEventChannelsInput = {
@@ -15044,6 +15539,7 @@ export type TenantUncheckedUpdateWithoutEventChannelsInput = {
15044
15539
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
15045
15540
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
15046
15541
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
15542
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
15047
15543
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
15048
15544
  };
15049
15545
  export type TenantCreateWithoutEventTypesInput = {
@@ -15109,6 +15605,7 @@ export type TenantCreateWithoutEventTypesInput = {
15109
15605
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
15110
15606
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
15111
15607
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
15608
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
15112
15609
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
15113
15610
  };
15114
15611
  export type TenantUncheckedCreateWithoutEventTypesInput = {
@@ -15174,6 +15671,7 @@ export type TenantUncheckedCreateWithoutEventTypesInput = {
15174
15671
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
15175
15672
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
15176
15673
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
15674
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
15177
15675
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
15178
15676
  };
15179
15677
  export type TenantCreateOrConnectWithoutEventTypesInput = {
@@ -15252,6 +15750,7 @@ export type TenantUpdateWithoutEventTypesInput = {
15252
15750
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
15253
15751
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
15254
15752
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
15753
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
15255
15754
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
15256
15755
  };
15257
15756
  export type TenantUncheckedUpdateWithoutEventTypesInput = {
@@ -15317,6 +15816,7 @@ export type TenantUncheckedUpdateWithoutEventTypesInput = {
15317
15816
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
15318
15817
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
15319
15818
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
15819
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
15320
15820
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
15321
15821
  };
15322
15822
  export type TenantCreateWithoutEventHandlersInput = {
@@ -15382,6 +15882,7 @@ export type TenantCreateWithoutEventHandlersInput = {
15382
15882
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
15383
15883
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
15384
15884
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
15885
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
15385
15886
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
15386
15887
  };
15387
15888
  export type TenantUncheckedCreateWithoutEventHandlersInput = {
@@ -15447,6 +15948,7 @@ export type TenantUncheckedCreateWithoutEventHandlersInput = {
15447
15948
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
15448
15949
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
15449
15950
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
15951
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
15450
15952
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
15451
15953
  };
15452
15954
  export type TenantCreateOrConnectWithoutEventHandlersInput = {
@@ -15525,6 +16027,7 @@ export type TenantUpdateWithoutEventHandlersInput = {
15525
16027
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
15526
16028
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
15527
16029
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
16030
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
15528
16031
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
15529
16032
  };
15530
16033
  export type TenantUncheckedUpdateWithoutEventHandlersInput = {
@@ -15590,6 +16093,7 @@ export type TenantUncheckedUpdateWithoutEventHandlersInput = {
15590
16093
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
15591
16094
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
15592
16095
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
16096
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
15593
16097
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
15594
16098
  };
15595
16099
  export type TenantCreateWithoutWorkflowEventsInput = {
@@ -15655,6 +16159,7 @@ export type TenantCreateWithoutWorkflowEventsInput = {
15655
16159
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
15656
16160
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
15657
16161
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
16162
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
15658
16163
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
15659
16164
  };
15660
16165
  export type TenantUncheckedCreateWithoutWorkflowEventsInput = {
@@ -15720,6 +16225,7 @@ export type TenantUncheckedCreateWithoutWorkflowEventsInput = {
15720
16225
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
15721
16226
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
15722
16227
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
16228
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
15723
16229
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
15724
16230
  };
15725
16231
  export type TenantCreateOrConnectWithoutWorkflowEventsInput = {
@@ -15798,6 +16304,7 @@ export type TenantUpdateWithoutWorkflowEventsInput = {
15798
16304
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
15799
16305
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
15800
16306
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
16307
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
15801
16308
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
15802
16309
  };
15803
16310
  export type TenantUncheckedUpdateWithoutWorkflowEventsInput = {
@@ -15863,6 +16370,7 @@ export type TenantUncheckedUpdateWithoutWorkflowEventsInput = {
15863
16370
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
15864
16371
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
15865
16372
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
16373
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
15866
16374
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
15867
16375
  };
15868
16376
  export type TenantCreateWithoutEventHandlerExecutionsInput = {
@@ -15928,6 +16436,7 @@ export type TenantCreateWithoutEventHandlerExecutionsInput = {
15928
16436
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
15929
16437
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
15930
16438
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
16439
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
15931
16440
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
15932
16441
  };
15933
16442
  export type TenantUncheckedCreateWithoutEventHandlerExecutionsInput = {
@@ -15993,6 +16502,7 @@ export type TenantUncheckedCreateWithoutEventHandlerExecutionsInput = {
15993
16502
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
15994
16503
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
15995
16504
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
16505
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
15996
16506
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
15997
16507
  };
15998
16508
  export type TenantCreateOrConnectWithoutEventHandlerExecutionsInput = {
@@ -16071,6 +16581,7 @@ export type TenantUpdateWithoutEventHandlerExecutionsInput = {
16071
16581
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
16072
16582
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
16073
16583
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
16584
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
16074
16585
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
16075
16586
  };
16076
16587
  export type TenantUncheckedUpdateWithoutEventHandlerExecutionsInput = {
@@ -16136,6 +16647,7 @@ export type TenantUncheckedUpdateWithoutEventHandlerExecutionsInput = {
16136
16647
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
16137
16648
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
16138
16649
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
16650
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
16139
16651
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
16140
16652
  };
16141
16653
  export type TenantCreateWithoutDomainEventsInput = {
@@ -16201,6 +16713,7 @@ export type TenantCreateWithoutDomainEventsInput = {
16201
16713
  settings?: Prisma.SettingsCreateNestedManyWithoutTenantInput;
16202
16714
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
16203
16715
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
16716
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
16204
16717
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
16205
16718
  };
16206
16719
  export type TenantUncheckedCreateWithoutDomainEventsInput = {
@@ -16266,6 +16779,7 @@ export type TenantUncheckedCreateWithoutDomainEventsInput = {
16266
16779
  settings?: Prisma.SettingsUncheckedCreateNestedManyWithoutTenantInput;
16267
16780
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
16268
16781
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
16782
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
16269
16783
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
16270
16784
  };
16271
16785
  export type TenantCreateOrConnectWithoutDomainEventsInput = {
@@ -16344,6 +16858,7 @@ export type TenantUpdateWithoutDomainEventsInput = {
16344
16858
  settings?: Prisma.SettingsUpdateManyWithoutTenantNestedInput;
16345
16859
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
16346
16860
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
16861
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
16347
16862
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
16348
16863
  };
16349
16864
  export type TenantUncheckedUpdateWithoutDomainEventsInput = {
@@ -16409,6 +16924,7 @@ export type TenantUncheckedUpdateWithoutDomainEventsInput = {
16409
16924
  settings?: Prisma.SettingsUncheckedUpdateManyWithoutTenantNestedInput;
16410
16925
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
16411
16926
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
16927
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
16412
16928
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
16413
16929
  };
16414
16930
  export type TenantCreateWithoutPropertyTransferRequestsInput = {
@@ -16474,6 +16990,7 @@ export type TenantCreateWithoutPropertyTransferRequestsInput = {
16474
16990
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
16475
16991
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
16476
16992
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
16993
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
16477
16994
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
16478
16995
  };
16479
16996
  export type TenantUncheckedCreateWithoutPropertyTransferRequestsInput = {
@@ -16539,6 +17056,7 @@ export type TenantUncheckedCreateWithoutPropertyTransferRequestsInput = {
16539
17056
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
16540
17057
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
16541
17058
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
17059
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
16542
17060
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
16543
17061
  };
16544
17062
  export type TenantCreateOrConnectWithoutPropertyTransferRequestsInput = {
@@ -16617,6 +17135,7 @@ export type TenantUpdateWithoutPropertyTransferRequestsInput = {
16617
17135
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
16618
17136
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
16619
17137
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
17138
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
16620
17139
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
16621
17140
  };
16622
17141
  export type TenantUncheckedUpdateWithoutPropertyTransferRequestsInput = {
@@ -16682,6 +17201,7 @@ export type TenantUncheckedUpdateWithoutPropertyTransferRequestsInput = {
16682
17201
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
16683
17202
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
16684
17203
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
17204
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
16685
17205
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
16686
17206
  };
16687
17207
  export type TenantCreateWithoutApprovalRequestsInput = {
@@ -16747,6 +17267,7 @@ export type TenantCreateWithoutApprovalRequestsInput = {
16747
17267
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
16748
17268
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
16749
17269
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
17270
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
16750
17271
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
16751
17272
  };
16752
17273
  export type TenantUncheckedCreateWithoutApprovalRequestsInput = {
@@ -16812,6 +17333,7 @@ export type TenantUncheckedCreateWithoutApprovalRequestsInput = {
16812
17333
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
16813
17334
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
16814
17335
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
17336
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
16815
17337
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
16816
17338
  };
16817
17339
  export type TenantCreateOrConnectWithoutApprovalRequestsInput = {
@@ -16890,6 +17412,7 @@ export type TenantUpdateWithoutApprovalRequestsInput = {
16890
17412
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
16891
17413
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
16892
17414
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
17415
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
16893
17416
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
16894
17417
  };
16895
17418
  export type TenantUncheckedUpdateWithoutApprovalRequestsInput = {
@@ -16955,6 +17478,7 @@ export type TenantUncheckedUpdateWithoutApprovalRequestsInput = {
16955
17478
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
16956
17479
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
16957
17480
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
17481
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
16958
17482
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
16959
17483
  };
16960
17484
  export type TenantCreateWithoutWorkflowBlockersInput = {
@@ -17020,6 +17544,7 @@ export type TenantCreateWithoutWorkflowBlockersInput = {
17020
17544
  settings?: Prisma.SettingsCreateNestedManyWithoutTenantInput;
17021
17545
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
17022
17546
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
17547
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
17023
17548
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
17024
17549
  };
17025
17550
  export type TenantUncheckedCreateWithoutWorkflowBlockersInput = {
@@ -17085,6 +17610,7 @@ export type TenantUncheckedCreateWithoutWorkflowBlockersInput = {
17085
17610
  settings?: Prisma.SettingsUncheckedCreateNestedManyWithoutTenantInput;
17086
17611
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
17087
17612
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
17613
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
17088
17614
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
17089
17615
  };
17090
17616
  export type TenantCreateOrConnectWithoutWorkflowBlockersInput = {
@@ -17163,6 +17689,7 @@ export type TenantUpdateWithoutWorkflowBlockersInput = {
17163
17689
  settings?: Prisma.SettingsUpdateManyWithoutTenantNestedInput;
17164
17690
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
17165
17691
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
17692
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
17166
17693
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
17167
17694
  };
17168
17695
  export type TenantUncheckedUpdateWithoutWorkflowBlockersInput = {
@@ -17228,6 +17755,7 @@ export type TenantUncheckedUpdateWithoutWorkflowBlockersInput = {
17228
17755
  settings?: Prisma.SettingsUncheckedUpdateManyWithoutTenantNestedInput;
17229
17756
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
17230
17757
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
17758
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
17231
17759
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
17232
17760
  };
17233
17761
  /**
@@ -17291,6 +17819,7 @@ export type TenantCountOutputType = {
17291
17819
  domainEvents: number;
17292
17820
  workflowBlockers: number;
17293
17821
  questionnairePlans: number;
17822
+ documentReviews: number;
17294
17823
  organizations: number;
17295
17824
  };
17296
17825
  export type TenantCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
@@ -17351,6 +17880,7 @@ export type TenantCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions
17351
17880
  domainEvents?: boolean | TenantCountOutputTypeCountDomainEventsArgs;
17352
17881
  workflowBlockers?: boolean | TenantCountOutputTypeCountWorkflowBlockersArgs;
17353
17882
  questionnairePlans?: boolean | TenantCountOutputTypeCountQuestionnairePlansArgs;
17883
+ documentReviews?: boolean | TenantCountOutputTypeCountDocumentReviewsArgs;
17354
17884
  organizations?: boolean | TenantCountOutputTypeCountOrganizationsArgs;
17355
17885
  };
17356
17886
  /**
@@ -17704,6 +18234,12 @@ export type TenantCountOutputTypeCountWorkflowBlockersArgs<ExtArgs extends runti
17704
18234
  export type TenantCountOutputTypeCountQuestionnairePlansArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
17705
18235
  where?: Prisma.QuestionnairePlanWhereInput;
17706
18236
  };
18237
+ /**
18238
+ * TenantCountOutputType without action
18239
+ */
18240
+ export type TenantCountOutputTypeCountDocumentReviewsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
18241
+ where?: Prisma.DocumentReviewWhereInput;
18242
+ };
17707
18243
  /**
17708
18244
  * TenantCountOutputType without action
17709
18245
  */
@@ -17774,6 +18310,7 @@ export type TenantSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs =
17774
18310
  domainEvents?: boolean | Prisma.Tenant$domainEventsArgs<ExtArgs>;
17775
18311
  workflowBlockers?: boolean | Prisma.Tenant$workflowBlockersArgs<ExtArgs>;
17776
18312
  questionnairePlans?: boolean | Prisma.Tenant$questionnairePlansArgs<ExtArgs>;
18313
+ documentReviews?: boolean | Prisma.Tenant$documentReviewsArgs<ExtArgs>;
17777
18314
  organizations?: boolean | Prisma.Tenant$organizationsArgs<ExtArgs>;
17778
18315
  _count?: boolean | Prisma.TenantCountOutputTypeDefaultArgs<ExtArgs>;
17779
18316
  }, ExtArgs["result"]["tenant"]>;
@@ -17844,6 +18381,7 @@ export type TenantInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs
17844
18381
  domainEvents?: boolean | Prisma.Tenant$domainEventsArgs<ExtArgs>;
17845
18382
  workflowBlockers?: boolean | Prisma.Tenant$workflowBlockersArgs<ExtArgs>;
17846
18383
  questionnairePlans?: boolean | Prisma.Tenant$questionnairePlansArgs<ExtArgs>;
18384
+ documentReviews?: boolean | Prisma.Tenant$documentReviewsArgs<ExtArgs>;
17847
18385
  organizations?: boolean | Prisma.Tenant$organizationsArgs<ExtArgs>;
17848
18386
  _count?: boolean | Prisma.TenantCountOutputTypeDefaultArgs<ExtArgs>;
17849
18387
  };
@@ -17907,6 +18445,7 @@ export type $TenantPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs
17907
18445
  domainEvents: Prisma.$DomainEventPayload<ExtArgs>[];
17908
18446
  workflowBlockers: Prisma.$WorkflowBlockerPayload<ExtArgs>[];
17909
18447
  questionnairePlans: Prisma.$QuestionnairePlanPayload<ExtArgs>[];
18448
+ documentReviews: Prisma.$DocumentReviewPayload<ExtArgs>[];
17910
18449
  organizations: Prisma.$OrganizationPayload<ExtArgs>[];
17911
18450
  };
17912
18451
  scalars: runtime.Types.Extensions.GetPayloadResult<{
@@ -18250,6 +18789,7 @@ export interface Prisma__TenantClient<T, Null = never, ExtArgs extends runtime.T
18250
18789
  domainEvents<T extends Prisma.Tenant$domainEventsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Tenant$domainEventsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$DomainEventPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
18251
18790
  workflowBlockers<T extends Prisma.Tenant$workflowBlockersArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Tenant$workflowBlockersArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$WorkflowBlockerPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
18252
18791
  questionnairePlans<T extends Prisma.Tenant$questionnairePlansArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Tenant$questionnairePlansArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$QuestionnairePlanPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
18792
+ documentReviews<T extends Prisma.Tenant$documentReviewsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Tenant$documentReviewsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$DocumentReviewPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
18253
18793
  organizations<T extends Prisma.Tenant$organizationsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Tenant$organizationsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$OrganizationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
18254
18794
  /**
18255
18795
  * Attaches callbacks for the resolution and/or rejection of the Promise.
@@ -19920,6 +20460,29 @@ export type Tenant$questionnairePlansArgs<ExtArgs extends runtime.Types.Extensio
19920
20460
  skip?: number;
19921
20461
  distinct?: Prisma.QuestionnairePlanScalarFieldEnum | Prisma.QuestionnairePlanScalarFieldEnum[];
19922
20462
  };
20463
+ /**
20464
+ * Tenant.documentReviews
20465
+ */
20466
+ export type Tenant$documentReviewsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
20467
+ /**
20468
+ * Select specific fields to fetch from the DocumentReview
20469
+ */
20470
+ select?: Prisma.DocumentReviewSelect<ExtArgs> | null;
20471
+ /**
20472
+ * Omit specific fields from the DocumentReview
20473
+ */
20474
+ omit?: Prisma.DocumentReviewOmit<ExtArgs> | null;
20475
+ /**
20476
+ * Choose, which related nodes to fetch as well
20477
+ */
20478
+ include?: Prisma.DocumentReviewInclude<ExtArgs> | null;
20479
+ where?: Prisma.DocumentReviewWhereInput;
20480
+ orderBy?: Prisma.DocumentReviewOrderByWithRelationInput | Prisma.DocumentReviewOrderByWithRelationInput[];
20481
+ cursor?: Prisma.DocumentReviewWhereUniqueInput;
20482
+ take?: number;
20483
+ skip?: number;
20484
+ distinct?: Prisma.DocumentReviewScalarFieldEnum | Prisma.DocumentReviewScalarFieldEnum[];
20485
+ };
19923
20486
  /**
19924
20487
  * Tenant.organizations
19925
20488
  */