@valentine-efagene/qshelter-common 2.0.140 → 2.0.142

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.
@@ -202,6 +202,7 @@ export type TenantWhereInput = {
202
202
  domainEvents?: Prisma.DomainEventListRelationFilter;
203
203
  workflowBlockers?: Prisma.WorkflowBlockerListRelationFilter;
204
204
  questionnairePlans?: Prisma.QuestionnairePlanListRelationFilter;
205
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewListRelationFilter;
205
206
  documentReviews?: Prisma.DocumentReviewListRelationFilter;
206
207
  organizations?: Prisma.OrganizationListRelationFilter;
207
208
  };
@@ -268,6 +269,7 @@ export type TenantOrderByWithRelationInput = {
268
269
  domainEvents?: Prisma.DomainEventOrderByRelationAggregateInput;
269
270
  workflowBlockers?: Prisma.WorkflowBlockerOrderByRelationAggregateInput;
270
271
  questionnairePlans?: Prisma.QuestionnairePlanOrderByRelationAggregateInput;
272
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewOrderByRelationAggregateInput;
271
273
  documentReviews?: Prisma.DocumentReviewOrderByRelationAggregateInput;
272
274
  organizations?: Prisma.OrganizationOrderByRelationAggregateInput;
273
275
  _relevance?: Prisma.TenantOrderByRelevanceInput;
@@ -338,6 +340,7 @@ export type TenantWhereUniqueInput = Prisma.AtLeast<{
338
340
  domainEvents?: Prisma.DomainEventListRelationFilter;
339
341
  workflowBlockers?: Prisma.WorkflowBlockerListRelationFilter;
340
342
  questionnairePlans?: Prisma.QuestionnairePlanListRelationFilter;
343
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewListRelationFilter;
341
344
  documentReviews?: Prisma.DocumentReviewListRelationFilter;
342
345
  organizations?: Prisma.OrganizationListRelationFilter;
343
346
  }, "id" | "subdomain">;
@@ -426,6 +429,7 @@ export type TenantCreateInput = {
426
429
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
427
430
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
428
431
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
432
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
429
433
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
430
434
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
431
435
  };
@@ -492,6 +496,7 @@ export type TenantUncheckedCreateInput = {
492
496
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
493
497
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
494
498
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
499
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
495
500
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
496
501
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
497
502
  };
@@ -558,6 +563,7 @@ export type TenantUpdateInput = {
558
563
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
559
564
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
560
565
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
566
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
561
567
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
562
568
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
563
569
  };
@@ -624,6 +630,7 @@ export type TenantUncheckedUpdateInput = {
624
630
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
625
631
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
626
632
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
633
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
627
634
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
628
635
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
629
636
  };
@@ -1108,6 +1115,18 @@ export type TenantUpdateOneRequiredWithoutQuestionnairePhasesNestedInput = {
1108
1115
  connect?: Prisma.TenantWhereUniqueInput;
1109
1116
  update?: Prisma.XOR<Prisma.XOR<Prisma.TenantUpdateToOneWithWhereWithoutQuestionnairePhasesInput, Prisma.TenantUpdateWithoutQuestionnairePhasesInput>, Prisma.TenantUncheckedUpdateWithoutQuestionnairePhasesInput>;
1110
1117
  };
1118
+ export type TenantCreateNestedOneWithoutQuestionnairePhaseReviewsInput = {
1119
+ create?: Prisma.XOR<Prisma.TenantCreateWithoutQuestionnairePhaseReviewsInput, Prisma.TenantUncheckedCreateWithoutQuestionnairePhaseReviewsInput>;
1120
+ connectOrCreate?: Prisma.TenantCreateOrConnectWithoutQuestionnairePhaseReviewsInput;
1121
+ connect?: Prisma.TenantWhereUniqueInput;
1122
+ };
1123
+ export type TenantUpdateOneRequiredWithoutQuestionnairePhaseReviewsNestedInput = {
1124
+ create?: Prisma.XOR<Prisma.TenantCreateWithoutQuestionnairePhaseReviewsInput, Prisma.TenantUncheckedCreateWithoutQuestionnairePhaseReviewsInput>;
1125
+ connectOrCreate?: Prisma.TenantCreateOrConnectWithoutQuestionnairePhaseReviewsInput;
1126
+ upsert?: Prisma.TenantUpsertWithoutQuestionnairePhaseReviewsInput;
1127
+ connect?: Prisma.TenantWhereUniqueInput;
1128
+ update?: Prisma.XOR<Prisma.XOR<Prisma.TenantUpdateToOneWithWhereWithoutQuestionnairePhaseReviewsInput, Prisma.TenantUpdateWithoutQuestionnairePhaseReviewsInput>, Prisma.TenantUncheckedUpdateWithoutQuestionnairePhaseReviewsInput>;
1129
+ };
1111
1130
  export type TenantCreateNestedOneWithoutDocumentationPhasesInput = {
1112
1131
  create?: Prisma.XOR<Prisma.TenantCreateWithoutDocumentationPhasesInput, Prisma.TenantUncheckedCreateWithoutDocumentationPhasesInput>;
1113
1132
  connectOrCreate?: Prisma.TenantCreateOrConnectWithoutDocumentationPhasesInput;
@@ -1458,6 +1477,7 @@ export type TenantCreateWithoutUsersInput = {
1458
1477
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
1459
1478
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
1460
1479
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
1480
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
1461
1481
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
1462
1482
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
1463
1483
  };
@@ -1523,6 +1543,7 @@ export type TenantUncheckedCreateWithoutUsersInput = {
1523
1543
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
1524
1544
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
1525
1545
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
1546
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
1526
1547
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
1527
1548
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
1528
1549
  };
@@ -1601,6 +1622,7 @@ export type TenantUpdateWithoutUsersInput = {
1601
1622
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
1602
1623
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
1603
1624
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
1625
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
1604
1626
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
1605
1627
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
1606
1628
  };
@@ -1666,6 +1688,7 @@ export type TenantUncheckedUpdateWithoutUsersInput = {
1666
1688
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
1667
1689
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
1668
1690
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
1691
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
1669
1692
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
1670
1693
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
1671
1694
  };
@@ -1731,6 +1754,7 @@ export type TenantCreateWithoutRolesInput = {
1731
1754
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
1732
1755
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
1733
1756
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
1757
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
1734
1758
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
1735
1759
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
1736
1760
  };
@@ -1796,6 +1820,7 @@ export type TenantUncheckedCreateWithoutRolesInput = {
1796
1820
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
1797
1821
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
1798
1822
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
1823
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
1799
1824
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
1800
1825
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
1801
1826
  };
@@ -1874,6 +1899,7 @@ export type TenantUpdateWithoutRolesInput = {
1874
1899
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
1875
1900
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
1876
1901
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
1902
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
1877
1903
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
1878
1904
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
1879
1905
  };
@@ -1939,6 +1965,7 @@ export type TenantUncheckedUpdateWithoutRolesInput = {
1939
1965
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
1940
1966
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
1941
1967
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
1968
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
1942
1969
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
1943
1970
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
1944
1971
  };
@@ -2004,6 +2031,7 @@ export type TenantCreateWithoutPermissionsInput = {
2004
2031
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
2005
2032
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
2006
2033
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
2034
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
2007
2035
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
2008
2036
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
2009
2037
  };
@@ -2069,6 +2097,7 @@ export type TenantUncheckedCreateWithoutPermissionsInput = {
2069
2097
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
2070
2098
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
2071
2099
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
2100
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
2072
2101
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
2073
2102
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
2074
2103
  };
@@ -2147,6 +2176,7 @@ export type TenantUpdateWithoutPermissionsInput = {
2147
2176
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
2148
2177
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
2149
2178
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
2179
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
2150
2180
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
2151
2181
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
2152
2182
  };
@@ -2212,6 +2242,7 @@ export type TenantUncheckedUpdateWithoutPermissionsInput = {
2212
2242
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
2213
2243
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
2214
2244
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
2245
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
2215
2246
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
2216
2247
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
2217
2248
  };
@@ -2277,6 +2308,7 @@ export type TenantCreateWithoutMembershipsInput = {
2277
2308
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
2278
2309
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
2279
2310
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
2311
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
2280
2312
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
2281
2313
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
2282
2314
  };
@@ -2342,6 +2374,7 @@ export type TenantUncheckedCreateWithoutMembershipsInput = {
2342
2374
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
2343
2375
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
2344
2376
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
2377
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
2345
2378
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
2346
2379
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
2347
2380
  };
@@ -2420,6 +2453,7 @@ export type TenantUpdateWithoutMembershipsInput = {
2420
2453
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
2421
2454
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
2422
2455
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
2456
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
2423
2457
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
2424
2458
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
2425
2459
  };
@@ -2485,6 +2519,7 @@ export type TenantUncheckedUpdateWithoutMembershipsInput = {
2485
2519
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
2486
2520
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
2487
2521
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
2522
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
2488
2523
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
2489
2524
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
2490
2525
  };
@@ -2551,6 +2586,7 @@ export type TenantCreateWithoutOrganizationsInput = {
2551
2586
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
2552
2587
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
2553
2588
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
2589
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
2554
2590
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
2555
2591
  };
2556
2592
  export type TenantUncheckedCreateWithoutOrganizationsInput = {
@@ -2616,6 +2652,7 @@ export type TenantUncheckedCreateWithoutOrganizationsInput = {
2616
2652
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
2617
2653
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
2618
2654
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
2655
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
2619
2656
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
2620
2657
  };
2621
2658
  export type TenantCreateOrConnectWithoutOrganizationsInput = {
@@ -2694,6 +2731,7 @@ export type TenantUpdateWithoutOrganizationsInput = {
2694
2731
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
2695
2732
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
2696
2733
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
2734
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
2697
2735
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
2698
2736
  };
2699
2737
  export type TenantUncheckedUpdateWithoutOrganizationsInput = {
@@ -2759,6 +2797,7 @@ export type TenantUncheckedUpdateWithoutOrganizationsInput = {
2759
2797
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
2760
2798
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
2761
2799
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
2800
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
2762
2801
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
2763
2802
  };
2764
2803
  export type TenantCreateWithoutApiKeysInput = {
@@ -2823,6 +2862,7 @@ export type TenantCreateWithoutApiKeysInput = {
2823
2862
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
2824
2863
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
2825
2864
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
2865
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
2826
2866
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
2827
2867
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
2828
2868
  };
@@ -2888,6 +2928,7 @@ export type TenantUncheckedCreateWithoutApiKeysInput = {
2888
2928
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
2889
2929
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
2890
2930
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
2931
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
2891
2932
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
2892
2933
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
2893
2934
  };
@@ -2966,6 +3007,7 @@ export type TenantUpdateWithoutApiKeysInput = {
2966
3007
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
2967
3008
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
2968
3009
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
3010
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
2969
3011
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
2970
3012
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
2971
3013
  };
@@ -3031,6 +3073,7 @@ export type TenantUncheckedUpdateWithoutApiKeysInput = {
3031
3073
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
3032
3074
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
3033
3075
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
3076
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
3034
3077
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
3035
3078
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
3036
3079
  };
@@ -3096,6 +3139,7 @@ export type TenantCreateWithoutSocialsInput = {
3096
3139
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
3097
3140
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
3098
3141
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
3142
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
3099
3143
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
3100
3144
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
3101
3145
  };
@@ -3161,6 +3205,7 @@ export type TenantUncheckedCreateWithoutSocialsInput = {
3161
3205
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
3162
3206
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
3163
3207
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
3208
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
3164
3209
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
3165
3210
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
3166
3211
  };
@@ -3239,6 +3284,7 @@ export type TenantUpdateWithoutSocialsInput = {
3239
3284
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
3240
3285
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
3241
3286
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
3287
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
3242
3288
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
3243
3289
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
3244
3290
  };
@@ -3304,6 +3350,7 @@ export type TenantUncheckedUpdateWithoutSocialsInput = {
3304
3350
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
3305
3351
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
3306
3352
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
3353
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
3307
3354
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
3308
3355
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
3309
3356
  };
@@ -3369,6 +3416,7 @@ export type TenantCreateWithoutWalletsInput = {
3369
3416
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
3370
3417
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
3371
3418
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
3419
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
3372
3420
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
3373
3421
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
3374
3422
  };
@@ -3434,6 +3482,7 @@ export type TenantUncheckedCreateWithoutWalletsInput = {
3434
3482
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
3435
3483
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
3436
3484
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
3485
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
3437
3486
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
3438
3487
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
3439
3488
  };
@@ -3512,6 +3561,7 @@ export type TenantUpdateWithoutWalletsInput = {
3512
3561
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
3513
3562
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
3514
3563
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
3564
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
3515
3565
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
3516
3566
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
3517
3567
  };
@@ -3577,6 +3627,7 @@ export type TenantUncheckedUpdateWithoutWalletsInput = {
3577
3627
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
3578
3628
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
3579
3629
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
3630
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
3580
3631
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
3581
3632
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
3582
3633
  };
@@ -3642,6 +3693,7 @@ export type TenantCreateWithoutTransactionsInput = {
3642
3693
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
3643
3694
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
3644
3695
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
3696
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
3645
3697
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
3646
3698
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
3647
3699
  };
@@ -3707,6 +3759,7 @@ export type TenantUncheckedCreateWithoutTransactionsInput = {
3707
3759
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
3708
3760
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
3709
3761
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
3762
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
3710
3763
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
3711
3764
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
3712
3765
  };
@@ -3785,6 +3838,7 @@ export type TenantUpdateWithoutTransactionsInput = {
3785
3838
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
3786
3839
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
3787
3840
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
3841
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
3788
3842
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
3789
3843
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
3790
3844
  };
@@ -3850,6 +3904,7 @@ export type TenantUncheckedUpdateWithoutTransactionsInput = {
3850
3904
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
3851
3905
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
3852
3906
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
3907
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
3853
3908
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
3854
3909
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
3855
3910
  };
@@ -3915,6 +3970,7 @@ export type TenantCreateWithoutSettingsInput = {
3915
3970
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
3916
3971
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
3917
3972
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
3973
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
3918
3974
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
3919
3975
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
3920
3976
  };
@@ -3980,6 +4036,7 @@ export type TenantUncheckedCreateWithoutSettingsInput = {
3980
4036
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
3981
4037
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
3982
4038
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
4039
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
3983
4040
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
3984
4041
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
3985
4042
  };
@@ -4058,6 +4115,7 @@ export type TenantUpdateWithoutSettingsInput = {
4058
4115
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
4059
4116
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
4060
4117
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
4118
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
4061
4119
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
4062
4120
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
4063
4121
  };
@@ -4123,6 +4181,7 @@ export type TenantUncheckedUpdateWithoutSettingsInput = {
4123
4181
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
4124
4182
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
4125
4183
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
4184
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
4126
4185
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
4127
4186
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
4128
4187
  };
@@ -4188,6 +4247,7 @@ export type TenantCreateWithoutPropertiesInput = {
4188
4247
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
4189
4248
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
4190
4249
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
4250
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
4191
4251
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
4192
4252
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
4193
4253
  };
@@ -4253,6 +4313,7 @@ export type TenantUncheckedCreateWithoutPropertiesInput = {
4253
4313
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
4254
4314
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
4255
4315
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
4316
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
4256
4317
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
4257
4318
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
4258
4319
  };
@@ -4331,6 +4392,7 @@ export type TenantUpdateWithoutPropertiesInput = {
4331
4392
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
4332
4393
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
4333
4394
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
4395
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
4334
4396
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
4335
4397
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
4336
4398
  };
@@ -4396,6 +4458,7 @@ export type TenantUncheckedUpdateWithoutPropertiesInput = {
4396
4458
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
4397
4459
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
4398
4460
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
4461
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
4399
4462
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
4400
4463
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
4401
4464
  };
@@ -4461,6 +4524,7 @@ export type TenantCreateWithoutPropertyMediaInput = {
4461
4524
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
4462
4525
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
4463
4526
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
4527
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
4464
4528
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
4465
4529
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
4466
4530
  };
@@ -4526,6 +4590,7 @@ export type TenantUncheckedCreateWithoutPropertyMediaInput = {
4526
4590
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
4527
4591
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
4528
4592
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
4593
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
4529
4594
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
4530
4595
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
4531
4596
  };
@@ -4604,6 +4669,7 @@ export type TenantUpdateWithoutPropertyMediaInput = {
4604
4669
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
4605
4670
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
4606
4671
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
4672
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
4607
4673
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
4608
4674
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
4609
4675
  };
@@ -4669,6 +4735,7 @@ export type TenantUncheckedUpdateWithoutPropertyMediaInput = {
4669
4735
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
4670
4736
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
4671
4737
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
4738
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
4672
4739
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
4673
4740
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
4674
4741
  };
@@ -4734,6 +4801,7 @@ export type TenantCreateWithoutPropertyDocumentsInput = {
4734
4801
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
4735
4802
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
4736
4803
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
4804
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
4737
4805
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
4738
4806
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
4739
4807
  };
@@ -4799,6 +4867,7 @@ export type TenantUncheckedCreateWithoutPropertyDocumentsInput = {
4799
4867
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
4800
4868
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
4801
4869
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
4870
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
4802
4871
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
4803
4872
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
4804
4873
  };
@@ -4877,6 +4946,7 @@ export type TenantUpdateWithoutPropertyDocumentsInput = {
4877
4946
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
4878
4947
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
4879
4948
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
4949
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
4880
4950
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
4881
4951
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
4882
4952
  };
@@ -4942,6 +5012,7 @@ export type TenantUncheckedUpdateWithoutPropertyDocumentsInput = {
4942
5012
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
4943
5013
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
4944
5014
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
5015
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
4945
5016
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
4946
5017
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
4947
5018
  };
@@ -5007,6 +5078,7 @@ export type TenantCreateWithoutAmenitiesInput = {
5007
5078
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
5008
5079
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
5009
5080
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
5081
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
5010
5082
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
5011
5083
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
5012
5084
  };
@@ -5072,6 +5144,7 @@ export type TenantUncheckedCreateWithoutAmenitiesInput = {
5072
5144
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
5073
5145
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
5074
5146
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
5147
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
5075
5148
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
5076
5149
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
5077
5150
  };
@@ -5150,6 +5223,7 @@ export type TenantUpdateWithoutAmenitiesInput = {
5150
5223
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
5151
5224
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
5152
5225
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
5226
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
5153
5227
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
5154
5228
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
5155
5229
  };
@@ -5215,6 +5289,7 @@ export type TenantUncheckedUpdateWithoutAmenitiesInput = {
5215
5289
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
5216
5290
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
5217
5291
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
5292
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
5218
5293
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
5219
5294
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
5220
5295
  };
@@ -5280,6 +5355,7 @@ export type TenantCreateWithoutPropertyVariantsInput = {
5280
5355
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
5281
5356
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
5282
5357
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
5358
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
5283
5359
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
5284
5360
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
5285
5361
  };
@@ -5345,6 +5421,7 @@ export type TenantUncheckedCreateWithoutPropertyVariantsInput = {
5345
5421
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
5346
5422
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
5347
5423
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
5424
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
5348
5425
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
5349
5426
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
5350
5427
  };
@@ -5423,6 +5500,7 @@ export type TenantUpdateWithoutPropertyVariantsInput = {
5423
5500
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
5424
5501
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
5425
5502
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
5503
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
5426
5504
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
5427
5505
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
5428
5506
  };
@@ -5488,6 +5566,7 @@ export type TenantUncheckedUpdateWithoutPropertyVariantsInput = {
5488
5566
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
5489
5567
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
5490
5568
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
5569
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
5491
5570
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
5492
5571
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
5493
5572
  };
@@ -5553,6 +5632,7 @@ export type TenantCreateWithoutPropertyVariantAmenitiesInput = {
5553
5632
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
5554
5633
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
5555
5634
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
5635
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
5556
5636
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
5557
5637
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
5558
5638
  };
@@ -5618,6 +5698,7 @@ export type TenantUncheckedCreateWithoutPropertyVariantAmenitiesInput = {
5618
5698
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
5619
5699
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
5620
5700
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
5701
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
5621
5702
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
5622
5703
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
5623
5704
  };
@@ -5696,6 +5777,7 @@ export type TenantUpdateWithoutPropertyVariantAmenitiesInput = {
5696
5777
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
5697
5778
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
5698
5779
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
5780
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
5699
5781
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
5700
5782
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
5701
5783
  };
@@ -5761,6 +5843,7 @@ export type TenantUncheckedUpdateWithoutPropertyVariantAmenitiesInput = {
5761
5843
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
5762
5844
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
5763
5845
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
5846
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
5764
5847
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
5765
5848
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
5766
5849
  };
@@ -5826,6 +5909,7 @@ export type TenantCreateWithoutPropertyVariantMediaInput = {
5826
5909
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
5827
5910
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
5828
5911
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
5912
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
5829
5913
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
5830
5914
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
5831
5915
  };
@@ -5891,6 +5975,7 @@ export type TenantUncheckedCreateWithoutPropertyVariantMediaInput = {
5891
5975
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
5892
5976
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
5893
5977
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
5978
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
5894
5979
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
5895
5980
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
5896
5981
  };
@@ -5969,6 +6054,7 @@ export type TenantUpdateWithoutPropertyVariantMediaInput = {
5969
6054
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
5970
6055
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
5971
6056
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
6057
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
5972
6058
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
5973
6059
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
5974
6060
  };
@@ -6034,6 +6120,7 @@ export type TenantUncheckedUpdateWithoutPropertyVariantMediaInput = {
6034
6120
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
6035
6121
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
6036
6122
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
6123
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
6037
6124
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
6038
6125
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
6039
6126
  };
@@ -6099,6 +6186,7 @@ export type TenantCreateWithoutPropertyUnitsInput = {
6099
6186
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
6100
6187
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
6101
6188
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
6189
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
6102
6190
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
6103
6191
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
6104
6192
  };
@@ -6164,6 +6252,7 @@ export type TenantUncheckedCreateWithoutPropertyUnitsInput = {
6164
6252
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
6165
6253
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
6166
6254
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
6255
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
6167
6256
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
6168
6257
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
6169
6258
  };
@@ -6242,6 +6331,7 @@ export type TenantUpdateWithoutPropertyUnitsInput = {
6242
6331
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
6243
6332
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
6244
6333
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
6334
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
6245
6335
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
6246
6336
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
6247
6337
  };
@@ -6307,6 +6397,7 @@ export type TenantUncheckedUpdateWithoutPropertyUnitsInput = {
6307
6397
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
6308
6398
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
6309
6399
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
6400
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
6310
6401
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
6311
6402
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
6312
6403
  };
@@ -6372,6 +6463,7 @@ export type TenantCreateWithoutPropertyAmenitiesInput = {
6372
6463
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
6373
6464
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
6374
6465
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
6466
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
6375
6467
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
6376
6468
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
6377
6469
  };
@@ -6437,6 +6529,7 @@ export type TenantUncheckedCreateWithoutPropertyAmenitiesInput = {
6437
6529
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
6438
6530
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
6439
6531
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
6532
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
6440
6533
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
6441
6534
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
6442
6535
  };
@@ -6515,6 +6608,7 @@ export type TenantUpdateWithoutPropertyAmenitiesInput = {
6515
6608
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
6516
6609
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
6517
6610
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
6611
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
6518
6612
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
6519
6613
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
6520
6614
  };
@@ -6580,6 +6674,7 @@ export type TenantUncheckedUpdateWithoutPropertyAmenitiesInput = {
6580
6674
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
6581
6675
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
6582
6676
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
6677
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
6583
6678
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
6584
6679
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
6585
6680
  };
@@ -6645,6 +6740,7 @@ export type TenantCreateWithoutDocumentationPlansInput = {
6645
6740
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
6646
6741
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
6647
6742
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
6743
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
6648
6744
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
6649
6745
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
6650
6746
  };
@@ -6710,6 +6806,7 @@ export type TenantUncheckedCreateWithoutDocumentationPlansInput = {
6710
6806
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
6711
6807
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
6712
6808
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
6809
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
6713
6810
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
6714
6811
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
6715
6812
  };
@@ -6788,6 +6885,7 @@ export type TenantUpdateWithoutDocumentationPlansInput = {
6788
6885
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
6789
6886
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
6790
6887
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
6888
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
6791
6889
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
6792
6890
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
6793
6891
  };
@@ -6853,6 +6951,7 @@ export type TenantUncheckedUpdateWithoutDocumentationPlansInput = {
6853
6951
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
6854
6952
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
6855
6953
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
6954
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
6856
6955
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
6857
6956
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
6858
6957
  };
@@ -6918,6 +7017,7 @@ export type TenantCreateWithoutQuestionnairePlansInput = {
6918
7017
  settings?: Prisma.SettingsCreateNestedManyWithoutTenantInput;
6919
7018
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
6920
7019
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
7020
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
6921
7021
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
6922
7022
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
6923
7023
  };
@@ -6983,6 +7083,7 @@ export type TenantUncheckedCreateWithoutQuestionnairePlansInput = {
6983
7083
  settings?: Prisma.SettingsUncheckedCreateNestedManyWithoutTenantInput;
6984
7084
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
6985
7085
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
7086
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
6986
7087
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
6987
7088
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
6988
7089
  };
@@ -7061,6 +7162,7 @@ export type TenantUpdateWithoutQuestionnairePlansInput = {
7061
7162
  settings?: Prisma.SettingsUpdateManyWithoutTenantNestedInput;
7062
7163
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
7063
7164
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
7165
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
7064
7166
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
7065
7167
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
7066
7168
  };
@@ -7126,6 +7228,7 @@ export type TenantUncheckedUpdateWithoutQuestionnairePlansInput = {
7126
7228
  settings?: Prisma.SettingsUncheckedUpdateManyWithoutTenantNestedInput;
7127
7229
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
7128
7230
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
7231
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
7129
7232
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
7130
7233
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
7131
7234
  };
@@ -7191,6 +7294,7 @@ export type TenantCreateWithoutPaymentPlansInput = {
7191
7294
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
7192
7295
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
7193
7296
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
7297
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
7194
7298
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
7195
7299
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
7196
7300
  };
@@ -7256,6 +7360,7 @@ export type TenantUncheckedCreateWithoutPaymentPlansInput = {
7256
7360
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
7257
7361
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
7258
7362
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
7363
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
7259
7364
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
7260
7365
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
7261
7366
  };
@@ -7334,6 +7439,7 @@ export type TenantUpdateWithoutPaymentPlansInput = {
7334
7439
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
7335
7440
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
7336
7441
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
7442
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
7337
7443
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
7338
7444
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
7339
7445
  };
@@ -7399,6 +7505,7 @@ export type TenantUncheckedUpdateWithoutPaymentPlansInput = {
7399
7505
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
7400
7506
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
7401
7507
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
7508
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
7402
7509
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
7403
7510
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
7404
7511
  };
@@ -7464,6 +7571,7 @@ export type TenantCreateWithoutPaymentMethodsInput = {
7464
7571
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
7465
7572
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
7466
7573
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
7574
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
7467
7575
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
7468
7576
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
7469
7577
  };
@@ -7529,6 +7637,7 @@ export type TenantUncheckedCreateWithoutPaymentMethodsInput = {
7529
7637
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
7530
7638
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
7531
7639
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
7640
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
7532
7641
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
7533
7642
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
7534
7643
  };
@@ -7607,6 +7716,7 @@ export type TenantUpdateWithoutPaymentMethodsInput = {
7607
7716
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
7608
7717
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
7609
7718
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
7719
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
7610
7720
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
7611
7721
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
7612
7722
  };
@@ -7672,6 +7782,7 @@ export type TenantUncheckedUpdateWithoutPaymentMethodsInput = {
7672
7782
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
7673
7783
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
7674
7784
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
7785
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
7675
7786
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
7676
7787
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
7677
7788
  };
@@ -7737,6 +7848,7 @@ export type TenantCreateWithoutPropertyPaymentMethodLinksInput = {
7737
7848
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
7738
7849
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
7739
7850
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
7851
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
7740
7852
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
7741
7853
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
7742
7854
  };
@@ -7802,6 +7914,7 @@ export type TenantUncheckedCreateWithoutPropertyPaymentMethodLinksInput = {
7802
7914
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
7803
7915
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
7804
7916
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
7917
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
7805
7918
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
7806
7919
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
7807
7920
  };
@@ -7880,6 +7993,7 @@ export type TenantUpdateWithoutPropertyPaymentMethodLinksInput = {
7880
7993
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
7881
7994
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
7882
7995
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
7996
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
7883
7997
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
7884
7998
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
7885
7999
  };
@@ -7945,6 +8059,7 @@ export type TenantUncheckedUpdateWithoutPropertyPaymentMethodLinksInput = {
7945
8059
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
7946
8060
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
7947
8061
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
8062
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
7948
8063
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
7949
8064
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
7950
8065
  };
@@ -8010,6 +8125,7 @@ export type TenantCreateWithoutPropertyPaymentMethodPhasesInput = {
8010
8125
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
8011
8126
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
8012
8127
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
8128
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
8013
8129
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
8014
8130
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
8015
8131
  };
@@ -8075,6 +8191,7 @@ export type TenantUncheckedCreateWithoutPropertyPaymentMethodPhasesInput = {
8075
8191
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
8076
8192
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
8077
8193
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
8194
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
8078
8195
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
8079
8196
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
8080
8197
  };
@@ -8153,6 +8270,7 @@ export type TenantUpdateWithoutPropertyPaymentMethodPhasesInput = {
8153
8270
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
8154
8271
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
8155
8272
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
8273
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
8156
8274
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
8157
8275
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
8158
8276
  };
@@ -8218,6 +8336,7 @@ export type TenantUncheckedUpdateWithoutPropertyPaymentMethodPhasesInput = {
8218
8336
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
8219
8337
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
8220
8338
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
8339
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
8221
8340
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
8222
8341
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
8223
8342
  };
@@ -8283,6 +8402,7 @@ export type TenantCreateWithoutPhaseEventAttachmentsInput = {
8283
8402
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
8284
8403
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
8285
8404
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
8405
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
8286
8406
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
8287
8407
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
8288
8408
  };
@@ -8348,6 +8468,7 @@ export type TenantUncheckedCreateWithoutPhaseEventAttachmentsInput = {
8348
8468
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
8349
8469
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
8350
8470
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
8471
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
8351
8472
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
8352
8473
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
8353
8474
  };
@@ -8426,6 +8547,7 @@ export type TenantUpdateWithoutPhaseEventAttachmentsInput = {
8426
8547
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
8427
8548
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
8428
8549
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
8550
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
8429
8551
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
8430
8552
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
8431
8553
  };
@@ -8491,6 +8613,7 @@ export type TenantUncheckedUpdateWithoutPhaseEventAttachmentsInput = {
8491
8613
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
8492
8614
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
8493
8615
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
8616
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
8494
8617
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
8495
8618
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
8496
8619
  };
@@ -8556,6 +8679,7 @@ export type TenantCreateWithoutPaymentMethodPhaseStepsInput = {
8556
8679
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
8557
8680
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
8558
8681
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
8682
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
8559
8683
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
8560
8684
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
8561
8685
  };
@@ -8621,6 +8745,7 @@ export type TenantUncheckedCreateWithoutPaymentMethodPhaseStepsInput = {
8621
8745
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
8622
8746
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
8623
8747
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
8748
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
8624
8749
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
8625
8750
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
8626
8751
  };
@@ -8699,6 +8824,7 @@ export type TenantUpdateWithoutPaymentMethodPhaseStepsInput = {
8699
8824
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
8700
8825
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
8701
8826
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
8827
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
8702
8828
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
8703
8829
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
8704
8830
  };
@@ -8764,6 +8890,7 @@ export type TenantUncheckedUpdateWithoutPaymentMethodPhaseStepsInput = {
8764
8890
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
8765
8891
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
8766
8892
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
8893
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
8767
8894
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
8768
8895
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
8769
8896
  };
@@ -8829,6 +8956,7 @@ export type TenantCreateWithoutStepEventAttachmentsInput = {
8829
8956
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
8830
8957
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
8831
8958
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
8959
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
8832
8960
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
8833
8961
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
8834
8962
  };
@@ -8894,6 +9022,7 @@ export type TenantUncheckedCreateWithoutStepEventAttachmentsInput = {
8894
9022
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
8895
9023
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
8896
9024
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
9025
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
8897
9026
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
8898
9027
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
8899
9028
  };
@@ -8972,6 +9101,7 @@ export type TenantUpdateWithoutStepEventAttachmentsInput = {
8972
9101
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
8973
9102
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
8974
9103
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
9104
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
8975
9105
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
8976
9106
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
8977
9107
  };
@@ -9037,6 +9167,7 @@ export type TenantUncheckedUpdateWithoutStepEventAttachmentsInput = {
9037
9167
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
9038
9168
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
9039
9169
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
9170
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
9040
9171
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
9041
9172
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
9042
9173
  };
@@ -9102,6 +9233,7 @@ export type TenantCreateWithoutPaymentMethodPhaseDocumentsInput = {
9102
9233
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
9103
9234
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
9104
9235
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
9236
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
9105
9237
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
9106
9238
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
9107
9239
  };
@@ -9167,6 +9299,7 @@ export type TenantUncheckedCreateWithoutPaymentMethodPhaseDocumentsInput = {
9167
9299
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
9168
9300
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
9169
9301
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
9302
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
9170
9303
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
9171
9304
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
9172
9305
  };
@@ -9245,6 +9378,7 @@ export type TenantUpdateWithoutPaymentMethodPhaseDocumentsInput = {
9245
9378
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
9246
9379
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
9247
9380
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
9381
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
9248
9382
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
9249
9383
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
9250
9384
  };
@@ -9310,6 +9444,7 @@ export type TenantUncheckedUpdateWithoutPaymentMethodPhaseDocumentsInput = {
9310
9444
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
9311
9445
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
9312
9446
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
9447
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
9313
9448
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
9314
9449
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
9315
9450
  };
@@ -9375,6 +9510,7 @@ export type TenantCreateWithoutPaymentMethodPhaseFieldsInput = {
9375
9510
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
9376
9511
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
9377
9512
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
9513
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
9378
9514
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
9379
9515
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
9380
9516
  };
@@ -9440,6 +9576,7 @@ export type TenantUncheckedCreateWithoutPaymentMethodPhaseFieldsInput = {
9440
9576
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
9441
9577
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
9442
9578
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
9579
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
9443
9580
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
9444
9581
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
9445
9582
  };
@@ -9518,6 +9655,7 @@ export type TenantUpdateWithoutPaymentMethodPhaseFieldsInput = {
9518
9655
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
9519
9656
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
9520
9657
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
9658
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
9521
9659
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
9522
9660
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
9523
9661
  };
@@ -9583,6 +9721,7 @@ export type TenantUncheckedUpdateWithoutPaymentMethodPhaseFieldsInput = {
9583
9721
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
9584
9722
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
9585
9723
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
9724
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
9586
9725
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
9587
9726
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
9588
9727
  };
@@ -9648,6 +9787,7 @@ export type TenantCreateWithoutApplicationsInput = {
9648
9787
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
9649
9788
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
9650
9789
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
9790
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
9651
9791
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
9652
9792
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
9653
9793
  };
@@ -9713,6 +9853,7 @@ export type TenantUncheckedCreateWithoutApplicationsInput = {
9713
9853
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
9714
9854
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
9715
9855
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
9856
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
9716
9857
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
9717
9858
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
9718
9859
  };
@@ -9791,6 +9932,7 @@ export type TenantUpdateWithoutApplicationsInput = {
9791
9932
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
9792
9933
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
9793
9934
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
9935
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
9794
9936
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
9795
9937
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
9796
9938
  };
@@ -9856,6 +9998,7 @@ export type TenantUncheckedUpdateWithoutApplicationsInput = {
9856
9998
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
9857
9999
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
9858
10000
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
10001
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
9859
10002
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
9860
10003
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
9861
10004
  };
@@ -9921,6 +10064,7 @@ export type TenantCreateWithoutContractRefundsInput = {
9921
10064
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
9922
10065
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
9923
10066
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
10067
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
9924
10068
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
9925
10069
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
9926
10070
  };
@@ -9986,6 +10130,7 @@ export type TenantUncheckedCreateWithoutContractRefundsInput = {
9986
10130
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
9987
10131
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
9988
10132
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
10133
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
9989
10134
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
9990
10135
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
9991
10136
  };
@@ -10064,6 +10209,7 @@ export type TenantUpdateWithoutContractRefundsInput = {
10064
10209
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
10065
10210
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
10066
10211
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
10212
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
10067
10213
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
10068
10214
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
10069
10215
  };
@@ -10129,6 +10275,7 @@ export type TenantUncheckedUpdateWithoutContractRefundsInput = {
10129
10275
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
10130
10276
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
10131
10277
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
10278
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
10132
10279
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
10133
10280
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
10134
10281
  };
@@ -10194,6 +10341,7 @@ export type TenantCreateWithoutApplicationPhasesInput = {
10194
10341
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
10195
10342
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
10196
10343
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
10344
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
10197
10345
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
10198
10346
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
10199
10347
  };
@@ -10259,6 +10407,7 @@ export type TenantUncheckedCreateWithoutApplicationPhasesInput = {
10259
10407
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
10260
10408
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
10261
10409
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
10410
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
10262
10411
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
10263
10412
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
10264
10413
  };
@@ -10337,6 +10486,7 @@ export type TenantUpdateWithoutApplicationPhasesInput = {
10337
10486
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
10338
10487
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
10339
10488
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
10489
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
10340
10490
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
10341
10491
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
10342
10492
  };
@@ -10402,6 +10552,7 @@ export type TenantUncheckedUpdateWithoutApplicationPhasesInput = {
10402
10552
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
10403
10553
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
10404
10554
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
10555
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
10405
10556
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
10406
10557
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
10407
10558
  };
@@ -10467,6 +10618,7 @@ export type TenantCreateWithoutQuestionnairePhasesInput = {
10467
10618
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
10468
10619
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
10469
10620
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
10621
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
10470
10622
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
10471
10623
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
10472
10624
  };
@@ -10532,6 +10684,7 @@ export type TenantUncheckedCreateWithoutQuestionnairePhasesInput = {
10532
10684
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
10533
10685
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
10534
10686
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
10687
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
10535
10688
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
10536
10689
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
10537
10690
  };
@@ -10610,6 +10763,7 @@ export type TenantUpdateWithoutQuestionnairePhasesInput = {
10610
10763
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
10611
10764
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
10612
10765
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
10766
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
10613
10767
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
10614
10768
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
10615
10769
  };
@@ -10675,6 +10829,284 @@ export type TenantUncheckedUpdateWithoutQuestionnairePhasesInput = {
10675
10829
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
10676
10830
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
10677
10831
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
10832
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
10833
+ documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
10834
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
10835
+ };
10836
+ export type TenantCreateWithoutQuestionnairePhaseReviewsInput = {
10837
+ id?: string;
10838
+ name: string;
10839
+ subdomain: string;
10840
+ isActive?: boolean;
10841
+ createdAt?: Date | string;
10842
+ updatedAt?: Date | string;
10843
+ users?: Prisma.UserCreateNestedManyWithoutTenantInput;
10844
+ properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
10845
+ paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
10846
+ documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
10847
+ paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
10848
+ applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
10849
+ roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
10850
+ permissions?: Prisma.PermissionCreateNestedManyWithoutTenantInput;
10851
+ memberships?: Prisma.TenantMembershipCreateNestedManyWithoutTenantInput;
10852
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutTenantInput;
10853
+ documentRequirementRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutTenantInput;
10854
+ contractTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutTenantInput;
10855
+ documentTemplates?: Prisma.DocumentTemplateCreateNestedManyWithoutTenantInput;
10856
+ offerLetters?: Prisma.OfferLetterCreateNestedManyWithoutTenantInput;
10857
+ apiKeys?: Prisma.ApiKeyCreateNestedManyWithoutTenantInput;
10858
+ eventChannels?: Prisma.EventChannelCreateNestedManyWithoutTenantInput;
10859
+ eventTypes?: Prisma.EventTypeCreateNestedManyWithoutTenantInput;
10860
+ eventHandlers?: Prisma.EventHandlerCreateNestedManyWithoutTenantInput;
10861
+ workflowEvents?: Prisma.WorkflowEventCreateNestedManyWithoutTenantInput;
10862
+ propertyTransferRequests?: Prisma.PropertyTransferRequestCreateNestedManyWithoutTenantInput;
10863
+ approvalRequests?: Prisma.ApprovalRequestCreateNestedManyWithoutTenantInput;
10864
+ contractRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutTenantInput;
10865
+ propertyPaymentMethodLinks?: Prisma.PropertyPaymentMethodLinkCreateNestedManyWithoutTenantInput;
10866
+ propertyPaymentMethodPhases?: Prisma.PropertyPaymentMethodPhaseCreateNestedManyWithoutTenantInput;
10867
+ phaseEventAttachments?: Prisma.PhaseEventAttachmentCreateNestedManyWithoutTenantInput;
10868
+ paymentMethodPhaseSteps?: Prisma.PaymentMethodPhaseStepCreateNestedManyWithoutTenantInput;
10869
+ stepEventAttachments?: Prisma.StepEventAttachmentCreateNestedManyWithoutTenantInput;
10870
+ paymentMethodPhaseDocuments?: Prisma.PaymentMethodPhaseDocumentCreateNestedManyWithoutTenantInput;
10871
+ paymentMethodPhaseFields?: Prisma.PaymentMethodPhaseFieldCreateNestedManyWithoutTenantInput;
10872
+ applicationPhases?: Prisma.ApplicationPhaseCreateNestedManyWithoutTenantInput;
10873
+ questionnairePhases?: Prisma.QuestionnairePhaseCreateNestedManyWithoutTenantInput;
10874
+ documentationPhases?: Prisma.DocumentationPhaseCreateNestedManyWithoutTenantInput;
10875
+ paymentPhases?: Prisma.PaymentPhaseCreateNestedManyWithoutTenantInput;
10876
+ questionnaireFields?: Prisma.QuestionnaireFieldCreateNestedManyWithoutTenantInput;
10877
+ applicationEvents?: Prisma.ApplicationEventCreateNestedManyWithoutTenantInput;
10878
+ paymentInstallments?: Prisma.PaymentInstallmentCreateNestedManyWithoutTenantInput;
10879
+ applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutTenantInput;
10880
+ applicationDocuments?: Prisma.ApplicationDocumentCreateNestedManyWithoutTenantInput;
10881
+ documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutTenantInput;
10882
+ approvalStageProgress?: Prisma.ApprovalStageProgressCreateNestedManyWithoutTenantInput;
10883
+ propertyMedia?: Prisma.PropertyMediaCreateNestedManyWithoutTenantInput;
10884
+ propertyDocuments?: Prisma.PropertyDocumentCreateNestedManyWithoutTenantInput;
10885
+ propertyVariants?: Prisma.PropertyVariantCreateNestedManyWithoutTenantInput;
10886
+ propertyVariantAmenities?: Prisma.PropertyVariantAmenityCreateNestedManyWithoutTenantInput;
10887
+ propertyVariantMedia?: Prisma.PropertyVariantMediaCreateNestedManyWithoutTenantInput;
10888
+ propertyUnits?: Prisma.PropertyUnitCreateNestedManyWithoutTenantInput;
10889
+ propertyAmenities?: Prisma.PropertyAmenityCreateNestedManyWithoutTenantInput;
10890
+ eventHandlerExecutions?: Prisma.EventHandlerExecutionCreateNestedManyWithoutTenantInput;
10891
+ amenities?: Prisma.AmenityCreateNestedManyWithoutTenantInput;
10892
+ socials?: Prisma.SocialCreateNestedManyWithoutTenantInput;
10893
+ wallets?: Prisma.WalletCreateNestedManyWithoutTenantInput;
10894
+ transactions?: Prisma.TransactionCreateNestedManyWithoutTenantInput;
10895
+ settings?: Prisma.SettingsCreateNestedManyWithoutTenantInput;
10896
+ domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
10897
+ workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
10898
+ questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
10899
+ documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
10900
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
10901
+ };
10902
+ export type TenantUncheckedCreateWithoutQuestionnairePhaseReviewsInput = {
10903
+ id?: string;
10904
+ name: string;
10905
+ subdomain: string;
10906
+ isActive?: boolean;
10907
+ createdAt?: Date | string;
10908
+ updatedAt?: Date | string;
10909
+ users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
10910
+ properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
10911
+ paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
10912
+ documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
10913
+ paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
10914
+ applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
10915
+ roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
10916
+ permissions?: Prisma.PermissionUncheckedCreateNestedManyWithoutTenantInput;
10917
+ memberships?: Prisma.TenantMembershipUncheckedCreateNestedManyWithoutTenantInput;
10918
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutTenantInput;
10919
+ documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutTenantInput;
10920
+ contractTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutTenantInput;
10921
+ documentTemplates?: Prisma.DocumentTemplateUncheckedCreateNestedManyWithoutTenantInput;
10922
+ offerLetters?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutTenantInput;
10923
+ apiKeys?: Prisma.ApiKeyUncheckedCreateNestedManyWithoutTenantInput;
10924
+ eventChannels?: Prisma.EventChannelUncheckedCreateNestedManyWithoutTenantInput;
10925
+ eventTypes?: Prisma.EventTypeUncheckedCreateNestedManyWithoutTenantInput;
10926
+ eventHandlers?: Prisma.EventHandlerUncheckedCreateNestedManyWithoutTenantInput;
10927
+ workflowEvents?: Prisma.WorkflowEventUncheckedCreateNestedManyWithoutTenantInput;
10928
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutTenantInput;
10929
+ approvalRequests?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutTenantInput;
10930
+ contractRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutTenantInput;
10931
+ propertyPaymentMethodLinks?: Prisma.PropertyPaymentMethodLinkUncheckedCreateNestedManyWithoutTenantInput;
10932
+ propertyPaymentMethodPhases?: Prisma.PropertyPaymentMethodPhaseUncheckedCreateNestedManyWithoutTenantInput;
10933
+ phaseEventAttachments?: Prisma.PhaseEventAttachmentUncheckedCreateNestedManyWithoutTenantInput;
10934
+ paymentMethodPhaseSteps?: Prisma.PaymentMethodPhaseStepUncheckedCreateNestedManyWithoutTenantInput;
10935
+ stepEventAttachments?: Prisma.StepEventAttachmentUncheckedCreateNestedManyWithoutTenantInput;
10936
+ paymentMethodPhaseDocuments?: Prisma.PaymentMethodPhaseDocumentUncheckedCreateNestedManyWithoutTenantInput;
10937
+ paymentMethodPhaseFields?: Prisma.PaymentMethodPhaseFieldUncheckedCreateNestedManyWithoutTenantInput;
10938
+ applicationPhases?: Prisma.ApplicationPhaseUncheckedCreateNestedManyWithoutTenantInput;
10939
+ questionnairePhases?: Prisma.QuestionnairePhaseUncheckedCreateNestedManyWithoutTenantInput;
10940
+ documentationPhases?: Prisma.DocumentationPhaseUncheckedCreateNestedManyWithoutTenantInput;
10941
+ paymentPhases?: Prisma.PaymentPhaseUncheckedCreateNestedManyWithoutTenantInput;
10942
+ questionnaireFields?: Prisma.QuestionnaireFieldUncheckedCreateNestedManyWithoutTenantInput;
10943
+ applicationEvents?: Prisma.ApplicationEventUncheckedCreateNestedManyWithoutTenantInput;
10944
+ paymentInstallments?: Prisma.PaymentInstallmentUncheckedCreateNestedManyWithoutTenantInput;
10945
+ applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutTenantInput;
10946
+ applicationDocuments?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutTenantInput;
10947
+ documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutTenantInput;
10948
+ approvalStageProgress?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutTenantInput;
10949
+ propertyMedia?: Prisma.PropertyMediaUncheckedCreateNestedManyWithoutTenantInput;
10950
+ propertyDocuments?: Prisma.PropertyDocumentUncheckedCreateNestedManyWithoutTenantInput;
10951
+ propertyVariants?: Prisma.PropertyVariantUncheckedCreateNestedManyWithoutTenantInput;
10952
+ propertyVariantAmenities?: Prisma.PropertyVariantAmenityUncheckedCreateNestedManyWithoutTenantInput;
10953
+ propertyVariantMedia?: Prisma.PropertyVariantMediaUncheckedCreateNestedManyWithoutTenantInput;
10954
+ propertyUnits?: Prisma.PropertyUnitUncheckedCreateNestedManyWithoutTenantInput;
10955
+ propertyAmenities?: Prisma.PropertyAmenityUncheckedCreateNestedManyWithoutTenantInput;
10956
+ eventHandlerExecutions?: Prisma.EventHandlerExecutionUncheckedCreateNestedManyWithoutTenantInput;
10957
+ amenities?: Prisma.AmenityUncheckedCreateNestedManyWithoutTenantInput;
10958
+ socials?: Prisma.SocialUncheckedCreateNestedManyWithoutTenantInput;
10959
+ wallets?: Prisma.WalletUncheckedCreateNestedManyWithoutTenantInput;
10960
+ transactions?: Prisma.TransactionUncheckedCreateNestedManyWithoutTenantInput;
10961
+ settings?: Prisma.SettingsUncheckedCreateNestedManyWithoutTenantInput;
10962
+ domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
10963
+ workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
10964
+ questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
10965
+ documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
10966
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
10967
+ };
10968
+ export type TenantCreateOrConnectWithoutQuestionnairePhaseReviewsInput = {
10969
+ where: Prisma.TenantWhereUniqueInput;
10970
+ create: Prisma.XOR<Prisma.TenantCreateWithoutQuestionnairePhaseReviewsInput, Prisma.TenantUncheckedCreateWithoutQuestionnairePhaseReviewsInput>;
10971
+ };
10972
+ export type TenantUpsertWithoutQuestionnairePhaseReviewsInput = {
10973
+ update: Prisma.XOR<Prisma.TenantUpdateWithoutQuestionnairePhaseReviewsInput, Prisma.TenantUncheckedUpdateWithoutQuestionnairePhaseReviewsInput>;
10974
+ create: Prisma.XOR<Prisma.TenantCreateWithoutQuestionnairePhaseReviewsInput, Prisma.TenantUncheckedCreateWithoutQuestionnairePhaseReviewsInput>;
10975
+ where?: Prisma.TenantWhereInput;
10976
+ };
10977
+ export type TenantUpdateToOneWithWhereWithoutQuestionnairePhaseReviewsInput = {
10978
+ where?: Prisma.TenantWhereInput;
10979
+ data: Prisma.XOR<Prisma.TenantUpdateWithoutQuestionnairePhaseReviewsInput, Prisma.TenantUncheckedUpdateWithoutQuestionnairePhaseReviewsInput>;
10980
+ };
10981
+ export type TenantUpdateWithoutQuestionnairePhaseReviewsInput = {
10982
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
10983
+ name?: Prisma.StringFieldUpdateOperationsInput | string;
10984
+ subdomain?: Prisma.StringFieldUpdateOperationsInput | string;
10985
+ isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
10986
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
10987
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
10988
+ users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
10989
+ properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
10990
+ paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
10991
+ documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
10992
+ paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
10993
+ applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
10994
+ roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
10995
+ permissions?: Prisma.PermissionUpdateManyWithoutTenantNestedInput;
10996
+ memberships?: Prisma.TenantMembershipUpdateManyWithoutTenantNestedInput;
10997
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutTenantNestedInput;
10998
+ documentRequirementRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutTenantNestedInput;
10999
+ contractTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutTenantNestedInput;
11000
+ documentTemplates?: Prisma.DocumentTemplateUpdateManyWithoutTenantNestedInput;
11001
+ offerLetters?: Prisma.OfferLetterUpdateManyWithoutTenantNestedInput;
11002
+ apiKeys?: Prisma.ApiKeyUpdateManyWithoutTenantNestedInput;
11003
+ eventChannels?: Prisma.EventChannelUpdateManyWithoutTenantNestedInput;
11004
+ eventTypes?: Prisma.EventTypeUpdateManyWithoutTenantNestedInput;
11005
+ eventHandlers?: Prisma.EventHandlerUpdateManyWithoutTenantNestedInput;
11006
+ workflowEvents?: Prisma.WorkflowEventUpdateManyWithoutTenantNestedInput;
11007
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUpdateManyWithoutTenantNestedInput;
11008
+ approvalRequests?: Prisma.ApprovalRequestUpdateManyWithoutTenantNestedInput;
11009
+ contractRefunds?: Prisma.ApplicationRefundUpdateManyWithoutTenantNestedInput;
11010
+ propertyPaymentMethodLinks?: Prisma.PropertyPaymentMethodLinkUpdateManyWithoutTenantNestedInput;
11011
+ propertyPaymentMethodPhases?: Prisma.PropertyPaymentMethodPhaseUpdateManyWithoutTenantNestedInput;
11012
+ phaseEventAttachments?: Prisma.PhaseEventAttachmentUpdateManyWithoutTenantNestedInput;
11013
+ paymentMethodPhaseSteps?: Prisma.PaymentMethodPhaseStepUpdateManyWithoutTenantNestedInput;
11014
+ stepEventAttachments?: Prisma.StepEventAttachmentUpdateManyWithoutTenantNestedInput;
11015
+ paymentMethodPhaseDocuments?: Prisma.PaymentMethodPhaseDocumentUpdateManyWithoutTenantNestedInput;
11016
+ paymentMethodPhaseFields?: Prisma.PaymentMethodPhaseFieldUpdateManyWithoutTenantNestedInput;
11017
+ applicationPhases?: Prisma.ApplicationPhaseUpdateManyWithoutTenantNestedInput;
11018
+ questionnairePhases?: Prisma.QuestionnairePhaseUpdateManyWithoutTenantNestedInput;
11019
+ documentationPhases?: Prisma.DocumentationPhaseUpdateManyWithoutTenantNestedInput;
11020
+ paymentPhases?: Prisma.PaymentPhaseUpdateManyWithoutTenantNestedInput;
11021
+ questionnaireFields?: Prisma.QuestionnaireFieldUpdateManyWithoutTenantNestedInput;
11022
+ applicationEvents?: Prisma.ApplicationEventUpdateManyWithoutTenantNestedInput;
11023
+ paymentInstallments?: Prisma.PaymentInstallmentUpdateManyWithoutTenantNestedInput;
11024
+ applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutTenantNestedInput;
11025
+ applicationDocuments?: Prisma.ApplicationDocumentUpdateManyWithoutTenantNestedInput;
11026
+ documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutTenantNestedInput;
11027
+ approvalStageProgress?: Prisma.ApprovalStageProgressUpdateManyWithoutTenantNestedInput;
11028
+ propertyMedia?: Prisma.PropertyMediaUpdateManyWithoutTenantNestedInput;
11029
+ propertyDocuments?: Prisma.PropertyDocumentUpdateManyWithoutTenantNestedInput;
11030
+ propertyVariants?: Prisma.PropertyVariantUpdateManyWithoutTenantNestedInput;
11031
+ propertyVariantAmenities?: Prisma.PropertyVariantAmenityUpdateManyWithoutTenantNestedInput;
11032
+ propertyVariantMedia?: Prisma.PropertyVariantMediaUpdateManyWithoutTenantNestedInput;
11033
+ propertyUnits?: Prisma.PropertyUnitUpdateManyWithoutTenantNestedInput;
11034
+ propertyAmenities?: Prisma.PropertyAmenityUpdateManyWithoutTenantNestedInput;
11035
+ eventHandlerExecutions?: Prisma.EventHandlerExecutionUpdateManyWithoutTenantNestedInput;
11036
+ amenities?: Prisma.AmenityUpdateManyWithoutTenantNestedInput;
11037
+ socials?: Prisma.SocialUpdateManyWithoutTenantNestedInput;
11038
+ wallets?: Prisma.WalletUpdateManyWithoutTenantNestedInput;
11039
+ transactions?: Prisma.TransactionUpdateManyWithoutTenantNestedInput;
11040
+ settings?: Prisma.SettingsUpdateManyWithoutTenantNestedInput;
11041
+ domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
11042
+ workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
11043
+ questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
11044
+ documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
11045
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
11046
+ };
11047
+ export type TenantUncheckedUpdateWithoutQuestionnairePhaseReviewsInput = {
11048
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
11049
+ name?: Prisma.StringFieldUpdateOperationsInput | string;
11050
+ subdomain?: Prisma.StringFieldUpdateOperationsInput | string;
11051
+ isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
11052
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
11053
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
11054
+ users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
11055
+ properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
11056
+ paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
11057
+ documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
11058
+ paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
11059
+ applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
11060
+ roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
11061
+ permissions?: Prisma.PermissionUncheckedUpdateManyWithoutTenantNestedInput;
11062
+ memberships?: Prisma.TenantMembershipUncheckedUpdateManyWithoutTenantNestedInput;
11063
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutTenantNestedInput;
11064
+ documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutTenantNestedInput;
11065
+ contractTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutTenantNestedInput;
11066
+ documentTemplates?: Prisma.DocumentTemplateUncheckedUpdateManyWithoutTenantNestedInput;
11067
+ offerLetters?: Prisma.OfferLetterUncheckedUpdateManyWithoutTenantNestedInput;
11068
+ apiKeys?: Prisma.ApiKeyUncheckedUpdateManyWithoutTenantNestedInput;
11069
+ eventChannels?: Prisma.EventChannelUncheckedUpdateManyWithoutTenantNestedInput;
11070
+ eventTypes?: Prisma.EventTypeUncheckedUpdateManyWithoutTenantNestedInput;
11071
+ eventHandlers?: Prisma.EventHandlerUncheckedUpdateManyWithoutTenantNestedInput;
11072
+ workflowEvents?: Prisma.WorkflowEventUncheckedUpdateManyWithoutTenantNestedInput;
11073
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutTenantNestedInput;
11074
+ approvalRequests?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutTenantNestedInput;
11075
+ contractRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutTenantNestedInput;
11076
+ propertyPaymentMethodLinks?: Prisma.PropertyPaymentMethodLinkUncheckedUpdateManyWithoutTenantNestedInput;
11077
+ propertyPaymentMethodPhases?: Prisma.PropertyPaymentMethodPhaseUncheckedUpdateManyWithoutTenantNestedInput;
11078
+ phaseEventAttachments?: Prisma.PhaseEventAttachmentUncheckedUpdateManyWithoutTenantNestedInput;
11079
+ paymentMethodPhaseSteps?: Prisma.PaymentMethodPhaseStepUncheckedUpdateManyWithoutTenantNestedInput;
11080
+ stepEventAttachments?: Prisma.StepEventAttachmentUncheckedUpdateManyWithoutTenantNestedInput;
11081
+ paymentMethodPhaseDocuments?: Prisma.PaymentMethodPhaseDocumentUncheckedUpdateManyWithoutTenantNestedInput;
11082
+ paymentMethodPhaseFields?: Prisma.PaymentMethodPhaseFieldUncheckedUpdateManyWithoutTenantNestedInput;
11083
+ applicationPhases?: Prisma.ApplicationPhaseUncheckedUpdateManyWithoutTenantNestedInput;
11084
+ questionnairePhases?: Prisma.QuestionnairePhaseUncheckedUpdateManyWithoutTenantNestedInput;
11085
+ documentationPhases?: Prisma.DocumentationPhaseUncheckedUpdateManyWithoutTenantNestedInput;
11086
+ paymentPhases?: Prisma.PaymentPhaseUncheckedUpdateManyWithoutTenantNestedInput;
11087
+ questionnaireFields?: Prisma.QuestionnaireFieldUncheckedUpdateManyWithoutTenantNestedInput;
11088
+ applicationEvents?: Prisma.ApplicationEventUncheckedUpdateManyWithoutTenantNestedInput;
11089
+ paymentInstallments?: Prisma.PaymentInstallmentUncheckedUpdateManyWithoutTenantNestedInput;
11090
+ applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutTenantNestedInput;
11091
+ applicationDocuments?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutTenantNestedInput;
11092
+ documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutTenantNestedInput;
11093
+ approvalStageProgress?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutTenantNestedInput;
11094
+ propertyMedia?: Prisma.PropertyMediaUncheckedUpdateManyWithoutTenantNestedInput;
11095
+ propertyDocuments?: Prisma.PropertyDocumentUncheckedUpdateManyWithoutTenantNestedInput;
11096
+ propertyVariants?: Prisma.PropertyVariantUncheckedUpdateManyWithoutTenantNestedInput;
11097
+ propertyVariantAmenities?: Prisma.PropertyVariantAmenityUncheckedUpdateManyWithoutTenantNestedInput;
11098
+ propertyVariantMedia?: Prisma.PropertyVariantMediaUncheckedUpdateManyWithoutTenantNestedInput;
11099
+ propertyUnits?: Prisma.PropertyUnitUncheckedUpdateManyWithoutTenantNestedInput;
11100
+ propertyAmenities?: Prisma.PropertyAmenityUncheckedUpdateManyWithoutTenantNestedInput;
11101
+ eventHandlerExecutions?: Prisma.EventHandlerExecutionUncheckedUpdateManyWithoutTenantNestedInput;
11102
+ amenities?: Prisma.AmenityUncheckedUpdateManyWithoutTenantNestedInput;
11103
+ socials?: Prisma.SocialUncheckedUpdateManyWithoutTenantNestedInput;
11104
+ wallets?: Prisma.WalletUncheckedUpdateManyWithoutTenantNestedInput;
11105
+ transactions?: Prisma.TransactionUncheckedUpdateManyWithoutTenantNestedInput;
11106
+ settings?: Prisma.SettingsUncheckedUpdateManyWithoutTenantNestedInput;
11107
+ domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
11108
+ workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
11109
+ questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
10678
11110
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
10679
11111
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
10680
11112
  };
@@ -10740,6 +11172,7 @@ export type TenantCreateWithoutDocumentationPhasesInput = {
10740
11172
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
10741
11173
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
10742
11174
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
11175
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
10743
11176
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
10744
11177
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
10745
11178
  };
@@ -10805,6 +11238,7 @@ export type TenantUncheckedCreateWithoutDocumentationPhasesInput = {
10805
11238
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
10806
11239
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
10807
11240
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
11241
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
10808
11242
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
10809
11243
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
10810
11244
  };
@@ -10883,6 +11317,7 @@ export type TenantUpdateWithoutDocumentationPhasesInput = {
10883
11317
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
10884
11318
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
10885
11319
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
11320
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
10886
11321
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
10887
11322
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
10888
11323
  };
@@ -10948,6 +11383,7 @@ export type TenantUncheckedUpdateWithoutDocumentationPhasesInput = {
10948
11383
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
10949
11384
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
10950
11385
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
11386
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
10951
11387
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
10952
11388
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
10953
11389
  };
@@ -11013,6 +11449,7 @@ export type TenantCreateWithoutPaymentPhasesInput = {
11013
11449
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
11014
11450
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
11015
11451
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
11452
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
11016
11453
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
11017
11454
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
11018
11455
  };
@@ -11078,6 +11515,7 @@ export type TenantUncheckedCreateWithoutPaymentPhasesInput = {
11078
11515
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
11079
11516
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
11080
11517
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
11518
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
11081
11519
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
11082
11520
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
11083
11521
  };
@@ -11156,6 +11594,7 @@ export type TenantUpdateWithoutPaymentPhasesInput = {
11156
11594
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
11157
11595
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
11158
11596
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
11597
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
11159
11598
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
11160
11599
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
11161
11600
  };
@@ -11221,6 +11660,7 @@ export type TenantUncheckedUpdateWithoutPaymentPhasesInput = {
11221
11660
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
11222
11661
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
11223
11662
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
11663
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
11224
11664
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
11225
11665
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
11226
11666
  };
@@ -11286,6 +11726,7 @@ export type TenantCreateWithoutQuestionnaireFieldsInput = {
11286
11726
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
11287
11727
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
11288
11728
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
11729
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
11289
11730
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
11290
11731
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
11291
11732
  };
@@ -11351,6 +11792,7 @@ export type TenantUncheckedCreateWithoutQuestionnaireFieldsInput = {
11351
11792
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
11352
11793
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
11353
11794
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
11795
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
11354
11796
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
11355
11797
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
11356
11798
  };
@@ -11429,6 +11871,7 @@ export type TenantUpdateWithoutQuestionnaireFieldsInput = {
11429
11871
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
11430
11872
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
11431
11873
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
11874
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
11432
11875
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
11433
11876
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
11434
11877
  };
@@ -11494,6 +11937,7 @@ export type TenantUncheckedUpdateWithoutQuestionnaireFieldsInput = {
11494
11937
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
11495
11938
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
11496
11939
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
11940
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
11497
11941
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
11498
11942
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
11499
11943
  };
@@ -11559,6 +12003,7 @@ export type TenantCreateWithoutApplicationEventsInput = {
11559
12003
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
11560
12004
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
11561
12005
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
12006
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
11562
12007
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
11563
12008
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
11564
12009
  };
@@ -11624,6 +12069,7 @@ export type TenantUncheckedCreateWithoutApplicationEventsInput = {
11624
12069
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
11625
12070
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
11626
12071
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
12072
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
11627
12073
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
11628
12074
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
11629
12075
  };
@@ -11702,6 +12148,7 @@ export type TenantUpdateWithoutApplicationEventsInput = {
11702
12148
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
11703
12149
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
11704
12150
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
12151
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
11705
12152
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
11706
12153
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
11707
12154
  };
@@ -11767,6 +12214,7 @@ export type TenantUncheckedUpdateWithoutApplicationEventsInput = {
11767
12214
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
11768
12215
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
11769
12216
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
12217
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
11770
12218
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
11771
12219
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
11772
12220
  };
@@ -11832,6 +12280,7 @@ export type TenantCreateWithoutPaymentInstallmentsInput = {
11832
12280
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
11833
12281
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
11834
12282
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
12283
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
11835
12284
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
11836
12285
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
11837
12286
  };
@@ -11897,6 +12346,7 @@ export type TenantUncheckedCreateWithoutPaymentInstallmentsInput = {
11897
12346
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
11898
12347
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
11899
12348
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
12349
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
11900
12350
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
11901
12351
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
11902
12352
  };
@@ -11975,6 +12425,7 @@ export type TenantUpdateWithoutPaymentInstallmentsInput = {
11975
12425
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
11976
12426
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
11977
12427
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
12428
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
11978
12429
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
11979
12430
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
11980
12431
  };
@@ -12040,6 +12491,7 @@ export type TenantUncheckedUpdateWithoutPaymentInstallmentsInput = {
12040
12491
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
12041
12492
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
12042
12493
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
12494
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
12043
12495
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
12044
12496
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
12045
12497
  };
@@ -12105,6 +12557,7 @@ export type TenantCreateWithoutApplicationPaymentsInput = {
12105
12557
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
12106
12558
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
12107
12559
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
12560
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
12108
12561
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
12109
12562
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
12110
12563
  };
@@ -12170,6 +12623,7 @@ export type TenantUncheckedCreateWithoutApplicationPaymentsInput = {
12170
12623
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
12171
12624
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
12172
12625
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
12626
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
12173
12627
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
12174
12628
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
12175
12629
  };
@@ -12248,6 +12702,7 @@ export type TenantUpdateWithoutApplicationPaymentsInput = {
12248
12702
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
12249
12703
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
12250
12704
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
12705
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
12251
12706
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
12252
12707
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
12253
12708
  };
@@ -12313,6 +12768,7 @@ export type TenantUncheckedUpdateWithoutApplicationPaymentsInput = {
12313
12768
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
12314
12769
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
12315
12770
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
12771
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
12316
12772
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
12317
12773
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
12318
12774
  };
@@ -12378,6 +12834,7 @@ export type TenantCreateWithoutApplicationDocumentsInput = {
12378
12834
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
12379
12835
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
12380
12836
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
12837
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
12381
12838
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
12382
12839
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
12383
12840
  };
@@ -12443,6 +12900,7 @@ export type TenantUncheckedCreateWithoutApplicationDocumentsInput = {
12443
12900
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
12444
12901
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
12445
12902
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
12903
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
12446
12904
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
12447
12905
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
12448
12906
  };
@@ -12521,6 +12979,7 @@ export type TenantUpdateWithoutApplicationDocumentsInput = {
12521
12979
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
12522
12980
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
12523
12981
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
12982
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
12524
12983
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
12525
12984
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
12526
12985
  };
@@ -12586,6 +13045,7 @@ export type TenantUncheckedUpdateWithoutApplicationDocumentsInput = {
12586
13045
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
12587
13046
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
12588
13047
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
13048
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
12589
13049
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
12590
13050
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
12591
13051
  };
@@ -12652,6 +13112,7 @@ export type TenantCreateWithoutDocumentReviewsInput = {
12652
13112
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
12653
13113
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
12654
13114
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
13115
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
12655
13116
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
12656
13117
  };
12657
13118
  export type TenantUncheckedCreateWithoutDocumentReviewsInput = {
@@ -12717,6 +13178,7 @@ export type TenantUncheckedCreateWithoutDocumentReviewsInput = {
12717
13178
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
12718
13179
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
12719
13180
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
13181
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
12720
13182
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
12721
13183
  };
12722
13184
  export type TenantCreateOrConnectWithoutDocumentReviewsInput = {
@@ -12795,6 +13257,7 @@ export type TenantUpdateWithoutDocumentReviewsInput = {
12795
13257
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
12796
13258
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
12797
13259
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
13260
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
12798
13261
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
12799
13262
  };
12800
13263
  export type TenantUncheckedUpdateWithoutDocumentReviewsInput = {
@@ -12860,6 +13323,7 @@ export type TenantUncheckedUpdateWithoutDocumentReviewsInput = {
12860
13323
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
12861
13324
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
12862
13325
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
13326
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
12863
13327
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
12864
13328
  };
12865
13329
  export type TenantCreateWithoutApprovalStageProgressInput = {
@@ -12924,6 +13388,7 @@ export type TenantCreateWithoutApprovalStageProgressInput = {
12924
13388
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
12925
13389
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
12926
13390
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
13391
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
12927
13392
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
12928
13393
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
12929
13394
  };
@@ -12989,6 +13454,7 @@ export type TenantUncheckedCreateWithoutApprovalStageProgressInput = {
12989
13454
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
12990
13455
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
12991
13456
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
13457
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
12992
13458
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
12993
13459
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
12994
13460
  };
@@ -13067,6 +13533,7 @@ export type TenantUpdateWithoutApprovalStageProgressInput = {
13067
13533
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
13068
13534
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
13069
13535
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
13536
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
13070
13537
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
13071
13538
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
13072
13539
  };
@@ -13132,6 +13599,7 @@ export type TenantUncheckedUpdateWithoutApprovalStageProgressInput = {
13132
13599
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
13133
13600
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
13134
13601
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
13602
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
13135
13603
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
13136
13604
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
13137
13605
  };
@@ -13197,6 +13665,7 @@ export type TenantCreateWithoutDocumentApprovalsInput = {
13197
13665
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
13198
13666
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
13199
13667
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
13668
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
13200
13669
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
13201
13670
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
13202
13671
  };
@@ -13262,6 +13731,7 @@ export type TenantUncheckedCreateWithoutDocumentApprovalsInput = {
13262
13731
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
13263
13732
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
13264
13733
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
13734
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
13265
13735
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
13266
13736
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
13267
13737
  };
@@ -13340,6 +13810,7 @@ export type TenantUpdateWithoutDocumentApprovalsInput = {
13340
13810
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
13341
13811
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
13342
13812
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
13813
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
13343
13814
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
13344
13815
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
13345
13816
  };
@@ -13405,6 +13876,7 @@ export type TenantUncheckedUpdateWithoutDocumentApprovalsInput = {
13405
13876
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
13406
13877
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
13407
13878
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
13879
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
13408
13880
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
13409
13881
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
13410
13882
  };
@@ -13470,6 +13942,7 @@ export type TenantCreateWithoutDocumentTemplatesInput = {
13470
13942
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
13471
13943
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
13472
13944
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
13945
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
13473
13946
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
13474
13947
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
13475
13948
  };
@@ -13535,6 +14008,7 @@ export type TenantUncheckedCreateWithoutDocumentTemplatesInput = {
13535
14008
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
13536
14009
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
13537
14010
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
14011
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
13538
14012
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
13539
14013
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
13540
14014
  };
@@ -13613,6 +14087,7 @@ export type TenantUpdateWithoutDocumentTemplatesInput = {
13613
14087
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
13614
14088
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
13615
14089
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
14090
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
13616
14091
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
13617
14092
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
13618
14093
  };
@@ -13678,6 +14153,7 @@ export type TenantUncheckedUpdateWithoutDocumentTemplatesInput = {
13678
14153
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
13679
14154
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
13680
14155
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
14156
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
13681
14157
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
13682
14158
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
13683
14159
  };
@@ -13743,6 +14219,7 @@ export type TenantCreateWithoutOfferLettersInput = {
13743
14219
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
13744
14220
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
13745
14221
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
14222
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
13746
14223
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
13747
14224
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
13748
14225
  };
@@ -13808,6 +14285,7 @@ export type TenantUncheckedCreateWithoutOfferLettersInput = {
13808
14285
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
13809
14286
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
13810
14287
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
14288
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
13811
14289
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
13812
14290
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
13813
14291
  };
@@ -13886,6 +14364,7 @@ export type TenantUpdateWithoutOfferLettersInput = {
13886
14364
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
13887
14365
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
13888
14366
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
14367
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
13889
14368
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
13890
14369
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
13891
14370
  };
@@ -13951,6 +14430,7 @@ export type TenantUncheckedUpdateWithoutOfferLettersInput = {
13951
14430
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
13952
14431
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
13953
14432
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
14433
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
13954
14434
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
13955
14435
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
13956
14436
  };
@@ -14016,6 +14496,7 @@ export type TenantCreateWithoutContractTerminationsInput = {
14016
14496
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
14017
14497
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
14018
14498
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
14499
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
14019
14500
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
14020
14501
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
14021
14502
  };
@@ -14081,6 +14562,7 @@ export type TenantUncheckedCreateWithoutContractTerminationsInput = {
14081
14562
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
14082
14563
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
14083
14564
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
14565
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
14084
14566
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
14085
14567
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
14086
14568
  };
@@ -14159,6 +14641,7 @@ export type TenantUpdateWithoutContractTerminationsInput = {
14159
14641
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
14160
14642
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
14161
14643
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
14644
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
14162
14645
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
14163
14646
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
14164
14647
  };
@@ -14224,6 +14707,7 @@ export type TenantUncheckedUpdateWithoutContractTerminationsInput = {
14224
14707
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
14225
14708
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
14226
14709
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
14710
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
14227
14711
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
14228
14712
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
14229
14713
  };
@@ -14289,6 +14773,7 @@ export type TenantCreateWithoutPaymentMethodChangeRequestsInput = {
14289
14773
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
14290
14774
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
14291
14775
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
14776
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
14292
14777
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
14293
14778
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
14294
14779
  };
@@ -14354,6 +14839,7 @@ export type TenantUncheckedCreateWithoutPaymentMethodChangeRequestsInput = {
14354
14839
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
14355
14840
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
14356
14841
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
14842
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
14357
14843
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
14358
14844
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
14359
14845
  };
@@ -14432,6 +14918,7 @@ export type TenantUpdateWithoutPaymentMethodChangeRequestsInput = {
14432
14918
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
14433
14919
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
14434
14920
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
14921
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
14435
14922
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
14436
14923
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
14437
14924
  };
@@ -14497,6 +14984,7 @@ export type TenantUncheckedUpdateWithoutPaymentMethodChangeRequestsInput = {
14497
14984
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
14498
14985
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
14499
14986
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
14987
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
14500
14988
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
14501
14989
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
14502
14990
  };
@@ -14562,6 +15050,7 @@ export type TenantCreateWithoutDocumentRequirementRulesInput = {
14562
15050
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
14563
15051
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
14564
15052
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
15053
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
14565
15054
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
14566
15055
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
14567
15056
  };
@@ -14627,6 +15116,7 @@ export type TenantUncheckedCreateWithoutDocumentRequirementRulesInput = {
14627
15116
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
14628
15117
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
14629
15118
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
15119
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
14630
15120
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
14631
15121
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
14632
15122
  };
@@ -14705,6 +15195,7 @@ export type TenantUpdateWithoutDocumentRequirementRulesInput = {
14705
15195
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
14706
15196
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
14707
15197
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
15198
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
14708
15199
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
14709
15200
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
14710
15201
  };
@@ -14770,6 +15261,7 @@ export type TenantUncheckedUpdateWithoutDocumentRequirementRulesInput = {
14770
15261
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
14771
15262
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
14772
15263
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
15264
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
14773
15265
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
14774
15266
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
14775
15267
  };
@@ -14835,6 +15327,7 @@ export type TenantCreateWithoutEventChannelsInput = {
14835
15327
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
14836
15328
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
14837
15329
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
15330
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
14838
15331
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
14839
15332
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
14840
15333
  };
@@ -14900,6 +15393,7 @@ export type TenantUncheckedCreateWithoutEventChannelsInput = {
14900
15393
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
14901
15394
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
14902
15395
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
15396
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
14903
15397
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
14904
15398
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
14905
15399
  };
@@ -14978,6 +15472,7 @@ export type TenantUpdateWithoutEventChannelsInput = {
14978
15472
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
14979
15473
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
14980
15474
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
15475
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
14981
15476
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
14982
15477
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
14983
15478
  };
@@ -15043,6 +15538,7 @@ export type TenantUncheckedUpdateWithoutEventChannelsInput = {
15043
15538
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
15044
15539
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
15045
15540
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
15541
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
15046
15542
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
15047
15543
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
15048
15544
  };
@@ -15108,6 +15604,7 @@ export type TenantCreateWithoutEventTypesInput = {
15108
15604
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
15109
15605
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
15110
15606
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
15607
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
15111
15608
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
15112
15609
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
15113
15610
  };
@@ -15173,6 +15670,7 @@ export type TenantUncheckedCreateWithoutEventTypesInput = {
15173
15670
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
15174
15671
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
15175
15672
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
15673
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
15176
15674
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
15177
15675
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
15178
15676
  };
@@ -15251,6 +15749,7 @@ export type TenantUpdateWithoutEventTypesInput = {
15251
15749
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
15252
15750
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
15253
15751
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
15752
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
15254
15753
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
15255
15754
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
15256
15755
  };
@@ -15316,6 +15815,7 @@ export type TenantUncheckedUpdateWithoutEventTypesInput = {
15316
15815
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
15317
15816
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
15318
15817
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
15818
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
15319
15819
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
15320
15820
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
15321
15821
  };
@@ -15381,6 +15881,7 @@ export type TenantCreateWithoutEventHandlersInput = {
15381
15881
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
15382
15882
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
15383
15883
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
15884
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
15384
15885
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
15385
15886
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
15386
15887
  };
@@ -15446,6 +15947,7 @@ export type TenantUncheckedCreateWithoutEventHandlersInput = {
15446
15947
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
15447
15948
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
15448
15949
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
15950
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
15449
15951
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
15450
15952
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
15451
15953
  };
@@ -15524,6 +16026,7 @@ export type TenantUpdateWithoutEventHandlersInput = {
15524
16026
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
15525
16027
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
15526
16028
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
16029
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
15527
16030
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
15528
16031
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
15529
16032
  };
@@ -15589,6 +16092,7 @@ export type TenantUncheckedUpdateWithoutEventHandlersInput = {
15589
16092
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
15590
16093
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
15591
16094
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
16095
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
15592
16096
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
15593
16097
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
15594
16098
  };
@@ -15654,6 +16158,7 @@ export type TenantCreateWithoutWorkflowEventsInput = {
15654
16158
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
15655
16159
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
15656
16160
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
16161
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
15657
16162
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
15658
16163
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
15659
16164
  };
@@ -15719,6 +16224,7 @@ export type TenantUncheckedCreateWithoutWorkflowEventsInput = {
15719
16224
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
15720
16225
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
15721
16226
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
16227
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
15722
16228
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
15723
16229
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
15724
16230
  };
@@ -15797,6 +16303,7 @@ export type TenantUpdateWithoutWorkflowEventsInput = {
15797
16303
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
15798
16304
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
15799
16305
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
16306
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
15800
16307
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
15801
16308
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
15802
16309
  };
@@ -15862,6 +16369,7 @@ export type TenantUncheckedUpdateWithoutWorkflowEventsInput = {
15862
16369
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
15863
16370
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
15864
16371
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
16372
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
15865
16373
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
15866
16374
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
15867
16375
  };
@@ -15927,6 +16435,7 @@ export type TenantCreateWithoutEventHandlerExecutionsInput = {
15927
16435
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
15928
16436
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
15929
16437
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
16438
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
15930
16439
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
15931
16440
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
15932
16441
  };
@@ -15992,6 +16501,7 @@ export type TenantUncheckedCreateWithoutEventHandlerExecutionsInput = {
15992
16501
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
15993
16502
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
15994
16503
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
16504
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
15995
16505
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
15996
16506
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
15997
16507
  };
@@ -16070,6 +16580,7 @@ export type TenantUpdateWithoutEventHandlerExecutionsInput = {
16070
16580
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
16071
16581
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
16072
16582
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
16583
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
16073
16584
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
16074
16585
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
16075
16586
  };
@@ -16135,6 +16646,7 @@ export type TenantUncheckedUpdateWithoutEventHandlerExecutionsInput = {
16135
16646
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
16136
16647
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
16137
16648
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
16649
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
16138
16650
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
16139
16651
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
16140
16652
  };
@@ -16200,6 +16712,7 @@ export type TenantCreateWithoutDomainEventsInput = {
16200
16712
  settings?: Prisma.SettingsCreateNestedManyWithoutTenantInput;
16201
16713
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
16202
16714
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
16715
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
16203
16716
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
16204
16717
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
16205
16718
  };
@@ -16265,6 +16778,7 @@ export type TenantUncheckedCreateWithoutDomainEventsInput = {
16265
16778
  settings?: Prisma.SettingsUncheckedCreateNestedManyWithoutTenantInput;
16266
16779
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
16267
16780
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
16781
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
16268
16782
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
16269
16783
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
16270
16784
  };
@@ -16343,6 +16857,7 @@ export type TenantUpdateWithoutDomainEventsInput = {
16343
16857
  settings?: Prisma.SettingsUpdateManyWithoutTenantNestedInput;
16344
16858
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
16345
16859
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
16860
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
16346
16861
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
16347
16862
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
16348
16863
  };
@@ -16408,6 +16923,7 @@ export type TenantUncheckedUpdateWithoutDomainEventsInput = {
16408
16923
  settings?: Prisma.SettingsUncheckedUpdateManyWithoutTenantNestedInput;
16409
16924
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
16410
16925
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
16926
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
16411
16927
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
16412
16928
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
16413
16929
  };
@@ -16473,6 +16989,7 @@ export type TenantCreateWithoutPropertyTransferRequestsInput = {
16473
16989
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
16474
16990
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
16475
16991
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
16992
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
16476
16993
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
16477
16994
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
16478
16995
  };
@@ -16538,6 +17055,7 @@ export type TenantUncheckedCreateWithoutPropertyTransferRequestsInput = {
16538
17055
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
16539
17056
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
16540
17057
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
17058
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
16541
17059
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
16542
17060
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
16543
17061
  };
@@ -16616,6 +17134,7 @@ export type TenantUpdateWithoutPropertyTransferRequestsInput = {
16616
17134
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
16617
17135
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
16618
17136
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
17137
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
16619
17138
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
16620
17139
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
16621
17140
  };
@@ -16681,6 +17200,7 @@ export type TenantUncheckedUpdateWithoutPropertyTransferRequestsInput = {
16681
17200
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
16682
17201
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
16683
17202
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
17203
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
16684
17204
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
16685
17205
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
16686
17206
  };
@@ -16746,6 +17266,7 @@ export type TenantCreateWithoutApprovalRequestsInput = {
16746
17266
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
16747
17267
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
16748
17268
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
17269
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
16749
17270
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
16750
17271
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
16751
17272
  };
@@ -16811,6 +17332,7 @@ export type TenantUncheckedCreateWithoutApprovalRequestsInput = {
16811
17332
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
16812
17333
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
16813
17334
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
17335
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
16814
17336
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
16815
17337
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
16816
17338
  };
@@ -16889,6 +17411,7 @@ export type TenantUpdateWithoutApprovalRequestsInput = {
16889
17411
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
16890
17412
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
16891
17413
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
17414
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
16892
17415
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
16893
17416
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
16894
17417
  };
@@ -16954,6 +17477,7 @@ export type TenantUncheckedUpdateWithoutApprovalRequestsInput = {
16954
17477
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
16955
17478
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
16956
17479
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
17480
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
16957
17481
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
16958
17482
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
16959
17483
  };
@@ -17019,6 +17543,7 @@ export type TenantCreateWithoutWorkflowBlockersInput = {
17019
17543
  settings?: Prisma.SettingsCreateNestedManyWithoutTenantInput;
17020
17544
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
17021
17545
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
17546
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
17022
17547
  documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
17023
17548
  organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
17024
17549
  };
@@ -17084,6 +17609,7 @@ export type TenantUncheckedCreateWithoutWorkflowBlockersInput = {
17084
17609
  settings?: Prisma.SettingsUncheckedCreateNestedManyWithoutTenantInput;
17085
17610
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
17086
17611
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
17612
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
17087
17613
  documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
17088
17614
  organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
17089
17615
  };
@@ -17162,6 +17688,7 @@ export type TenantUpdateWithoutWorkflowBlockersInput = {
17162
17688
  settings?: Prisma.SettingsUpdateManyWithoutTenantNestedInput;
17163
17689
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
17164
17690
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
17691
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
17165
17692
  documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
17166
17693
  organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
17167
17694
  };
@@ -17227,6 +17754,7 @@ export type TenantUncheckedUpdateWithoutWorkflowBlockersInput = {
17227
17754
  settings?: Prisma.SettingsUncheckedUpdateManyWithoutTenantNestedInput;
17228
17755
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
17229
17756
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
17757
+ questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
17230
17758
  documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
17231
17759
  organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
17232
17760
  };
@@ -17290,6 +17818,7 @@ export type TenantCountOutputType = {
17290
17818
  domainEvents: number;
17291
17819
  workflowBlockers: number;
17292
17820
  questionnairePlans: number;
17821
+ questionnairePhaseReviews: number;
17293
17822
  documentReviews: number;
17294
17823
  organizations: number;
17295
17824
  };
@@ -17350,6 +17879,7 @@ export type TenantCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions
17350
17879
  domainEvents?: boolean | TenantCountOutputTypeCountDomainEventsArgs;
17351
17880
  workflowBlockers?: boolean | TenantCountOutputTypeCountWorkflowBlockersArgs;
17352
17881
  questionnairePlans?: boolean | TenantCountOutputTypeCountQuestionnairePlansArgs;
17882
+ questionnairePhaseReviews?: boolean | TenantCountOutputTypeCountQuestionnairePhaseReviewsArgs;
17353
17883
  documentReviews?: boolean | TenantCountOutputTypeCountDocumentReviewsArgs;
17354
17884
  organizations?: boolean | TenantCountOutputTypeCountOrganizationsArgs;
17355
17885
  };
@@ -17698,6 +18228,12 @@ export type TenantCountOutputTypeCountWorkflowBlockersArgs<ExtArgs extends runti
17698
18228
  export type TenantCountOutputTypeCountQuestionnairePlansArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
17699
18229
  where?: Prisma.QuestionnairePlanWhereInput;
17700
18230
  };
18231
+ /**
18232
+ * TenantCountOutputType without action
18233
+ */
18234
+ export type TenantCountOutputTypeCountQuestionnairePhaseReviewsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
18235
+ where?: Prisma.QuestionnairePhaseReviewWhereInput;
18236
+ };
17701
18237
  /**
17702
18238
  * TenantCountOutputType without action
17703
18239
  */
@@ -17773,6 +18309,7 @@ export type TenantSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs =
17773
18309
  domainEvents?: boolean | Prisma.Tenant$domainEventsArgs<ExtArgs>;
17774
18310
  workflowBlockers?: boolean | Prisma.Tenant$workflowBlockersArgs<ExtArgs>;
17775
18311
  questionnairePlans?: boolean | Prisma.Tenant$questionnairePlansArgs<ExtArgs>;
18312
+ questionnairePhaseReviews?: boolean | Prisma.Tenant$questionnairePhaseReviewsArgs<ExtArgs>;
17776
18313
  documentReviews?: boolean | Prisma.Tenant$documentReviewsArgs<ExtArgs>;
17777
18314
  organizations?: boolean | Prisma.Tenant$organizationsArgs<ExtArgs>;
17778
18315
  _count?: boolean | Prisma.TenantCountOutputTypeDefaultArgs<ExtArgs>;
@@ -17843,6 +18380,7 @@ export type TenantInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs
17843
18380
  domainEvents?: boolean | Prisma.Tenant$domainEventsArgs<ExtArgs>;
17844
18381
  workflowBlockers?: boolean | Prisma.Tenant$workflowBlockersArgs<ExtArgs>;
17845
18382
  questionnairePlans?: boolean | Prisma.Tenant$questionnairePlansArgs<ExtArgs>;
18383
+ questionnairePhaseReviews?: boolean | Prisma.Tenant$questionnairePhaseReviewsArgs<ExtArgs>;
17846
18384
  documentReviews?: boolean | Prisma.Tenant$documentReviewsArgs<ExtArgs>;
17847
18385
  organizations?: boolean | Prisma.Tenant$organizationsArgs<ExtArgs>;
17848
18386
  _count?: boolean | Prisma.TenantCountOutputTypeDefaultArgs<ExtArgs>;
@@ -17906,6 +18444,7 @@ export type $TenantPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs
17906
18444
  domainEvents: Prisma.$DomainEventPayload<ExtArgs>[];
17907
18445
  workflowBlockers: Prisma.$WorkflowBlockerPayload<ExtArgs>[];
17908
18446
  questionnairePlans: Prisma.$QuestionnairePlanPayload<ExtArgs>[];
18447
+ questionnairePhaseReviews: Prisma.$QuestionnairePhaseReviewPayload<ExtArgs>[];
17909
18448
  documentReviews: Prisma.$DocumentReviewPayload<ExtArgs>[];
17910
18449
  organizations: Prisma.$OrganizationPayload<ExtArgs>[];
17911
18450
  };
@@ -18249,6 +18788,7 @@ export interface Prisma__TenantClient<T, Null = never, ExtArgs extends runtime.T
18249
18788
  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>;
18250
18789
  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>;
18251
18790
  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>;
18791
+ questionnairePhaseReviews<T extends Prisma.Tenant$questionnairePhaseReviewsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Tenant$questionnairePhaseReviewsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$QuestionnairePhaseReviewPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
18252
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
  /**
@@ -19897,6 +20437,29 @@ export type Tenant$questionnairePlansArgs<ExtArgs extends runtime.Types.Extensio
19897
20437
  skip?: number;
19898
20438
  distinct?: Prisma.QuestionnairePlanScalarFieldEnum | Prisma.QuestionnairePlanScalarFieldEnum[];
19899
20439
  };
20440
+ /**
20441
+ * Tenant.questionnairePhaseReviews
20442
+ */
20443
+ export type Tenant$questionnairePhaseReviewsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
20444
+ /**
20445
+ * Select specific fields to fetch from the QuestionnairePhaseReview
20446
+ */
20447
+ select?: Prisma.QuestionnairePhaseReviewSelect<ExtArgs> | null;
20448
+ /**
20449
+ * Omit specific fields from the QuestionnairePhaseReview
20450
+ */
20451
+ omit?: Prisma.QuestionnairePhaseReviewOmit<ExtArgs> | null;
20452
+ /**
20453
+ * Choose, which related nodes to fetch as well
20454
+ */
20455
+ include?: Prisma.QuestionnairePhaseReviewInclude<ExtArgs> | null;
20456
+ where?: Prisma.QuestionnairePhaseReviewWhereInput;
20457
+ orderBy?: Prisma.QuestionnairePhaseReviewOrderByWithRelationInput | Prisma.QuestionnairePhaseReviewOrderByWithRelationInput[];
20458
+ cursor?: Prisma.QuestionnairePhaseReviewWhereUniqueInput;
20459
+ take?: number;
20460
+ skip?: number;
20461
+ distinct?: Prisma.QuestionnairePhaseReviewScalarFieldEnum | Prisma.QuestionnairePhaseReviewScalarFieldEnum[];
20462
+ };
19900
20463
  /**
19901
20464
  * Tenant.documentReviews
19902
20465
  */