@valentine-efagene/qshelter-common 2.0.25 → 2.0.27
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 +15 -0
- package/dist/generated/client/client.d.ts +15 -0
- package/dist/generated/client/commonInputTypes.d.ts +200 -0
- package/dist/generated/client/enums.d.ts +25 -1
- package/dist/generated/client/enums.js +22 -1
- package/dist/generated/client/internal/class.d.ts +33 -0
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +352 -1
- package/dist/generated/client/internal/prismaNamespace.js +120 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +130 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +120 -0
- package/dist/generated/client/models/Contract.d.ts +511 -0
- package/dist/generated/client/models/DocumentRequirementRule.d.ts +2069 -0
- package/dist/generated/client/models/DocumentRequirementRule.js +1 -0
- package/dist/generated/client/models/PaymentMethodChangeRequest.d.ts +2820 -0
- package/dist/generated/client/models/PaymentMethodChangeRequest.js +1 -0
- package/dist/generated/client/models/Prequalification.d.ts +2339 -0
- package/dist/generated/client/models/Prequalification.js +1 -0
- package/dist/generated/client/models/Property.d.ts +211 -0
- package/dist/generated/client/models/PropertyPaymentMethod.d.ts +1139 -131
- package/dist/generated/client/models/Tenant.d.ts +441 -0
- package/dist/generated/client/models/User.d.ts +815 -0
- package/dist/generated/client/models/index.d.ts +3 -0
- package/dist/generated/client/models/index.js +3 -0
- package/dist/generated/client/models.d.ts +3 -0
- package/package.json +1 -1
- package/prisma/migrations/20251230231217_add_prequalification_and_payment_method_change/migration.sql +137 -0
- package/prisma/schema.prisma +225 -5
|
@@ -151,6 +151,9 @@ export type TenantWhereInput = {
|
|
|
151
151
|
paymentPlans?: Prisma.PaymentPlanListRelationFilter;
|
|
152
152
|
paymentMethods?: Prisma.PropertyPaymentMethodListRelationFilter;
|
|
153
153
|
contracts?: Prisma.ContractListRelationFilter;
|
|
154
|
+
prequalifications?: Prisma.PrequalificationListRelationFilter;
|
|
155
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestListRelationFilter;
|
|
156
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleListRelationFilter;
|
|
154
157
|
};
|
|
155
158
|
export type TenantOrderByWithRelationInput = {
|
|
156
159
|
id?: Prisma.SortOrder;
|
|
@@ -164,6 +167,9 @@ export type TenantOrderByWithRelationInput = {
|
|
|
164
167
|
paymentPlans?: Prisma.PaymentPlanOrderByRelationAggregateInput;
|
|
165
168
|
paymentMethods?: Prisma.PropertyPaymentMethodOrderByRelationAggregateInput;
|
|
166
169
|
contracts?: Prisma.ContractOrderByRelationAggregateInput;
|
|
170
|
+
prequalifications?: Prisma.PrequalificationOrderByRelationAggregateInput;
|
|
171
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestOrderByRelationAggregateInput;
|
|
172
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleOrderByRelationAggregateInput;
|
|
167
173
|
_relevance?: Prisma.TenantOrderByRelevanceInput;
|
|
168
174
|
};
|
|
169
175
|
export type TenantWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -181,6 +187,9 @@ export type TenantWhereUniqueInput = Prisma.AtLeast<{
|
|
|
181
187
|
paymentPlans?: Prisma.PaymentPlanListRelationFilter;
|
|
182
188
|
paymentMethods?: Prisma.PropertyPaymentMethodListRelationFilter;
|
|
183
189
|
contracts?: Prisma.ContractListRelationFilter;
|
|
190
|
+
prequalifications?: Prisma.PrequalificationListRelationFilter;
|
|
191
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestListRelationFilter;
|
|
192
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleListRelationFilter;
|
|
184
193
|
}, "id" | "subdomain">;
|
|
185
194
|
export type TenantOrderByWithAggregationInput = {
|
|
186
195
|
id?: Prisma.SortOrder;
|
|
@@ -216,6 +225,9 @@ export type TenantCreateInput = {
|
|
|
216
225
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
217
226
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
218
227
|
contracts?: Prisma.ContractCreateNestedManyWithoutTenantInput;
|
|
228
|
+
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutTenantInput;
|
|
229
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutTenantInput;
|
|
230
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutTenantInput;
|
|
219
231
|
};
|
|
220
232
|
export type TenantUncheckedCreateInput = {
|
|
221
233
|
id?: string;
|
|
@@ -229,6 +241,9 @@ export type TenantUncheckedCreateInput = {
|
|
|
229
241
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
230
242
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
231
243
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutTenantInput;
|
|
244
|
+
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutTenantInput;
|
|
245
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutTenantInput;
|
|
246
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutTenantInput;
|
|
232
247
|
};
|
|
233
248
|
export type TenantUpdateInput = {
|
|
234
249
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -242,6 +257,9 @@ export type TenantUpdateInput = {
|
|
|
242
257
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
243
258
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
244
259
|
contracts?: Prisma.ContractUpdateManyWithoutTenantNestedInput;
|
|
260
|
+
prequalifications?: Prisma.PrequalificationUpdateManyWithoutTenantNestedInput;
|
|
261
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutTenantNestedInput;
|
|
262
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutTenantNestedInput;
|
|
245
263
|
};
|
|
246
264
|
export type TenantUncheckedUpdateInput = {
|
|
247
265
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -255,6 +273,9 @@ export type TenantUncheckedUpdateInput = {
|
|
|
255
273
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
256
274
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
257
275
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutTenantNestedInput;
|
|
276
|
+
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
277
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutTenantNestedInput;
|
|
278
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
258
279
|
};
|
|
259
280
|
export type TenantCreateManyInput = {
|
|
260
281
|
id?: string;
|
|
@@ -381,6 +402,42 @@ export type TenantUpdateOneRequiredWithoutContractsNestedInput = {
|
|
|
381
402
|
connect?: Prisma.TenantWhereUniqueInput;
|
|
382
403
|
update?: Prisma.XOR<Prisma.XOR<Prisma.TenantUpdateToOneWithWhereWithoutContractsInput, Prisma.TenantUpdateWithoutContractsInput>, Prisma.TenantUncheckedUpdateWithoutContractsInput>;
|
|
383
404
|
};
|
|
405
|
+
export type TenantCreateNestedOneWithoutPrequalificationsInput = {
|
|
406
|
+
create?: Prisma.XOR<Prisma.TenantCreateWithoutPrequalificationsInput, Prisma.TenantUncheckedCreateWithoutPrequalificationsInput>;
|
|
407
|
+
connectOrCreate?: Prisma.TenantCreateOrConnectWithoutPrequalificationsInput;
|
|
408
|
+
connect?: Prisma.TenantWhereUniqueInput;
|
|
409
|
+
};
|
|
410
|
+
export type TenantUpdateOneRequiredWithoutPrequalificationsNestedInput = {
|
|
411
|
+
create?: Prisma.XOR<Prisma.TenantCreateWithoutPrequalificationsInput, Prisma.TenantUncheckedCreateWithoutPrequalificationsInput>;
|
|
412
|
+
connectOrCreate?: Prisma.TenantCreateOrConnectWithoutPrequalificationsInput;
|
|
413
|
+
upsert?: Prisma.TenantUpsertWithoutPrequalificationsInput;
|
|
414
|
+
connect?: Prisma.TenantWhereUniqueInput;
|
|
415
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.TenantUpdateToOneWithWhereWithoutPrequalificationsInput, Prisma.TenantUpdateWithoutPrequalificationsInput>, Prisma.TenantUncheckedUpdateWithoutPrequalificationsInput>;
|
|
416
|
+
};
|
|
417
|
+
export type TenantCreateNestedOneWithoutPaymentMethodChangeRequestsInput = {
|
|
418
|
+
create?: Prisma.XOR<Prisma.TenantCreateWithoutPaymentMethodChangeRequestsInput, Prisma.TenantUncheckedCreateWithoutPaymentMethodChangeRequestsInput>;
|
|
419
|
+
connectOrCreate?: Prisma.TenantCreateOrConnectWithoutPaymentMethodChangeRequestsInput;
|
|
420
|
+
connect?: Prisma.TenantWhereUniqueInput;
|
|
421
|
+
};
|
|
422
|
+
export type TenantUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput = {
|
|
423
|
+
create?: Prisma.XOR<Prisma.TenantCreateWithoutPaymentMethodChangeRequestsInput, Prisma.TenantUncheckedCreateWithoutPaymentMethodChangeRequestsInput>;
|
|
424
|
+
connectOrCreate?: Prisma.TenantCreateOrConnectWithoutPaymentMethodChangeRequestsInput;
|
|
425
|
+
upsert?: Prisma.TenantUpsertWithoutPaymentMethodChangeRequestsInput;
|
|
426
|
+
connect?: Prisma.TenantWhereUniqueInput;
|
|
427
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.TenantUpdateToOneWithWhereWithoutPaymentMethodChangeRequestsInput, Prisma.TenantUpdateWithoutPaymentMethodChangeRequestsInput>, Prisma.TenantUncheckedUpdateWithoutPaymentMethodChangeRequestsInput>;
|
|
428
|
+
};
|
|
429
|
+
export type TenantCreateNestedOneWithoutDocumentRequirementRulesInput = {
|
|
430
|
+
create?: Prisma.XOR<Prisma.TenantCreateWithoutDocumentRequirementRulesInput, Prisma.TenantUncheckedCreateWithoutDocumentRequirementRulesInput>;
|
|
431
|
+
connectOrCreate?: Prisma.TenantCreateOrConnectWithoutDocumentRequirementRulesInput;
|
|
432
|
+
connect?: Prisma.TenantWhereUniqueInput;
|
|
433
|
+
};
|
|
434
|
+
export type TenantUpdateOneRequiredWithoutDocumentRequirementRulesNestedInput = {
|
|
435
|
+
create?: Prisma.XOR<Prisma.TenantCreateWithoutDocumentRequirementRulesInput, Prisma.TenantUncheckedCreateWithoutDocumentRequirementRulesInput>;
|
|
436
|
+
connectOrCreate?: Prisma.TenantCreateOrConnectWithoutDocumentRequirementRulesInput;
|
|
437
|
+
upsert?: Prisma.TenantUpsertWithoutDocumentRequirementRulesInput;
|
|
438
|
+
connect?: Prisma.TenantWhereUniqueInput;
|
|
439
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.TenantUpdateToOneWithWhereWithoutDocumentRequirementRulesInput, Prisma.TenantUpdateWithoutDocumentRequirementRulesInput>, Prisma.TenantUncheckedUpdateWithoutDocumentRequirementRulesInput>;
|
|
440
|
+
};
|
|
384
441
|
export type TenantCreateWithoutUsersInput = {
|
|
385
442
|
id?: string;
|
|
386
443
|
name: string;
|
|
@@ -392,6 +449,9 @@ export type TenantCreateWithoutUsersInput = {
|
|
|
392
449
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
393
450
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
394
451
|
contracts?: Prisma.ContractCreateNestedManyWithoutTenantInput;
|
|
452
|
+
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutTenantInput;
|
|
453
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutTenantInput;
|
|
454
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutTenantInput;
|
|
395
455
|
};
|
|
396
456
|
export type TenantUncheckedCreateWithoutUsersInput = {
|
|
397
457
|
id?: string;
|
|
@@ -404,6 +464,9 @@ export type TenantUncheckedCreateWithoutUsersInput = {
|
|
|
404
464
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
405
465
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
406
466
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutTenantInput;
|
|
467
|
+
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutTenantInput;
|
|
468
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutTenantInput;
|
|
469
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutTenantInput;
|
|
407
470
|
};
|
|
408
471
|
export type TenantCreateOrConnectWithoutUsersInput = {
|
|
409
472
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -429,6 +492,9 @@ export type TenantUpdateWithoutUsersInput = {
|
|
|
429
492
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
430
493
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
431
494
|
contracts?: Prisma.ContractUpdateManyWithoutTenantNestedInput;
|
|
495
|
+
prequalifications?: Prisma.PrequalificationUpdateManyWithoutTenantNestedInput;
|
|
496
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutTenantNestedInput;
|
|
497
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutTenantNestedInput;
|
|
432
498
|
};
|
|
433
499
|
export type TenantUncheckedUpdateWithoutUsersInput = {
|
|
434
500
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -441,6 +507,9 @@ export type TenantUncheckedUpdateWithoutUsersInput = {
|
|
|
441
507
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
442
508
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
443
509
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutTenantNestedInput;
|
|
510
|
+
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
511
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutTenantNestedInput;
|
|
512
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
444
513
|
};
|
|
445
514
|
export type TenantCreateWithoutPropertiesInput = {
|
|
446
515
|
id?: string;
|
|
@@ -453,6 +522,9 @@ export type TenantCreateWithoutPropertiesInput = {
|
|
|
453
522
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
454
523
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
455
524
|
contracts?: Prisma.ContractCreateNestedManyWithoutTenantInput;
|
|
525
|
+
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutTenantInput;
|
|
526
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutTenantInput;
|
|
527
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutTenantInput;
|
|
456
528
|
};
|
|
457
529
|
export type TenantUncheckedCreateWithoutPropertiesInput = {
|
|
458
530
|
id?: string;
|
|
@@ -465,6 +537,9 @@ export type TenantUncheckedCreateWithoutPropertiesInput = {
|
|
|
465
537
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
466
538
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
467
539
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutTenantInput;
|
|
540
|
+
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutTenantInput;
|
|
541
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutTenantInput;
|
|
542
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutTenantInput;
|
|
468
543
|
};
|
|
469
544
|
export type TenantCreateOrConnectWithoutPropertiesInput = {
|
|
470
545
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -490,6 +565,9 @@ export type TenantUpdateWithoutPropertiesInput = {
|
|
|
490
565
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
491
566
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
492
567
|
contracts?: Prisma.ContractUpdateManyWithoutTenantNestedInput;
|
|
568
|
+
prequalifications?: Prisma.PrequalificationUpdateManyWithoutTenantNestedInput;
|
|
569
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutTenantNestedInput;
|
|
570
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutTenantNestedInput;
|
|
493
571
|
};
|
|
494
572
|
export type TenantUncheckedUpdateWithoutPropertiesInput = {
|
|
495
573
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -502,6 +580,9 @@ export type TenantUncheckedUpdateWithoutPropertiesInput = {
|
|
|
502
580
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
503
581
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
504
582
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutTenantNestedInput;
|
|
583
|
+
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
584
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutTenantNestedInput;
|
|
585
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
505
586
|
};
|
|
506
587
|
export type TenantCreateWithoutPaymentPlansInput = {
|
|
507
588
|
id?: string;
|
|
@@ -514,6 +595,9 @@ export type TenantCreateWithoutPaymentPlansInput = {
|
|
|
514
595
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
515
596
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
516
597
|
contracts?: Prisma.ContractCreateNestedManyWithoutTenantInput;
|
|
598
|
+
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutTenantInput;
|
|
599
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutTenantInput;
|
|
600
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutTenantInput;
|
|
517
601
|
};
|
|
518
602
|
export type TenantUncheckedCreateWithoutPaymentPlansInput = {
|
|
519
603
|
id?: string;
|
|
@@ -526,6 +610,9 @@ export type TenantUncheckedCreateWithoutPaymentPlansInput = {
|
|
|
526
610
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
527
611
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
528
612
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutTenantInput;
|
|
613
|
+
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutTenantInput;
|
|
614
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutTenantInput;
|
|
615
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutTenantInput;
|
|
529
616
|
};
|
|
530
617
|
export type TenantCreateOrConnectWithoutPaymentPlansInput = {
|
|
531
618
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -551,6 +638,9 @@ export type TenantUpdateWithoutPaymentPlansInput = {
|
|
|
551
638
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
552
639
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
553
640
|
contracts?: Prisma.ContractUpdateManyWithoutTenantNestedInput;
|
|
641
|
+
prequalifications?: Prisma.PrequalificationUpdateManyWithoutTenantNestedInput;
|
|
642
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutTenantNestedInput;
|
|
643
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutTenantNestedInput;
|
|
554
644
|
};
|
|
555
645
|
export type TenantUncheckedUpdateWithoutPaymentPlansInput = {
|
|
556
646
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -563,6 +653,9 @@ export type TenantUncheckedUpdateWithoutPaymentPlansInput = {
|
|
|
563
653
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
564
654
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
565
655
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutTenantNestedInput;
|
|
656
|
+
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
657
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutTenantNestedInput;
|
|
658
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
566
659
|
};
|
|
567
660
|
export type TenantCreateWithoutPaymentMethodsInput = {
|
|
568
661
|
id?: string;
|
|
@@ -575,6 +668,9 @@ export type TenantCreateWithoutPaymentMethodsInput = {
|
|
|
575
668
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
576
669
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
577
670
|
contracts?: Prisma.ContractCreateNestedManyWithoutTenantInput;
|
|
671
|
+
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutTenantInput;
|
|
672
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutTenantInput;
|
|
673
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutTenantInput;
|
|
578
674
|
};
|
|
579
675
|
export type TenantUncheckedCreateWithoutPaymentMethodsInput = {
|
|
580
676
|
id?: string;
|
|
@@ -587,6 +683,9 @@ export type TenantUncheckedCreateWithoutPaymentMethodsInput = {
|
|
|
587
683
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
588
684
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
589
685
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutTenantInput;
|
|
686
|
+
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutTenantInput;
|
|
687
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutTenantInput;
|
|
688
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutTenantInput;
|
|
590
689
|
};
|
|
591
690
|
export type TenantCreateOrConnectWithoutPaymentMethodsInput = {
|
|
592
691
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -612,6 +711,9 @@ export type TenantUpdateWithoutPaymentMethodsInput = {
|
|
|
612
711
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
613
712
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
614
713
|
contracts?: Prisma.ContractUpdateManyWithoutTenantNestedInput;
|
|
714
|
+
prequalifications?: Prisma.PrequalificationUpdateManyWithoutTenantNestedInput;
|
|
715
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutTenantNestedInput;
|
|
716
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutTenantNestedInput;
|
|
615
717
|
};
|
|
616
718
|
export type TenantUncheckedUpdateWithoutPaymentMethodsInput = {
|
|
617
719
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -624,6 +726,9 @@ export type TenantUncheckedUpdateWithoutPaymentMethodsInput = {
|
|
|
624
726
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
625
727
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
626
728
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutTenantNestedInput;
|
|
729
|
+
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
730
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutTenantNestedInput;
|
|
731
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
627
732
|
};
|
|
628
733
|
export type TenantCreateWithoutContractsInput = {
|
|
629
734
|
id?: string;
|
|
@@ -636,6 +741,9 @@ export type TenantCreateWithoutContractsInput = {
|
|
|
636
741
|
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
637
742
|
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
638
743
|
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
744
|
+
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutTenantInput;
|
|
745
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutTenantInput;
|
|
746
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutTenantInput;
|
|
639
747
|
};
|
|
640
748
|
export type TenantUncheckedCreateWithoutContractsInput = {
|
|
641
749
|
id?: string;
|
|
@@ -648,6 +756,9 @@ export type TenantUncheckedCreateWithoutContractsInput = {
|
|
|
648
756
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
649
757
|
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
650
758
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
759
|
+
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutTenantInput;
|
|
760
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutTenantInput;
|
|
761
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutTenantInput;
|
|
651
762
|
};
|
|
652
763
|
export type TenantCreateOrConnectWithoutContractsInput = {
|
|
653
764
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -673,6 +784,9 @@ export type TenantUpdateWithoutContractsInput = {
|
|
|
673
784
|
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
674
785
|
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
675
786
|
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
787
|
+
prequalifications?: Prisma.PrequalificationUpdateManyWithoutTenantNestedInput;
|
|
788
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutTenantNestedInput;
|
|
789
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutTenantNestedInput;
|
|
676
790
|
};
|
|
677
791
|
export type TenantUncheckedUpdateWithoutContractsInput = {
|
|
678
792
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -685,6 +799,228 @@ export type TenantUncheckedUpdateWithoutContractsInput = {
|
|
|
685
799
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
686
800
|
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
687
801
|
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
802
|
+
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
803
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutTenantNestedInput;
|
|
804
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
805
|
+
};
|
|
806
|
+
export type TenantCreateWithoutPrequalificationsInput = {
|
|
807
|
+
id?: string;
|
|
808
|
+
name: string;
|
|
809
|
+
subdomain: string;
|
|
810
|
+
isActive?: boolean;
|
|
811
|
+
createdAt?: Date | string;
|
|
812
|
+
updatedAt?: Date | string;
|
|
813
|
+
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
814
|
+
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
815
|
+
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
816
|
+
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
817
|
+
contracts?: Prisma.ContractCreateNestedManyWithoutTenantInput;
|
|
818
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutTenantInput;
|
|
819
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutTenantInput;
|
|
820
|
+
};
|
|
821
|
+
export type TenantUncheckedCreateWithoutPrequalificationsInput = {
|
|
822
|
+
id?: string;
|
|
823
|
+
name: string;
|
|
824
|
+
subdomain: string;
|
|
825
|
+
isActive?: boolean;
|
|
826
|
+
createdAt?: Date | string;
|
|
827
|
+
updatedAt?: Date | string;
|
|
828
|
+
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
829
|
+
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
830
|
+
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
831
|
+
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
832
|
+
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutTenantInput;
|
|
833
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutTenantInput;
|
|
834
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutTenantInput;
|
|
835
|
+
};
|
|
836
|
+
export type TenantCreateOrConnectWithoutPrequalificationsInput = {
|
|
837
|
+
where: Prisma.TenantWhereUniqueInput;
|
|
838
|
+
create: Prisma.XOR<Prisma.TenantCreateWithoutPrequalificationsInput, Prisma.TenantUncheckedCreateWithoutPrequalificationsInput>;
|
|
839
|
+
};
|
|
840
|
+
export type TenantUpsertWithoutPrequalificationsInput = {
|
|
841
|
+
update: Prisma.XOR<Prisma.TenantUpdateWithoutPrequalificationsInput, Prisma.TenantUncheckedUpdateWithoutPrequalificationsInput>;
|
|
842
|
+
create: Prisma.XOR<Prisma.TenantCreateWithoutPrequalificationsInput, Prisma.TenantUncheckedCreateWithoutPrequalificationsInput>;
|
|
843
|
+
where?: Prisma.TenantWhereInput;
|
|
844
|
+
};
|
|
845
|
+
export type TenantUpdateToOneWithWhereWithoutPrequalificationsInput = {
|
|
846
|
+
where?: Prisma.TenantWhereInput;
|
|
847
|
+
data: Prisma.XOR<Prisma.TenantUpdateWithoutPrequalificationsInput, Prisma.TenantUncheckedUpdateWithoutPrequalificationsInput>;
|
|
848
|
+
};
|
|
849
|
+
export type TenantUpdateWithoutPrequalificationsInput = {
|
|
850
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
851
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
852
|
+
subdomain?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
853
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
854
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
855
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
856
|
+
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
857
|
+
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
858
|
+
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
859
|
+
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
860
|
+
contracts?: Prisma.ContractUpdateManyWithoutTenantNestedInput;
|
|
861
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutTenantNestedInput;
|
|
862
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutTenantNestedInput;
|
|
863
|
+
};
|
|
864
|
+
export type TenantUncheckedUpdateWithoutPrequalificationsInput = {
|
|
865
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
866
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
867
|
+
subdomain?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
868
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
869
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
870
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
871
|
+
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
872
|
+
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
873
|
+
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
874
|
+
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
875
|
+
contracts?: Prisma.ContractUncheckedUpdateManyWithoutTenantNestedInput;
|
|
876
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutTenantNestedInput;
|
|
877
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
878
|
+
};
|
|
879
|
+
export type TenantCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
880
|
+
id?: string;
|
|
881
|
+
name: string;
|
|
882
|
+
subdomain: string;
|
|
883
|
+
isActive?: boolean;
|
|
884
|
+
createdAt?: Date | string;
|
|
885
|
+
updatedAt?: Date | string;
|
|
886
|
+
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
887
|
+
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
888
|
+
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
889
|
+
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
890
|
+
contracts?: Prisma.ContractCreateNestedManyWithoutTenantInput;
|
|
891
|
+
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutTenantInput;
|
|
892
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutTenantInput;
|
|
893
|
+
};
|
|
894
|
+
export type TenantUncheckedCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
895
|
+
id?: string;
|
|
896
|
+
name: string;
|
|
897
|
+
subdomain: string;
|
|
898
|
+
isActive?: boolean;
|
|
899
|
+
createdAt?: Date | string;
|
|
900
|
+
updatedAt?: Date | string;
|
|
901
|
+
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
902
|
+
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
903
|
+
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
904
|
+
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
905
|
+
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutTenantInput;
|
|
906
|
+
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutTenantInput;
|
|
907
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutTenantInput;
|
|
908
|
+
};
|
|
909
|
+
export type TenantCreateOrConnectWithoutPaymentMethodChangeRequestsInput = {
|
|
910
|
+
where: Prisma.TenantWhereUniqueInput;
|
|
911
|
+
create: Prisma.XOR<Prisma.TenantCreateWithoutPaymentMethodChangeRequestsInput, Prisma.TenantUncheckedCreateWithoutPaymentMethodChangeRequestsInput>;
|
|
912
|
+
};
|
|
913
|
+
export type TenantUpsertWithoutPaymentMethodChangeRequestsInput = {
|
|
914
|
+
update: Prisma.XOR<Prisma.TenantUpdateWithoutPaymentMethodChangeRequestsInput, Prisma.TenantUncheckedUpdateWithoutPaymentMethodChangeRequestsInput>;
|
|
915
|
+
create: Prisma.XOR<Prisma.TenantCreateWithoutPaymentMethodChangeRequestsInput, Prisma.TenantUncheckedCreateWithoutPaymentMethodChangeRequestsInput>;
|
|
916
|
+
where?: Prisma.TenantWhereInput;
|
|
917
|
+
};
|
|
918
|
+
export type TenantUpdateToOneWithWhereWithoutPaymentMethodChangeRequestsInput = {
|
|
919
|
+
where?: Prisma.TenantWhereInput;
|
|
920
|
+
data: Prisma.XOR<Prisma.TenantUpdateWithoutPaymentMethodChangeRequestsInput, Prisma.TenantUncheckedUpdateWithoutPaymentMethodChangeRequestsInput>;
|
|
921
|
+
};
|
|
922
|
+
export type TenantUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
923
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
924
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
925
|
+
subdomain?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
926
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
927
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
928
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
929
|
+
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
930
|
+
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
931
|
+
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
932
|
+
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
933
|
+
contracts?: Prisma.ContractUpdateManyWithoutTenantNestedInput;
|
|
934
|
+
prequalifications?: Prisma.PrequalificationUpdateManyWithoutTenantNestedInput;
|
|
935
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutTenantNestedInput;
|
|
936
|
+
};
|
|
937
|
+
export type TenantUncheckedUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
938
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
939
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
940
|
+
subdomain?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
941
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
942
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
943
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
944
|
+
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
945
|
+
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
946
|
+
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
947
|
+
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
948
|
+
contracts?: Prisma.ContractUncheckedUpdateManyWithoutTenantNestedInput;
|
|
949
|
+
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
950
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
951
|
+
};
|
|
952
|
+
export type TenantCreateWithoutDocumentRequirementRulesInput = {
|
|
953
|
+
id?: string;
|
|
954
|
+
name: string;
|
|
955
|
+
subdomain: string;
|
|
956
|
+
isActive?: boolean;
|
|
957
|
+
createdAt?: Date | string;
|
|
958
|
+
updatedAt?: Date | string;
|
|
959
|
+
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
960
|
+
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
961
|
+
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
962
|
+
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
963
|
+
contracts?: Prisma.ContractCreateNestedManyWithoutTenantInput;
|
|
964
|
+
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutTenantInput;
|
|
965
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutTenantInput;
|
|
966
|
+
};
|
|
967
|
+
export type TenantUncheckedCreateWithoutDocumentRequirementRulesInput = {
|
|
968
|
+
id?: string;
|
|
969
|
+
name: string;
|
|
970
|
+
subdomain: string;
|
|
971
|
+
isActive?: boolean;
|
|
972
|
+
createdAt?: Date | string;
|
|
973
|
+
updatedAt?: Date | string;
|
|
974
|
+
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
975
|
+
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
976
|
+
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
977
|
+
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
978
|
+
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutTenantInput;
|
|
979
|
+
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutTenantInput;
|
|
980
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutTenantInput;
|
|
981
|
+
};
|
|
982
|
+
export type TenantCreateOrConnectWithoutDocumentRequirementRulesInput = {
|
|
983
|
+
where: Prisma.TenantWhereUniqueInput;
|
|
984
|
+
create: Prisma.XOR<Prisma.TenantCreateWithoutDocumentRequirementRulesInput, Prisma.TenantUncheckedCreateWithoutDocumentRequirementRulesInput>;
|
|
985
|
+
};
|
|
986
|
+
export type TenantUpsertWithoutDocumentRequirementRulesInput = {
|
|
987
|
+
update: Prisma.XOR<Prisma.TenantUpdateWithoutDocumentRequirementRulesInput, Prisma.TenantUncheckedUpdateWithoutDocumentRequirementRulesInput>;
|
|
988
|
+
create: Prisma.XOR<Prisma.TenantCreateWithoutDocumentRequirementRulesInput, Prisma.TenantUncheckedCreateWithoutDocumentRequirementRulesInput>;
|
|
989
|
+
where?: Prisma.TenantWhereInput;
|
|
990
|
+
};
|
|
991
|
+
export type TenantUpdateToOneWithWhereWithoutDocumentRequirementRulesInput = {
|
|
992
|
+
where?: Prisma.TenantWhereInput;
|
|
993
|
+
data: Prisma.XOR<Prisma.TenantUpdateWithoutDocumentRequirementRulesInput, Prisma.TenantUncheckedUpdateWithoutDocumentRequirementRulesInput>;
|
|
994
|
+
};
|
|
995
|
+
export type TenantUpdateWithoutDocumentRequirementRulesInput = {
|
|
996
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
997
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
998
|
+
subdomain?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
999
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1000
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1001
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1002
|
+
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
1003
|
+
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
1004
|
+
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
1005
|
+
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
1006
|
+
contracts?: Prisma.ContractUpdateManyWithoutTenantNestedInput;
|
|
1007
|
+
prequalifications?: Prisma.PrequalificationUpdateManyWithoutTenantNestedInput;
|
|
1008
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutTenantNestedInput;
|
|
1009
|
+
};
|
|
1010
|
+
export type TenantUncheckedUpdateWithoutDocumentRequirementRulesInput = {
|
|
1011
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1012
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1013
|
+
subdomain?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1014
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1015
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1016
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1017
|
+
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1018
|
+
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1019
|
+
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1020
|
+
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1021
|
+
contracts?: Prisma.ContractUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1022
|
+
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1023
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutTenantNestedInput;
|
|
688
1024
|
};
|
|
689
1025
|
/**
|
|
690
1026
|
* Count Type TenantCountOutputType
|
|
@@ -695,6 +1031,9 @@ export type TenantCountOutputType = {
|
|
|
695
1031
|
paymentPlans: number;
|
|
696
1032
|
paymentMethods: number;
|
|
697
1033
|
contracts: number;
|
|
1034
|
+
prequalifications: number;
|
|
1035
|
+
paymentMethodChangeRequests: number;
|
|
1036
|
+
documentRequirementRules: number;
|
|
698
1037
|
};
|
|
699
1038
|
export type TenantCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
700
1039
|
users?: boolean | TenantCountOutputTypeCountUsersArgs;
|
|
@@ -702,6 +1041,9 @@ export type TenantCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions
|
|
|
702
1041
|
paymentPlans?: boolean | TenantCountOutputTypeCountPaymentPlansArgs;
|
|
703
1042
|
paymentMethods?: boolean | TenantCountOutputTypeCountPaymentMethodsArgs;
|
|
704
1043
|
contracts?: boolean | TenantCountOutputTypeCountContractsArgs;
|
|
1044
|
+
prequalifications?: boolean | TenantCountOutputTypeCountPrequalificationsArgs;
|
|
1045
|
+
paymentMethodChangeRequests?: boolean | TenantCountOutputTypeCountPaymentMethodChangeRequestsArgs;
|
|
1046
|
+
documentRequirementRules?: boolean | TenantCountOutputTypeCountDocumentRequirementRulesArgs;
|
|
705
1047
|
};
|
|
706
1048
|
/**
|
|
707
1049
|
* TenantCountOutputType without action
|
|
@@ -742,6 +1084,24 @@ export type TenantCountOutputTypeCountPaymentMethodsArgs<ExtArgs extends runtime
|
|
|
742
1084
|
export type TenantCountOutputTypeCountContractsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
743
1085
|
where?: Prisma.ContractWhereInput;
|
|
744
1086
|
};
|
|
1087
|
+
/**
|
|
1088
|
+
* TenantCountOutputType without action
|
|
1089
|
+
*/
|
|
1090
|
+
export type TenantCountOutputTypeCountPrequalificationsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1091
|
+
where?: Prisma.PrequalificationWhereInput;
|
|
1092
|
+
};
|
|
1093
|
+
/**
|
|
1094
|
+
* TenantCountOutputType without action
|
|
1095
|
+
*/
|
|
1096
|
+
export type TenantCountOutputTypeCountPaymentMethodChangeRequestsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1097
|
+
where?: Prisma.PaymentMethodChangeRequestWhereInput;
|
|
1098
|
+
};
|
|
1099
|
+
/**
|
|
1100
|
+
* TenantCountOutputType without action
|
|
1101
|
+
*/
|
|
1102
|
+
export type TenantCountOutputTypeCountDocumentRequirementRulesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1103
|
+
where?: Prisma.DocumentRequirementRuleWhereInput;
|
|
1104
|
+
};
|
|
745
1105
|
export type TenantSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
746
1106
|
id?: boolean;
|
|
747
1107
|
name?: boolean;
|
|
@@ -754,6 +1114,9 @@ export type TenantSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
754
1114
|
paymentPlans?: boolean | Prisma.Tenant$paymentPlansArgs<ExtArgs>;
|
|
755
1115
|
paymentMethods?: boolean | Prisma.Tenant$paymentMethodsArgs<ExtArgs>;
|
|
756
1116
|
contracts?: boolean | Prisma.Tenant$contractsArgs<ExtArgs>;
|
|
1117
|
+
prequalifications?: boolean | Prisma.Tenant$prequalificationsArgs<ExtArgs>;
|
|
1118
|
+
paymentMethodChangeRequests?: boolean | Prisma.Tenant$paymentMethodChangeRequestsArgs<ExtArgs>;
|
|
1119
|
+
documentRequirementRules?: boolean | Prisma.Tenant$documentRequirementRulesArgs<ExtArgs>;
|
|
757
1120
|
_count?: boolean | Prisma.TenantCountOutputTypeDefaultArgs<ExtArgs>;
|
|
758
1121
|
}, ExtArgs["result"]["tenant"]>;
|
|
759
1122
|
export type TenantSelectScalar = {
|
|
@@ -771,6 +1134,9 @@ export type TenantInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
771
1134
|
paymentPlans?: boolean | Prisma.Tenant$paymentPlansArgs<ExtArgs>;
|
|
772
1135
|
paymentMethods?: boolean | Prisma.Tenant$paymentMethodsArgs<ExtArgs>;
|
|
773
1136
|
contracts?: boolean | Prisma.Tenant$contractsArgs<ExtArgs>;
|
|
1137
|
+
prequalifications?: boolean | Prisma.Tenant$prequalificationsArgs<ExtArgs>;
|
|
1138
|
+
paymentMethodChangeRequests?: boolean | Prisma.Tenant$paymentMethodChangeRequestsArgs<ExtArgs>;
|
|
1139
|
+
documentRequirementRules?: boolean | Prisma.Tenant$documentRequirementRulesArgs<ExtArgs>;
|
|
774
1140
|
_count?: boolean | Prisma.TenantCountOutputTypeDefaultArgs<ExtArgs>;
|
|
775
1141
|
};
|
|
776
1142
|
export type $TenantPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
@@ -781,6 +1147,9 @@ export type $TenantPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
781
1147
|
paymentPlans: Prisma.$PaymentPlanPayload<ExtArgs>[];
|
|
782
1148
|
paymentMethods: Prisma.$PropertyPaymentMethodPayload<ExtArgs>[];
|
|
783
1149
|
contracts: Prisma.$ContractPayload<ExtArgs>[];
|
|
1150
|
+
prequalifications: Prisma.$PrequalificationPayload<ExtArgs>[];
|
|
1151
|
+
paymentMethodChangeRequests: Prisma.$PaymentMethodChangeRequestPayload<ExtArgs>[];
|
|
1152
|
+
documentRequirementRules: Prisma.$DocumentRequirementRulePayload<ExtArgs>[];
|
|
784
1153
|
};
|
|
785
1154
|
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
|
786
1155
|
id: string;
|
|
@@ -1071,6 +1440,9 @@ export interface Prisma__TenantClient<T, Null = never, ExtArgs extends runtime.T
|
|
|
1071
1440
|
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>;
|
|
1072
1441
|
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>;
|
|
1073
1442
|
contracts<T extends Prisma.Tenant$contractsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Tenant$contractsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ContractPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1443
|
+
prequalifications<T extends Prisma.Tenant$prequalificationsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Tenant$prequalificationsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PrequalificationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1444
|
+
paymentMethodChangeRequests<T extends Prisma.Tenant$paymentMethodChangeRequestsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Tenant$paymentMethodChangeRequestsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PaymentMethodChangeRequestPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1445
|
+
documentRequirementRules<T extends Prisma.Tenant$documentRequirementRulesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Tenant$documentRequirementRulesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$DocumentRequirementRulePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1074
1446
|
/**
|
|
1075
1447
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
1076
1448
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -1544,6 +1916,75 @@ export type Tenant$contractsArgs<ExtArgs extends runtime.Types.Extensions.Intern
|
|
|
1544
1916
|
skip?: number;
|
|
1545
1917
|
distinct?: Prisma.ContractScalarFieldEnum | Prisma.ContractScalarFieldEnum[];
|
|
1546
1918
|
};
|
|
1919
|
+
/**
|
|
1920
|
+
* Tenant.prequalifications
|
|
1921
|
+
*/
|
|
1922
|
+
export type Tenant$prequalificationsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1923
|
+
/**
|
|
1924
|
+
* Select specific fields to fetch from the Prequalification
|
|
1925
|
+
*/
|
|
1926
|
+
select?: Prisma.PrequalificationSelect<ExtArgs> | null;
|
|
1927
|
+
/**
|
|
1928
|
+
* Omit specific fields from the Prequalification
|
|
1929
|
+
*/
|
|
1930
|
+
omit?: Prisma.PrequalificationOmit<ExtArgs> | null;
|
|
1931
|
+
/**
|
|
1932
|
+
* Choose, which related nodes to fetch as well
|
|
1933
|
+
*/
|
|
1934
|
+
include?: Prisma.PrequalificationInclude<ExtArgs> | null;
|
|
1935
|
+
where?: Prisma.PrequalificationWhereInput;
|
|
1936
|
+
orderBy?: Prisma.PrequalificationOrderByWithRelationInput | Prisma.PrequalificationOrderByWithRelationInput[];
|
|
1937
|
+
cursor?: Prisma.PrequalificationWhereUniqueInput;
|
|
1938
|
+
take?: number;
|
|
1939
|
+
skip?: number;
|
|
1940
|
+
distinct?: Prisma.PrequalificationScalarFieldEnum | Prisma.PrequalificationScalarFieldEnum[];
|
|
1941
|
+
};
|
|
1942
|
+
/**
|
|
1943
|
+
* Tenant.paymentMethodChangeRequests
|
|
1944
|
+
*/
|
|
1945
|
+
export type Tenant$paymentMethodChangeRequestsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1946
|
+
/**
|
|
1947
|
+
* Select specific fields to fetch from the PaymentMethodChangeRequest
|
|
1948
|
+
*/
|
|
1949
|
+
select?: Prisma.PaymentMethodChangeRequestSelect<ExtArgs> | null;
|
|
1950
|
+
/**
|
|
1951
|
+
* Omit specific fields from the PaymentMethodChangeRequest
|
|
1952
|
+
*/
|
|
1953
|
+
omit?: Prisma.PaymentMethodChangeRequestOmit<ExtArgs> | null;
|
|
1954
|
+
/**
|
|
1955
|
+
* Choose, which related nodes to fetch as well
|
|
1956
|
+
*/
|
|
1957
|
+
include?: Prisma.PaymentMethodChangeRequestInclude<ExtArgs> | null;
|
|
1958
|
+
where?: Prisma.PaymentMethodChangeRequestWhereInput;
|
|
1959
|
+
orderBy?: Prisma.PaymentMethodChangeRequestOrderByWithRelationInput | Prisma.PaymentMethodChangeRequestOrderByWithRelationInput[];
|
|
1960
|
+
cursor?: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
|
|
1961
|
+
take?: number;
|
|
1962
|
+
skip?: number;
|
|
1963
|
+
distinct?: Prisma.PaymentMethodChangeRequestScalarFieldEnum | Prisma.PaymentMethodChangeRequestScalarFieldEnum[];
|
|
1964
|
+
};
|
|
1965
|
+
/**
|
|
1966
|
+
* Tenant.documentRequirementRules
|
|
1967
|
+
*/
|
|
1968
|
+
export type Tenant$documentRequirementRulesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1969
|
+
/**
|
|
1970
|
+
* Select specific fields to fetch from the DocumentRequirementRule
|
|
1971
|
+
*/
|
|
1972
|
+
select?: Prisma.DocumentRequirementRuleSelect<ExtArgs> | null;
|
|
1973
|
+
/**
|
|
1974
|
+
* Omit specific fields from the DocumentRequirementRule
|
|
1975
|
+
*/
|
|
1976
|
+
omit?: Prisma.DocumentRequirementRuleOmit<ExtArgs> | null;
|
|
1977
|
+
/**
|
|
1978
|
+
* Choose, which related nodes to fetch as well
|
|
1979
|
+
*/
|
|
1980
|
+
include?: Prisma.DocumentRequirementRuleInclude<ExtArgs> | null;
|
|
1981
|
+
where?: Prisma.DocumentRequirementRuleWhereInput;
|
|
1982
|
+
orderBy?: Prisma.DocumentRequirementRuleOrderByWithRelationInput | Prisma.DocumentRequirementRuleOrderByWithRelationInput[];
|
|
1983
|
+
cursor?: Prisma.DocumentRequirementRuleWhereUniqueInput;
|
|
1984
|
+
take?: number;
|
|
1985
|
+
skip?: number;
|
|
1986
|
+
distinct?: Prisma.DocumentRequirementRuleScalarFieldEnum | Prisma.DocumentRequirementRuleScalarFieldEnum[];
|
|
1987
|
+
};
|
|
1547
1988
|
/**
|
|
1548
1989
|
* Tenant without action
|
|
1549
1990
|
*/
|