@valentine-efagene/qshelter-common 2.0.119 → 2.0.121

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.
Files changed (35) hide show
  1. package/dist/generated/client/browser.d.ts +11 -0
  2. package/dist/generated/client/client.d.ts +11 -0
  3. package/dist/generated/client/commonInputTypes.d.ts +260 -0
  4. package/dist/generated/client/enums.d.ts +79 -0
  5. package/dist/generated/client/enums.js +71 -1
  6. package/dist/generated/client/internal/class.d.ts +22 -0
  7. package/dist/generated/client/internal/class.js +2 -2
  8. package/dist/generated/client/internal/prismaNamespace.d.ts +277 -2
  9. package/dist/generated/client/internal/prismaNamespace.js +109 -4
  10. package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +110 -1
  11. package/dist/generated/client/internal/prismaNamespaceBrowser.js +109 -4
  12. package/dist/generated/client/models/DocumentationPhase.d.ts +243 -1
  13. package/dist/generated/client/models/DocumentationPlanStep.d.ts +241 -1
  14. package/dist/generated/client/models/DocumentationStep.d.ts +1017 -1
  15. package/dist/generated/client/models/Organization.d.ts +1930 -0
  16. package/dist/generated/client/models/Organization.js +1 -0
  17. package/dist/generated/client/models/OrganizationMember.d.ts +1598 -0
  18. package/dist/generated/client/models/OrganizationMember.js +1 -0
  19. package/dist/generated/client/models/QuestionnairePhase.d.ts +165 -0
  20. package/dist/generated/client/models/QuestionnairePlanQuestion.d.ts +25 -22
  21. package/dist/generated/client/models/Tenant.d.ts +555 -0
  22. package/dist/generated/client/models/User.d.ts +776 -0
  23. package/dist/generated/client/models.d.ts +2 -0
  24. package/dist/src/middleware/auth-context.d.ts +30 -1
  25. package/dist/src/middleware/auth-context.js +34 -1
  26. package/dist/src/prisma/tenant.js +2 -0
  27. package/dist/src/utils/condition-operators.d.ts +5 -23
  28. package/dist/src/utils/condition-operators.js +6 -19
  29. package/dist/src/utils/documentation-enums.d.ts +6 -0
  30. package/dist/src/utils/documentation-enums.js +6 -0
  31. package/package.json +1 -1
  32. package/prisma/migrations/20260115123703_add_organizations/migration.sql +69 -0
  33. package/prisma/migrations/20260115125519_add_requires_manual_review_to_step/migration.sql +2 -0
  34. package/prisma/migrations/20260115134106_add_conditional_step_support/migration.sql +11 -0
  35. package/prisma/schema.prisma +191 -1
@@ -203,6 +203,7 @@ export type TenantWhereInput = {
203
203
  domainEvents?: Prisma.DomainEventListRelationFilter;
204
204
  workflowBlockers?: Prisma.WorkflowBlockerListRelationFilter;
205
205
  questionnairePlans?: Prisma.QuestionnairePlanListRelationFilter;
206
+ organizations?: Prisma.OrganizationListRelationFilter;
206
207
  };
207
208
  export type TenantOrderByWithRelationInput = {
208
209
  id?: Prisma.SortOrder;
@@ -268,6 +269,7 @@ export type TenantOrderByWithRelationInput = {
268
269
  domainEvents?: Prisma.DomainEventOrderByRelationAggregateInput;
269
270
  workflowBlockers?: Prisma.WorkflowBlockerOrderByRelationAggregateInput;
270
271
  questionnairePlans?: Prisma.QuestionnairePlanOrderByRelationAggregateInput;
272
+ organizations?: Prisma.OrganizationOrderByRelationAggregateInput;
271
273
  _relevance?: Prisma.TenantOrderByRelevanceInput;
272
274
  };
273
275
  export type TenantWhereUniqueInput = Prisma.AtLeast<{
@@ -337,6 +339,7 @@ export type TenantWhereUniqueInput = Prisma.AtLeast<{
337
339
  domainEvents?: Prisma.DomainEventListRelationFilter;
338
340
  workflowBlockers?: Prisma.WorkflowBlockerListRelationFilter;
339
341
  questionnairePlans?: Prisma.QuestionnairePlanListRelationFilter;
342
+ organizations?: Prisma.OrganizationListRelationFilter;
340
343
  }, "id" | "subdomain">;
341
344
  export type TenantOrderByWithAggregationInput = {
342
345
  id?: Prisma.SortOrder;
@@ -424,6 +427,7 @@ export type TenantCreateInput = {
424
427
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
425
428
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
426
429
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
430
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
427
431
  };
428
432
  export type TenantUncheckedCreateInput = {
429
433
  id?: string;
@@ -489,6 +493,7 @@ export type TenantUncheckedCreateInput = {
489
493
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
490
494
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
491
495
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
496
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
492
497
  };
493
498
  export type TenantUpdateInput = {
494
499
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -554,6 +559,7 @@ export type TenantUpdateInput = {
554
559
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
555
560
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
556
561
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
562
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
557
563
  };
558
564
  export type TenantUncheckedUpdateInput = {
559
565
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -619,6 +625,7 @@ export type TenantUncheckedUpdateInput = {
619
625
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
620
626
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
621
627
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
628
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
622
629
  };
623
630
  export type TenantCreateManyInput = {
624
631
  id?: string;
@@ -735,6 +742,18 @@ export type TenantUpdateOneRequiredWithoutMembershipsNestedInput = {
735
742
  connect?: Prisma.TenantWhereUniqueInput;
736
743
  update?: Prisma.XOR<Prisma.XOR<Prisma.TenantUpdateToOneWithWhereWithoutMembershipsInput, Prisma.TenantUpdateWithoutMembershipsInput>, Prisma.TenantUncheckedUpdateWithoutMembershipsInput>;
737
744
  };
745
+ export type TenantCreateNestedOneWithoutOrganizationsInput = {
746
+ create?: Prisma.XOR<Prisma.TenantCreateWithoutOrganizationsInput, Prisma.TenantUncheckedCreateWithoutOrganizationsInput>;
747
+ connectOrCreate?: Prisma.TenantCreateOrConnectWithoutOrganizationsInput;
748
+ connect?: Prisma.TenantWhereUniqueInput;
749
+ };
750
+ export type TenantUpdateOneRequiredWithoutOrganizationsNestedInput = {
751
+ create?: Prisma.XOR<Prisma.TenantCreateWithoutOrganizationsInput, Prisma.TenantUncheckedCreateWithoutOrganizationsInput>;
752
+ connectOrCreate?: Prisma.TenantCreateOrConnectWithoutOrganizationsInput;
753
+ upsert?: Prisma.TenantUpsertWithoutOrganizationsInput;
754
+ connect?: Prisma.TenantWhereUniqueInput;
755
+ update?: Prisma.XOR<Prisma.XOR<Prisma.TenantUpdateToOneWithWhereWithoutOrganizationsInput, Prisma.TenantUpdateWithoutOrganizationsInput>, Prisma.TenantUncheckedUpdateWithoutOrganizationsInput>;
756
+ };
738
757
  export type TenantCreateNestedOneWithoutApiKeysInput = {
739
758
  create?: Prisma.XOR<Prisma.TenantCreateWithoutApiKeysInput, Prisma.TenantUncheckedCreateWithoutApiKeysInput>;
740
759
  connectOrCreate?: Prisma.TenantCreateOrConnectWithoutApiKeysInput;
@@ -1440,6 +1459,7 @@ export type TenantCreateWithoutUsersInput = {
1440
1459
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
1441
1460
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
1442
1461
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
1462
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
1443
1463
  };
1444
1464
  export type TenantUncheckedCreateWithoutUsersInput = {
1445
1465
  id?: string;
@@ -1504,6 +1524,7 @@ export type TenantUncheckedCreateWithoutUsersInput = {
1504
1524
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
1505
1525
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
1506
1526
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
1527
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
1507
1528
  };
1508
1529
  export type TenantCreateOrConnectWithoutUsersInput = {
1509
1530
  where: Prisma.TenantWhereUniqueInput;
@@ -1581,6 +1602,7 @@ export type TenantUpdateWithoutUsersInput = {
1581
1602
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
1582
1603
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
1583
1604
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
1605
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
1584
1606
  };
1585
1607
  export type TenantUncheckedUpdateWithoutUsersInput = {
1586
1608
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1645,6 +1667,7 @@ export type TenantUncheckedUpdateWithoutUsersInput = {
1645
1667
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
1646
1668
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
1647
1669
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
1670
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
1648
1671
  };
1649
1672
  export type TenantCreateWithoutRolesInput = {
1650
1673
  id?: string;
@@ -1709,6 +1732,7 @@ export type TenantCreateWithoutRolesInput = {
1709
1732
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
1710
1733
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
1711
1734
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
1735
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
1712
1736
  };
1713
1737
  export type TenantUncheckedCreateWithoutRolesInput = {
1714
1738
  id?: string;
@@ -1773,6 +1797,7 @@ export type TenantUncheckedCreateWithoutRolesInput = {
1773
1797
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
1774
1798
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
1775
1799
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
1800
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
1776
1801
  };
1777
1802
  export type TenantCreateOrConnectWithoutRolesInput = {
1778
1803
  where: Prisma.TenantWhereUniqueInput;
@@ -1850,6 +1875,7 @@ export type TenantUpdateWithoutRolesInput = {
1850
1875
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
1851
1876
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
1852
1877
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
1878
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
1853
1879
  };
1854
1880
  export type TenantUncheckedUpdateWithoutRolesInput = {
1855
1881
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1914,6 +1940,7 @@ export type TenantUncheckedUpdateWithoutRolesInput = {
1914
1940
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
1915
1941
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
1916
1942
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
1943
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
1917
1944
  };
1918
1945
  export type TenantCreateWithoutPermissionsInput = {
1919
1946
  id?: string;
@@ -1978,6 +2005,7 @@ export type TenantCreateWithoutPermissionsInput = {
1978
2005
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
1979
2006
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
1980
2007
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
2008
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
1981
2009
  };
1982
2010
  export type TenantUncheckedCreateWithoutPermissionsInput = {
1983
2011
  id?: string;
@@ -2042,6 +2070,7 @@ export type TenantUncheckedCreateWithoutPermissionsInput = {
2042
2070
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
2043
2071
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
2044
2072
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
2073
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
2045
2074
  };
2046
2075
  export type TenantCreateOrConnectWithoutPermissionsInput = {
2047
2076
  where: Prisma.TenantWhereUniqueInput;
@@ -2119,6 +2148,7 @@ export type TenantUpdateWithoutPermissionsInput = {
2119
2148
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
2120
2149
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
2121
2150
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
2151
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
2122
2152
  };
2123
2153
  export type TenantUncheckedUpdateWithoutPermissionsInput = {
2124
2154
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -2183,6 +2213,7 @@ export type TenantUncheckedUpdateWithoutPermissionsInput = {
2183
2213
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
2184
2214
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
2185
2215
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
2216
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
2186
2217
  };
2187
2218
  export type TenantCreateWithoutMembershipsInput = {
2188
2219
  id?: string;
@@ -2247,6 +2278,7 @@ export type TenantCreateWithoutMembershipsInput = {
2247
2278
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
2248
2279
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
2249
2280
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
2281
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
2250
2282
  };
2251
2283
  export type TenantUncheckedCreateWithoutMembershipsInput = {
2252
2284
  id?: string;
@@ -2311,6 +2343,7 @@ export type TenantUncheckedCreateWithoutMembershipsInput = {
2311
2343
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
2312
2344
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
2313
2345
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
2346
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
2314
2347
  };
2315
2348
  export type TenantCreateOrConnectWithoutMembershipsInput = {
2316
2349
  where: Prisma.TenantWhereUniqueInput;
@@ -2388,6 +2421,7 @@ export type TenantUpdateWithoutMembershipsInput = {
2388
2421
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
2389
2422
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
2390
2423
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
2424
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
2391
2425
  };
2392
2426
  export type TenantUncheckedUpdateWithoutMembershipsInput = {
2393
2427
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -2452,6 +2486,280 @@ export type TenantUncheckedUpdateWithoutMembershipsInput = {
2452
2486
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
2453
2487
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
2454
2488
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
2489
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
2490
+ };
2491
+ export type TenantCreateWithoutOrganizationsInput = {
2492
+ id?: string;
2493
+ name: string;
2494
+ subdomain: string;
2495
+ isActive?: boolean;
2496
+ createdAt?: Date | string;
2497
+ updatedAt?: Date | string;
2498
+ users?: Prisma.UserCreateNestedManyWithoutTenantInput;
2499
+ properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
2500
+ paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
2501
+ documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
2502
+ paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
2503
+ applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
2504
+ roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
2505
+ permissions?: Prisma.PermissionCreateNestedManyWithoutTenantInput;
2506
+ memberships?: Prisma.TenantMembershipCreateNestedManyWithoutTenantInput;
2507
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutTenantInput;
2508
+ documentRequirementRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutTenantInput;
2509
+ contractTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutTenantInput;
2510
+ documentTemplates?: Prisma.DocumentTemplateCreateNestedManyWithoutTenantInput;
2511
+ offerLetters?: Prisma.OfferLetterCreateNestedManyWithoutTenantInput;
2512
+ apiKeys?: Prisma.ApiKeyCreateNestedManyWithoutTenantInput;
2513
+ eventChannels?: Prisma.EventChannelCreateNestedManyWithoutTenantInput;
2514
+ eventTypes?: Prisma.EventTypeCreateNestedManyWithoutTenantInput;
2515
+ eventHandlers?: Prisma.EventHandlerCreateNestedManyWithoutTenantInput;
2516
+ workflowEvents?: Prisma.WorkflowEventCreateNestedManyWithoutTenantInput;
2517
+ propertyTransferRequests?: Prisma.PropertyTransferRequestCreateNestedManyWithoutTenantInput;
2518
+ approvalRequests?: Prisma.ApprovalRequestCreateNestedManyWithoutTenantInput;
2519
+ contractRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutTenantInput;
2520
+ propertyPaymentMethodLinks?: Prisma.PropertyPaymentMethodLinkCreateNestedManyWithoutTenantInput;
2521
+ propertyPaymentMethodPhases?: Prisma.PropertyPaymentMethodPhaseCreateNestedManyWithoutTenantInput;
2522
+ phaseEventAttachments?: Prisma.PhaseEventAttachmentCreateNestedManyWithoutTenantInput;
2523
+ paymentMethodPhaseSteps?: Prisma.PaymentMethodPhaseStepCreateNestedManyWithoutTenantInput;
2524
+ stepEventAttachments?: Prisma.StepEventAttachmentCreateNestedManyWithoutTenantInput;
2525
+ paymentMethodPhaseDocuments?: Prisma.PaymentMethodPhaseDocumentCreateNestedManyWithoutTenantInput;
2526
+ paymentMethodPhaseFields?: Prisma.PaymentMethodPhaseFieldCreateNestedManyWithoutTenantInput;
2527
+ applicationPhases?: Prisma.ApplicationPhaseCreateNestedManyWithoutTenantInput;
2528
+ questionnairePhases?: Prisma.QuestionnairePhaseCreateNestedManyWithoutTenantInput;
2529
+ documentationPhases?: Prisma.DocumentationPhaseCreateNestedManyWithoutTenantInput;
2530
+ paymentPhases?: Prisma.PaymentPhaseCreateNestedManyWithoutTenantInput;
2531
+ questionnaireFields?: Prisma.QuestionnaireFieldCreateNestedManyWithoutTenantInput;
2532
+ applicationEvents?: Prisma.ApplicationEventCreateNestedManyWithoutTenantInput;
2533
+ documentationSteps?: Prisma.DocumentationStepCreateNestedManyWithoutTenantInput;
2534
+ documentationStepDocuments?: Prisma.DocumentationStepDocumentCreateNestedManyWithoutTenantInput;
2535
+ documentationStepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutTenantInput;
2536
+ paymentInstallments?: Prisma.PaymentInstallmentCreateNestedManyWithoutTenantInput;
2537
+ applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutTenantInput;
2538
+ applicationDocuments?: Prisma.ApplicationDocumentCreateNestedManyWithoutTenantInput;
2539
+ propertyMedia?: Prisma.PropertyMediaCreateNestedManyWithoutTenantInput;
2540
+ propertyDocuments?: Prisma.PropertyDocumentCreateNestedManyWithoutTenantInput;
2541
+ propertyVariants?: Prisma.PropertyVariantCreateNestedManyWithoutTenantInput;
2542
+ propertyVariantAmenities?: Prisma.PropertyVariantAmenityCreateNestedManyWithoutTenantInput;
2543
+ propertyVariantMedia?: Prisma.PropertyVariantMediaCreateNestedManyWithoutTenantInput;
2544
+ propertyUnits?: Prisma.PropertyUnitCreateNestedManyWithoutTenantInput;
2545
+ propertyAmenities?: Prisma.PropertyAmenityCreateNestedManyWithoutTenantInput;
2546
+ eventHandlerExecutions?: Prisma.EventHandlerExecutionCreateNestedManyWithoutTenantInput;
2547
+ amenities?: Prisma.AmenityCreateNestedManyWithoutTenantInput;
2548
+ socials?: Prisma.SocialCreateNestedManyWithoutTenantInput;
2549
+ wallets?: Prisma.WalletCreateNestedManyWithoutTenantInput;
2550
+ transactions?: Prisma.TransactionCreateNestedManyWithoutTenantInput;
2551
+ settings?: Prisma.SettingsCreateNestedManyWithoutTenantInput;
2552
+ domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
2553
+ workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
2554
+ questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
2555
+ };
2556
+ export type TenantUncheckedCreateWithoutOrganizationsInput = {
2557
+ id?: string;
2558
+ name: string;
2559
+ subdomain: string;
2560
+ isActive?: boolean;
2561
+ createdAt?: Date | string;
2562
+ updatedAt?: Date | string;
2563
+ users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
2564
+ properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
2565
+ paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
2566
+ documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
2567
+ paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
2568
+ applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
2569
+ roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
2570
+ permissions?: Prisma.PermissionUncheckedCreateNestedManyWithoutTenantInput;
2571
+ memberships?: Prisma.TenantMembershipUncheckedCreateNestedManyWithoutTenantInput;
2572
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutTenantInput;
2573
+ documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutTenantInput;
2574
+ contractTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutTenantInput;
2575
+ documentTemplates?: Prisma.DocumentTemplateUncheckedCreateNestedManyWithoutTenantInput;
2576
+ offerLetters?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutTenantInput;
2577
+ apiKeys?: Prisma.ApiKeyUncheckedCreateNestedManyWithoutTenantInput;
2578
+ eventChannels?: Prisma.EventChannelUncheckedCreateNestedManyWithoutTenantInput;
2579
+ eventTypes?: Prisma.EventTypeUncheckedCreateNestedManyWithoutTenantInput;
2580
+ eventHandlers?: Prisma.EventHandlerUncheckedCreateNestedManyWithoutTenantInput;
2581
+ workflowEvents?: Prisma.WorkflowEventUncheckedCreateNestedManyWithoutTenantInput;
2582
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutTenantInput;
2583
+ approvalRequests?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutTenantInput;
2584
+ contractRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutTenantInput;
2585
+ propertyPaymentMethodLinks?: Prisma.PropertyPaymentMethodLinkUncheckedCreateNestedManyWithoutTenantInput;
2586
+ propertyPaymentMethodPhases?: Prisma.PropertyPaymentMethodPhaseUncheckedCreateNestedManyWithoutTenantInput;
2587
+ phaseEventAttachments?: Prisma.PhaseEventAttachmentUncheckedCreateNestedManyWithoutTenantInput;
2588
+ paymentMethodPhaseSteps?: Prisma.PaymentMethodPhaseStepUncheckedCreateNestedManyWithoutTenantInput;
2589
+ stepEventAttachments?: Prisma.StepEventAttachmentUncheckedCreateNestedManyWithoutTenantInput;
2590
+ paymentMethodPhaseDocuments?: Prisma.PaymentMethodPhaseDocumentUncheckedCreateNestedManyWithoutTenantInput;
2591
+ paymentMethodPhaseFields?: Prisma.PaymentMethodPhaseFieldUncheckedCreateNestedManyWithoutTenantInput;
2592
+ applicationPhases?: Prisma.ApplicationPhaseUncheckedCreateNestedManyWithoutTenantInput;
2593
+ questionnairePhases?: Prisma.QuestionnairePhaseUncheckedCreateNestedManyWithoutTenantInput;
2594
+ documentationPhases?: Prisma.DocumentationPhaseUncheckedCreateNestedManyWithoutTenantInput;
2595
+ paymentPhases?: Prisma.PaymentPhaseUncheckedCreateNestedManyWithoutTenantInput;
2596
+ questionnaireFields?: Prisma.QuestionnaireFieldUncheckedCreateNestedManyWithoutTenantInput;
2597
+ applicationEvents?: Prisma.ApplicationEventUncheckedCreateNestedManyWithoutTenantInput;
2598
+ documentationSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutTenantInput;
2599
+ documentationStepDocuments?: Prisma.DocumentationStepDocumentUncheckedCreateNestedManyWithoutTenantInput;
2600
+ documentationStepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutTenantInput;
2601
+ paymentInstallments?: Prisma.PaymentInstallmentUncheckedCreateNestedManyWithoutTenantInput;
2602
+ applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutTenantInput;
2603
+ applicationDocuments?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutTenantInput;
2604
+ propertyMedia?: Prisma.PropertyMediaUncheckedCreateNestedManyWithoutTenantInput;
2605
+ propertyDocuments?: Prisma.PropertyDocumentUncheckedCreateNestedManyWithoutTenantInput;
2606
+ propertyVariants?: Prisma.PropertyVariantUncheckedCreateNestedManyWithoutTenantInput;
2607
+ propertyVariantAmenities?: Prisma.PropertyVariantAmenityUncheckedCreateNestedManyWithoutTenantInput;
2608
+ propertyVariantMedia?: Prisma.PropertyVariantMediaUncheckedCreateNestedManyWithoutTenantInput;
2609
+ propertyUnits?: Prisma.PropertyUnitUncheckedCreateNestedManyWithoutTenantInput;
2610
+ propertyAmenities?: Prisma.PropertyAmenityUncheckedCreateNestedManyWithoutTenantInput;
2611
+ eventHandlerExecutions?: Prisma.EventHandlerExecutionUncheckedCreateNestedManyWithoutTenantInput;
2612
+ amenities?: Prisma.AmenityUncheckedCreateNestedManyWithoutTenantInput;
2613
+ socials?: Prisma.SocialUncheckedCreateNestedManyWithoutTenantInput;
2614
+ wallets?: Prisma.WalletUncheckedCreateNestedManyWithoutTenantInput;
2615
+ transactions?: Prisma.TransactionUncheckedCreateNestedManyWithoutTenantInput;
2616
+ settings?: Prisma.SettingsUncheckedCreateNestedManyWithoutTenantInput;
2617
+ domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
2618
+ workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
2619
+ questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
2620
+ };
2621
+ export type TenantCreateOrConnectWithoutOrganizationsInput = {
2622
+ where: Prisma.TenantWhereUniqueInput;
2623
+ create: Prisma.XOR<Prisma.TenantCreateWithoutOrganizationsInput, Prisma.TenantUncheckedCreateWithoutOrganizationsInput>;
2624
+ };
2625
+ export type TenantUpsertWithoutOrganizationsInput = {
2626
+ update: Prisma.XOR<Prisma.TenantUpdateWithoutOrganizationsInput, Prisma.TenantUncheckedUpdateWithoutOrganizationsInput>;
2627
+ create: Prisma.XOR<Prisma.TenantCreateWithoutOrganizationsInput, Prisma.TenantUncheckedCreateWithoutOrganizationsInput>;
2628
+ where?: Prisma.TenantWhereInput;
2629
+ };
2630
+ export type TenantUpdateToOneWithWhereWithoutOrganizationsInput = {
2631
+ where?: Prisma.TenantWhereInput;
2632
+ data: Prisma.XOR<Prisma.TenantUpdateWithoutOrganizationsInput, Prisma.TenantUncheckedUpdateWithoutOrganizationsInput>;
2633
+ };
2634
+ export type TenantUpdateWithoutOrganizationsInput = {
2635
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
2636
+ name?: Prisma.StringFieldUpdateOperationsInput | string;
2637
+ subdomain?: Prisma.StringFieldUpdateOperationsInput | string;
2638
+ isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
2639
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
2640
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
2641
+ users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
2642
+ properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
2643
+ paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
2644
+ documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
2645
+ paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
2646
+ applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
2647
+ roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
2648
+ permissions?: Prisma.PermissionUpdateManyWithoutTenantNestedInput;
2649
+ memberships?: Prisma.TenantMembershipUpdateManyWithoutTenantNestedInput;
2650
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutTenantNestedInput;
2651
+ documentRequirementRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutTenantNestedInput;
2652
+ contractTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutTenantNestedInput;
2653
+ documentTemplates?: Prisma.DocumentTemplateUpdateManyWithoutTenantNestedInput;
2654
+ offerLetters?: Prisma.OfferLetterUpdateManyWithoutTenantNestedInput;
2655
+ apiKeys?: Prisma.ApiKeyUpdateManyWithoutTenantNestedInput;
2656
+ eventChannels?: Prisma.EventChannelUpdateManyWithoutTenantNestedInput;
2657
+ eventTypes?: Prisma.EventTypeUpdateManyWithoutTenantNestedInput;
2658
+ eventHandlers?: Prisma.EventHandlerUpdateManyWithoutTenantNestedInput;
2659
+ workflowEvents?: Prisma.WorkflowEventUpdateManyWithoutTenantNestedInput;
2660
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUpdateManyWithoutTenantNestedInput;
2661
+ approvalRequests?: Prisma.ApprovalRequestUpdateManyWithoutTenantNestedInput;
2662
+ contractRefunds?: Prisma.ApplicationRefundUpdateManyWithoutTenantNestedInput;
2663
+ propertyPaymentMethodLinks?: Prisma.PropertyPaymentMethodLinkUpdateManyWithoutTenantNestedInput;
2664
+ propertyPaymentMethodPhases?: Prisma.PropertyPaymentMethodPhaseUpdateManyWithoutTenantNestedInput;
2665
+ phaseEventAttachments?: Prisma.PhaseEventAttachmentUpdateManyWithoutTenantNestedInput;
2666
+ paymentMethodPhaseSteps?: Prisma.PaymentMethodPhaseStepUpdateManyWithoutTenantNestedInput;
2667
+ stepEventAttachments?: Prisma.StepEventAttachmentUpdateManyWithoutTenantNestedInput;
2668
+ paymentMethodPhaseDocuments?: Prisma.PaymentMethodPhaseDocumentUpdateManyWithoutTenantNestedInput;
2669
+ paymentMethodPhaseFields?: Prisma.PaymentMethodPhaseFieldUpdateManyWithoutTenantNestedInput;
2670
+ applicationPhases?: Prisma.ApplicationPhaseUpdateManyWithoutTenantNestedInput;
2671
+ questionnairePhases?: Prisma.QuestionnairePhaseUpdateManyWithoutTenantNestedInput;
2672
+ documentationPhases?: Prisma.DocumentationPhaseUpdateManyWithoutTenantNestedInput;
2673
+ paymentPhases?: Prisma.PaymentPhaseUpdateManyWithoutTenantNestedInput;
2674
+ questionnaireFields?: Prisma.QuestionnaireFieldUpdateManyWithoutTenantNestedInput;
2675
+ applicationEvents?: Prisma.ApplicationEventUpdateManyWithoutTenantNestedInput;
2676
+ documentationSteps?: Prisma.DocumentationStepUpdateManyWithoutTenantNestedInput;
2677
+ documentationStepDocuments?: Prisma.DocumentationStepDocumentUpdateManyWithoutTenantNestedInput;
2678
+ documentationStepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutTenantNestedInput;
2679
+ paymentInstallments?: Prisma.PaymentInstallmentUpdateManyWithoutTenantNestedInput;
2680
+ applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutTenantNestedInput;
2681
+ applicationDocuments?: Prisma.ApplicationDocumentUpdateManyWithoutTenantNestedInput;
2682
+ propertyMedia?: Prisma.PropertyMediaUpdateManyWithoutTenantNestedInput;
2683
+ propertyDocuments?: Prisma.PropertyDocumentUpdateManyWithoutTenantNestedInput;
2684
+ propertyVariants?: Prisma.PropertyVariantUpdateManyWithoutTenantNestedInput;
2685
+ propertyVariantAmenities?: Prisma.PropertyVariantAmenityUpdateManyWithoutTenantNestedInput;
2686
+ propertyVariantMedia?: Prisma.PropertyVariantMediaUpdateManyWithoutTenantNestedInput;
2687
+ propertyUnits?: Prisma.PropertyUnitUpdateManyWithoutTenantNestedInput;
2688
+ propertyAmenities?: Prisma.PropertyAmenityUpdateManyWithoutTenantNestedInput;
2689
+ eventHandlerExecutions?: Prisma.EventHandlerExecutionUpdateManyWithoutTenantNestedInput;
2690
+ amenities?: Prisma.AmenityUpdateManyWithoutTenantNestedInput;
2691
+ socials?: Prisma.SocialUpdateManyWithoutTenantNestedInput;
2692
+ wallets?: Prisma.WalletUpdateManyWithoutTenantNestedInput;
2693
+ transactions?: Prisma.TransactionUpdateManyWithoutTenantNestedInput;
2694
+ settings?: Prisma.SettingsUpdateManyWithoutTenantNestedInput;
2695
+ domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
2696
+ workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
2697
+ questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
2698
+ };
2699
+ export type TenantUncheckedUpdateWithoutOrganizationsInput = {
2700
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
2701
+ name?: Prisma.StringFieldUpdateOperationsInput | string;
2702
+ subdomain?: Prisma.StringFieldUpdateOperationsInput | string;
2703
+ isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
2704
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
2705
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
2706
+ users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
2707
+ properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
2708
+ paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
2709
+ documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
2710
+ paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
2711
+ applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
2712
+ roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
2713
+ permissions?: Prisma.PermissionUncheckedUpdateManyWithoutTenantNestedInput;
2714
+ memberships?: Prisma.TenantMembershipUncheckedUpdateManyWithoutTenantNestedInput;
2715
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutTenantNestedInput;
2716
+ documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutTenantNestedInput;
2717
+ contractTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutTenantNestedInput;
2718
+ documentTemplates?: Prisma.DocumentTemplateUncheckedUpdateManyWithoutTenantNestedInput;
2719
+ offerLetters?: Prisma.OfferLetterUncheckedUpdateManyWithoutTenantNestedInput;
2720
+ apiKeys?: Prisma.ApiKeyUncheckedUpdateManyWithoutTenantNestedInput;
2721
+ eventChannels?: Prisma.EventChannelUncheckedUpdateManyWithoutTenantNestedInput;
2722
+ eventTypes?: Prisma.EventTypeUncheckedUpdateManyWithoutTenantNestedInput;
2723
+ eventHandlers?: Prisma.EventHandlerUncheckedUpdateManyWithoutTenantNestedInput;
2724
+ workflowEvents?: Prisma.WorkflowEventUncheckedUpdateManyWithoutTenantNestedInput;
2725
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutTenantNestedInput;
2726
+ approvalRequests?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutTenantNestedInput;
2727
+ contractRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutTenantNestedInput;
2728
+ propertyPaymentMethodLinks?: Prisma.PropertyPaymentMethodLinkUncheckedUpdateManyWithoutTenantNestedInput;
2729
+ propertyPaymentMethodPhases?: Prisma.PropertyPaymentMethodPhaseUncheckedUpdateManyWithoutTenantNestedInput;
2730
+ phaseEventAttachments?: Prisma.PhaseEventAttachmentUncheckedUpdateManyWithoutTenantNestedInput;
2731
+ paymentMethodPhaseSteps?: Prisma.PaymentMethodPhaseStepUncheckedUpdateManyWithoutTenantNestedInput;
2732
+ stepEventAttachments?: Prisma.StepEventAttachmentUncheckedUpdateManyWithoutTenantNestedInput;
2733
+ paymentMethodPhaseDocuments?: Prisma.PaymentMethodPhaseDocumentUncheckedUpdateManyWithoutTenantNestedInput;
2734
+ paymentMethodPhaseFields?: Prisma.PaymentMethodPhaseFieldUncheckedUpdateManyWithoutTenantNestedInput;
2735
+ applicationPhases?: Prisma.ApplicationPhaseUncheckedUpdateManyWithoutTenantNestedInput;
2736
+ questionnairePhases?: Prisma.QuestionnairePhaseUncheckedUpdateManyWithoutTenantNestedInput;
2737
+ documentationPhases?: Prisma.DocumentationPhaseUncheckedUpdateManyWithoutTenantNestedInput;
2738
+ paymentPhases?: Prisma.PaymentPhaseUncheckedUpdateManyWithoutTenantNestedInput;
2739
+ questionnaireFields?: Prisma.QuestionnaireFieldUncheckedUpdateManyWithoutTenantNestedInput;
2740
+ applicationEvents?: Prisma.ApplicationEventUncheckedUpdateManyWithoutTenantNestedInput;
2741
+ documentationSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutTenantNestedInput;
2742
+ documentationStepDocuments?: Prisma.DocumentationStepDocumentUncheckedUpdateManyWithoutTenantNestedInput;
2743
+ documentationStepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutTenantNestedInput;
2744
+ paymentInstallments?: Prisma.PaymentInstallmentUncheckedUpdateManyWithoutTenantNestedInput;
2745
+ applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutTenantNestedInput;
2746
+ applicationDocuments?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutTenantNestedInput;
2747
+ propertyMedia?: Prisma.PropertyMediaUncheckedUpdateManyWithoutTenantNestedInput;
2748
+ propertyDocuments?: Prisma.PropertyDocumentUncheckedUpdateManyWithoutTenantNestedInput;
2749
+ propertyVariants?: Prisma.PropertyVariantUncheckedUpdateManyWithoutTenantNestedInput;
2750
+ propertyVariantAmenities?: Prisma.PropertyVariantAmenityUncheckedUpdateManyWithoutTenantNestedInput;
2751
+ propertyVariantMedia?: Prisma.PropertyVariantMediaUncheckedUpdateManyWithoutTenantNestedInput;
2752
+ propertyUnits?: Prisma.PropertyUnitUncheckedUpdateManyWithoutTenantNestedInput;
2753
+ propertyAmenities?: Prisma.PropertyAmenityUncheckedUpdateManyWithoutTenantNestedInput;
2754
+ eventHandlerExecutions?: Prisma.EventHandlerExecutionUncheckedUpdateManyWithoutTenantNestedInput;
2755
+ amenities?: Prisma.AmenityUncheckedUpdateManyWithoutTenantNestedInput;
2756
+ socials?: Prisma.SocialUncheckedUpdateManyWithoutTenantNestedInput;
2757
+ wallets?: Prisma.WalletUncheckedUpdateManyWithoutTenantNestedInput;
2758
+ transactions?: Prisma.TransactionUncheckedUpdateManyWithoutTenantNestedInput;
2759
+ settings?: Prisma.SettingsUncheckedUpdateManyWithoutTenantNestedInput;
2760
+ domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
2761
+ workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
2762
+ questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
2455
2763
  };
2456
2764
  export type TenantCreateWithoutApiKeysInput = {
2457
2765
  id?: string;
@@ -2516,6 +2824,7 @@ export type TenantCreateWithoutApiKeysInput = {
2516
2824
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
2517
2825
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
2518
2826
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
2827
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
2519
2828
  };
2520
2829
  export type TenantUncheckedCreateWithoutApiKeysInput = {
2521
2830
  id?: string;
@@ -2580,6 +2889,7 @@ export type TenantUncheckedCreateWithoutApiKeysInput = {
2580
2889
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
2581
2890
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
2582
2891
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
2892
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
2583
2893
  };
2584
2894
  export type TenantCreateOrConnectWithoutApiKeysInput = {
2585
2895
  where: Prisma.TenantWhereUniqueInput;
@@ -2657,6 +2967,7 @@ export type TenantUpdateWithoutApiKeysInput = {
2657
2967
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
2658
2968
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
2659
2969
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
2970
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
2660
2971
  };
2661
2972
  export type TenantUncheckedUpdateWithoutApiKeysInput = {
2662
2973
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -2721,6 +3032,7 @@ export type TenantUncheckedUpdateWithoutApiKeysInput = {
2721
3032
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
2722
3033
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
2723
3034
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
3035
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
2724
3036
  };
2725
3037
  export type TenantCreateWithoutSocialsInput = {
2726
3038
  id?: string;
@@ -2785,6 +3097,7 @@ export type TenantCreateWithoutSocialsInput = {
2785
3097
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
2786
3098
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
2787
3099
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
3100
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
2788
3101
  };
2789
3102
  export type TenantUncheckedCreateWithoutSocialsInput = {
2790
3103
  id?: string;
@@ -2849,6 +3162,7 @@ export type TenantUncheckedCreateWithoutSocialsInput = {
2849
3162
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
2850
3163
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
2851
3164
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
3165
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
2852
3166
  };
2853
3167
  export type TenantCreateOrConnectWithoutSocialsInput = {
2854
3168
  where: Prisma.TenantWhereUniqueInput;
@@ -2926,6 +3240,7 @@ export type TenantUpdateWithoutSocialsInput = {
2926
3240
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
2927
3241
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
2928
3242
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
3243
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
2929
3244
  };
2930
3245
  export type TenantUncheckedUpdateWithoutSocialsInput = {
2931
3246
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -2990,6 +3305,7 @@ export type TenantUncheckedUpdateWithoutSocialsInput = {
2990
3305
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
2991
3306
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
2992
3307
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
3308
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
2993
3309
  };
2994
3310
  export type TenantCreateWithoutWalletsInput = {
2995
3311
  id?: string;
@@ -3054,6 +3370,7 @@ export type TenantCreateWithoutWalletsInput = {
3054
3370
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
3055
3371
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
3056
3372
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
3373
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
3057
3374
  };
3058
3375
  export type TenantUncheckedCreateWithoutWalletsInput = {
3059
3376
  id?: string;
@@ -3118,6 +3435,7 @@ export type TenantUncheckedCreateWithoutWalletsInput = {
3118
3435
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
3119
3436
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
3120
3437
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
3438
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
3121
3439
  };
3122
3440
  export type TenantCreateOrConnectWithoutWalletsInput = {
3123
3441
  where: Prisma.TenantWhereUniqueInput;
@@ -3195,6 +3513,7 @@ export type TenantUpdateWithoutWalletsInput = {
3195
3513
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
3196
3514
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
3197
3515
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
3516
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
3198
3517
  };
3199
3518
  export type TenantUncheckedUpdateWithoutWalletsInput = {
3200
3519
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -3259,6 +3578,7 @@ export type TenantUncheckedUpdateWithoutWalletsInput = {
3259
3578
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
3260
3579
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
3261
3580
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
3581
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
3262
3582
  };
3263
3583
  export type TenantCreateWithoutTransactionsInput = {
3264
3584
  id?: string;
@@ -3323,6 +3643,7 @@ export type TenantCreateWithoutTransactionsInput = {
3323
3643
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
3324
3644
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
3325
3645
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
3646
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
3326
3647
  };
3327
3648
  export type TenantUncheckedCreateWithoutTransactionsInput = {
3328
3649
  id?: string;
@@ -3387,6 +3708,7 @@ export type TenantUncheckedCreateWithoutTransactionsInput = {
3387
3708
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
3388
3709
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
3389
3710
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
3711
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
3390
3712
  };
3391
3713
  export type TenantCreateOrConnectWithoutTransactionsInput = {
3392
3714
  where: Prisma.TenantWhereUniqueInput;
@@ -3464,6 +3786,7 @@ export type TenantUpdateWithoutTransactionsInput = {
3464
3786
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
3465
3787
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
3466
3788
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
3789
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
3467
3790
  };
3468
3791
  export type TenantUncheckedUpdateWithoutTransactionsInput = {
3469
3792
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -3528,6 +3851,7 @@ export type TenantUncheckedUpdateWithoutTransactionsInput = {
3528
3851
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
3529
3852
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
3530
3853
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
3854
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
3531
3855
  };
3532
3856
  export type TenantCreateWithoutSettingsInput = {
3533
3857
  id?: string;
@@ -3592,6 +3916,7 @@ export type TenantCreateWithoutSettingsInput = {
3592
3916
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
3593
3917
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
3594
3918
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
3919
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
3595
3920
  };
3596
3921
  export type TenantUncheckedCreateWithoutSettingsInput = {
3597
3922
  id?: string;
@@ -3656,6 +3981,7 @@ export type TenantUncheckedCreateWithoutSettingsInput = {
3656
3981
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
3657
3982
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
3658
3983
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
3984
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
3659
3985
  };
3660
3986
  export type TenantCreateOrConnectWithoutSettingsInput = {
3661
3987
  where: Prisma.TenantWhereUniqueInput;
@@ -3733,6 +4059,7 @@ export type TenantUpdateWithoutSettingsInput = {
3733
4059
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
3734
4060
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
3735
4061
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
4062
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
3736
4063
  };
3737
4064
  export type TenantUncheckedUpdateWithoutSettingsInput = {
3738
4065
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -3797,6 +4124,7 @@ export type TenantUncheckedUpdateWithoutSettingsInput = {
3797
4124
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
3798
4125
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
3799
4126
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
4127
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
3800
4128
  };
3801
4129
  export type TenantCreateWithoutPropertiesInput = {
3802
4130
  id?: string;
@@ -3861,6 +4189,7 @@ export type TenantCreateWithoutPropertiesInput = {
3861
4189
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
3862
4190
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
3863
4191
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
4192
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
3864
4193
  };
3865
4194
  export type TenantUncheckedCreateWithoutPropertiesInput = {
3866
4195
  id?: string;
@@ -3925,6 +4254,7 @@ export type TenantUncheckedCreateWithoutPropertiesInput = {
3925
4254
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
3926
4255
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
3927
4256
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
4257
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
3928
4258
  };
3929
4259
  export type TenantCreateOrConnectWithoutPropertiesInput = {
3930
4260
  where: Prisma.TenantWhereUniqueInput;
@@ -4002,6 +4332,7 @@ export type TenantUpdateWithoutPropertiesInput = {
4002
4332
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
4003
4333
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
4004
4334
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
4335
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
4005
4336
  };
4006
4337
  export type TenantUncheckedUpdateWithoutPropertiesInput = {
4007
4338
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -4066,6 +4397,7 @@ export type TenantUncheckedUpdateWithoutPropertiesInput = {
4066
4397
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
4067
4398
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
4068
4399
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
4400
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
4069
4401
  };
4070
4402
  export type TenantCreateWithoutPropertyMediaInput = {
4071
4403
  id?: string;
@@ -4130,6 +4462,7 @@ export type TenantCreateWithoutPropertyMediaInput = {
4130
4462
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
4131
4463
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
4132
4464
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
4465
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
4133
4466
  };
4134
4467
  export type TenantUncheckedCreateWithoutPropertyMediaInput = {
4135
4468
  id?: string;
@@ -4194,6 +4527,7 @@ export type TenantUncheckedCreateWithoutPropertyMediaInput = {
4194
4527
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
4195
4528
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
4196
4529
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
4530
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
4197
4531
  };
4198
4532
  export type TenantCreateOrConnectWithoutPropertyMediaInput = {
4199
4533
  where: Prisma.TenantWhereUniqueInput;
@@ -4271,6 +4605,7 @@ export type TenantUpdateWithoutPropertyMediaInput = {
4271
4605
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
4272
4606
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
4273
4607
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
4608
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
4274
4609
  };
4275
4610
  export type TenantUncheckedUpdateWithoutPropertyMediaInput = {
4276
4611
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -4335,6 +4670,7 @@ export type TenantUncheckedUpdateWithoutPropertyMediaInput = {
4335
4670
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
4336
4671
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
4337
4672
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
4673
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
4338
4674
  };
4339
4675
  export type TenantCreateWithoutPropertyDocumentsInput = {
4340
4676
  id?: string;
@@ -4399,6 +4735,7 @@ export type TenantCreateWithoutPropertyDocumentsInput = {
4399
4735
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
4400
4736
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
4401
4737
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
4738
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
4402
4739
  };
4403
4740
  export type TenantUncheckedCreateWithoutPropertyDocumentsInput = {
4404
4741
  id?: string;
@@ -4463,6 +4800,7 @@ export type TenantUncheckedCreateWithoutPropertyDocumentsInput = {
4463
4800
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
4464
4801
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
4465
4802
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
4803
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
4466
4804
  };
4467
4805
  export type TenantCreateOrConnectWithoutPropertyDocumentsInput = {
4468
4806
  where: Prisma.TenantWhereUniqueInput;
@@ -4540,6 +4878,7 @@ export type TenantUpdateWithoutPropertyDocumentsInput = {
4540
4878
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
4541
4879
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
4542
4880
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
4881
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
4543
4882
  };
4544
4883
  export type TenantUncheckedUpdateWithoutPropertyDocumentsInput = {
4545
4884
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -4604,6 +4943,7 @@ export type TenantUncheckedUpdateWithoutPropertyDocumentsInput = {
4604
4943
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
4605
4944
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
4606
4945
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
4946
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
4607
4947
  };
4608
4948
  export type TenantCreateWithoutAmenitiesInput = {
4609
4949
  id?: string;
@@ -4668,6 +5008,7 @@ export type TenantCreateWithoutAmenitiesInput = {
4668
5008
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
4669
5009
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
4670
5010
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
5011
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
4671
5012
  };
4672
5013
  export type TenantUncheckedCreateWithoutAmenitiesInput = {
4673
5014
  id?: string;
@@ -4732,6 +5073,7 @@ export type TenantUncheckedCreateWithoutAmenitiesInput = {
4732
5073
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
4733
5074
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
4734
5075
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
5076
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
4735
5077
  };
4736
5078
  export type TenantCreateOrConnectWithoutAmenitiesInput = {
4737
5079
  where: Prisma.TenantWhereUniqueInput;
@@ -4809,6 +5151,7 @@ export type TenantUpdateWithoutAmenitiesInput = {
4809
5151
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
4810
5152
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
4811
5153
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
5154
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
4812
5155
  };
4813
5156
  export type TenantUncheckedUpdateWithoutAmenitiesInput = {
4814
5157
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -4873,6 +5216,7 @@ export type TenantUncheckedUpdateWithoutAmenitiesInput = {
4873
5216
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
4874
5217
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
4875
5218
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
5219
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
4876
5220
  };
4877
5221
  export type TenantCreateWithoutPropertyVariantsInput = {
4878
5222
  id?: string;
@@ -4937,6 +5281,7 @@ export type TenantCreateWithoutPropertyVariantsInput = {
4937
5281
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
4938
5282
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
4939
5283
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
5284
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
4940
5285
  };
4941
5286
  export type TenantUncheckedCreateWithoutPropertyVariantsInput = {
4942
5287
  id?: string;
@@ -5001,6 +5346,7 @@ export type TenantUncheckedCreateWithoutPropertyVariantsInput = {
5001
5346
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
5002
5347
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
5003
5348
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
5349
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
5004
5350
  };
5005
5351
  export type TenantCreateOrConnectWithoutPropertyVariantsInput = {
5006
5352
  where: Prisma.TenantWhereUniqueInput;
@@ -5078,6 +5424,7 @@ export type TenantUpdateWithoutPropertyVariantsInput = {
5078
5424
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
5079
5425
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
5080
5426
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
5427
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
5081
5428
  };
5082
5429
  export type TenantUncheckedUpdateWithoutPropertyVariantsInput = {
5083
5430
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -5142,6 +5489,7 @@ export type TenantUncheckedUpdateWithoutPropertyVariantsInput = {
5142
5489
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
5143
5490
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
5144
5491
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
5492
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
5145
5493
  };
5146
5494
  export type TenantCreateWithoutPropertyVariantAmenitiesInput = {
5147
5495
  id?: string;
@@ -5206,6 +5554,7 @@ export type TenantCreateWithoutPropertyVariantAmenitiesInput = {
5206
5554
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
5207
5555
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
5208
5556
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
5557
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
5209
5558
  };
5210
5559
  export type TenantUncheckedCreateWithoutPropertyVariantAmenitiesInput = {
5211
5560
  id?: string;
@@ -5270,6 +5619,7 @@ export type TenantUncheckedCreateWithoutPropertyVariantAmenitiesInput = {
5270
5619
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
5271
5620
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
5272
5621
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
5622
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
5273
5623
  };
5274
5624
  export type TenantCreateOrConnectWithoutPropertyVariantAmenitiesInput = {
5275
5625
  where: Prisma.TenantWhereUniqueInput;
@@ -5347,6 +5697,7 @@ export type TenantUpdateWithoutPropertyVariantAmenitiesInput = {
5347
5697
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
5348
5698
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
5349
5699
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
5700
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
5350
5701
  };
5351
5702
  export type TenantUncheckedUpdateWithoutPropertyVariantAmenitiesInput = {
5352
5703
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -5411,6 +5762,7 @@ export type TenantUncheckedUpdateWithoutPropertyVariantAmenitiesInput = {
5411
5762
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
5412
5763
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
5413
5764
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
5765
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
5414
5766
  };
5415
5767
  export type TenantCreateWithoutPropertyVariantMediaInput = {
5416
5768
  id?: string;
@@ -5475,6 +5827,7 @@ export type TenantCreateWithoutPropertyVariantMediaInput = {
5475
5827
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
5476
5828
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
5477
5829
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
5830
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
5478
5831
  };
5479
5832
  export type TenantUncheckedCreateWithoutPropertyVariantMediaInput = {
5480
5833
  id?: string;
@@ -5539,6 +5892,7 @@ export type TenantUncheckedCreateWithoutPropertyVariantMediaInput = {
5539
5892
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
5540
5893
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
5541
5894
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
5895
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
5542
5896
  };
5543
5897
  export type TenantCreateOrConnectWithoutPropertyVariantMediaInput = {
5544
5898
  where: Prisma.TenantWhereUniqueInput;
@@ -5616,6 +5970,7 @@ export type TenantUpdateWithoutPropertyVariantMediaInput = {
5616
5970
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
5617
5971
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
5618
5972
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
5973
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
5619
5974
  };
5620
5975
  export type TenantUncheckedUpdateWithoutPropertyVariantMediaInput = {
5621
5976
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -5680,6 +6035,7 @@ export type TenantUncheckedUpdateWithoutPropertyVariantMediaInput = {
5680
6035
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
5681
6036
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
5682
6037
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
6038
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
5683
6039
  };
5684
6040
  export type TenantCreateWithoutPropertyUnitsInput = {
5685
6041
  id?: string;
@@ -5744,6 +6100,7 @@ export type TenantCreateWithoutPropertyUnitsInput = {
5744
6100
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
5745
6101
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
5746
6102
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
6103
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
5747
6104
  };
5748
6105
  export type TenantUncheckedCreateWithoutPropertyUnitsInput = {
5749
6106
  id?: string;
@@ -5808,6 +6165,7 @@ export type TenantUncheckedCreateWithoutPropertyUnitsInput = {
5808
6165
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
5809
6166
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
5810
6167
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
6168
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
5811
6169
  };
5812
6170
  export type TenantCreateOrConnectWithoutPropertyUnitsInput = {
5813
6171
  where: Prisma.TenantWhereUniqueInput;
@@ -5885,6 +6243,7 @@ export type TenantUpdateWithoutPropertyUnitsInput = {
5885
6243
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
5886
6244
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
5887
6245
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
6246
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
5888
6247
  };
5889
6248
  export type TenantUncheckedUpdateWithoutPropertyUnitsInput = {
5890
6249
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -5949,6 +6308,7 @@ export type TenantUncheckedUpdateWithoutPropertyUnitsInput = {
5949
6308
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
5950
6309
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
5951
6310
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
6311
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
5952
6312
  };
5953
6313
  export type TenantCreateWithoutPropertyAmenitiesInput = {
5954
6314
  id?: string;
@@ -6013,6 +6373,7 @@ export type TenantCreateWithoutPropertyAmenitiesInput = {
6013
6373
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
6014
6374
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
6015
6375
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
6376
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
6016
6377
  };
6017
6378
  export type TenantUncheckedCreateWithoutPropertyAmenitiesInput = {
6018
6379
  id?: string;
@@ -6077,6 +6438,7 @@ export type TenantUncheckedCreateWithoutPropertyAmenitiesInput = {
6077
6438
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
6078
6439
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
6079
6440
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
6441
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
6080
6442
  };
6081
6443
  export type TenantCreateOrConnectWithoutPropertyAmenitiesInput = {
6082
6444
  where: Prisma.TenantWhereUniqueInput;
@@ -6154,6 +6516,7 @@ export type TenantUpdateWithoutPropertyAmenitiesInput = {
6154
6516
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
6155
6517
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
6156
6518
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
6519
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
6157
6520
  };
6158
6521
  export type TenantUncheckedUpdateWithoutPropertyAmenitiesInput = {
6159
6522
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -6218,6 +6581,7 @@ export type TenantUncheckedUpdateWithoutPropertyAmenitiesInput = {
6218
6581
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
6219
6582
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
6220
6583
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
6584
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
6221
6585
  };
6222
6586
  export type TenantCreateWithoutDocumentationPlansInput = {
6223
6587
  id?: string;
@@ -6282,6 +6646,7 @@ export type TenantCreateWithoutDocumentationPlansInput = {
6282
6646
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
6283
6647
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
6284
6648
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
6649
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
6285
6650
  };
6286
6651
  export type TenantUncheckedCreateWithoutDocumentationPlansInput = {
6287
6652
  id?: string;
@@ -6346,6 +6711,7 @@ export type TenantUncheckedCreateWithoutDocumentationPlansInput = {
6346
6711
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
6347
6712
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
6348
6713
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
6714
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
6349
6715
  };
6350
6716
  export type TenantCreateOrConnectWithoutDocumentationPlansInput = {
6351
6717
  where: Prisma.TenantWhereUniqueInput;
@@ -6423,6 +6789,7 @@ export type TenantUpdateWithoutDocumentationPlansInput = {
6423
6789
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
6424
6790
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
6425
6791
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
6792
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
6426
6793
  };
6427
6794
  export type TenantUncheckedUpdateWithoutDocumentationPlansInput = {
6428
6795
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -6487,6 +6854,7 @@ export type TenantUncheckedUpdateWithoutDocumentationPlansInput = {
6487
6854
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
6488
6855
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
6489
6856
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
6857
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
6490
6858
  };
6491
6859
  export type TenantCreateWithoutQuestionnairePlansInput = {
6492
6860
  id?: string;
@@ -6551,6 +6919,7 @@ export type TenantCreateWithoutQuestionnairePlansInput = {
6551
6919
  settings?: Prisma.SettingsCreateNestedManyWithoutTenantInput;
6552
6920
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
6553
6921
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
6922
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
6554
6923
  };
6555
6924
  export type TenantUncheckedCreateWithoutQuestionnairePlansInput = {
6556
6925
  id?: string;
@@ -6615,6 +6984,7 @@ export type TenantUncheckedCreateWithoutQuestionnairePlansInput = {
6615
6984
  settings?: Prisma.SettingsUncheckedCreateNestedManyWithoutTenantInput;
6616
6985
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
6617
6986
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
6987
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
6618
6988
  };
6619
6989
  export type TenantCreateOrConnectWithoutQuestionnairePlansInput = {
6620
6990
  where: Prisma.TenantWhereUniqueInput;
@@ -6692,6 +7062,7 @@ export type TenantUpdateWithoutQuestionnairePlansInput = {
6692
7062
  settings?: Prisma.SettingsUpdateManyWithoutTenantNestedInput;
6693
7063
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
6694
7064
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
7065
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
6695
7066
  };
6696
7067
  export type TenantUncheckedUpdateWithoutQuestionnairePlansInput = {
6697
7068
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -6756,6 +7127,7 @@ export type TenantUncheckedUpdateWithoutQuestionnairePlansInput = {
6756
7127
  settings?: Prisma.SettingsUncheckedUpdateManyWithoutTenantNestedInput;
6757
7128
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
6758
7129
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
7130
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
6759
7131
  };
6760
7132
  export type TenantCreateWithoutPaymentPlansInput = {
6761
7133
  id?: string;
@@ -6820,6 +7192,7 @@ export type TenantCreateWithoutPaymentPlansInput = {
6820
7192
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
6821
7193
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
6822
7194
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
7195
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
6823
7196
  };
6824
7197
  export type TenantUncheckedCreateWithoutPaymentPlansInput = {
6825
7198
  id?: string;
@@ -6884,6 +7257,7 @@ export type TenantUncheckedCreateWithoutPaymentPlansInput = {
6884
7257
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
6885
7258
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
6886
7259
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
7260
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
6887
7261
  };
6888
7262
  export type TenantCreateOrConnectWithoutPaymentPlansInput = {
6889
7263
  where: Prisma.TenantWhereUniqueInput;
@@ -6961,6 +7335,7 @@ export type TenantUpdateWithoutPaymentPlansInput = {
6961
7335
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
6962
7336
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
6963
7337
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
7338
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
6964
7339
  };
6965
7340
  export type TenantUncheckedUpdateWithoutPaymentPlansInput = {
6966
7341
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -7025,6 +7400,7 @@ export type TenantUncheckedUpdateWithoutPaymentPlansInput = {
7025
7400
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
7026
7401
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
7027
7402
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
7403
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
7028
7404
  };
7029
7405
  export type TenantCreateWithoutPaymentMethodsInput = {
7030
7406
  id?: string;
@@ -7089,6 +7465,7 @@ export type TenantCreateWithoutPaymentMethodsInput = {
7089
7465
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
7090
7466
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
7091
7467
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
7468
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
7092
7469
  };
7093
7470
  export type TenantUncheckedCreateWithoutPaymentMethodsInput = {
7094
7471
  id?: string;
@@ -7153,6 +7530,7 @@ export type TenantUncheckedCreateWithoutPaymentMethodsInput = {
7153
7530
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
7154
7531
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
7155
7532
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
7533
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
7156
7534
  };
7157
7535
  export type TenantCreateOrConnectWithoutPaymentMethodsInput = {
7158
7536
  where: Prisma.TenantWhereUniqueInput;
@@ -7230,6 +7608,7 @@ export type TenantUpdateWithoutPaymentMethodsInput = {
7230
7608
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
7231
7609
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
7232
7610
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
7611
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
7233
7612
  };
7234
7613
  export type TenantUncheckedUpdateWithoutPaymentMethodsInput = {
7235
7614
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -7294,6 +7673,7 @@ export type TenantUncheckedUpdateWithoutPaymentMethodsInput = {
7294
7673
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
7295
7674
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
7296
7675
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
7676
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
7297
7677
  };
7298
7678
  export type TenantCreateWithoutPropertyPaymentMethodLinksInput = {
7299
7679
  id?: string;
@@ -7358,6 +7738,7 @@ export type TenantCreateWithoutPropertyPaymentMethodLinksInput = {
7358
7738
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
7359
7739
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
7360
7740
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
7741
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
7361
7742
  };
7362
7743
  export type TenantUncheckedCreateWithoutPropertyPaymentMethodLinksInput = {
7363
7744
  id?: string;
@@ -7422,6 +7803,7 @@ export type TenantUncheckedCreateWithoutPropertyPaymentMethodLinksInput = {
7422
7803
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
7423
7804
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
7424
7805
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
7806
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
7425
7807
  };
7426
7808
  export type TenantCreateOrConnectWithoutPropertyPaymentMethodLinksInput = {
7427
7809
  where: Prisma.TenantWhereUniqueInput;
@@ -7499,6 +7881,7 @@ export type TenantUpdateWithoutPropertyPaymentMethodLinksInput = {
7499
7881
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
7500
7882
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
7501
7883
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
7884
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
7502
7885
  };
7503
7886
  export type TenantUncheckedUpdateWithoutPropertyPaymentMethodLinksInput = {
7504
7887
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -7563,6 +7946,7 @@ export type TenantUncheckedUpdateWithoutPropertyPaymentMethodLinksInput = {
7563
7946
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
7564
7947
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
7565
7948
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
7949
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
7566
7950
  };
7567
7951
  export type TenantCreateWithoutPropertyPaymentMethodPhasesInput = {
7568
7952
  id?: string;
@@ -7627,6 +8011,7 @@ export type TenantCreateWithoutPropertyPaymentMethodPhasesInput = {
7627
8011
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
7628
8012
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
7629
8013
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
8014
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
7630
8015
  };
7631
8016
  export type TenantUncheckedCreateWithoutPropertyPaymentMethodPhasesInput = {
7632
8017
  id?: string;
@@ -7691,6 +8076,7 @@ export type TenantUncheckedCreateWithoutPropertyPaymentMethodPhasesInput = {
7691
8076
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
7692
8077
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
7693
8078
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
8079
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
7694
8080
  };
7695
8081
  export type TenantCreateOrConnectWithoutPropertyPaymentMethodPhasesInput = {
7696
8082
  where: Prisma.TenantWhereUniqueInput;
@@ -7768,6 +8154,7 @@ export type TenantUpdateWithoutPropertyPaymentMethodPhasesInput = {
7768
8154
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
7769
8155
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
7770
8156
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
8157
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
7771
8158
  };
7772
8159
  export type TenantUncheckedUpdateWithoutPropertyPaymentMethodPhasesInput = {
7773
8160
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -7832,6 +8219,7 @@ export type TenantUncheckedUpdateWithoutPropertyPaymentMethodPhasesInput = {
7832
8219
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
7833
8220
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
7834
8221
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
8222
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
7835
8223
  };
7836
8224
  export type TenantCreateWithoutPhaseEventAttachmentsInput = {
7837
8225
  id?: string;
@@ -7896,6 +8284,7 @@ export type TenantCreateWithoutPhaseEventAttachmentsInput = {
7896
8284
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
7897
8285
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
7898
8286
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
8287
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
7899
8288
  };
7900
8289
  export type TenantUncheckedCreateWithoutPhaseEventAttachmentsInput = {
7901
8290
  id?: string;
@@ -7960,6 +8349,7 @@ export type TenantUncheckedCreateWithoutPhaseEventAttachmentsInput = {
7960
8349
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
7961
8350
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
7962
8351
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
8352
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
7963
8353
  };
7964
8354
  export type TenantCreateOrConnectWithoutPhaseEventAttachmentsInput = {
7965
8355
  where: Prisma.TenantWhereUniqueInput;
@@ -8037,6 +8427,7 @@ export type TenantUpdateWithoutPhaseEventAttachmentsInput = {
8037
8427
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
8038
8428
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
8039
8429
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
8430
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
8040
8431
  };
8041
8432
  export type TenantUncheckedUpdateWithoutPhaseEventAttachmentsInput = {
8042
8433
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -8101,6 +8492,7 @@ export type TenantUncheckedUpdateWithoutPhaseEventAttachmentsInput = {
8101
8492
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
8102
8493
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
8103
8494
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
8495
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
8104
8496
  };
8105
8497
  export type TenantCreateWithoutPaymentMethodPhaseStepsInput = {
8106
8498
  id?: string;
@@ -8165,6 +8557,7 @@ export type TenantCreateWithoutPaymentMethodPhaseStepsInput = {
8165
8557
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
8166
8558
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
8167
8559
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
8560
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
8168
8561
  };
8169
8562
  export type TenantUncheckedCreateWithoutPaymentMethodPhaseStepsInput = {
8170
8563
  id?: string;
@@ -8229,6 +8622,7 @@ export type TenantUncheckedCreateWithoutPaymentMethodPhaseStepsInput = {
8229
8622
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
8230
8623
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
8231
8624
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
8625
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
8232
8626
  };
8233
8627
  export type TenantCreateOrConnectWithoutPaymentMethodPhaseStepsInput = {
8234
8628
  where: Prisma.TenantWhereUniqueInput;
@@ -8306,6 +8700,7 @@ export type TenantUpdateWithoutPaymentMethodPhaseStepsInput = {
8306
8700
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
8307
8701
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
8308
8702
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
8703
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
8309
8704
  };
8310
8705
  export type TenantUncheckedUpdateWithoutPaymentMethodPhaseStepsInput = {
8311
8706
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -8370,6 +8765,7 @@ export type TenantUncheckedUpdateWithoutPaymentMethodPhaseStepsInput = {
8370
8765
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
8371
8766
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
8372
8767
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
8768
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
8373
8769
  };
8374
8770
  export type TenantCreateWithoutStepEventAttachmentsInput = {
8375
8771
  id?: string;
@@ -8434,6 +8830,7 @@ export type TenantCreateWithoutStepEventAttachmentsInput = {
8434
8830
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
8435
8831
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
8436
8832
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
8833
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
8437
8834
  };
8438
8835
  export type TenantUncheckedCreateWithoutStepEventAttachmentsInput = {
8439
8836
  id?: string;
@@ -8498,6 +8895,7 @@ export type TenantUncheckedCreateWithoutStepEventAttachmentsInput = {
8498
8895
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
8499
8896
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
8500
8897
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
8898
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
8501
8899
  };
8502
8900
  export type TenantCreateOrConnectWithoutStepEventAttachmentsInput = {
8503
8901
  where: Prisma.TenantWhereUniqueInput;
@@ -8575,6 +8973,7 @@ export type TenantUpdateWithoutStepEventAttachmentsInput = {
8575
8973
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
8576
8974
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
8577
8975
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
8976
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
8578
8977
  };
8579
8978
  export type TenantUncheckedUpdateWithoutStepEventAttachmentsInput = {
8580
8979
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -8639,6 +9038,7 @@ export type TenantUncheckedUpdateWithoutStepEventAttachmentsInput = {
8639
9038
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
8640
9039
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
8641
9040
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
9041
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
8642
9042
  };
8643
9043
  export type TenantCreateWithoutPaymentMethodPhaseDocumentsInput = {
8644
9044
  id?: string;
@@ -8703,6 +9103,7 @@ export type TenantCreateWithoutPaymentMethodPhaseDocumentsInput = {
8703
9103
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
8704
9104
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
8705
9105
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
9106
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
8706
9107
  };
8707
9108
  export type TenantUncheckedCreateWithoutPaymentMethodPhaseDocumentsInput = {
8708
9109
  id?: string;
@@ -8767,6 +9168,7 @@ export type TenantUncheckedCreateWithoutPaymentMethodPhaseDocumentsInput = {
8767
9168
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
8768
9169
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
8769
9170
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
9171
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
8770
9172
  };
8771
9173
  export type TenantCreateOrConnectWithoutPaymentMethodPhaseDocumentsInput = {
8772
9174
  where: Prisma.TenantWhereUniqueInput;
@@ -8844,6 +9246,7 @@ export type TenantUpdateWithoutPaymentMethodPhaseDocumentsInput = {
8844
9246
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
8845
9247
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
8846
9248
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
9249
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
8847
9250
  };
8848
9251
  export type TenantUncheckedUpdateWithoutPaymentMethodPhaseDocumentsInput = {
8849
9252
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -8908,6 +9311,7 @@ export type TenantUncheckedUpdateWithoutPaymentMethodPhaseDocumentsInput = {
8908
9311
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
8909
9312
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
8910
9313
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
9314
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
8911
9315
  };
8912
9316
  export type TenantCreateWithoutPaymentMethodPhaseFieldsInput = {
8913
9317
  id?: string;
@@ -8972,6 +9376,7 @@ export type TenantCreateWithoutPaymentMethodPhaseFieldsInput = {
8972
9376
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
8973
9377
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
8974
9378
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
9379
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
8975
9380
  };
8976
9381
  export type TenantUncheckedCreateWithoutPaymentMethodPhaseFieldsInput = {
8977
9382
  id?: string;
@@ -9036,6 +9441,7 @@ export type TenantUncheckedCreateWithoutPaymentMethodPhaseFieldsInput = {
9036
9441
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
9037
9442
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
9038
9443
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
9444
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
9039
9445
  };
9040
9446
  export type TenantCreateOrConnectWithoutPaymentMethodPhaseFieldsInput = {
9041
9447
  where: Prisma.TenantWhereUniqueInput;
@@ -9113,6 +9519,7 @@ export type TenantUpdateWithoutPaymentMethodPhaseFieldsInput = {
9113
9519
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
9114
9520
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
9115
9521
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
9522
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
9116
9523
  };
9117
9524
  export type TenantUncheckedUpdateWithoutPaymentMethodPhaseFieldsInput = {
9118
9525
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -9177,6 +9584,7 @@ export type TenantUncheckedUpdateWithoutPaymentMethodPhaseFieldsInput = {
9177
9584
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
9178
9585
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
9179
9586
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
9587
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
9180
9588
  };
9181
9589
  export type TenantCreateWithoutApplicationsInput = {
9182
9590
  id?: string;
@@ -9241,6 +9649,7 @@ export type TenantCreateWithoutApplicationsInput = {
9241
9649
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
9242
9650
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
9243
9651
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
9652
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
9244
9653
  };
9245
9654
  export type TenantUncheckedCreateWithoutApplicationsInput = {
9246
9655
  id?: string;
@@ -9305,6 +9714,7 @@ export type TenantUncheckedCreateWithoutApplicationsInput = {
9305
9714
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
9306
9715
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
9307
9716
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
9717
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
9308
9718
  };
9309
9719
  export type TenantCreateOrConnectWithoutApplicationsInput = {
9310
9720
  where: Prisma.TenantWhereUniqueInput;
@@ -9382,6 +9792,7 @@ export type TenantUpdateWithoutApplicationsInput = {
9382
9792
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
9383
9793
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
9384
9794
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
9795
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
9385
9796
  };
9386
9797
  export type TenantUncheckedUpdateWithoutApplicationsInput = {
9387
9798
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -9446,6 +9857,7 @@ export type TenantUncheckedUpdateWithoutApplicationsInput = {
9446
9857
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
9447
9858
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
9448
9859
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
9860
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
9449
9861
  };
9450
9862
  export type TenantCreateWithoutContractRefundsInput = {
9451
9863
  id?: string;
@@ -9510,6 +9922,7 @@ export type TenantCreateWithoutContractRefundsInput = {
9510
9922
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
9511
9923
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
9512
9924
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
9925
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
9513
9926
  };
9514
9927
  export type TenantUncheckedCreateWithoutContractRefundsInput = {
9515
9928
  id?: string;
@@ -9574,6 +9987,7 @@ export type TenantUncheckedCreateWithoutContractRefundsInput = {
9574
9987
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
9575
9988
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
9576
9989
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
9990
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
9577
9991
  };
9578
9992
  export type TenantCreateOrConnectWithoutContractRefundsInput = {
9579
9993
  where: Prisma.TenantWhereUniqueInput;
@@ -9651,6 +10065,7 @@ export type TenantUpdateWithoutContractRefundsInput = {
9651
10065
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
9652
10066
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
9653
10067
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
10068
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
9654
10069
  };
9655
10070
  export type TenantUncheckedUpdateWithoutContractRefundsInput = {
9656
10071
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -9715,6 +10130,7 @@ export type TenantUncheckedUpdateWithoutContractRefundsInput = {
9715
10130
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
9716
10131
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
9717
10132
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
10133
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
9718
10134
  };
9719
10135
  export type TenantCreateWithoutApplicationPhasesInput = {
9720
10136
  id?: string;
@@ -9779,6 +10195,7 @@ export type TenantCreateWithoutApplicationPhasesInput = {
9779
10195
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
9780
10196
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
9781
10197
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
10198
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
9782
10199
  };
9783
10200
  export type TenantUncheckedCreateWithoutApplicationPhasesInput = {
9784
10201
  id?: string;
@@ -9843,6 +10260,7 @@ export type TenantUncheckedCreateWithoutApplicationPhasesInput = {
9843
10260
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
9844
10261
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
9845
10262
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
10263
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
9846
10264
  };
9847
10265
  export type TenantCreateOrConnectWithoutApplicationPhasesInput = {
9848
10266
  where: Prisma.TenantWhereUniqueInput;
@@ -9920,6 +10338,7 @@ export type TenantUpdateWithoutApplicationPhasesInput = {
9920
10338
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
9921
10339
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
9922
10340
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
10341
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
9923
10342
  };
9924
10343
  export type TenantUncheckedUpdateWithoutApplicationPhasesInput = {
9925
10344
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -9984,6 +10403,7 @@ export type TenantUncheckedUpdateWithoutApplicationPhasesInput = {
9984
10403
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
9985
10404
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
9986
10405
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
10406
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
9987
10407
  };
9988
10408
  export type TenantCreateWithoutQuestionnairePhasesInput = {
9989
10409
  id?: string;
@@ -10048,6 +10468,7 @@ export type TenantCreateWithoutQuestionnairePhasesInput = {
10048
10468
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
10049
10469
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
10050
10470
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
10471
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
10051
10472
  };
10052
10473
  export type TenantUncheckedCreateWithoutQuestionnairePhasesInput = {
10053
10474
  id?: string;
@@ -10112,6 +10533,7 @@ export type TenantUncheckedCreateWithoutQuestionnairePhasesInput = {
10112
10533
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
10113
10534
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
10114
10535
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
10536
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
10115
10537
  };
10116
10538
  export type TenantCreateOrConnectWithoutQuestionnairePhasesInput = {
10117
10539
  where: Prisma.TenantWhereUniqueInput;
@@ -10189,6 +10611,7 @@ export type TenantUpdateWithoutQuestionnairePhasesInput = {
10189
10611
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
10190
10612
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
10191
10613
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
10614
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
10192
10615
  };
10193
10616
  export type TenantUncheckedUpdateWithoutQuestionnairePhasesInput = {
10194
10617
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -10253,6 +10676,7 @@ export type TenantUncheckedUpdateWithoutQuestionnairePhasesInput = {
10253
10676
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
10254
10677
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
10255
10678
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
10679
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
10256
10680
  };
10257
10681
  export type TenantCreateWithoutDocumentationPhasesInput = {
10258
10682
  id?: string;
@@ -10317,6 +10741,7 @@ export type TenantCreateWithoutDocumentationPhasesInput = {
10317
10741
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
10318
10742
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
10319
10743
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
10744
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
10320
10745
  };
10321
10746
  export type TenantUncheckedCreateWithoutDocumentationPhasesInput = {
10322
10747
  id?: string;
@@ -10381,6 +10806,7 @@ export type TenantUncheckedCreateWithoutDocumentationPhasesInput = {
10381
10806
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
10382
10807
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
10383
10808
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
10809
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
10384
10810
  };
10385
10811
  export type TenantCreateOrConnectWithoutDocumentationPhasesInput = {
10386
10812
  where: Prisma.TenantWhereUniqueInput;
@@ -10458,6 +10884,7 @@ export type TenantUpdateWithoutDocumentationPhasesInput = {
10458
10884
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
10459
10885
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
10460
10886
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
10887
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
10461
10888
  };
10462
10889
  export type TenantUncheckedUpdateWithoutDocumentationPhasesInput = {
10463
10890
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -10522,6 +10949,7 @@ export type TenantUncheckedUpdateWithoutDocumentationPhasesInput = {
10522
10949
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
10523
10950
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
10524
10951
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
10952
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
10525
10953
  };
10526
10954
  export type TenantCreateWithoutPaymentPhasesInput = {
10527
10955
  id?: string;
@@ -10586,6 +11014,7 @@ export type TenantCreateWithoutPaymentPhasesInput = {
10586
11014
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
10587
11015
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
10588
11016
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
11017
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
10589
11018
  };
10590
11019
  export type TenantUncheckedCreateWithoutPaymentPhasesInput = {
10591
11020
  id?: string;
@@ -10650,6 +11079,7 @@ export type TenantUncheckedCreateWithoutPaymentPhasesInput = {
10650
11079
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
10651
11080
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
10652
11081
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
11082
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
10653
11083
  };
10654
11084
  export type TenantCreateOrConnectWithoutPaymentPhasesInput = {
10655
11085
  where: Prisma.TenantWhereUniqueInput;
@@ -10727,6 +11157,7 @@ export type TenantUpdateWithoutPaymentPhasesInput = {
10727
11157
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
10728
11158
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
10729
11159
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
11160
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
10730
11161
  };
10731
11162
  export type TenantUncheckedUpdateWithoutPaymentPhasesInput = {
10732
11163
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -10791,6 +11222,7 @@ export type TenantUncheckedUpdateWithoutPaymentPhasesInput = {
10791
11222
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
10792
11223
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
10793
11224
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
11225
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
10794
11226
  };
10795
11227
  export type TenantCreateWithoutQuestionnaireFieldsInput = {
10796
11228
  id?: string;
@@ -10855,6 +11287,7 @@ export type TenantCreateWithoutQuestionnaireFieldsInput = {
10855
11287
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
10856
11288
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
10857
11289
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
11290
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
10858
11291
  };
10859
11292
  export type TenantUncheckedCreateWithoutQuestionnaireFieldsInput = {
10860
11293
  id?: string;
@@ -10919,6 +11352,7 @@ export type TenantUncheckedCreateWithoutQuestionnaireFieldsInput = {
10919
11352
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
10920
11353
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
10921
11354
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
11355
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
10922
11356
  };
10923
11357
  export type TenantCreateOrConnectWithoutQuestionnaireFieldsInput = {
10924
11358
  where: Prisma.TenantWhereUniqueInput;
@@ -10996,6 +11430,7 @@ export type TenantUpdateWithoutQuestionnaireFieldsInput = {
10996
11430
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
10997
11431
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
10998
11432
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
11433
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
10999
11434
  };
11000
11435
  export type TenantUncheckedUpdateWithoutQuestionnaireFieldsInput = {
11001
11436
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -11060,6 +11495,7 @@ export type TenantUncheckedUpdateWithoutQuestionnaireFieldsInput = {
11060
11495
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
11061
11496
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
11062
11497
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
11498
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
11063
11499
  };
11064
11500
  export type TenantCreateWithoutApplicationEventsInput = {
11065
11501
  id?: string;
@@ -11124,6 +11560,7 @@ export type TenantCreateWithoutApplicationEventsInput = {
11124
11560
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
11125
11561
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
11126
11562
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
11563
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
11127
11564
  };
11128
11565
  export type TenantUncheckedCreateWithoutApplicationEventsInput = {
11129
11566
  id?: string;
@@ -11188,6 +11625,7 @@ export type TenantUncheckedCreateWithoutApplicationEventsInput = {
11188
11625
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
11189
11626
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
11190
11627
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
11628
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
11191
11629
  };
11192
11630
  export type TenantCreateOrConnectWithoutApplicationEventsInput = {
11193
11631
  where: Prisma.TenantWhereUniqueInput;
@@ -11265,6 +11703,7 @@ export type TenantUpdateWithoutApplicationEventsInput = {
11265
11703
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
11266
11704
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
11267
11705
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
11706
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
11268
11707
  };
11269
11708
  export type TenantUncheckedUpdateWithoutApplicationEventsInput = {
11270
11709
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -11329,6 +11768,7 @@ export type TenantUncheckedUpdateWithoutApplicationEventsInput = {
11329
11768
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
11330
11769
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
11331
11770
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
11771
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
11332
11772
  };
11333
11773
  export type TenantCreateWithoutDocumentationStepsInput = {
11334
11774
  id?: string;
@@ -11393,6 +11833,7 @@ export type TenantCreateWithoutDocumentationStepsInput = {
11393
11833
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
11394
11834
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
11395
11835
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
11836
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
11396
11837
  };
11397
11838
  export type TenantUncheckedCreateWithoutDocumentationStepsInput = {
11398
11839
  id?: string;
@@ -11457,6 +11898,7 @@ export type TenantUncheckedCreateWithoutDocumentationStepsInput = {
11457
11898
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
11458
11899
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
11459
11900
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
11901
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
11460
11902
  };
11461
11903
  export type TenantCreateOrConnectWithoutDocumentationStepsInput = {
11462
11904
  where: Prisma.TenantWhereUniqueInput;
@@ -11534,6 +11976,7 @@ export type TenantUpdateWithoutDocumentationStepsInput = {
11534
11976
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
11535
11977
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
11536
11978
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
11979
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
11537
11980
  };
11538
11981
  export type TenantUncheckedUpdateWithoutDocumentationStepsInput = {
11539
11982
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -11598,6 +12041,7 @@ export type TenantUncheckedUpdateWithoutDocumentationStepsInput = {
11598
12041
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
11599
12042
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
11600
12043
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
12044
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
11601
12045
  };
11602
12046
  export type TenantCreateWithoutDocumentationStepDocumentsInput = {
11603
12047
  id?: string;
@@ -11662,6 +12106,7 @@ export type TenantCreateWithoutDocumentationStepDocumentsInput = {
11662
12106
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
11663
12107
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
11664
12108
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
12109
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
11665
12110
  };
11666
12111
  export type TenantUncheckedCreateWithoutDocumentationStepDocumentsInput = {
11667
12112
  id?: string;
@@ -11726,6 +12171,7 @@ export type TenantUncheckedCreateWithoutDocumentationStepDocumentsInput = {
11726
12171
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
11727
12172
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
11728
12173
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
12174
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
11729
12175
  };
11730
12176
  export type TenantCreateOrConnectWithoutDocumentationStepDocumentsInput = {
11731
12177
  where: Prisma.TenantWhereUniqueInput;
@@ -11803,6 +12249,7 @@ export type TenantUpdateWithoutDocumentationStepDocumentsInput = {
11803
12249
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
11804
12250
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
11805
12251
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
12252
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
11806
12253
  };
11807
12254
  export type TenantUncheckedUpdateWithoutDocumentationStepDocumentsInput = {
11808
12255
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -11867,6 +12314,7 @@ export type TenantUncheckedUpdateWithoutDocumentationStepDocumentsInput = {
11867
12314
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
11868
12315
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
11869
12316
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
12317
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
11870
12318
  };
11871
12319
  export type TenantCreateWithoutDocumentationStepApprovalsInput = {
11872
12320
  id?: string;
@@ -11931,6 +12379,7 @@ export type TenantCreateWithoutDocumentationStepApprovalsInput = {
11931
12379
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
11932
12380
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
11933
12381
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
12382
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
11934
12383
  };
11935
12384
  export type TenantUncheckedCreateWithoutDocumentationStepApprovalsInput = {
11936
12385
  id?: string;
@@ -11995,6 +12444,7 @@ export type TenantUncheckedCreateWithoutDocumentationStepApprovalsInput = {
11995
12444
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
11996
12445
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
11997
12446
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
12447
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
11998
12448
  };
11999
12449
  export type TenantCreateOrConnectWithoutDocumentationStepApprovalsInput = {
12000
12450
  where: Prisma.TenantWhereUniqueInput;
@@ -12072,6 +12522,7 @@ export type TenantUpdateWithoutDocumentationStepApprovalsInput = {
12072
12522
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
12073
12523
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
12074
12524
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
12525
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
12075
12526
  };
12076
12527
  export type TenantUncheckedUpdateWithoutDocumentationStepApprovalsInput = {
12077
12528
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -12136,6 +12587,7 @@ export type TenantUncheckedUpdateWithoutDocumentationStepApprovalsInput = {
12136
12587
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
12137
12588
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
12138
12589
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
12590
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
12139
12591
  };
12140
12592
  export type TenantCreateWithoutPaymentInstallmentsInput = {
12141
12593
  id?: string;
@@ -12200,6 +12652,7 @@ export type TenantCreateWithoutPaymentInstallmentsInput = {
12200
12652
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
12201
12653
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
12202
12654
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
12655
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
12203
12656
  };
12204
12657
  export type TenantUncheckedCreateWithoutPaymentInstallmentsInput = {
12205
12658
  id?: string;
@@ -12264,6 +12717,7 @@ export type TenantUncheckedCreateWithoutPaymentInstallmentsInput = {
12264
12717
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
12265
12718
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
12266
12719
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
12720
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
12267
12721
  };
12268
12722
  export type TenantCreateOrConnectWithoutPaymentInstallmentsInput = {
12269
12723
  where: Prisma.TenantWhereUniqueInput;
@@ -12341,6 +12795,7 @@ export type TenantUpdateWithoutPaymentInstallmentsInput = {
12341
12795
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
12342
12796
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
12343
12797
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
12798
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
12344
12799
  };
12345
12800
  export type TenantUncheckedUpdateWithoutPaymentInstallmentsInput = {
12346
12801
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -12405,6 +12860,7 @@ export type TenantUncheckedUpdateWithoutPaymentInstallmentsInput = {
12405
12860
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
12406
12861
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
12407
12862
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
12863
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
12408
12864
  };
12409
12865
  export type TenantCreateWithoutApplicationPaymentsInput = {
12410
12866
  id?: string;
@@ -12469,6 +12925,7 @@ export type TenantCreateWithoutApplicationPaymentsInput = {
12469
12925
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
12470
12926
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
12471
12927
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
12928
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
12472
12929
  };
12473
12930
  export type TenantUncheckedCreateWithoutApplicationPaymentsInput = {
12474
12931
  id?: string;
@@ -12533,6 +12990,7 @@ export type TenantUncheckedCreateWithoutApplicationPaymentsInput = {
12533
12990
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
12534
12991
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
12535
12992
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
12993
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
12536
12994
  };
12537
12995
  export type TenantCreateOrConnectWithoutApplicationPaymentsInput = {
12538
12996
  where: Prisma.TenantWhereUniqueInput;
@@ -12610,6 +13068,7 @@ export type TenantUpdateWithoutApplicationPaymentsInput = {
12610
13068
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
12611
13069
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
12612
13070
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
13071
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
12613
13072
  };
12614
13073
  export type TenantUncheckedUpdateWithoutApplicationPaymentsInput = {
12615
13074
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -12674,6 +13133,7 @@ export type TenantUncheckedUpdateWithoutApplicationPaymentsInput = {
12674
13133
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
12675
13134
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
12676
13135
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
13136
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
12677
13137
  };
12678
13138
  export type TenantCreateWithoutApplicationDocumentsInput = {
12679
13139
  id?: string;
@@ -12738,6 +13198,7 @@ export type TenantCreateWithoutApplicationDocumentsInput = {
12738
13198
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
12739
13199
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
12740
13200
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
13201
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
12741
13202
  };
12742
13203
  export type TenantUncheckedCreateWithoutApplicationDocumentsInput = {
12743
13204
  id?: string;
@@ -12802,6 +13263,7 @@ export type TenantUncheckedCreateWithoutApplicationDocumentsInput = {
12802
13263
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
12803
13264
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
12804
13265
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
13266
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
12805
13267
  };
12806
13268
  export type TenantCreateOrConnectWithoutApplicationDocumentsInput = {
12807
13269
  where: Prisma.TenantWhereUniqueInput;
@@ -12879,6 +13341,7 @@ export type TenantUpdateWithoutApplicationDocumentsInput = {
12879
13341
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
12880
13342
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
12881
13343
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
13344
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
12882
13345
  };
12883
13346
  export type TenantUncheckedUpdateWithoutApplicationDocumentsInput = {
12884
13347
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -12943,6 +13406,7 @@ export type TenantUncheckedUpdateWithoutApplicationDocumentsInput = {
12943
13406
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
12944
13407
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
12945
13408
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
13409
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
12946
13410
  };
12947
13411
  export type TenantCreateWithoutDocumentTemplatesInput = {
12948
13412
  id?: string;
@@ -13007,6 +13471,7 @@ export type TenantCreateWithoutDocumentTemplatesInput = {
13007
13471
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
13008
13472
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
13009
13473
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
13474
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
13010
13475
  };
13011
13476
  export type TenantUncheckedCreateWithoutDocumentTemplatesInput = {
13012
13477
  id?: string;
@@ -13071,6 +13536,7 @@ export type TenantUncheckedCreateWithoutDocumentTemplatesInput = {
13071
13536
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
13072
13537
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
13073
13538
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
13539
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
13074
13540
  };
13075
13541
  export type TenantCreateOrConnectWithoutDocumentTemplatesInput = {
13076
13542
  where: Prisma.TenantWhereUniqueInput;
@@ -13148,6 +13614,7 @@ export type TenantUpdateWithoutDocumentTemplatesInput = {
13148
13614
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
13149
13615
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
13150
13616
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
13617
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
13151
13618
  };
13152
13619
  export type TenantUncheckedUpdateWithoutDocumentTemplatesInput = {
13153
13620
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -13212,6 +13679,7 @@ export type TenantUncheckedUpdateWithoutDocumentTemplatesInput = {
13212
13679
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
13213
13680
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
13214
13681
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
13682
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
13215
13683
  };
13216
13684
  export type TenantCreateWithoutOfferLettersInput = {
13217
13685
  id?: string;
@@ -13276,6 +13744,7 @@ export type TenantCreateWithoutOfferLettersInput = {
13276
13744
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
13277
13745
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
13278
13746
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
13747
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
13279
13748
  };
13280
13749
  export type TenantUncheckedCreateWithoutOfferLettersInput = {
13281
13750
  id?: string;
@@ -13340,6 +13809,7 @@ export type TenantUncheckedCreateWithoutOfferLettersInput = {
13340
13809
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
13341
13810
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
13342
13811
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
13812
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
13343
13813
  };
13344
13814
  export type TenantCreateOrConnectWithoutOfferLettersInput = {
13345
13815
  where: Prisma.TenantWhereUniqueInput;
@@ -13417,6 +13887,7 @@ export type TenantUpdateWithoutOfferLettersInput = {
13417
13887
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
13418
13888
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
13419
13889
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
13890
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
13420
13891
  };
13421
13892
  export type TenantUncheckedUpdateWithoutOfferLettersInput = {
13422
13893
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -13481,6 +13952,7 @@ export type TenantUncheckedUpdateWithoutOfferLettersInput = {
13481
13952
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
13482
13953
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
13483
13954
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
13955
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
13484
13956
  };
13485
13957
  export type TenantCreateWithoutContractTerminationsInput = {
13486
13958
  id?: string;
@@ -13545,6 +14017,7 @@ export type TenantCreateWithoutContractTerminationsInput = {
13545
14017
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
13546
14018
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
13547
14019
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
14020
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
13548
14021
  };
13549
14022
  export type TenantUncheckedCreateWithoutContractTerminationsInput = {
13550
14023
  id?: string;
@@ -13609,6 +14082,7 @@ export type TenantUncheckedCreateWithoutContractTerminationsInput = {
13609
14082
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
13610
14083
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
13611
14084
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
14085
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
13612
14086
  };
13613
14087
  export type TenantCreateOrConnectWithoutContractTerminationsInput = {
13614
14088
  where: Prisma.TenantWhereUniqueInput;
@@ -13686,6 +14160,7 @@ export type TenantUpdateWithoutContractTerminationsInput = {
13686
14160
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
13687
14161
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
13688
14162
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
14163
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
13689
14164
  };
13690
14165
  export type TenantUncheckedUpdateWithoutContractTerminationsInput = {
13691
14166
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -13750,6 +14225,7 @@ export type TenantUncheckedUpdateWithoutContractTerminationsInput = {
13750
14225
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
13751
14226
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
13752
14227
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
14228
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
13753
14229
  };
13754
14230
  export type TenantCreateWithoutPaymentMethodChangeRequestsInput = {
13755
14231
  id?: string;
@@ -13814,6 +14290,7 @@ export type TenantCreateWithoutPaymentMethodChangeRequestsInput = {
13814
14290
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
13815
14291
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
13816
14292
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
14293
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
13817
14294
  };
13818
14295
  export type TenantUncheckedCreateWithoutPaymentMethodChangeRequestsInput = {
13819
14296
  id?: string;
@@ -13878,6 +14355,7 @@ export type TenantUncheckedCreateWithoutPaymentMethodChangeRequestsInput = {
13878
14355
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
13879
14356
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
13880
14357
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
14358
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
13881
14359
  };
13882
14360
  export type TenantCreateOrConnectWithoutPaymentMethodChangeRequestsInput = {
13883
14361
  where: Prisma.TenantWhereUniqueInput;
@@ -13955,6 +14433,7 @@ export type TenantUpdateWithoutPaymentMethodChangeRequestsInput = {
13955
14433
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
13956
14434
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
13957
14435
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
14436
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
13958
14437
  };
13959
14438
  export type TenantUncheckedUpdateWithoutPaymentMethodChangeRequestsInput = {
13960
14439
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -14019,6 +14498,7 @@ export type TenantUncheckedUpdateWithoutPaymentMethodChangeRequestsInput = {
14019
14498
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
14020
14499
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
14021
14500
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
14501
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
14022
14502
  };
14023
14503
  export type TenantCreateWithoutDocumentRequirementRulesInput = {
14024
14504
  id?: string;
@@ -14083,6 +14563,7 @@ export type TenantCreateWithoutDocumentRequirementRulesInput = {
14083
14563
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
14084
14564
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
14085
14565
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
14566
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
14086
14567
  };
14087
14568
  export type TenantUncheckedCreateWithoutDocumentRequirementRulesInput = {
14088
14569
  id?: string;
@@ -14147,6 +14628,7 @@ export type TenantUncheckedCreateWithoutDocumentRequirementRulesInput = {
14147
14628
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
14148
14629
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
14149
14630
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
14631
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
14150
14632
  };
14151
14633
  export type TenantCreateOrConnectWithoutDocumentRequirementRulesInput = {
14152
14634
  where: Prisma.TenantWhereUniqueInput;
@@ -14224,6 +14706,7 @@ export type TenantUpdateWithoutDocumentRequirementRulesInput = {
14224
14706
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
14225
14707
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
14226
14708
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
14709
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
14227
14710
  };
14228
14711
  export type TenantUncheckedUpdateWithoutDocumentRequirementRulesInput = {
14229
14712
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -14288,6 +14771,7 @@ export type TenantUncheckedUpdateWithoutDocumentRequirementRulesInput = {
14288
14771
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
14289
14772
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
14290
14773
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
14774
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
14291
14775
  };
14292
14776
  export type TenantCreateWithoutEventChannelsInput = {
14293
14777
  id?: string;
@@ -14352,6 +14836,7 @@ export type TenantCreateWithoutEventChannelsInput = {
14352
14836
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
14353
14837
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
14354
14838
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
14839
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
14355
14840
  };
14356
14841
  export type TenantUncheckedCreateWithoutEventChannelsInput = {
14357
14842
  id?: string;
@@ -14416,6 +14901,7 @@ export type TenantUncheckedCreateWithoutEventChannelsInput = {
14416
14901
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
14417
14902
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
14418
14903
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
14904
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
14419
14905
  };
14420
14906
  export type TenantCreateOrConnectWithoutEventChannelsInput = {
14421
14907
  where: Prisma.TenantWhereUniqueInput;
@@ -14493,6 +14979,7 @@ export type TenantUpdateWithoutEventChannelsInput = {
14493
14979
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
14494
14980
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
14495
14981
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
14982
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
14496
14983
  };
14497
14984
  export type TenantUncheckedUpdateWithoutEventChannelsInput = {
14498
14985
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -14557,6 +15044,7 @@ export type TenantUncheckedUpdateWithoutEventChannelsInput = {
14557
15044
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
14558
15045
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
14559
15046
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
15047
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
14560
15048
  };
14561
15049
  export type TenantCreateWithoutEventTypesInput = {
14562
15050
  id?: string;
@@ -14621,6 +15109,7 @@ export type TenantCreateWithoutEventTypesInput = {
14621
15109
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
14622
15110
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
14623
15111
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
15112
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
14624
15113
  };
14625
15114
  export type TenantUncheckedCreateWithoutEventTypesInput = {
14626
15115
  id?: string;
@@ -14685,6 +15174,7 @@ export type TenantUncheckedCreateWithoutEventTypesInput = {
14685
15174
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
14686
15175
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
14687
15176
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
15177
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
14688
15178
  };
14689
15179
  export type TenantCreateOrConnectWithoutEventTypesInput = {
14690
15180
  where: Prisma.TenantWhereUniqueInput;
@@ -14762,6 +15252,7 @@ export type TenantUpdateWithoutEventTypesInput = {
14762
15252
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
14763
15253
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
14764
15254
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
15255
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
14765
15256
  };
14766
15257
  export type TenantUncheckedUpdateWithoutEventTypesInput = {
14767
15258
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -14826,6 +15317,7 @@ export type TenantUncheckedUpdateWithoutEventTypesInput = {
14826
15317
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
14827
15318
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
14828
15319
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
15320
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
14829
15321
  };
14830
15322
  export type TenantCreateWithoutEventHandlersInput = {
14831
15323
  id?: string;
@@ -14890,6 +15382,7 @@ export type TenantCreateWithoutEventHandlersInput = {
14890
15382
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
14891
15383
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
14892
15384
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
15385
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
14893
15386
  };
14894
15387
  export type TenantUncheckedCreateWithoutEventHandlersInput = {
14895
15388
  id?: string;
@@ -14954,6 +15447,7 @@ export type TenantUncheckedCreateWithoutEventHandlersInput = {
14954
15447
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
14955
15448
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
14956
15449
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
15450
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
14957
15451
  };
14958
15452
  export type TenantCreateOrConnectWithoutEventHandlersInput = {
14959
15453
  where: Prisma.TenantWhereUniqueInput;
@@ -15031,6 +15525,7 @@ export type TenantUpdateWithoutEventHandlersInput = {
15031
15525
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
15032
15526
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
15033
15527
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
15528
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
15034
15529
  };
15035
15530
  export type TenantUncheckedUpdateWithoutEventHandlersInput = {
15036
15531
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -15095,6 +15590,7 @@ export type TenantUncheckedUpdateWithoutEventHandlersInput = {
15095
15590
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
15096
15591
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
15097
15592
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
15593
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
15098
15594
  };
15099
15595
  export type TenantCreateWithoutWorkflowEventsInput = {
15100
15596
  id?: string;
@@ -15159,6 +15655,7 @@ export type TenantCreateWithoutWorkflowEventsInput = {
15159
15655
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
15160
15656
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
15161
15657
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
15658
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
15162
15659
  };
15163
15660
  export type TenantUncheckedCreateWithoutWorkflowEventsInput = {
15164
15661
  id?: string;
@@ -15223,6 +15720,7 @@ export type TenantUncheckedCreateWithoutWorkflowEventsInput = {
15223
15720
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
15224
15721
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
15225
15722
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
15723
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
15226
15724
  };
15227
15725
  export type TenantCreateOrConnectWithoutWorkflowEventsInput = {
15228
15726
  where: Prisma.TenantWhereUniqueInput;
@@ -15300,6 +15798,7 @@ export type TenantUpdateWithoutWorkflowEventsInput = {
15300
15798
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
15301
15799
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
15302
15800
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
15801
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
15303
15802
  };
15304
15803
  export type TenantUncheckedUpdateWithoutWorkflowEventsInput = {
15305
15804
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -15364,6 +15863,7 @@ export type TenantUncheckedUpdateWithoutWorkflowEventsInput = {
15364
15863
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
15365
15864
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
15366
15865
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
15866
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
15367
15867
  };
15368
15868
  export type TenantCreateWithoutEventHandlerExecutionsInput = {
15369
15869
  id?: string;
@@ -15428,6 +15928,7 @@ export type TenantCreateWithoutEventHandlerExecutionsInput = {
15428
15928
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
15429
15929
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
15430
15930
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
15931
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
15431
15932
  };
15432
15933
  export type TenantUncheckedCreateWithoutEventHandlerExecutionsInput = {
15433
15934
  id?: string;
@@ -15492,6 +15993,7 @@ export type TenantUncheckedCreateWithoutEventHandlerExecutionsInput = {
15492
15993
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
15493
15994
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
15494
15995
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
15996
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
15495
15997
  };
15496
15998
  export type TenantCreateOrConnectWithoutEventHandlerExecutionsInput = {
15497
15999
  where: Prisma.TenantWhereUniqueInput;
@@ -15569,6 +16071,7 @@ export type TenantUpdateWithoutEventHandlerExecutionsInput = {
15569
16071
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
15570
16072
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
15571
16073
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
16074
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
15572
16075
  };
15573
16076
  export type TenantUncheckedUpdateWithoutEventHandlerExecutionsInput = {
15574
16077
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -15633,6 +16136,7 @@ export type TenantUncheckedUpdateWithoutEventHandlerExecutionsInput = {
15633
16136
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
15634
16137
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
15635
16138
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
16139
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
15636
16140
  };
15637
16141
  export type TenantCreateWithoutDomainEventsInput = {
15638
16142
  id?: string;
@@ -15697,6 +16201,7 @@ export type TenantCreateWithoutDomainEventsInput = {
15697
16201
  settings?: Prisma.SettingsCreateNestedManyWithoutTenantInput;
15698
16202
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
15699
16203
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
16204
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
15700
16205
  };
15701
16206
  export type TenantUncheckedCreateWithoutDomainEventsInput = {
15702
16207
  id?: string;
@@ -15761,6 +16266,7 @@ export type TenantUncheckedCreateWithoutDomainEventsInput = {
15761
16266
  settings?: Prisma.SettingsUncheckedCreateNestedManyWithoutTenantInput;
15762
16267
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
15763
16268
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
16269
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
15764
16270
  };
15765
16271
  export type TenantCreateOrConnectWithoutDomainEventsInput = {
15766
16272
  where: Prisma.TenantWhereUniqueInput;
@@ -15838,6 +16344,7 @@ export type TenantUpdateWithoutDomainEventsInput = {
15838
16344
  settings?: Prisma.SettingsUpdateManyWithoutTenantNestedInput;
15839
16345
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
15840
16346
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
16347
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
15841
16348
  };
15842
16349
  export type TenantUncheckedUpdateWithoutDomainEventsInput = {
15843
16350
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -15902,6 +16409,7 @@ export type TenantUncheckedUpdateWithoutDomainEventsInput = {
15902
16409
  settings?: Prisma.SettingsUncheckedUpdateManyWithoutTenantNestedInput;
15903
16410
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
15904
16411
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
16412
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
15905
16413
  };
15906
16414
  export type TenantCreateWithoutPropertyTransferRequestsInput = {
15907
16415
  id?: string;
@@ -15966,6 +16474,7 @@ export type TenantCreateWithoutPropertyTransferRequestsInput = {
15966
16474
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
15967
16475
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
15968
16476
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
16477
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
15969
16478
  };
15970
16479
  export type TenantUncheckedCreateWithoutPropertyTransferRequestsInput = {
15971
16480
  id?: string;
@@ -16030,6 +16539,7 @@ export type TenantUncheckedCreateWithoutPropertyTransferRequestsInput = {
16030
16539
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
16031
16540
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
16032
16541
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
16542
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
16033
16543
  };
16034
16544
  export type TenantCreateOrConnectWithoutPropertyTransferRequestsInput = {
16035
16545
  where: Prisma.TenantWhereUniqueInput;
@@ -16107,6 +16617,7 @@ export type TenantUpdateWithoutPropertyTransferRequestsInput = {
16107
16617
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
16108
16618
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
16109
16619
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
16620
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
16110
16621
  };
16111
16622
  export type TenantUncheckedUpdateWithoutPropertyTransferRequestsInput = {
16112
16623
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -16171,6 +16682,7 @@ export type TenantUncheckedUpdateWithoutPropertyTransferRequestsInput = {
16171
16682
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
16172
16683
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
16173
16684
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
16685
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
16174
16686
  };
16175
16687
  export type TenantCreateWithoutApprovalRequestsInput = {
16176
16688
  id?: string;
@@ -16235,6 +16747,7 @@ export type TenantCreateWithoutApprovalRequestsInput = {
16235
16747
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
16236
16748
  workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
16237
16749
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
16750
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
16238
16751
  };
16239
16752
  export type TenantUncheckedCreateWithoutApprovalRequestsInput = {
16240
16753
  id?: string;
@@ -16299,6 +16812,7 @@ export type TenantUncheckedCreateWithoutApprovalRequestsInput = {
16299
16812
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
16300
16813
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
16301
16814
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
16815
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
16302
16816
  };
16303
16817
  export type TenantCreateOrConnectWithoutApprovalRequestsInput = {
16304
16818
  where: Prisma.TenantWhereUniqueInput;
@@ -16376,6 +16890,7 @@ export type TenantUpdateWithoutApprovalRequestsInput = {
16376
16890
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
16377
16891
  workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
16378
16892
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
16893
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
16379
16894
  };
16380
16895
  export type TenantUncheckedUpdateWithoutApprovalRequestsInput = {
16381
16896
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -16440,6 +16955,7 @@ export type TenantUncheckedUpdateWithoutApprovalRequestsInput = {
16440
16955
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
16441
16956
  workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
16442
16957
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
16958
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
16443
16959
  };
16444
16960
  export type TenantCreateWithoutWorkflowBlockersInput = {
16445
16961
  id?: string;
@@ -16504,6 +17020,7 @@ export type TenantCreateWithoutWorkflowBlockersInput = {
16504
17020
  settings?: Prisma.SettingsCreateNestedManyWithoutTenantInput;
16505
17021
  domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
16506
17022
  questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
17023
+ organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
16507
17024
  };
16508
17025
  export type TenantUncheckedCreateWithoutWorkflowBlockersInput = {
16509
17026
  id?: string;
@@ -16568,6 +17085,7 @@ export type TenantUncheckedCreateWithoutWorkflowBlockersInput = {
16568
17085
  settings?: Prisma.SettingsUncheckedCreateNestedManyWithoutTenantInput;
16569
17086
  domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
16570
17087
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
17088
+ organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
16571
17089
  };
16572
17090
  export type TenantCreateOrConnectWithoutWorkflowBlockersInput = {
16573
17091
  where: Prisma.TenantWhereUniqueInput;
@@ -16645,6 +17163,7 @@ export type TenantUpdateWithoutWorkflowBlockersInput = {
16645
17163
  settings?: Prisma.SettingsUpdateManyWithoutTenantNestedInput;
16646
17164
  domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
16647
17165
  questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
17166
+ organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
16648
17167
  };
16649
17168
  export type TenantUncheckedUpdateWithoutWorkflowBlockersInput = {
16650
17169
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -16709,6 +17228,7 @@ export type TenantUncheckedUpdateWithoutWorkflowBlockersInput = {
16709
17228
  settings?: Prisma.SettingsUncheckedUpdateManyWithoutTenantNestedInput;
16710
17229
  domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
16711
17230
  questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
17231
+ organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
16712
17232
  };
16713
17233
  /**
16714
17234
  * Count Type TenantCountOutputType
@@ -16771,6 +17291,7 @@ export type TenantCountOutputType = {
16771
17291
  domainEvents: number;
16772
17292
  workflowBlockers: number;
16773
17293
  questionnairePlans: number;
17294
+ organizations: number;
16774
17295
  };
16775
17296
  export type TenantCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
16776
17297
  users?: boolean | TenantCountOutputTypeCountUsersArgs;
@@ -16830,6 +17351,7 @@ export type TenantCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions
16830
17351
  domainEvents?: boolean | TenantCountOutputTypeCountDomainEventsArgs;
16831
17352
  workflowBlockers?: boolean | TenantCountOutputTypeCountWorkflowBlockersArgs;
16832
17353
  questionnairePlans?: boolean | TenantCountOutputTypeCountQuestionnairePlansArgs;
17354
+ organizations?: boolean | TenantCountOutputTypeCountOrganizationsArgs;
16833
17355
  };
16834
17356
  /**
16835
17357
  * TenantCountOutputType without action
@@ -17182,6 +17704,12 @@ export type TenantCountOutputTypeCountWorkflowBlockersArgs<ExtArgs extends runti
17182
17704
  export type TenantCountOutputTypeCountQuestionnairePlansArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
17183
17705
  where?: Prisma.QuestionnairePlanWhereInput;
17184
17706
  };
17707
+ /**
17708
+ * TenantCountOutputType without action
17709
+ */
17710
+ export type TenantCountOutputTypeCountOrganizationsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
17711
+ where?: Prisma.OrganizationWhereInput;
17712
+ };
17185
17713
  export type TenantSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
17186
17714
  id?: boolean;
17187
17715
  name?: boolean;
@@ -17246,6 +17774,7 @@ export type TenantSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs =
17246
17774
  domainEvents?: boolean | Prisma.Tenant$domainEventsArgs<ExtArgs>;
17247
17775
  workflowBlockers?: boolean | Prisma.Tenant$workflowBlockersArgs<ExtArgs>;
17248
17776
  questionnairePlans?: boolean | Prisma.Tenant$questionnairePlansArgs<ExtArgs>;
17777
+ organizations?: boolean | Prisma.Tenant$organizationsArgs<ExtArgs>;
17249
17778
  _count?: boolean | Prisma.TenantCountOutputTypeDefaultArgs<ExtArgs>;
17250
17779
  }, ExtArgs["result"]["tenant"]>;
17251
17780
  export type TenantSelectScalar = {
@@ -17315,6 +17844,7 @@ export type TenantInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs
17315
17844
  domainEvents?: boolean | Prisma.Tenant$domainEventsArgs<ExtArgs>;
17316
17845
  workflowBlockers?: boolean | Prisma.Tenant$workflowBlockersArgs<ExtArgs>;
17317
17846
  questionnairePlans?: boolean | Prisma.Tenant$questionnairePlansArgs<ExtArgs>;
17847
+ organizations?: boolean | Prisma.Tenant$organizationsArgs<ExtArgs>;
17318
17848
  _count?: boolean | Prisma.TenantCountOutputTypeDefaultArgs<ExtArgs>;
17319
17849
  };
17320
17850
  export type $TenantPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
@@ -17377,6 +17907,7 @@ export type $TenantPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs
17377
17907
  domainEvents: Prisma.$DomainEventPayload<ExtArgs>[];
17378
17908
  workflowBlockers: Prisma.$WorkflowBlockerPayload<ExtArgs>[];
17379
17909
  questionnairePlans: Prisma.$QuestionnairePlanPayload<ExtArgs>[];
17910
+ organizations: Prisma.$OrganizationPayload<ExtArgs>[];
17380
17911
  };
17381
17912
  scalars: runtime.Types.Extensions.GetPayloadResult<{
17382
17913
  id: string;
@@ -17719,6 +18250,7 @@ export interface Prisma__TenantClient<T, Null = never, ExtArgs extends runtime.T
17719
18250
  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>;
17720
18251
  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>;
17721
18252
  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>;
18253
+ 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>;
17722
18254
  /**
17723
18255
  * Attaches callbacks for the resolution and/or rejection of the Promise.
17724
18256
  * @param onfulfilled The callback to execute when the Promise is resolved.
@@ -19388,6 +19920,29 @@ export type Tenant$questionnairePlansArgs<ExtArgs extends runtime.Types.Extensio
19388
19920
  skip?: number;
19389
19921
  distinct?: Prisma.QuestionnairePlanScalarFieldEnum | Prisma.QuestionnairePlanScalarFieldEnum[];
19390
19922
  };
19923
+ /**
19924
+ * Tenant.organizations
19925
+ */
19926
+ export type Tenant$organizationsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
19927
+ /**
19928
+ * Select specific fields to fetch from the Organization
19929
+ */
19930
+ select?: Prisma.OrganizationSelect<ExtArgs> | null;
19931
+ /**
19932
+ * Omit specific fields from the Organization
19933
+ */
19934
+ omit?: Prisma.OrganizationOmit<ExtArgs> | null;
19935
+ /**
19936
+ * Choose, which related nodes to fetch as well
19937
+ */
19938
+ include?: Prisma.OrganizationInclude<ExtArgs> | null;
19939
+ where?: Prisma.OrganizationWhereInput;
19940
+ orderBy?: Prisma.OrganizationOrderByWithRelationInput | Prisma.OrganizationOrderByWithRelationInput[];
19941
+ cursor?: Prisma.OrganizationWhereUniqueInput;
19942
+ take?: number;
19943
+ skip?: number;
19944
+ distinct?: Prisma.OrganizationScalarFieldEnum | Prisma.OrganizationScalarFieldEnum[];
19945
+ };
19391
19946
  /**
19392
19947
  * Tenant without action
19393
19948
  */