@valentine-efagene/qshelter-common 2.0.102 → 2.0.103
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/client/browser.d.ts +10 -0
- package/dist/generated/client/client.d.ts +10 -0
- package/dist/generated/client/commonInputTypes.d.ts +84 -84
- package/dist/generated/client/internal/class.d.ts +22 -0
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +182 -5
- package/dist/generated/client/internal/prismaNamespace.js +39 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +43 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +39 -0
- package/dist/generated/client/models/DocumentationPhase.d.ts +231 -1
- package/dist/generated/client/models/DocumentationPlan.d.ts +1555 -0
- package/dist/generated/client/models/DocumentationPlan.js +1 -0
- package/dist/generated/client/models/DocumentationPlanStep.d.ts +1220 -0
- package/dist/generated/client/models/DocumentationPlanStep.js +1 -0
- package/dist/generated/client/models/PaymentMethodPhaseStep.d.ts +0 -3
- package/dist/generated/client/models/PropertyPaymentMethodPhase.d.ts +287 -1
- package/dist/generated/client/models/Tenant.d.ts +541 -0
- package/dist/generated/client/models/index.d.ts +2 -0
- package/dist/generated/client/models/index.js +2 -0
- package/dist/generated/client/models.d.ts +2 -0
- package/dist/src/prisma/tenant.js +2 -0
- package/package.json +1 -1
- package/prisma/migrations/20260114034523_add_documentation_plan/migration.sql +52 -0
- package/prisma/schema.prisma +72 -8
|
@@ -149,6 +149,7 @@ export type TenantWhereInput = {
|
|
|
149
149
|
users?: Prisma.UserListRelationFilter;
|
|
150
150
|
properties?: Prisma.PropertyListRelationFilter;
|
|
151
151
|
paymentPlans?: Prisma.PaymentPlanListRelationFilter;
|
|
152
|
+
documentationPlans?: Prisma.DocumentationPlanListRelationFilter;
|
|
152
153
|
paymentMethods?: Prisma.PropertyPaymentMethodListRelationFilter;
|
|
153
154
|
applications?: Prisma.ApplicationListRelationFilter;
|
|
154
155
|
roles?: Prisma.RoleListRelationFilter;
|
|
@@ -212,6 +213,7 @@ export type TenantOrderByWithRelationInput = {
|
|
|
212
213
|
users?: Prisma.UserOrderByRelationAggregateInput;
|
|
213
214
|
properties?: Prisma.PropertyOrderByRelationAggregateInput;
|
|
214
215
|
paymentPlans?: Prisma.PaymentPlanOrderByRelationAggregateInput;
|
|
216
|
+
documentationPlans?: Prisma.DocumentationPlanOrderByRelationAggregateInput;
|
|
215
217
|
paymentMethods?: Prisma.PropertyPaymentMethodOrderByRelationAggregateInput;
|
|
216
218
|
applications?: Prisma.ApplicationOrderByRelationAggregateInput;
|
|
217
219
|
roles?: Prisma.RoleOrderByRelationAggregateInput;
|
|
@@ -279,6 +281,7 @@ export type TenantWhereUniqueInput = Prisma.AtLeast<{
|
|
|
279
281
|
users?: Prisma.UserListRelationFilter;
|
|
280
282
|
properties?: Prisma.PropertyListRelationFilter;
|
|
281
283
|
paymentPlans?: Prisma.PaymentPlanListRelationFilter;
|
|
284
|
+
documentationPlans?: Prisma.DocumentationPlanListRelationFilter;
|
|
282
285
|
paymentMethods?: Prisma.PropertyPaymentMethodListRelationFilter;
|
|
283
286
|
applications?: Prisma.ApplicationListRelationFilter;
|
|
284
287
|
roles?: Prisma.RoleListRelationFilter;
|
|
@@ -364,6 +367,7 @@ export type TenantCreateInput = {
|
|
|
364
367
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
365
368
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
366
369
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
370
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
367
371
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
368
372
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
369
373
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -427,6 +431,7 @@ export type TenantUncheckedCreateInput = {
|
|
|
427
431
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
428
432
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
429
433
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
434
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
430
435
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
431
436
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
432
437
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -490,6 +495,7 @@ export type TenantUpdateInput = {
|
|
|
490
495
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
491
496
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
492
497
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
498
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
493
499
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
494
500
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
495
501
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -553,6 +559,7 @@ export type TenantUncheckedUpdateInput = {
|
|
|
553
559
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
554
560
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
555
561
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
562
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
556
563
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
557
564
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
558
565
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -889,6 +896,20 @@ export type TenantUpdateOneRequiredWithoutPropertyAmenitiesNestedInput = {
|
|
|
889
896
|
connect?: Prisma.TenantWhereUniqueInput;
|
|
890
897
|
update?: Prisma.XOR<Prisma.XOR<Prisma.TenantUpdateToOneWithWhereWithoutPropertyAmenitiesInput, Prisma.TenantUpdateWithoutPropertyAmenitiesInput>, Prisma.TenantUncheckedUpdateWithoutPropertyAmenitiesInput>;
|
|
891
898
|
};
|
|
899
|
+
export type TenantCreateNestedOneWithoutDocumentationPlansInput = {
|
|
900
|
+
create?: Prisma.XOR<Prisma.TenantCreateWithoutDocumentationPlansInput, Prisma.TenantUncheckedCreateWithoutDocumentationPlansInput>;
|
|
901
|
+
connectOrCreate?: Prisma.TenantCreateOrConnectWithoutDocumentationPlansInput;
|
|
902
|
+
connect?: Prisma.TenantWhereUniqueInput;
|
|
903
|
+
};
|
|
904
|
+
export type TenantUpdateOneWithoutDocumentationPlansNestedInput = {
|
|
905
|
+
create?: Prisma.XOR<Prisma.TenantCreateWithoutDocumentationPlansInput, Prisma.TenantUncheckedCreateWithoutDocumentationPlansInput>;
|
|
906
|
+
connectOrCreate?: Prisma.TenantCreateOrConnectWithoutDocumentationPlansInput;
|
|
907
|
+
upsert?: Prisma.TenantUpsertWithoutDocumentationPlansInput;
|
|
908
|
+
disconnect?: Prisma.TenantWhereInput | boolean;
|
|
909
|
+
delete?: Prisma.TenantWhereInput | boolean;
|
|
910
|
+
connect?: Prisma.TenantWhereUniqueInput;
|
|
911
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.TenantUpdateToOneWithWhereWithoutDocumentationPlansInput, Prisma.TenantUpdateWithoutDocumentationPlansInput>, Prisma.TenantUncheckedUpdateWithoutDocumentationPlansInput>;
|
|
912
|
+
};
|
|
892
913
|
export type TenantCreateNestedOneWithoutPaymentPlansInput = {
|
|
893
914
|
create?: Prisma.XOR<Prisma.TenantCreateWithoutPaymentPlansInput, Prisma.TenantUncheckedCreateWithoutPaymentPlansInput>;
|
|
894
915
|
connectOrCreate?: Prisma.TenantCreateOrConnectWithoutPaymentPlansInput;
|
|
@@ -1344,6 +1365,7 @@ export type TenantCreateWithoutUsersInput = {
|
|
|
1344
1365
|
updatedAt?: Date | string;
|
|
1345
1366
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
1346
1367
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
1368
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
1347
1369
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
1348
1370
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
1349
1371
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -1406,6 +1428,7 @@ export type TenantUncheckedCreateWithoutUsersInput = {
|
|
|
1406
1428
|
updatedAt?: Date | string;
|
|
1407
1429
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
1408
1430
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
1431
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
1409
1432
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
1410
1433
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
1411
1434
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -1481,6 +1504,7 @@ export type TenantUpdateWithoutUsersInput = {
|
|
|
1481
1504
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1482
1505
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
1483
1506
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
1507
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
1484
1508
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
1485
1509
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
1486
1510
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -1543,6 +1567,7 @@ export type TenantUncheckedUpdateWithoutUsersInput = {
|
|
|
1543
1567
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1544
1568
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1545
1569
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1570
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1546
1571
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1547
1572
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1548
1573
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -1606,6 +1631,7 @@ export type TenantCreateWithoutRolesInput = {
|
|
|
1606
1631
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
1607
1632
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
1608
1633
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
1634
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
1609
1635
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
1610
1636
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
1611
1637
|
permissions?: Prisma.PermissionCreateNestedManyWithoutTenantInput;
|
|
@@ -1668,6 +1694,7 @@ export type TenantUncheckedCreateWithoutRolesInput = {
|
|
|
1668
1694
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
1669
1695
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
1670
1696
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
1697
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
1671
1698
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
1672
1699
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
1673
1700
|
permissions?: Prisma.PermissionUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -1743,6 +1770,7 @@ export type TenantUpdateWithoutRolesInput = {
|
|
|
1743
1770
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
1744
1771
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
1745
1772
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
1773
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
1746
1774
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
1747
1775
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
1748
1776
|
permissions?: Prisma.PermissionUpdateManyWithoutTenantNestedInput;
|
|
@@ -1805,6 +1833,7 @@ export type TenantUncheckedUpdateWithoutRolesInput = {
|
|
|
1805
1833
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1806
1834
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1807
1835
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1836
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1808
1837
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1809
1838
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1810
1839
|
permissions?: Prisma.PermissionUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -1867,6 +1896,7 @@ export type TenantCreateWithoutPermissionsInput = {
|
|
|
1867
1896
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
1868
1897
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
1869
1898
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
1899
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
1870
1900
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
1871
1901
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
1872
1902
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -1929,6 +1959,7 @@ export type TenantUncheckedCreateWithoutPermissionsInput = {
|
|
|
1929
1959
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
1930
1960
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
1931
1961
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
1962
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
1932
1963
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
1933
1964
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
1934
1965
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -2004,6 +2035,7 @@ export type TenantUpdateWithoutPermissionsInput = {
|
|
|
2004
2035
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
2005
2036
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
2006
2037
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
2038
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
2007
2039
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
2008
2040
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
2009
2041
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -2066,6 +2098,7 @@ export type TenantUncheckedUpdateWithoutPermissionsInput = {
|
|
|
2066
2098
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2067
2099
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2068
2100
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2101
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2069
2102
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2070
2103
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2071
2104
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -2128,6 +2161,7 @@ export type TenantCreateWithoutMembershipsInput = {
|
|
|
2128
2161
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
2129
2162
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
2130
2163
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
2164
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
2131
2165
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
2132
2166
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
2133
2167
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -2190,6 +2224,7 @@ export type TenantUncheckedCreateWithoutMembershipsInput = {
|
|
|
2190
2224
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
2191
2225
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
2192
2226
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
2227
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
2193
2228
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
2194
2229
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
2195
2230
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -2265,6 +2300,7 @@ export type TenantUpdateWithoutMembershipsInput = {
|
|
|
2265
2300
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
2266
2301
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
2267
2302
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
2303
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
2268
2304
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
2269
2305
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
2270
2306
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -2327,6 +2363,7 @@ export type TenantUncheckedUpdateWithoutMembershipsInput = {
|
|
|
2327
2363
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2328
2364
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2329
2365
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2366
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2330
2367
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2331
2368
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2332
2369
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -2389,6 +2426,7 @@ export type TenantCreateWithoutApiKeysInput = {
|
|
|
2389
2426
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
2390
2427
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
2391
2428
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
2429
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
2392
2430
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
2393
2431
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
2394
2432
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -2451,6 +2489,7 @@ export type TenantUncheckedCreateWithoutApiKeysInput = {
|
|
|
2451
2489
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
2452
2490
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
2453
2491
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
2492
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
2454
2493
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
2455
2494
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
2456
2495
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -2526,6 +2565,7 @@ export type TenantUpdateWithoutApiKeysInput = {
|
|
|
2526
2565
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
2527
2566
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
2528
2567
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
2568
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
2529
2569
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
2530
2570
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
2531
2571
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -2588,6 +2628,7 @@ export type TenantUncheckedUpdateWithoutApiKeysInput = {
|
|
|
2588
2628
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2589
2629
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2590
2630
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2631
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2591
2632
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2592
2633
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2593
2634
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -2650,6 +2691,7 @@ export type TenantCreateWithoutSocialsInput = {
|
|
|
2650
2691
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
2651
2692
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
2652
2693
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
2694
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
2653
2695
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
2654
2696
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
2655
2697
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -2712,6 +2754,7 @@ export type TenantUncheckedCreateWithoutSocialsInput = {
|
|
|
2712
2754
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
2713
2755
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
2714
2756
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
2757
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
2715
2758
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
2716
2759
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
2717
2760
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -2787,6 +2830,7 @@ export type TenantUpdateWithoutSocialsInput = {
|
|
|
2787
2830
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
2788
2831
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
2789
2832
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
2833
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
2790
2834
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
2791
2835
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
2792
2836
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -2849,6 +2893,7 @@ export type TenantUncheckedUpdateWithoutSocialsInput = {
|
|
|
2849
2893
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2850
2894
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2851
2895
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2896
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2852
2897
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2853
2898
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2854
2899
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -2911,6 +2956,7 @@ export type TenantCreateWithoutWalletsInput = {
|
|
|
2911
2956
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
2912
2957
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
2913
2958
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
2959
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
2914
2960
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
2915
2961
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
2916
2962
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -2973,6 +3019,7 @@ export type TenantUncheckedCreateWithoutWalletsInput = {
|
|
|
2973
3019
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
2974
3020
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
2975
3021
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
3022
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
2976
3023
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
2977
3024
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
2978
3025
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -3048,6 +3095,7 @@ export type TenantUpdateWithoutWalletsInput = {
|
|
|
3048
3095
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
3049
3096
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
3050
3097
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
3098
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
3051
3099
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
3052
3100
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
3053
3101
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -3110,6 +3158,7 @@ export type TenantUncheckedUpdateWithoutWalletsInput = {
|
|
|
3110
3158
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3111
3159
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3112
3160
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3161
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3113
3162
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3114
3163
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3115
3164
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -3172,6 +3221,7 @@ export type TenantCreateWithoutTransactionsInput = {
|
|
|
3172
3221
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
3173
3222
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
3174
3223
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
3224
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
3175
3225
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
3176
3226
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
3177
3227
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -3234,6 +3284,7 @@ export type TenantUncheckedCreateWithoutTransactionsInput = {
|
|
|
3234
3284
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
3235
3285
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
3236
3286
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
3287
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
3237
3288
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
3238
3289
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
3239
3290
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -3309,6 +3360,7 @@ export type TenantUpdateWithoutTransactionsInput = {
|
|
|
3309
3360
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
3310
3361
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
3311
3362
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
3363
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
3312
3364
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
3313
3365
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
3314
3366
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -3371,6 +3423,7 @@ export type TenantUncheckedUpdateWithoutTransactionsInput = {
|
|
|
3371
3423
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3372
3424
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3373
3425
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3426
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3374
3427
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3375
3428
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3376
3429
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -3433,6 +3486,7 @@ export type TenantCreateWithoutSettingsInput = {
|
|
|
3433
3486
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
3434
3487
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
3435
3488
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
3489
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
3436
3490
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
3437
3491
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
3438
3492
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -3495,6 +3549,7 @@ export type TenantUncheckedCreateWithoutSettingsInput = {
|
|
|
3495
3549
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
3496
3550
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
3497
3551
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
3552
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
3498
3553
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
3499
3554
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
3500
3555
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -3570,6 +3625,7 @@ export type TenantUpdateWithoutSettingsInput = {
|
|
|
3570
3625
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
3571
3626
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
3572
3627
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
3628
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
3573
3629
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
3574
3630
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
3575
3631
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -3632,6 +3688,7 @@ export type TenantUncheckedUpdateWithoutSettingsInput = {
|
|
|
3632
3688
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3633
3689
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3634
3690
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3691
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3635
3692
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3636
3693
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3637
3694
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -3693,6 +3750,7 @@ export type TenantCreateWithoutPropertiesInput = {
|
|
|
3693
3750
|
updatedAt?: Date | string;
|
|
3694
3751
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
3695
3752
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
3753
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
3696
3754
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
3697
3755
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
3698
3756
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -3755,6 +3813,7 @@ export type TenantUncheckedCreateWithoutPropertiesInput = {
|
|
|
3755
3813
|
updatedAt?: Date | string;
|
|
3756
3814
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
3757
3815
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
3816
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
3758
3817
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
3759
3818
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
3760
3819
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -3830,6 +3889,7 @@ export type TenantUpdateWithoutPropertiesInput = {
|
|
|
3830
3889
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
3831
3890
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
3832
3891
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
3892
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
3833
3893
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
3834
3894
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
3835
3895
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -3892,6 +3952,7 @@ export type TenantUncheckedUpdateWithoutPropertiesInput = {
|
|
|
3892
3952
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
3893
3953
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3894
3954
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3955
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3895
3956
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3896
3957
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3897
3958
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -3955,6 +4016,7 @@ export type TenantCreateWithoutPropertyMediaInput = {
|
|
|
3955
4016
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
3956
4017
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
3957
4018
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
4019
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
3958
4020
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
3959
4021
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
3960
4022
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -4017,6 +4079,7 @@ export type TenantUncheckedCreateWithoutPropertyMediaInput = {
|
|
|
4017
4079
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
4018
4080
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
4019
4081
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
4082
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
4020
4083
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
4021
4084
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
4022
4085
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -4092,6 +4155,7 @@ export type TenantUpdateWithoutPropertyMediaInput = {
|
|
|
4092
4155
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
4093
4156
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
4094
4157
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
4158
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
4095
4159
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
4096
4160
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
4097
4161
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -4154,6 +4218,7 @@ export type TenantUncheckedUpdateWithoutPropertyMediaInput = {
|
|
|
4154
4218
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4155
4219
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4156
4220
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4221
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4157
4222
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4158
4223
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4159
4224
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -4216,6 +4281,7 @@ export type TenantCreateWithoutPropertyDocumentsInput = {
|
|
|
4216
4281
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
4217
4282
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
4218
4283
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
4284
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
4219
4285
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
4220
4286
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
4221
4287
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -4278,6 +4344,7 @@ export type TenantUncheckedCreateWithoutPropertyDocumentsInput = {
|
|
|
4278
4344
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
4279
4345
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
4280
4346
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
4347
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
4281
4348
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
4282
4349
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
4283
4350
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -4353,6 +4420,7 @@ export type TenantUpdateWithoutPropertyDocumentsInput = {
|
|
|
4353
4420
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
4354
4421
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
4355
4422
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
4423
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
4356
4424
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
4357
4425
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
4358
4426
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -4415,6 +4483,7 @@ export type TenantUncheckedUpdateWithoutPropertyDocumentsInput = {
|
|
|
4415
4483
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4416
4484
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4417
4485
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4486
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4418
4487
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4419
4488
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4420
4489
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -4477,6 +4546,7 @@ export type TenantCreateWithoutAmenitiesInput = {
|
|
|
4477
4546
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
4478
4547
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
4479
4548
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
4549
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
4480
4550
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
4481
4551
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
4482
4552
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -4539,6 +4609,7 @@ export type TenantUncheckedCreateWithoutAmenitiesInput = {
|
|
|
4539
4609
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
4540
4610
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
4541
4611
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
4612
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
4542
4613
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
4543
4614
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
4544
4615
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -4614,6 +4685,7 @@ export type TenantUpdateWithoutAmenitiesInput = {
|
|
|
4614
4685
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
4615
4686
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
4616
4687
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
4688
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
4617
4689
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
4618
4690
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
4619
4691
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -4676,6 +4748,7 @@ export type TenantUncheckedUpdateWithoutAmenitiesInput = {
|
|
|
4676
4748
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4677
4749
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4678
4750
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4751
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4679
4752
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4680
4753
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4681
4754
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -4738,6 +4811,7 @@ export type TenantCreateWithoutPropertyVariantsInput = {
|
|
|
4738
4811
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
4739
4812
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
4740
4813
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
4814
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
4741
4815
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
4742
4816
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
4743
4817
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -4800,6 +4874,7 @@ export type TenantUncheckedCreateWithoutPropertyVariantsInput = {
|
|
|
4800
4874
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
4801
4875
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
4802
4876
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
4877
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
4803
4878
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
4804
4879
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
4805
4880
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -4875,6 +4950,7 @@ export type TenantUpdateWithoutPropertyVariantsInput = {
|
|
|
4875
4950
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
4876
4951
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
4877
4952
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
4953
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
4878
4954
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
4879
4955
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
4880
4956
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -4937,6 +5013,7 @@ export type TenantUncheckedUpdateWithoutPropertyVariantsInput = {
|
|
|
4937
5013
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4938
5014
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4939
5015
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5016
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4940
5017
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4941
5018
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4942
5019
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -4999,6 +5076,7 @@ export type TenantCreateWithoutPropertyVariantAmenitiesInput = {
|
|
|
4999
5076
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
5000
5077
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
5001
5078
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
5079
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
5002
5080
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
5003
5081
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
5004
5082
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -5061,6 +5139,7 @@ export type TenantUncheckedCreateWithoutPropertyVariantAmenitiesInput = {
|
|
|
5061
5139
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
5062
5140
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
5063
5141
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
5142
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
5064
5143
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
5065
5144
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
5066
5145
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -5136,6 +5215,7 @@ export type TenantUpdateWithoutPropertyVariantAmenitiesInput = {
|
|
|
5136
5215
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
5137
5216
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
5138
5217
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
5218
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
5139
5219
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
5140
5220
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
5141
5221
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -5198,6 +5278,7 @@ export type TenantUncheckedUpdateWithoutPropertyVariantAmenitiesInput = {
|
|
|
5198
5278
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5199
5279
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5200
5280
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5281
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5201
5282
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5202
5283
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5203
5284
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -5260,6 +5341,7 @@ export type TenantCreateWithoutPropertyVariantMediaInput = {
|
|
|
5260
5341
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
5261
5342
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
5262
5343
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
5344
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
5263
5345
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
5264
5346
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
5265
5347
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -5322,6 +5404,7 @@ export type TenantUncheckedCreateWithoutPropertyVariantMediaInput = {
|
|
|
5322
5404
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
5323
5405
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
5324
5406
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
5407
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
5325
5408
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
5326
5409
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
5327
5410
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -5397,6 +5480,7 @@ export type TenantUpdateWithoutPropertyVariantMediaInput = {
|
|
|
5397
5480
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
5398
5481
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
5399
5482
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
5483
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
5400
5484
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
5401
5485
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
5402
5486
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -5459,6 +5543,7 @@ export type TenantUncheckedUpdateWithoutPropertyVariantMediaInput = {
|
|
|
5459
5543
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5460
5544
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5461
5545
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5546
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5462
5547
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5463
5548
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5464
5549
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -5521,6 +5606,7 @@ export type TenantCreateWithoutPropertyUnitsInput = {
|
|
|
5521
5606
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
5522
5607
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
5523
5608
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
5609
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
5524
5610
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
5525
5611
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
5526
5612
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -5583,6 +5669,7 @@ export type TenantUncheckedCreateWithoutPropertyUnitsInput = {
|
|
|
5583
5669
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
5584
5670
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
5585
5671
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
5672
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
5586
5673
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
5587
5674
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
5588
5675
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -5658,6 +5745,7 @@ export type TenantUpdateWithoutPropertyUnitsInput = {
|
|
|
5658
5745
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
5659
5746
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
5660
5747
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
5748
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
5661
5749
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
5662
5750
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
5663
5751
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -5720,6 +5808,7 @@ export type TenantUncheckedUpdateWithoutPropertyUnitsInput = {
|
|
|
5720
5808
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5721
5809
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5722
5810
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5811
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5723
5812
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5724
5813
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5725
5814
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -5782,6 +5871,7 @@ export type TenantCreateWithoutPropertyAmenitiesInput = {
|
|
|
5782
5871
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
5783
5872
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
5784
5873
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
5874
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
5785
5875
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
5786
5876
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
5787
5877
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -5844,6 +5934,7 @@ export type TenantUncheckedCreateWithoutPropertyAmenitiesInput = {
|
|
|
5844
5934
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
5845
5935
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
5846
5936
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
5937
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
5847
5938
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
5848
5939
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
5849
5940
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -5919,6 +6010,7 @@ export type TenantUpdateWithoutPropertyAmenitiesInput = {
|
|
|
5919
6010
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
5920
6011
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
5921
6012
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
6013
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
5922
6014
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
5923
6015
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
5924
6016
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -5972,6 +6064,271 @@ export type TenantUpdateWithoutPropertyAmenitiesInput = {
|
|
|
5972
6064
|
workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
|
|
5973
6065
|
};
|
|
5974
6066
|
export type TenantUncheckedUpdateWithoutPropertyAmenitiesInput = {
|
|
6067
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
6068
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
6069
|
+
subdomain?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
6070
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
6071
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
6072
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
6073
|
+
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6074
|
+
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6075
|
+
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6076
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6077
|
+
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6078
|
+
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6079
|
+
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6080
|
+
permissions?: Prisma.PermissionUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6081
|
+
memberships?: Prisma.TenantMembershipUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6082
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6083
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6084
|
+
contractTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6085
|
+
documentTemplates?: Prisma.DocumentTemplateUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6086
|
+
offerLetters?: Prisma.OfferLetterUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6087
|
+
apiKeys?: Prisma.ApiKeyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6088
|
+
eventChannels?: Prisma.EventChannelUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6089
|
+
eventTypes?: Prisma.EventTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6090
|
+
eventHandlers?: Prisma.EventHandlerUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6091
|
+
workflowEvents?: Prisma.WorkflowEventUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6092
|
+
propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6093
|
+
approvalRequests?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6094
|
+
contractRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6095
|
+
propertyPaymentMethodLinks?: Prisma.PropertyPaymentMethodLinkUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6096
|
+
propertyPaymentMethodPhases?: Prisma.PropertyPaymentMethodPhaseUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6097
|
+
phaseEventAttachments?: Prisma.PhaseEventAttachmentUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6098
|
+
paymentMethodPhaseSteps?: Prisma.PaymentMethodPhaseStepUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6099
|
+
stepEventAttachments?: Prisma.StepEventAttachmentUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6100
|
+
paymentMethodPhaseDocuments?: Prisma.PaymentMethodPhaseDocumentUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6101
|
+
paymentMethodPhaseFields?: Prisma.PaymentMethodPhaseFieldUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6102
|
+
applicationPhases?: Prisma.ApplicationPhaseUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6103
|
+
questionnairePhases?: Prisma.QuestionnairePhaseUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6104
|
+
documentationPhases?: Prisma.DocumentationPhaseUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6105
|
+
paymentPhases?: Prisma.PaymentPhaseUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6106
|
+
questionnaireFields?: Prisma.QuestionnaireFieldUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6107
|
+
applicationEvents?: Prisma.ApplicationEventUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6108
|
+
documentationSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6109
|
+
documentationStepDocuments?: Prisma.DocumentationStepDocumentUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6110
|
+
documentationStepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6111
|
+
paymentInstallments?: Prisma.PaymentInstallmentUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6112
|
+
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6113
|
+
applicationDocuments?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6114
|
+
propertyMedia?: Prisma.PropertyMediaUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6115
|
+
propertyDocuments?: Prisma.PropertyDocumentUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6116
|
+
propertyVariants?: Prisma.PropertyVariantUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6117
|
+
propertyVariantAmenities?: Prisma.PropertyVariantAmenityUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6118
|
+
propertyVariantMedia?: Prisma.PropertyVariantMediaUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6119
|
+
propertyUnits?: Prisma.PropertyUnitUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6120
|
+
eventHandlerExecutions?: Prisma.EventHandlerExecutionUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6121
|
+
amenities?: Prisma.AmenityUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6122
|
+
socials?: Prisma.SocialUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6123
|
+
wallets?: Prisma.WalletUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6124
|
+
transactions?: Prisma.TransactionUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6125
|
+
settings?: Prisma.SettingsUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6126
|
+
domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6127
|
+
workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6128
|
+
};
|
|
6129
|
+
export type TenantCreateWithoutDocumentationPlansInput = {
|
|
6130
|
+
id?: string;
|
|
6131
|
+
name: string;
|
|
6132
|
+
subdomain: string;
|
|
6133
|
+
isActive?: boolean;
|
|
6134
|
+
createdAt?: Date | string;
|
|
6135
|
+
updatedAt?: Date | string;
|
|
6136
|
+
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
6137
|
+
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
6138
|
+
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
6139
|
+
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
6140
|
+
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
6141
|
+
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
6142
|
+
permissions?: Prisma.PermissionCreateNestedManyWithoutTenantInput;
|
|
6143
|
+
memberships?: Prisma.TenantMembershipCreateNestedManyWithoutTenantInput;
|
|
6144
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutTenantInput;
|
|
6145
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutTenantInput;
|
|
6146
|
+
contractTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutTenantInput;
|
|
6147
|
+
documentTemplates?: Prisma.DocumentTemplateCreateNestedManyWithoutTenantInput;
|
|
6148
|
+
offerLetters?: Prisma.OfferLetterCreateNestedManyWithoutTenantInput;
|
|
6149
|
+
apiKeys?: Prisma.ApiKeyCreateNestedManyWithoutTenantInput;
|
|
6150
|
+
eventChannels?: Prisma.EventChannelCreateNestedManyWithoutTenantInput;
|
|
6151
|
+
eventTypes?: Prisma.EventTypeCreateNestedManyWithoutTenantInput;
|
|
6152
|
+
eventHandlers?: Prisma.EventHandlerCreateNestedManyWithoutTenantInput;
|
|
6153
|
+
workflowEvents?: Prisma.WorkflowEventCreateNestedManyWithoutTenantInput;
|
|
6154
|
+
propertyTransferRequests?: Prisma.PropertyTransferRequestCreateNestedManyWithoutTenantInput;
|
|
6155
|
+
approvalRequests?: Prisma.ApprovalRequestCreateNestedManyWithoutTenantInput;
|
|
6156
|
+
contractRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutTenantInput;
|
|
6157
|
+
propertyPaymentMethodLinks?: Prisma.PropertyPaymentMethodLinkCreateNestedManyWithoutTenantInput;
|
|
6158
|
+
propertyPaymentMethodPhases?: Prisma.PropertyPaymentMethodPhaseCreateNestedManyWithoutTenantInput;
|
|
6159
|
+
phaseEventAttachments?: Prisma.PhaseEventAttachmentCreateNestedManyWithoutTenantInput;
|
|
6160
|
+
paymentMethodPhaseSteps?: Prisma.PaymentMethodPhaseStepCreateNestedManyWithoutTenantInput;
|
|
6161
|
+
stepEventAttachments?: Prisma.StepEventAttachmentCreateNestedManyWithoutTenantInput;
|
|
6162
|
+
paymentMethodPhaseDocuments?: Prisma.PaymentMethodPhaseDocumentCreateNestedManyWithoutTenantInput;
|
|
6163
|
+
paymentMethodPhaseFields?: Prisma.PaymentMethodPhaseFieldCreateNestedManyWithoutTenantInput;
|
|
6164
|
+
applicationPhases?: Prisma.ApplicationPhaseCreateNestedManyWithoutTenantInput;
|
|
6165
|
+
questionnairePhases?: Prisma.QuestionnairePhaseCreateNestedManyWithoutTenantInput;
|
|
6166
|
+
documentationPhases?: Prisma.DocumentationPhaseCreateNestedManyWithoutTenantInput;
|
|
6167
|
+
paymentPhases?: Prisma.PaymentPhaseCreateNestedManyWithoutTenantInput;
|
|
6168
|
+
questionnaireFields?: Prisma.QuestionnaireFieldCreateNestedManyWithoutTenantInput;
|
|
6169
|
+
applicationEvents?: Prisma.ApplicationEventCreateNestedManyWithoutTenantInput;
|
|
6170
|
+
documentationSteps?: Prisma.DocumentationStepCreateNestedManyWithoutTenantInput;
|
|
6171
|
+
documentationStepDocuments?: Prisma.DocumentationStepDocumentCreateNestedManyWithoutTenantInput;
|
|
6172
|
+
documentationStepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutTenantInput;
|
|
6173
|
+
paymentInstallments?: Prisma.PaymentInstallmentCreateNestedManyWithoutTenantInput;
|
|
6174
|
+
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutTenantInput;
|
|
6175
|
+
applicationDocuments?: Prisma.ApplicationDocumentCreateNestedManyWithoutTenantInput;
|
|
6176
|
+
propertyMedia?: Prisma.PropertyMediaCreateNestedManyWithoutTenantInput;
|
|
6177
|
+
propertyDocuments?: Prisma.PropertyDocumentCreateNestedManyWithoutTenantInput;
|
|
6178
|
+
propertyVariants?: Prisma.PropertyVariantCreateNestedManyWithoutTenantInput;
|
|
6179
|
+
propertyVariantAmenities?: Prisma.PropertyVariantAmenityCreateNestedManyWithoutTenantInput;
|
|
6180
|
+
propertyVariantMedia?: Prisma.PropertyVariantMediaCreateNestedManyWithoutTenantInput;
|
|
6181
|
+
propertyUnits?: Prisma.PropertyUnitCreateNestedManyWithoutTenantInput;
|
|
6182
|
+
propertyAmenities?: Prisma.PropertyAmenityCreateNestedManyWithoutTenantInput;
|
|
6183
|
+
eventHandlerExecutions?: Prisma.EventHandlerExecutionCreateNestedManyWithoutTenantInput;
|
|
6184
|
+
amenities?: Prisma.AmenityCreateNestedManyWithoutTenantInput;
|
|
6185
|
+
socials?: Prisma.SocialCreateNestedManyWithoutTenantInput;
|
|
6186
|
+
wallets?: Prisma.WalletCreateNestedManyWithoutTenantInput;
|
|
6187
|
+
transactions?: Prisma.TransactionCreateNestedManyWithoutTenantInput;
|
|
6188
|
+
settings?: Prisma.SettingsCreateNestedManyWithoutTenantInput;
|
|
6189
|
+
domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
|
|
6190
|
+
workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
|
|
6191
|
+
};
|
|
6192
|
+
export type TenantUncheckedCreateWithoutDocumentationPlansInput = {
|
|
6193
|
+
id?: string;
|
|
6194
|
+
name: string;
|
|
6195
|
+
subdomain: string;
|
|
6196
|
+
isActive?: boolean;
|
|
6197
|
+
createdAt?: Date | string;
|
|
6198
|
+
updatedAt?: Date | string;
|
|
6199
|
+
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
6200
|
+
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
6201
|
+
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
6202
|
+
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
6203
|
+
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
6204
|
+
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
6205
|
+
permissions?: Prisma.PermissionUncheckedCreateNestedManyWithoutTenantInput;
|
|
6206
|
+
memberships?: Prisma.TenantMembershipUncheckedCreateNestedManyWithoutTenantInput;
|
|
6207
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutTenantInput;
|
|
6208
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutTenantInput;
|
|
6209
|
+
contractTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutTenantInput;
|
|
6210
|
+
documentTemplates?: Prisma.DocumentTemplateUncheckedCreateNestedManyWithoutTenantInput;
|
|
6211
|
+
offerLetters?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutTenantInput;
|
|
6212
|
+
apiKeys?: Prisma.ApiKeyUncheckedCreateNestedManyWithoutTenantInput;
|
|
6213
|
+
eventChannels?: Prisma.EventChannelUncheckedCreateNestedManyWithoutTenantInput;
|
|
6214
|
+
eventTypes?: Prisma.EventTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
6215
|
+
eventHandlers?: Prisma.EventHandlerUncheckedCreateNestedManyWithoutTenantInput;
|
|
6216
|
+
workflowEvents?: Prisma.WorkflowEventUncheckedCreateNestedManyWithoutTenantInput;
|
|
6217
|
+
propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutTenantInput;
|
|
6218
|
+
approvalRequests?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutTenantInput;
|
|
6219
|
+
contractRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutTenantInput;
|
|
6220
|
+
propertyPaymentMethodLinks?: Prisma.PropertyPaymentMethodLinkUncheckedCreateNestedManyWithoutTenantInput;
|
|
6221
|
+
propertyPaymentMethodPhases?: Prisma.PropertyPaymentMethodPhaseUncheckedCreateNestedManyWithoutTenantInput;
|
|
6222
|
+
phaseEventAttachments?: Prisma.PhaseEventAttachmentUncheckedCreateNestedManyWithoutTenantInput;
|
|
6223
|
+
paymentMethodPhaseSteps?: Prisma.PaymentMethodPhaseStepUncheckedCreateNestedManyWithoutTenantInput;
|
|
6224
|
+
stepEventAttachments?: Prisma.StepEventAttachmentUncheckedCreateNestedManyWithoutTenantInput;
|
|
6225
|
+
paymentMethodPhaseDocuments?: Prisma.PaymentMethodPhaseDocumentUncheckedCreateNestedManyWithoutTenantInput;
|
|
6226
|
+
paymentMethodPhaseFields?: Prisma.PaymentMethodPhaseFieldUncheckedCreateNestedManyWithoutTenantInput;
|
|
6227
|
+
applicationPhases?: Prisma.ApplicationPhaseUncheckedCreateNestedManyWithoutTenantInput;
|
|
6228
|
+
questionnairePhases?: Prisma.QuestionnairePhaseUncheckedCreateNestedManyWithoutTenantInput;
|
|
6229
|
+
documentationPhases?: Prisma.DocumentationPhaseUncheckedCreateNestedManyWithoutTenantInput;
|
|
6230
|
+
paymentPhases?: Prisma.PaymentPhaseUncheckedCreateNestedManyWithoutTenantInput;
|
|
6231
|
+
questionnaireFields?: Prisma.QuestionnaireFieldUncheckedCreateNestedManyWithoutTenantInput;
|
|
6232
|
+
applicationEvents?: Prisma.ApplicationEventUncheckedCreateNestedManyWithoutTenantInput;
|
|
6233
|
+
documentationSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutTenantInput;
|
|
6234
|
+
documentationStepDocuments?: Prisma.DocumentationStepDocumentUncheckedCreateNestedManyWithoutTenantInput;
|
|
6235
|
+
documentationStepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutTenantInput;
|
|
6236
|
+
paymentInstallments?: Prisma.PaymentInstallmentUncheckedCreateNestedManyWithoutTenantInput;
|
|
6237
|
+
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutTenantInput;
|
|
6238
|
+
applicationDocuments?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutTenantInput;
|
|
6239
|
+
propertyMedia?: Prisma.PropertyMediaUncheckedCreateNestedManyWithoutTenantInput;
|
|
6240
|
+
propertyDocuments?: Prisma.PropertyDocumentUncheckedCreateNestedManyWithoutTenantInput;
|
|
6241
|
+
propertyVariants?: Prisma.PropertyVariantUncheckedCreateNestedManyWithoutTenantInput;
|
|
6242
|
+
propertyVariantAmenities?: Prisma.PropertyVariantAmenityUncheckedCreateNestedManyWithoutTenantInput;
|
|
6243
|
+
propertyVariantMedia?: Prisma.PropertyVariantMediaUncheckedCreateNestedManyWithoutTenantInput;
|
|
6244
|
+
propertyUnits?: Prisma.PropertyUnitUncheckedCreateNestedManyWithoutTenantInput;
|
|
6245
|
+
propertyAmenities?: Prisma.PropertyAmenityUncheckedCreateNestedManyWithoutTenantInput;
|
|
6246
|
+
eventHandlerExecutions?: Prisma.EventHandlerExecutionUncheckedCreateNestedManyWithoutTenantInput;
|
|
6247
|
+
amenities?: Prisma.AmenityUncheckedCreateNestedManyWithoutTenantInput;
|
|
6248
|
+
socials?: Prisma.SocialUncheckedCreateNestedManyWithoutTenantInput;
|
|
6249
|
+
wallets?: Prisma.WalletUncheckedCreateNestedManyWithoutTenantInput;
|
|
6250
|
+
transactions?: Prisma.TransactionUncheckedCreateNestedManyWithoutTenantInput;
|
|
6251
|
+
settings?: Prisma.SettingsUncheckedCreateNestedManyWithoutTenantInput;
|
|
6252
|
+
domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
|
|
6253
|
+
workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
|
|
6254
|
+
};
|
|
6255
|
+
export type TenantCreateOrConnectWithoutDocumentationPlansInput = {
|
|
6256
|
+
where: Prisma.TenantWhereUniqueInput;
|
|
6257
|
+
create: Prisma.XOR<Prisma.TenantCreateWithoutDocumentationPlansInput, Prisma.TenantUncheckedCreateWithoutDocumentationPlansInput>;
|
|
6258
|
+
};
|
|
6259
|
+
export type TenantUpsertWithoutDocumentationPlansInput = {
|
|
6260
|
+
update: Prisma.XOR<Prisma.TenantUpdateWithoutDocumentationPlansInput, Prisma.TenantUncheckedUpdateWithoutDocumentationPlansInput>;
|
|
6261
|
+
create: Prisma.XOR<Prisma.TenantCreateWithoutDocumentationPlansInput, Prisma.TenantUncheckedCreateWithoutDocumentationPlansInput>;
|
|
6262
|
+
where?: Prisma.TenantWhereInput;
|
|
6263
|
+
};
|
|
6264
|
+
export type TenantUpdateToOneWithWhereWithoutDocumentationPlansInput = {
|
|
6265
|
+
where?: Prisma.TenantWhereInput;
|
|
6266
|
+
data: Prisma.XOR<Prisma.TenantUpdateWithoutDocumentationPlansInput, Prisma.TenantUncheckedUpdateWithoutDocumentationPlansInput>;
|
|
6267
|
+
};
|
|
6268
|
+
export type TenantUpdateWithoutDocumentationPlansInput = {
|
|
6269
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
6270
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
6271
|
+
subdomain?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
6272
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
6273
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
6274
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
6275
|
+
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
6276
|
+
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
6277
|
+
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
6278
|
+
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
6279
|
+
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
6280
|
+
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
6281
|
+
permissions?: Prisma.PermissionUpdateManyWithoutTenantNestedInput;
|
|
6282
|
+
memberships?: Prisma.TenantMembershipUpdateManyWithoutTenantNestedInput;
|
|
6283
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutTenantNestedInput;
|
|
6284
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutTenantNestedInput;
|
|
6285
|
+
contractTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutTenantNestedInput;
|
|
6286
|
+
documentTemplates?: Prisma.DocumentTemplateUpdateManyWithoutTenantNestedInput;
|
|
6287
|
+
offerLetters?: Prisma.OfferLetterUpdateManyWithoutTenantNestedInput;
|
|
6288
|
+
apiKeys?: Prisma.ApiKeyUpdateManyWithoutTenantNestedInput;
|
|
6289
|
+
eventChannels?: Prisma.EventChannelUpdateManyWithoutTenantNestedInput;
|
|
6290
|
+
eventTypes?: Prisma.EventTypeUpdateManyWithoutTenantNestedInput;
|
|
6291
|
+
eventHandlers?: Prisma.EventHandlerUpdateManyWithoutTenantNestedInput;
|
|
6292
|
+
workflowEvents?: Prisma.WorkflowEventUpdateManyWithoutTenantNestedInput;
|
|
6293
|
+
propertyTransferRequests?: Prisma.PropertyTransferRequestUpdateManyWithoutTenantNestedInput;
|
|
6294
|
+
approvalRequests?: Prisma.ApprovalRequestUpdateManyWithoutTenantNestedInput;
|
|
6295
|
+
contractRefunds?: Prisma.ApplicationRefundUpdateManyWithoutTenantNestedInput;
|
|
6296
|
+
propertyPaymentMethodLinks?: Prisma.PropertyPaymentMethodLinkUpdateManyWithoutTenantNestedInput;
|
|
6297
|
+
propertyPaymentMethodPhases?: Prisma.PropertyPaymentMethodPhaseUpdateManyWithoutTenantNestedInput;
|
|
6298
|
+
phaseEventAttachments?: Prisma.PhaseEventAttachmentUpdateManyWithoutTenantNestedInput;
|
|
6299
|
+
paymentMethodPhaseSteps?: Prisma.PaymentMethodPhaseStepUpdateManyWithoutTenantNestedInput;
|
|
6300
|
+
stepEventAttachments?: Prisma.StepEventAttachmentUpdateManyWithoutTenantNestedInput;
|
|
6301
|
+
paymentMethodPhaseDocuments?: Prisma.PaymentMethodPhaseDocumentUpdateManyWithoutTenantNestedInput;
|
|
6302
|
+
paymentMethodPhaseFields?: Prisma.PaymentMethodPhaseFieldUpdateManyWithoutTenantNestedInput;
|
|
6303
|
+
applicationPhases?: Prisma.ApplicationPhaseUpdateManyWithoutTenantNestedInput;
|
|
6304
|
+
questionnairePhases?: Prisma.QuestionnairePhaseUpdateManyWithoutTenantNestedInput;
|
|
6305
|
+
documentationPhases?: Prisma.DocumentationPhaseUpdateManyWithoutTenantNestedInput;
|
|
6306
|
+
paymentPhases?: Prisma.PaymentPhaseUpdateManyWithoutTenantNestedInput;
|
|
6307
|
+
questionnaireFields?: Prisma.QuestionnaireFieldUpdateManyWithoutTenantNestedInput;
|
|
6308
|
+
applicationEvents?: Prisma.ApplicationEventUpdateManyWithoutTenantNestedInput;
|
|
6309
|
+
documentationSteps?: Prisma.DocumentationStepUpdateManyWithoutTenantNestedInput;
|
|
6310
|
+
documentationStepDocuments?: Prisma.DocumentationStepDocumentUpdateManyWithoutTenantNestedInput;
|
|
6311
|
+
documentationStepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutTenantNestedInput;
|
|
6312
|
+
paymentInstallments?: Prisma.PaymentInstallmentUpdateManyWithoutTenantNestedInput;
|
|
6313
|
+
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutTenantNestedInput;
|
|
6314
|
+
applicationDocuments?: Prisma.ApplicationDocumentUpdateManyWithoutTenantNestedInput;
|
|
6315
|
+
propertyMedia?: Prisma.PropertyMediaUpdateManyWithoutTenantNestedInput;
|
|
6316
|
+
propertyDocuments?: Prisma.PropertyDocumentUpdateManyWithoutTenantNestedInput;
|
|
6317
|
+
propertyVariants?: Prisma.PropertyVariantUpdateManyWithoutTenantNestedInput;
|
|
6318
|
+
propertyVariantAmenities?: Prisma.PropertyVariantAmenityUpdateManyWithoutTenantNestedInput;
|
|
6319
|
+
propertyVariantMedia?: Prisma.PropertyVariantMediaUpdateManyWithoutTenantNestedInput;
|
|
6320
|
+
propertyUnits?: Prisma.PropertyUnitUpdateManyWithoutTenantNestedInput;
|
|
6321
|
+
propertyAmenities?: Prisma.PropertyAmenityUpdateManyWithoutTenantNestedInput;
|
|
6322
|
+
eventHandlerExecutions?: Prisma.EventHandlerExecutionUpdateManyWithoutTenantNestedInput;
|
|
6323
|
+
amenities?: Prisma.AmenityUpdateManyWithoutTenantNestedInput;
|
|
6324
|
+
socials?: Prisma.SocialUpdateManyWithoutTenantNestedInput;
|
|
6325
|
+
wallets?: Prisma.WalletUpdateManyWithoutTenantNestedInput;
|
|
6326
|
+
transactions?: Prisma.TransactionUpdateManyWithoutTenantNestedInput;
|
|
6327
|
+
settings?: Prisma.SettingsUpdateManyWithoutTenantNestedInput;
|
|
6328
|
+
domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
|
|
6329
|
+
workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
|
|
6330
|
+
};
|
|
6331
|
+
export type TenantUncheckedUpdateWithoutDocumentationPlansInput = {
|
|
5975
6332
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5976
6333
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5977
6334
|
subdomain?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -6024,6 +6381,7 @@ export type TenantUncheckedUpdateWithoutPropertyAmenitiesInput = {
|
|
|
6024
6381
|
propertyVariantAmenities?: Prisma.PropertyVariantAmenityUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6025
6382
|
propertyVariantMedia?: Prisma.PropertyVariantMediaUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6026
6383
|
propertyUnits?: Prisma.PropertyUnitUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6384
|
+
propertyAmenities?: Prisma.PropertyAmenityUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6027
6385
|
eventHandlerExecutions?: Prisma.EventHandlerExecutionUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6028
6386
|
amenities?: Prisma.AmenityUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6029
6387
|
socials?: Prisma.SocialUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -6042,6 +6400,7 @@ export type TenantCreateWithoutPaymentPlansInput = {
|
|
|
6042
6400
|
updatedAt?: Date | string;
|
|
6043
6401
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
6044
6402
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
6403
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
6045
6404
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
6046
6405
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
6047
6406
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -6104,6 +6463,7 @@ export type TenantUncheckedCreateWithoutPaymentPlansInput = {
|
|
|
6104
6463
|
updatedAt?: Date | string;
|
|
6105
6464
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
6106
6465
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
6466
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
6107
6467
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
6108
6468
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
6109
6469
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -6179,6 +6539,7 @@ export type TenantUpdateWithoutPaymentPlansInput = {
|
|
|
6179
6539
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
6180
6540
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
6181
6541
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
6542
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
6182
6543
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
6183
6544
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
6184
6545
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -6241,6 +6602,7 @@ export type TenantUncheckedUpdateWithoutPaymentPlansInput = {
|
|
|
6241
6602
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
6242
6603
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6243
6604
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6605
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6244
6606
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6245
6607
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6246
6608
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -6304,6 +6666,7 @@ export type TenantCreateWithoutPaymentMethodsInput = {
|
|
|
6304
6666
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
6305
6667
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
6306
6668
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
6669
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
6307
6670
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
6308
6671
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
6309
6672
|
permissions?: Prisma.PermissionCreateNestedManyWithoutTenantInput;
|
|
@@ -6366,6 +6729,7 @@ export type TenantUncheckedCreateWithoutPaymentMethodsInput = {
|
|
|
6366
6729
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
6367
6730
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
6368
6731
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
6732
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
6369
6733
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
6370
6734
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
6371
6735
|
permissions?: Prisma.PermissionUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -6441,6 +6805,7 @@ export type TenantUpdateWithoutPaymentMethodsInput = {
|
|
|
6441
6805
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
6442
6806
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
6443
6807
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
6808
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
6444
6809
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
6445
6810
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
6446
6811
|
permissions?: Prisma.PermissionUpdateManyWithoutTenantNestedInput;
|
|
@@ -6503,6 +6868,7 @@ export type TenantUncheckedUpdateWithoutPaymentMethodsInput = {
|
|
|
6503
6868
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6504
6869
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6505
6870
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6871
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6506
6872
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6507
6873
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6508
6874
|
permissions?: Prisma.PermissionUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -6565,6 +6931,7 @@ export type TenantCreateWithoutPropertyPaymentMethodLinksInput = {
|
|
|
6565
6931
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
6566
6932
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
6567
6933
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
6934
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
6568
6935
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
6569
6936
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
6570
6937
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -6627,6 +6994,7 @@ export type TenantUncheckedCreateWithoutPropertyPaymentMethodLinksInput = {
|
|
|
6627
6994
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
6628
6995
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
6629
6996
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
6997
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
6630
6998
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
6631
6999
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
6632
7000
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -6702,6 +7070,7 @@ export type TenantUpdateWithoutPropertyPaymentMethodLinksInput = {
|
|
|
6702
7070
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
6703
7071
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
6704
7072
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
7073
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
6705
7074
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
6706
7075
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
6707
7076
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -6764,6 +7133,7 @@ export type TenantUncheckedUpdateWithoutPropertyPaymentMethodLinksInput = {
|
|
|
6764
7133
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6765
7134
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6766
7135
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7136
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6767
7137
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6768
7138
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6769
7139
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -6826,6 +7196,7 @@ export type TenantCreateWithoutPropertyPaymentMethodPhasesInput = {
|
|
|
6826
7196
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
6827
7197
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
6828
7198
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
7199
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
6829
7200
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
6830
7201
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
6831
7202
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -6888,6 +7259,7 @@ export type TenantUncheckedCreateWithoutPropertyPaymentMethodPhasesInput = {
|
|
|
6888
7259
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
6889
7260
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
6890
7261
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
7262
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
6891
7263
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
6892
7264
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
6893
7265
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -6963,6 +7335,7 @@ export type TenantUpdateWithoutPropertyPaymentMethodPhasesInput = {
|
|
|
6963
7335
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
6964
7336
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
6965
7337
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
7338
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
6966
7339
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
6967
7340
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
6968
7341
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -7025,6 +7398,7 @@ export type TenantUncheckedUpdateWithoutPropertyPaymentMethodPhasesInput = {
|
|
|
7025
7398
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7026
7399
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7027
7400
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7401
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7028
7402
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7029
7403
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7030
7404
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -7087,6 +7461,7 @@ export type TenantCreateWithoutPhaseEventAttachmentsInput = {
|
|
|
7087
7461
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
7088
7462
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
7089
7463
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
7464
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
7090
7465
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
7091
7466
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
7092
7467
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -7149,6 +7524,7 @@ export type TenantUncheckedCreateWithoutPhaseEventAttachmentsInput = {
|
|
|
7149
7524
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
7150
7525
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
7151
7526
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
7527
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
7152
7528
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
7153
7529
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
7154
7530
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -7224,6 +7600,7 @@ export type TenantUpdateWithoutPhaseEventAttachmentsInput = {
|
|
|
7224
7600
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
7225
7601
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
7226
7602
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
7603
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
7227
7604
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
7228
7605
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
7229
7606
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -7286,6 +7663,7 @@ export type TenantUncheckedUpdateWithoutPhaseEventAttachmentsInput = {
|
|
|
7286
7663
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7287
7664
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7288
7665
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7666
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7289
7667
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7290
7668
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7291
7669
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -7348,6 +7726,7 @@ export type TenantCreateWithoutPaymentMethodPhaseStepsInput = {
|
|
|
7348
7726
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
7349
7727
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
7350
7728
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
7729
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
7351
7730
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
7352
7731
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
7353
7732
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -7410,6 +7789,7 @@ export type TenantUncheckedCreateWithoutPaymentMethodPhaseStepsInput = {
|
|
|
7410
7789
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
7411
7790
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
7412
7791
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
7792
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
7413
7793
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
7414
7794
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
7415
7795
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -7485,6 +7865,7 @@ export type TenantUpdateWithoutPaymentMethodPhaseStepsInput = {
|
|
|
7485
7865
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
7486
7866
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
7487
7867
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
7868
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
7488
7869
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
7489
7870
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
7490
7871
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -7547,6 +7928,7 @@ export type TenantUncheckedUpdateWithoutPaymentMethodPhaseStepsInput = {
|
|
|
7547
7928
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7548
7929
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7549
7930
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7931
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7550
7932
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7551
7933
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7552
7934
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -7609,6 +7991,7 @@ export type TenantCreateWithoutStepEventAttachmentsInput = {
|
|
|
7609
7991
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
7610
7992
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
7611
7993
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
7994
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
7612
7995
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
7613
7996
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
7614
7997
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -7671,6 +8054,7 @@ export type TenantUncheckedCreateWithoutStepEventAttachmentsInput = {
|
|
|
7671
8054
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
7672
8055
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
7673
8056
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
8057
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
7674
8058
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
7675
8059
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
7676
8060
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -7746,6 +8130,7 @@ export type TenantUpdateWithoutStepEventAttachmentsInput = {
|
|
|
7746
8130
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
7747
8131
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
7748
8132
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
8133
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
7749
8134
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
7750
8135
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
7751
8136
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -7808,6 +8193,7 @@ export type TenantUncheckedUpdateWithoutStepEventAttachmentsInput = {
|
|
|
7808
8193
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7809
8194
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7810
8195
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8196
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7811
8197
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7812
8198
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7813
8199
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -7870,6 +8256,7 @@ export type TenantCreateWithoutPaymentMethodPhaseDocumentsInput = {
|
|
|
7870
8256
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
7871
8257
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
7872
8258
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
8259
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
7873
8260
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
7874
8261
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
7875
8262
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -7932,6 +8319,7 @@ export type TenantUncheckedCreateWithoutPaymentMethodPhaseDocumentsInput = {
|
|
|
7932
8319
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
7933
8320
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
7934
8321
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
8322
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
7935
8323
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
7936
8324
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
7937
8325
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -8007,6 +8395,7 @@ export type TenantUpdateWithoutPaymentMethodPhaseDocumentsInput = {
|
|
|
8007
8395
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
8008
8396
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
8009
8397
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
8398
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
8010
8399
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
8011
8400
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
8012
8401
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -8069,6 +8458,7 @@ export type TenantUncheckedUpdateWithoutPaymentMethodPhaseDocumentsInput = {
|
|
|
8069
8458
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8070
8459
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8071
8460
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8461
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8072
8462
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8073
8463
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8074
8464
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -8131,6 +8521,7 @@ export type TenantCreateWithoutPaymentMethodPhaseFieldsInput = {
|
|
|
8131
8521
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
8132
8522
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
8133
8523
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
8524
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
8134
8525
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
8135
8526
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
8136
8527
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -8193,6 +8584,7 @@ export type TenantUncheckedCreateWithoutPaymentMethodPhaseFieldsInput = {
|
|
|
8193
8584
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
8194
8585
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
8195
8586
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
8587
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
8196
8588
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
8197
8589
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
8198
8590
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -8268,6 +8660,7 @@ export type TenantUpdateWithoutPaymentMethodPhaseFieldsInput = {
|
|
|
8268
8660
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
8269
8661
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
8270
8662
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
8663
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
8271
8664
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
8272
8665
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
8273
8666
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -8330,6 +8723,7 @@ export type TenantUncheckedUpdateWithoutPaymentMethodPhaseFieldsInput = {
|
|
|
8330
8723
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8331
8724
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8332
8725
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8726
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8333
8727
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8334
8728
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8335
8729
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -8392,6 +8786,7 @@ export type TenantCreateWithoutApplicationsInput = {
|
|
|
8392
8786
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
8393
8787
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
8394
8788
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
8789
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
8395
8790
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
8396
8791
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
8397
8792
|
permissions?: Prisma.PermissionCreateNestedManyWithoutTenantInput;
|
|
@@ -8454,6 +8849,7 @@ export type TenantUncheckedCreateWithoutApplicationsInput = {
|
|
|
8454
8849
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
8455
8850
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
8456
8851
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
8852
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
8457
8853
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
8458
8854
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
8459
8855
|
permissions?: Prisma.PermissionUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -8529,6 +8925,7 @@ export type TenantUpdateWithoutApplicationsInput = {
|
|
|
8529
8925
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
8530
8926
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
8531
8927
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
8928
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
8532
8929
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
8533
8930
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
8534
8931
|
permissions?: Prisma.PermissionUpdateManyWithoutTenantNestedInput;
|
|
@@ -8591,6 +8988,7 @@ export type TenantUncheckedUpdateWithoutApplicationsInput = {
|
|
|
8591
8988
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8592
8989
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8593
8990
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8991
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8594
8992
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8595
8993
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8596
8994
|
permissions?: Prisma.PermissionUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -8653,6 +9051,7 @@ export type TenantCreateWithoutContractRefundsInput = {
|
|
|
8653
9051
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
8654
9052
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
8655
9053
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
9054
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
8656
9055
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
8657
9056
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
8658
9057
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -8715,6 +9114,7 @@ export type TenantUncheckedCreateWithoutContractRefundsInput = {
|
|
|
8715
9114
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
8716
9115
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
8717
9116
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
9117
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
8718
9118
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
8719
9119
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
8720
9120
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -8790,6 +9190,7 @@ export type TenantUpdateWithoutContractRefundsInput = {
|
|
|
8790
9190
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
8791
9191
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
8792
9192
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
9193
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
8793
9194
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
8794
9195
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
8795
9196
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -8852,6 +9253,7 @@ export type TenantUncheckedUpdateWithoutContractRefundsInput = {
|
|
|
8852
9253
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8853
9254
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8854
9255
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9256
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8855
9257
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8856
9258
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8857
9259
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -8914,6 +9316,7 @@ export type TenantCreateWithoutApplicationPhasesInput = {
|
|
|
8914
9316
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
8915
9317
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
8916
9318
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
9319
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
8917
9320
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
8918
9321
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
8919
9322
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -8976,6 +9379,7 @@ export type TenantUncheckedCreateWithoutApplicationPhasesInput = {
|
|
|
8976
9379
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
8977
9380
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
8978
9381
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
9382
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
8979
9383
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
8980
9384
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
8981
9385
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -9051,6 +9455,7 @@ export type TenantUpdateWithoutApplicationPhasesInput = {
|
|
|
9051
9455
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
9052
9456
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
9053
9457
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
9458
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
9054
9459
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
9055
9460
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
9056
9461
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -9113,6 +9518,7 @@ export type TenantUncheckedUpdateWithoutApplicationPhasesInput = {
|
|
|
9113
9518
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9114
9519
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9115
9520
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9521
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9116
9522
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9117
9523
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9118
9524
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -9175,6 +9581,7 @@ export type TenantCreateWithoutQuestionnairePhasesInput = {
|
|
|
9175
9581
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
9176
9582
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
9177
9583
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
9584
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
9178
9585
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
9179
9586
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
9180
9587
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -9237,6 +9644,7 @@ export type TenantUncheckedCreateWithoutQuestionnairePhasesInput = {
|
|
|
9237
9644
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
9238
9645
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
9239
9646
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
9647
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
9240
9648
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
9241
9649
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
9242
9650
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -9312,6 +9720,7 @@ export type TenantUpdateWithoutQuestionnairePhasesInput = {
|
|
|
9312
9720
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
9313
9721
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
9314
9722
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
9723
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
9315
9724
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
9316
9725
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
9317
9726
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -9374,6 +9783,7 @@ export type TenantUncheckedUpdateWithoutQuestionnairePhasesInput = {
|
|
|
9374
9783
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9375
9784
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9376
9785
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9786
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9377
9787
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9378
9788
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9379
9789
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -9436,6 +9846,7 @@ export type TenantCreateWithoutDocumentationPhasesInput = {
|
|
|
9436
9846
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
9437
9847
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
9438
9848
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
9849
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
9439
9850
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
9440
9851
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
9441
9852
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -9498,6 +9909,7 @@ export type TenantUncheckedCreateWithoutDocumentationPhasesInput = {
|
|
|
9498
9909
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
9499
9910
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
9500
9911
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
9912
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
9501
9913
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
9502
9914
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
9503
9915
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -9573,6 +9985,7 @@ export type TenantUpdateWithoutDocumentationPhasesInput = {
|
|
|
9573
9985
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
9574
9986
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
9575
9987
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
9988
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
9576
9989
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
9577
9990
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
9578
9991
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -9635,6 +10048,7 @@ export type TenantUncheckedUpdateWithoutDocumentationPhasesInput = {
|
|
|
9635
10048
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9636
10049
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9637
10050
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10051
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9638
10052
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9639
10053
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9640
10054
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -9697,6 +10111,7 @@ export type TenantCreateWithoutPaymentPhasesInput = {
|
|
|
9697
10111
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
9698
10112
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
9699
10113
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
10114
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
9700
10115
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
9701
10116
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
9702
10117
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -9759,6 +10174,7 @@ export type TenantUncheckedCreateWithoutPaymentPhasesInput = {
|
|
|
9759
10174
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
9760
10175
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
9761
10176
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
10177
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
9762
10178
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
9763
10179
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
9764
10180
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -9834,6 +10250,7 @@ export type TenantUpdateWithoutPaymentPhasesInput = {
|
|
|
9834
10250
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
9835
10251
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
9836
10252
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
10253
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
9837
10254
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
9838
10255
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
9839
10256
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -9896,6 +10313,7 @@ export type TenantUncheckedUpdateWithoutPaymentPhasesInput = {
|
|
|
9896
10313
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9897
10314
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9898
10315
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10316
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9899
10317
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9900
10318
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9901
10319
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -9958,6 +10376,7 @@ export type TenantCreateWithoutQuestionnaireFieldsInput = {
|
|
|
9958
10376
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
9959
10377
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
9960
10378
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
10379
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
9961
10380
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
9962
10381
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
9963
10382
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -10020,6 +10439,7 @@ export type TenantUncheckedCreateWithoutQuestionnaireFieldsInput = {
|
|
|
10020
10439
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
10021
10440
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
10022
10441
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
10442
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
10023
10443
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
10024
10444
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
10025
10445
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -10095,6 +10515,7 @@ export type TenantUpdateWithoutQuestionnaireFieldsInput = {
|
|
|
10095
10515
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
10096
10516
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
10097
10517
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
10518
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
10098
10519
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
10099
10520
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
10100
10521
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -10157,6 +10578,7 @@ export type TenantUncheckedUpdateWithoutQuestionnaireFieldsInput = {
|
|
|
10157
10578
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10158
10579
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10159
10580
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10581
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10160
10582
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10161
10583
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10162
10584
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -10219,6 +10641,7 @@ export type TenantCreateWithoutApplicationEventsInput = {
|
|
|
10219
10641
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
10220
10642
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
10221
10643
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
10644
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
10222
10645
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
10223
10646
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
10224
10647
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -10281,6 +10704,7 @@ export type TenantUncheckedCreateWithoutApplicationEventsInput = {
|
|
|
10281
10704
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
10282
10705
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
10283
10706
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
10707
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
10284
10708
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
10285
10709
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
10286
10710
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -10356,6 +10780,7 @@ export type TenantUpdateWithoutApplicationEventsInput = {
|
|
|
10356
10780
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
10357
10781
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
10358
10782
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
10783
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
10359
10784
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
10360
10785
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
10361
10786
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -10418,6 +10843,7 @@ export type TenantUncheckedUpdateWithoutApplicationEventsInput = {
|
|
|
10418
10843
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10419
10844
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10420
10845
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10846
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10421
10847
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10422
10848
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10423
10849
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -10480,6 +10906,7 @@ export type TenantCreateWithoutDocumentationStepsInput = {
|
|
|
10480
10906
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
10481
10907
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
10482
10908
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
10909
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
10483
10910
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
10484
10911
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
10485
10912
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -10542,6 +10969,7 @@ export type TenantUncheckedCreateWithoutDocumentationStepsInput = {
|
|
|
10542
10969
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
10543
10970
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
10544
10971
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
10972
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
10545
10973
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
10546
10974
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
10547
10975
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -10617,6 +11045,7 @@ export type TenantUpdateWithoutDocumentationStepsInput = {
|
|
|
10617
11045
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
10618
11046
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
10619
11047
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
11048
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
10620
11049
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
10621
11050
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
10622
11051
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -10679,6 +11108,7 @@ export type TenantUncheckedUpdateWithoutDocumentationStepsInput = {
|
|
|
10679
11108
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10680
11109
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10681
11110
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11111
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10682
11112
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10683
11113
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10684
11114
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -10741,6 +11171,7 @@ export type TenantCreateWithoutDocumentationStepDocumentsInput = {
|
|
|
10741
11171
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
10742
11172
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
10743
11173
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
11174
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
10744
11175
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
10745
11176
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
10746
11177
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -10803,6 +11234,7 @@ export type TenantUncheckedCreateWithoutDocumentationStepDocumentsInput = {
|
|
|
10803
11234
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
10804
11235
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
10805
11236
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
11237
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
10806
11238
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
10807
11239
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
10808
11240
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -10878,6 +11310,7 @@ export type TenantUpdateWithoutDocumentationStepDocumentsInput = {
|
|
|
10878
11310
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
10879
11311
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
10880
11312
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
11313
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
10881
11314
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
10882
11315
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
10883
11316
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -10940,6 +11373,7 @@ export type TenantUncheckedUpdateWithoutDocumentationStepDocumentsInput = {
|
|
|
10940
11373
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10941
11374
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10942
11375
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11376
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10943
11377
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10944
11378
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10945
11379
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -11002,6 +11436,7 @@ export type TenantCreateWithoutDocumentationStepApprovalsInput = {
|
|
|
11002
11436
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
11003
11437
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
11004
11438
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
11439
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
11005
11440
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
11006
11441
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
11007
11442
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -11064,6 +11499,7 @@ export type TenantUncheckedCreateWithoutDocumentationStepApprovalsInput = {
|
|
|
11064
11499
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
11065
11500
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
11066
11501
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
11502
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
11067
11503
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
11068
11504
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
11069
11505
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -11139,6 +11575,7 @@ export type TenantUpdateWithoutDocumentationStepApprovalsInput = {
|
|
|
11139
11575
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
11140
11576
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
11141
11577
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
11578
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
11142
11579
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
11143
11580
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
11144
11581
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -11201,6 +11638,7 @@ export type TenantUncheckedUpdateWithoutDocumentationStepApprovalsInput = {
|
|
|
11201
11638
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11202
11639
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11203
11640
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11641
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11204
11642
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11205
11643
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11206
11644
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -11263,6 +11701,7 @@ export type TenantCreateWithoutPaymentInstallmentsInput = {
|
|
|
11263
11701
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
11264
11702
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
11265
11703
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
11704
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
11266
11705
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
11267
11706
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
11268
11707
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -11325,6 +11764,7 @@ export type TenantUncheckedCreateWithoutPaymentInstallmentsInput = {
|
|
|
11325
11764
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
11326
11765
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
11327
11766
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
11767
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
11328
11768
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
11329
11769
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
11330
11770
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -11400,6 +11840,7 @@ export type TenantUpdateWithoutPaymentInstallmentsInput = {
|
|
|
11400
11840
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
11401
11841
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
11402
11842
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
11843
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
11403
11844
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
11404
11845
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
11405
11846
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -11462,6 +11903,7 @@ export type TenantUncheckedUpdateWithoutPaymentInstallmentsInput = {
|
|
|
11462
11903
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11463
11904
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11464
11905
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11906
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11465
11907
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11466
11908
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11467
11909
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -11524,6 +11966,7 @@ export type TenantCreateWithoutApplicationPaymentsInput = {
|
|
|
11524
11966
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
11525
11967
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
11526
11968
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
11969
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
11527
11970
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
11528
11971
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
11529
11972
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -11586,6 +12029,7 @@ export type TenantUncheckedCreateWithoutApplicationPaymentsInput = {
|
|
|
11586
12029
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
11587
12030
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
11588
12031
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
12032
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
11589
12033
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
11590
12034
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
11591
12035
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -11661,6 +12105,7 @@ export type TenantUpdateWithoutApplicationPaymentsInput = {
|
|
|
11661
12105
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
11662
12106
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
11663
12107
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
12108
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
11664
12109
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
11665
12110
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
11666
12111
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -11723,6 +12168,7 @@ export type TenantUncheckedUpdateWithoutApplicationPaymentsInput = {
|
|
|
11723
12168
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11724
12169
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11725
12170
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
12171
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11726
12172
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11727
12173
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11728
12174
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -11785,6 +12231,7 @@ export type TenantCreateWithoutApplicationDocumentsInput = {
|
|
|
11785
12231
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
11786
12232
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
11787
12233
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
12234
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
11788
12235
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
11789
12236
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
11790
12237
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -11847,6 +12294,7 @@ export type TenantUncheckedCreateWithoutApplicationDocumentsInput = {
|
|
|
11847
12294
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
11848
12295
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
11849
12296
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
12297
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
11850
12298
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
11851
12299
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
11852
12300
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -11922,6 +12370,7 @@ export type TenantUpdateWithoutApplicationDocumentsInput = {
|
|
|
11922
12370
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
11923
12371
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
11924
12372
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
12373
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
11925
12374
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
11926
12375
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
11927
12376
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -11984,6 +12433,7 @@ export type TenantUncheckedUpdateWithoutApplicationDocumentsInput = {
|
|
|
11984
12433
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11985
12434
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11986
12435
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
12436
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11987
12437
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11988
12438
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11989
12439
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -12046,6 +12496,7 @@ export type TenantCreateWithoutDocumentTemplatesInput = {
|
|
|
12046
12496
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
12047
12497
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
12048
12498
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
12499
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
12049
12500
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
12050
12501
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
12051
12502
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -12108,6 +12559,7 @@ export type TenantUncheckedCreateWithoutDocumentTemplatesInput = {
|
|
|
12108
12559
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
12109
12560
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
12110
12561
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
12562
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
12111
12563
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
12112
12564
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
12113
12565
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -12183,6 +12635,7 @@ export type TenantUpdateWithoutDocumentTemplatesInput = {
|
|
|
12183
12635
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
12184
12636
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
12185
12637
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
12638
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
12186
12639
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
12187
12640
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
12188
12641
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -12245,6 +12698,7 @@ export type TenantUncheckedUpdateWithoutDocumentTemplatesInput = {
|
|
|
12245
12698
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
12246
12699
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
12247
12700
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
12701
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
12248
12702
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
12249
12703
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
12250
12704
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -12307,6 +12761,7 @@ export type TenantCreateWithoutOfferLettersInput = {
|
|
|
12307
12761
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
12308
12762
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
12309
12763
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
12764
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
12310
12765
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
12311
12766
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
12312
12767
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -12369,6 +12824,7 @@ export type TenantUncheckedCreateWithoutOfferLettersInput = {
|
|
|
12369
12824
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
12370
12825
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
12371
12826
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
12827
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
12372
12828
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
12373
12829
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
12374
12830
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -12444,6 +12900,7 @@ export type TenantUpdateWithoutOfferLettersInput = {
|
|
|
12444
12900
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
12445
12901
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
12446
12902
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
12903
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
12447
12904
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
12448
12905
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
12449
12906
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -12506,6 +12963,7 @@ export type TenantUncheckedUpdateWithoutOfferLettersInput = {
|
|
|
12506
12963
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
12507
12964
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
12508
12965
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
12966
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
12509
12967
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
12510
12968
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
12511
12969
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -12568,6 +13026,7 @@ export type TenantCreateWithoutContractTerminationsInput = {
|
|
|
12568
13026
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
12569
13027
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
12570
13028
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
13029
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
12571
13030
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
12572
13031
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
12573
13032
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -12630,6 +13089,7 @@ export type TenantUncheckedCreateWithoutContractTerminationsInput = {
|
|
|
12630
13089
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
12631
13090
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
12632
13091
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
13092
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
12633
13093
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
12634
13094
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
12635
13095
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -12705,6 +13165,7 @@ export type TenantUpdateWithoutContractTerminationsInput = {
|
|
|
12705
13165
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
12706
13166
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
12707
13167
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
13168
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
12708
13169
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
12709
13170
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
12710
13171
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -12767,6 +13228,7 @@ export type TenantUncheckedUpdateWithoutContractTerminationsInput = {
|
|
|
12767
13228
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
12768
13229
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
12769
13230
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13231
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
12770
13232
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
12771
13233
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
12772
13234
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -12829,6 +13291,7 @@ export type TenantCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
12829
13291
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
12830
13292
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
12831
13293
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
13294
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
12832
13295
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
12833
13296
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
12834
13297
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -12891,6 +13354,7 @@ export type TenantUncheckedCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
12891
13354
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
12892
13355
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
12893
13356
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
13357
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
12894
13358
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
12895
13359
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
12896
13360
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -12966,6 +13430,7 @@ export type TenantUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
12966
13430
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
12967
13431
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
12968
13432
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
13433
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
12969
13434
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
12970
13435
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
12971
13436
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -13028,6 +13493,7 @@ export type TenantUncheckedUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
13028
13493
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13029
13494
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13030
13495
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13496
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13031
13497
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13032
13498
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13033
13499
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -13090,6 +13556,7 @@ export type TenantCreateWithoutDocumentRequirementRulesInput = {
|
|
|
13090
13556
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
13091
13557
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
13092
13558
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
13559
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
13093
13560
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
13094
13561
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
13095
13562
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -13152,6 +13619,7 @@ export type TenantUncheckedCreateWithoutDocumentRequirementRulesInput = {
|
|
|
13152
13619
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
13153
13620
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
13154
13621
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
13622
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
13155
13623
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
13156
13624
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
13157
13625
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -13227,6 +13695,7 @@ export type TenantUpdateWithoutDocumentRequirementRulesInput = {
|
|
|
13227
13695
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
13228
13696
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
13229
13697
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
13698
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
13230
13699
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
13231
13700
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
13232
13701
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -13289,6 +13758,7 @@ export type TenantUncheckedUpdateWithoutDocumentRequirementRulesInput = {
|
|
|
13289
13758
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13290
13759
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13291
13760
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13761
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13292
13762
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13293
13763
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13294
13764
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -13351,6 +13821,7 @@ export type TenantCreateWithoutEventChannelsInput = {
|
|
|
13351
13821
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
13352
13822
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
13353
13823
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
13824
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
13354
13825
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
13355
13826
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
13356
13827
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -13413,6 +13884,7 @@ export type TenantUncheckedCreateWithoutEventChannelsInput = {
|
|
|
13413
13884
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
13414
13885
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
13415
13886
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
13887
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
13416
13888
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
13417
13889
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
13418
13890
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -13488,6 +13960,7 @@ export type TenantUpdateWithoutEventChannelsInput = {
|
|
|
13488
13960
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
13489
13961
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
13490
13962
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
13963
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
13491
13964
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
13492
13965
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
13493
13966
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -13550,6 +14023,7 @@ export type TenantUncheckedUpdateWithoutEventChannelsInput = {
|
|
|
13550
14023
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13551
14024
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13552
14025
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14026
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13553
14027
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13554
14028
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13555
14029
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -13612,6 +14086,7 @@ export type TenantCreateWithoutEventTypesInput = {
|
|
|
13612
14086
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
13613
14087
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
13614
14088
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
14089
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
13615
14090
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
13616
14091
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
13617
14092
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -13674,6 +14149,7 @@ export type TenantUncheckedCreateWithoutEventTypesInput = {
|
|
|
13674
14149
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
13675
14150
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
13676
14151
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
14152
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
13677
14153
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
13678
14154
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
13679
14155
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -13749,6 +14225,7 @@ export type TenantUpdateWithoutEventTypesInput = {
|
|
|
13749
14225
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
13750
14226
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
13751
14227
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
14228
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
13752
14229
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
13753
14230
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
13754
14231
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -13811,6 +14288,7 @@ export type TenantUncheckedUpdateWithoutEventTypesInput = {
|
|
|
13811
14288
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13812
14289
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13813
14290
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14291
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13814
14292
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13815
14293
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13816
14294
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -13873,6 +14351,7 @@ export type TenantCreateWithoutEventHandlersInput = {
|
|
|
13873
14351
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
13874
14352
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
13875
14353
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
14354
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
13876
14355
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
13877
14356
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
13878
14357
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -13935,6 +14414,7 @@ export type TenantUncheckedCreateWithoutEventHandlersInput = {
|
|
|
13935
14414
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
13936
14415
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
13937
14416
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
14417
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
13938
14418
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
13939
14419
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
13940
14420
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -14010,6 +14490,7 @@ export type TenantUpdateWithoutEventHandlersInput = {
|
|
|
14010
14490
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
14011
14491
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
14012
14492
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
14493
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
14013
14494
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
14014
14495
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
14015
14496
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -14072,6 +14553,7 @@ export type TenantUncheckedUpdateWithoutEventHandlersInput = {
|
|
|
14072
14553
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14073
14554
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14074
14555
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14556
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14075
14557
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14076
14558
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14077
14559
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -14134,6 +14616,7 @@ export type TenantCreateWithoutWorkflowEventsInput = {
|
|
|
14134
14616
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
14135
14617
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
14136
14618
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
14619
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
14137
14620
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
14138
14621
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
14139
14622
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -14196,6 +14679,7 @@ export type TenantUncheckedCreateWithoutWorkflowEventsInput = {
|
|
|
14196
14679
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
14197
14680
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
14198
14681
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
14682
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
14199
14683
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
14200
14684
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
14201
14685
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -14271,6 +14755,7 @@ export type TenantUpdateWithoutWorkflowEventsInput = {
|
|
|
14271
14755
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
14272
14756
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
14273
14757
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
14758
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
14274
14759
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
14275
14760
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
14276
14761
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -14333,6 +14818,7 @@ export type TenantUncheckedUpdateWithoutWorkflowEventsInput = {
|
|
|
14333
14818
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14334
14819
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14335
14820
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14821
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14336
14822
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14337
14823
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14338
14824
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -14395,6 +14881,7 @@ export type TenantCreateWithoutEventHandlerExecutionsInput = {
|
|
|
14395
14881
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
14396
14882
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
14397
14883
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
14884
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
14398
14885
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
14399
14886
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
14400
14887
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -14457,6 +14944,7 @@ export type TenantUncheckedCreateWithoutEventHandlerExecutionsInput = {
|
|
|
14457
14944
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
14458
14945
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
14459
14946
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
14947
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
14460
14948
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
14461
14949
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
14462
14950
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -14532,6 +15020,7 @@ export type TenantUpdateWithoutEventHandlerExecutionsInput = {
|
|
|
14532
15020
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
14533
15021
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
14534
15022
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
15023
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
14535
15024
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
14536
15025
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
14537
15026
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -14594,6 +15083,7 @@ export type TenantUncheckedUpdateWithoutEventHandlerExecutionsInput = {
|
|
|
14594
15083
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14595
15084
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14596
15085
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
15086
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14597
15087
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14598
15088
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14599
15089
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -14656,6 +15146,7 @@ export type TenantCreateWithoutDomainEventsInput = {
|
|
|
14656
15146
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
14657
15147
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
14658
15148
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
15149
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
14659
15150
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
14660
15151
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
14661
15152
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -14718,6 +15209,7 @@ export type TenantUncheckedCreateWithoutDomainEventsInput = {
|
|
|
14718
15209
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
14719
15210
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
14720
15211
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
15212
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
14721
15213
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
14722
15214
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
14723
15215
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -14793,6 +15285,7 @@ export type TenantUpdateWithoutDomainEventsInput = {
|
|
|
14793
15285
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
14794
15286
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
14795
15287
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
15288
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
14796
15289
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
14797
15290
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
14798
15291
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -14855,6 +15348,7 @@ export type TenantUncheckedUpdateWithoutDomainEventsInput = {
|
|
|
14855
15348
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14856
15349
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14857
15350
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
15351
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14858
15352
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14859
15353
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14860
15354
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -14917,6 +15411,7 @@ export type TenantCreateWithoutPropertyTransferRequestsInput = {
|
|
|
14917
15411
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
14918
15412
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
14919
15413
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
15414
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
14920
15415
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
14921
15416
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
14922
15417
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -14979,6 +15474,7 @@ export type TenantUncheckedCreateWithoutPropertyTransferRequestsInput = {
|
|
|
14979
15474
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
14980
15475
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
14981
15476
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
15477
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
14982
15478
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
14983
15479
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
14984
15480
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -15054,6 +15550,7 @@ export type TenantUpdateWithoutPropertyTransferRequestsInput = {
|
|
|
15054
15550
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
15055
15551
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
15056
15552
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
15553
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
15057
15554
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
15058
15555
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
15059
15556
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -15116,6 +15613,7 @@ export type TenantUncheckedUpdateWithoutPropertyTransferRequestsInput = {
|
|
|
15116
15613
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
15117
15614
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
15118
15615
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
15616
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
15119
15617
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
15120
15618
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
15121
15619
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -15178,6 +15676,7 @@ export type TenantCreateWithoutApprovalRequestsInput = {
|
|
|
15178
15676
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
15179
15677
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
15180
15678
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
15679
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
15181
15680
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
15182
15681
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
15183
15682
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -15240,6 +15739,7 @@ export type TenantUncheckedCreateWithoutApprovalRequestsInput = {
|
|
|
15240
15739
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
15241
15740
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
15242
15741
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
15742
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
15243
15743
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
15244
15744
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
15245
15745
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -15315,6 +15815,7 @@ export type TenantUpdateWithoutApprovalRequestsInput = {
|
|
|
15315
15815
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
15316
15816
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
15317
15817
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
15818
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
15318
15819
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
15319
15820
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
15320
15821
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -15377,6 +15878,7 @@ export type TenantUncheckedUpdateWithoutApprovalRequestsInput = {
|
|
|
15377
15878
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
15378
15879
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
15379
15880
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
15881
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
15380
15882
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
15381
15883
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
15382
15884
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -15439,6 +15941,7 @@ export type TenantCreateWithoutWorkflowBlockersInput = {
|
|
|
15439
15941
|
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
15440
15942
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
15441
15943
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
15944
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
15442
15945
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
15443
15946
|
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
15444
15947
|
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
@@ -15501,6 +16004,7 @@ export type TenantUncheckedCreateWithoutWorkflowBlockersInput = {
|
|
|
15501
16004
|
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
15502
16005
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
15503
16006
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
16007
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
15504
16008
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
15505
16009
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
15506
16010
|
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
@@ -15576,6 +16080,7 @@ export type TenantUpdateWithoutWorkflowBlockersInput = {
|
|
|
15576
16080
|
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
15577
16081
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
15578
16082
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
16083
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
15579
16084
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
15580
16085
|
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
15581
16086
|
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
@@ -15638,6 +16143,7 @@ export type TenantUncheckedUpdateWithoutWorkflowBlockersInput = {
|
|
|
15638
16143
|
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
15639
16144
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
15640
16145
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
16146
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
15641
16147
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
15642
16148
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
15643
16149
|
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
@@ -15697,6 +16203,7 @@ export type TenantCountOutputType = {
|
|
|
15697
16203
|
users: number;
|
|
15698
16204
|
properties: number;
|
|
15699
16205
|
paymentPlans: number;
|
|
16206
|
+
documentationPlans: number;
|
|
15700
16207
|
paymentMethods: number;
|
|
15701
16208
|
applications: number;
|
|
15702
16209
|
roles: number;
|
|
@@ -15754,6 +16261,7 @@ export type TenantCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions
|
|
|
15754
16261
|
users?: boolean | TenantCountOutputTypeCountUsersArgs;
|
|
15755
16262
|
properties?: boolean | TenantCountOutputTypeCountPropertiesArgs;
|
|
15756
16263
|
paymentPlans?: boolean | TenantCountOutputTypeCountPaymentPlansArgs;
|
|
16264
|
+
documentationPlans?: boolean | TenantCountOutputTypeCountDocumentationPlansArgs;
|
|
15757
16265
|
paymentMethods?: boolean | TenantCountOutputTypeCountPaymentMethodsArgs;
|
|
15758
16266
|
applications?: boolean | TenantCountOutputTypeCountApplicationsArgs;
|
|
15759
16267
|
roles?: boolean | TenantCountOutputTypeCountRolesArgs;
|
|
@@ -15834,6 +16342,12 @@ export type TenantCountOutputTypeCountPropertiesArgs<ExtArgs extends runtime.Typ
|
|
|
15834
16342
|
export type TenantCountOutputTypeCountPaymentPlansArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
15835
16343
|
where?: Prisma.PaymentPlanWhereInput;
|
|
15836
16344
|
};
|
|
16345
|
+
/**
|
|
16346
|
+
* TenantCountOutputType without action
|
|
16347
|
+
*/
|
|
16348
|
+
export type TenantCountOutputTypeCountDocumentationPlansArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
16349
|
+
where?: Prisma.DocumentationPlanWhereInput;
|
|
16350
|
+
};
|
|
15837
16351
|
/**
|
|
15838
16352
|
* TenantCountOutputType without action
|
|
15839
16353
|
*/
|
|
@@ -16156,6 +16670,7 @@ export type TenantSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
16156
16670
|
users?: boolean | Prisma.Tenant$usersArgs<ExtArgs>;
|
|
16157
16671
|
properties?: boolean | Prisma.Tenant$propertiesArgs<ExtArgs>;
|
|
16158
16672
|
paymentPlans?: boolean | Prisma.Tenant$paymentPlansArgs<ExtArgs>;
|
|
16673
|
+
documentationPlans?: boolean | Prisma.Tenant$documentationPlansArgs<ExtArgs>;
|
|
16159
16674
|
paymentMethods?: boolean | Prisma.Tenant$paymentMethodsArgs<ExtArgs>;
|
|
16160
16675
|
applications?: boolean | Prisma.Tenant$applicationsArgs<ExtArgs>;
|
|
16161
16676
|
roles?: boolean | Prisma.Tenant$rolesArgs<ExtArgs>;
|
|
@@ -16223,6 +16738,7 @@ export type TenantInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
16223
16738
|
users?: boolean | Prisma.Tenant$usersArgs<ExtArgs>;
|
|
16224
16739
|
properties?: boolean | Prisma.Tenant$propertiesArgs<ExtArgs>;
|
|
16225
16740
|
paymentPlans?: boolean | Prisma.Tenant$paymentPlansArgs<ExtArgs>;
|
|
16741
|
+
documentationPlans?: boolean | Prisma.Tenant$documentationPlansArgs<ExtArgs>;
|
|
16226
16742
|
paymentMethods?: boolean | Prisma.Tenant$paymentMethodsArgs<ExtArgs>;
|
|
16227
16743
|
applications?: boolean | Prisma.Tenant$applicationsArgs<ExtArgs>;
|
|
16228
16744
|
roles?: boolean | Prisma.Tenant$rolesArgs<ExtArgs>;
|
|
@@ -16283,6 +16799,7 @@ export type $TenantPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
16283
16799
|
users: Prisma.$UserPayload<ExtArgs>[];
|
|
16284
16800
|
properties: Prisma.$PropertyPayload<ExtArgs>[];
|
|
16285
16801
|
paymentPlans: Prisma.$PaymentPlanPayload<ExtArgs>[];
|
|
16802
|
+
documentationPlans: Prisma.$DocumentationPlanPayload<ExtArgs>[];
|
|
16286
16803
|
paymentMethods: Prisma.$PropertyPaymentMethodPayload<ExtArgs>[];
|
|
16287
16804
|
applications: Prisma.$ApplicationPayload<ExtArgs>[];
|
|
16288
16805
|
roles: Prisma.$RolePayload<ExtArgs>[];
|
|
@@ -16623,6 +17140,7 @@ export interface Prisma__TenantClient<T, Null = never, ExtArgs extends runtime.T
|
|
|
16623
17140
|
users<T extends Prisma.Tenant$usersArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Tenant$usersArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
16624
17141
|
properties<T extends Prisma.Tenant$propertiesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Tenant$propertiesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PropertyPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
16625
17142
|
paymentPlans<T extends Prisma.Tenant$paymentPlansArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Tenant$paymentPlansArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PaymentPlanPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
17143
|
+
documentationPlans<T extends Prisma.Tenant$documentationPlansArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Tenant$documentationPlansArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$DocumentationPlanPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
16626
17144
|
paymentMethods<T extends Prisma.Tenant$paymentMethodsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Tenant$paymentMethodsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PropertyPaymentMethodPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
16627
17145
|
applications<T extends Prisma.Tenant$applicationsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Tenant$applicationsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ApplicationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
16628
17146
|
roles<T extends Prisma.Tenant$rolesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Tenant$rolesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$RolePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
@@ -17102,6 +17620,29 @@ export type Tenant$paymentPlansArgs<ExtArgs extends runtime.Types.Extensions.Int
|
|
|
17102
17620
|
skip?: number;
|
|
17103
17621
|
distinct?: Prisma.PaymentPlanScalarFieldEnum | Prisma.PaymentPlanScalarFieldEnum[];
|
|
17104
17622
|
};
|
|
17623
|
+
/**
|
|
17624
|
+
* Tenant.documentationPlans
|
|
17625
|
+
*/
|
|
17626
|
+
export type Tenant$documentationPlansArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
17627
|
+
/**
|
|
17628
|
+
* Select specific fields to fetch from the DocumentationPlan
|
|
17629
|
+
*/
|
|
17630
|
+
select?: Prisma.DocumentationPlanSelect<ExtArgs> | null;
|
|
17631
|
+
/**
|
|
17632
|
+
* Omit specific fields from the DocumentationPlan
|
|
17633
|
+
*/
|
|
17634
|
+
omit?: Prisma.DocumentationPlanOmit<ExtArgs> | null;
|
|
17635
|
+
/**
|
|
17636
|
+
* Choose, which related nodes to fetch as well
|
|
17637
|
+
*/
|
|
17638
|
+
include?: Prisma.DocumentationPlanInclude<ExtArgs> | null;
|
|
17639
|
+
where?: Prisma.DocumentationPlanWhereInput;
|
|
17640
|
+
orderBy?: Prisma.DocumentationPlanOrderByWithRelationInput | Prisma.DocumentationPlanOrderByWithRelationInput[];
|
|
17641
|
+
cursor?: Prisma.DocumentationPlanWhereUniqueInput;
|
|
17642
|
+
take?: number;
|
|
17643
|
+
skip?: number;
|
|
17644
|
+
distinct?: Prisma.DocumentationPlanScalarFieldEnum | Prisma.DocumentationPlanScalarFieldEnum[];
|
|
17645
|
+
};
|
|
17105
17646
|
/**
|
|
17106
17647
|
* Tenant.paymentMethods
|
|
17107
17648
|
*/
|