@valentine-efagene/qshelter-common 2.0.151 → 2.0.153
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 +13 -2
- package/dist/generated/client/client.d.ts +15 -4
- package/dist/generated/client/client.js +2 -2
- package/dist/generated/client/commonInputTypes.d.ts +20 -190
- package/dist/generated/client/enums.d.ts +0 -34
- package/dist/generated/client/enums.js +0 -30
- package/dist/generated/client/internal/class.d.ts +29 -7
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +181 -32
- package/dist/generated/client/internal/prismaNamespace.js +42 -11
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +46 -11
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +42 -11
- package/dist/generated/client/models/ApplicationOrganization.d.ts +308 -67
- package/dist/generated/client/models/ApprovalStage.d.ts +210 -91
- package/dist/generated/client/models/ApprovalStageProgress.d.ts +258 -69
- package/dist/generated/client/models/DocumentApproval.d.ts +196 -65
- package/dist/generated/client/models/DocumentReview.d.ts +475 -86
- package/dist/generated/client/models/Organization.d.ts +424 -52
- package/dist/generated/client/models/OrganizationMember.d.ts +42 -169
- package/dist/generated/client/models/OrganizationType.d.ts +1982 -0
- package/dist/generated/client/models/OrganizationType.js +1 -0
- package/dist/generated/client/models/OrganizationTypeAssignment.d.ts +1159 -0
- package/dist/generated/client/models/OrganizationTypeAssignment.js +1 -0
- package/dist/generated/client/models/Tenant.d.ts +575 -4
- package/dist/generated/client/models/User.d.ts +0 -12
- 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/package.json +1 -1
- package/prisma/migrations/20260125102448_org_types_many_to_many/migration.sql +153 -0
- package/prisma/migrations/20260125103700_20260125102448_org_types_many_to_many_fix/migration.sql +5 -0
- package/prisma/schema.prisma +113 -79
|
@@ -205,6 +205,7 @@ export type TenantWhereInput = {
|
|
|
205
205
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementListRelationFilter;
|
|
206
206
|
organizations?: Prisma.OrganizationListRelationFilter;
|
|
207
207
|
applicationOrganizations?: Prisma.ApplicationOrganizationListRelationFilter;
|
|
208
|
+
organizationTypes?: Prisma.OrganizationTypeListRelationFilter;
|
|
208
209
|
};
|
|
209
210
|
export type TenantOrderByWithRelationInput = {
|
|
210
211
|
id?: Prisma.SortOrder;
|
|
@@ -272,6 +273,7 @@ export type TenantOrderByWithRelationInput = {
|
|
|
272
273
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementOrderByRelationAggregateInput;
|
|
273
274
|
organizations?: Prisma.OrganizationOrderByRelationAggregateInput;
|
|
274
275
|
applicationOrganizations?: Prisma.ApplicationOrganizationOrderByRelationAggregateInput;
|
|
276
|
+
organizationTypes?: Prisma.OrganizationTypeOrderByRelationAggregateInput;
|
|
275
277
|
_relevance?: Prisma.TenantOrderByRelevanceInput;
|
|
276
278
|
};
|
|
277
279
|
export type TenantWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -343,6 +345,7 @@ export type TenantWhereUniqueInput = Prisma.AtLeast<{
|
|
|
343
345
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementListRelationFilter;
|
|
344
346
|
organizations?: Prisma.OrganizationListRelationFilter;
|
|
345
347
|
applicationOrganizations?: Prisma.ApplicationOrganizationListRelationFilter;
|
|
348
|
+
organizationTypes?: Prisma.OrganizationTypeListRelationFilter;
|
|
346
349
|
}, "id" | "subdomain">;
|
|
347
350
|
export type TenantOrderByWithAggregationInput = {
|
|
348
351
|
id?: Prisma.SortOrder;
|
|
@@ -432,6 +435,7 @@ export type TenantCreateInput = {
|
|
|
432
435
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
433
436
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
434
437
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
438
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
435
439
|
};
|
|
436
440
|
export type TenantUncheckedCreateInput = {
|
|
437
441
|
id?: string;
|
|
@@ -499,6 +503,7 @@ export type TenantUncheckedCreateInput = {
|
|
|
499
503
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
500
504
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
501
505
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
506
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
502
507
|
};
|
|
503
508
|
export type TenantUpdateInput = {
|
|
504
509
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -566,6 +571,7 @@ export type TenantUpdateInput = {
|
|
|
566
571
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
567
572
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
568
573
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
574
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
569
575
|
};
|
|
570
576
|
export type TenantUncheckedUpdateInput = {
|
|
571
577
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -633,6 +639,7 @@ export type TenantUncheckedUpdateInput = {
|
|
|
633
639
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
634
640
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
635
641
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
642
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
636
643
|
};
|
|
637
644
|
export type TenantCreateManyInput = {
|
|
638
645
|
id?: string;
|
|
@@ -658,14 +665,14 @@ export type TenantUncheckedUpdateManyInput = {
|
|
|
658
665
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
659
666
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
660
667
|
};
|
|
661
|
-
export type TenantNullableScalarRelationFilter = {
|
|
662
|
-
is?: Prisma.TenantWhereInput | null;
|
|
663
|
-
isNot?: Prisma.TenantWhereInput | null;
|
|
664
|
-
};
|
|
665
668
|
export type TenantScalarRelationFilter = {
|
|
666
669
|
is?: Prisma.TenantWhereInput;
|
|
667
670
|
isNot?: Prisma.TenantWhereInput;
|
|
668
671
|
};
|
|
672
|
+
export type TenantNullableScalarRelationFilter = {
|
|
673
|
+
is?: Prisma.TenantWhereInput | null;
|
|
674
|
+
isNot?: Prisma.TenantWhereInput | null;
|
|
675
|
+
};
|
|
669
676
|
export type TenantOrderByRelevanceInput = {
|
|
670
677
|
fields: Prisma.TenantOrderByRelevanceFieldEnum | Prisma.TenantOrderByRelevanceFieldEnum[];
|
|
671
678
|
sort: Prisma.SortOrder;
|
|
@@ -695,6 +702,18 @@ export type TenantMinOrderByAggregateInput = {
|
|
|
695
702
|
createdAt?: Prisma.SortOrder;
|
|
696
703
|
updatedAt?: Prisma.SortOrder;
|
|
697
704
|
};
|
|
705
|
+
export type TenantCreateNestedOneWithoutOrganizationTypesInput = {
|
|
706
|
+
create?: Prisma.XOR<Prisma.TenantCreateWithoutOrganizationTypesInput, Prisma.TenantUncheckedCreateWithoutOrganizationTypesInput>;
|
|
707
|
+
connectOrCreate?: Prisma.TenantCreateOrConnectWithoutOrganizationTypesInput;
|
|
708
|
+
connect?: Prisma.TenantWhereUniqueInput;
|
|
709
|
+
};
|
|
710
|
+
export type TenantUpdateOneRequiredWithoutOrganizationTypesNestedInput = {
|
|
711
|
+
create?: Prisma.XOR<Prisma.TenantCreateWithoutOrganizationTypesInput, Prisma.TenantUncheckedCreateWithoutOrganizationTypesInput>;
|
|
712
|
+
connectOrCreate?: Prisma.TenantCreateOrConnectWithoutOrganizationTypesInput;
|
|
713
|
+
upsert?: Prisma.TenantUpsertWithoutOrganizationTypesInput;
|
|
714
|
+
connect?: Prisma.TenantWhereUniqueInput;
|
|
715
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.TenantUpdateToOneWithWhereWithoutOrganizationTypesInput, Prisma.TenantUpdateWithoutOrganizationTypesInput>, Prisma.TenantUncheckedUpdateWithoutOrganizationTypesInput>;
|
|
716
|
+
};
|
|
698
717
|
export type TenantCreateNestedOneWithoutUsersInput = {
|
|
699
718
|
create?: Prisma.XOR<Prisma.TenantCreateWithoutUsersInput, Prisma.TenantUncheckedCreateWithoutUsersInput>;
|
|
700
719
|
connectOrCreate?: Prisma.TenantCreateOrConnectWithoutUsersInput;
|
|
@@ -1415,6 +1434,287 @@ export type TenantUpdateOneRequiredWithoutWorkflowBlockersNestedInput = {
|
|
|
1415
1434
|
connect?: Prisma.TenantWhereUniqueInput;
|
|
1416
1435
|
update?: Prisma.XOR<Prisma.XOR<Prisma.TenantUpdateToOneWithWhereWithoutWorkflowBlockersInput, Prisma.TenantUpdateWithoutWorkflowBlockersInput>, Prisma.TenantUncheckedUpdateWithoutWorkflowBlockersInput>;
|
|
1417
1436
|
};
|
|
1437
|
+
export type TenantCreateWithoutOrganizationTypesInput = {
|
|
1438
|
+
id?: string;
|
|
1439
|
+
name: string;
|
|
1440
|
+
subdomain: string;
|
|
1441
|
+
isActive?: boolean;
|
|
1442
|
+
createdAt?: Date | string;
|
|
1443
|
+
updatedAt?: Date | string;
|
|
1444
|
+
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
1445
|
+
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
1446
|
+
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
1447
|
+
documentationPlans?: Prisma.DocumentationPlanCreateNestedManyWithoutTenantInput;
|
|
1448
|
+
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
1449
|
+
applications?: Prisma.ApplicationCreateNestedManyWithoutTenantInput;
|
|
1450
|
+
roles?: Prisma.RoleCreateNestedManyWithoutTenantInput;
|
|
1451
|
+
permissions?: Prisma.PermissionCreateNestedManyWithoutTenantInput;
|
|
1452
|
+
memberships?: Prisma.TenantMembershipCreateNestedManyWithoutTenantInput;
|
|
1453
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutTenantInput;
|
|
1454
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutTenantInput;
|
|
1455
|
+
contractTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutTenantInput;
|
|
1456
|
+
documentTemplates?: Prisma.DocumentTemplateCreateNestedManyWithoutTenantInput;
|
|
1457
|
+
offerLetters?: Prisma.OfferLetterCreateNestedManyWithoutTenantInput;
|
|
1458
|
+
apiKeys?: Prisma.ApiKeyCreateNestedManyWithoutTenantInput;
|
|
1459
|
+
eventChannels?: Prisma.EventChannelCreateNestedManyWithoutTenantInput;
|
|
1460
|
+
eventTypes?: Prisma.EventTypeCreateNestedManyWithoutTenantInput;
|
|
1461
|
+
eventHandlers?: Prisma.EventHandlerCreateNestedManyWithoutTenantInput;
|
|
1462
|
+
propertyTransferRequests?: Prisma.PropertyTransferRequestCreateNestedManyWithoutTenantInput;
|
|
1463
|
+
approvalRequests?: Prisma.ApprovalRequestCreateNestedManyWithoutTenantInput;
|
|
1464
|
+
contractRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutTenantInput;
|
|
1465
|
+
propertyPaymentMethodLinks?: Prisma.PropertyPaymentMethodLinkCreateNestedManyWithoutTenantInput;
|
|
1466
|
+
propertyPaymentMethodPhases?: Prisma.PropertyPaymentMethodPhaseCreateNestedManyWithoutTenantInput;
|
|
1467
|
+
phaseEventAttachments?: Prisma.PhaseEventAttachmentCreateNestedManyWithoutTenantInput;
|
|
1468
|
+
paymentMethodPhaseSteps?: Prisma.PaymentMethodPhaseStepCreateNestedManyWithoutTenantInput;
|
|
1469
|
+
stepEventAttachments?: Prisma.StepEventAttachmentCreateNestedManyWithoutTenantInput;
|
|
1470
|
+
paymentMethodPhaseDocuments?: Prisma.PaymentMethodPhaseDocumentCreateNestedManyWithoutTenantInput;
|
|
1471
|
+
paymentMethodPhaseFields?: Prisma.PaymentMethodPhaseFieldCreateNestedManyWithoutTenantInput;
|
|
1472
|
+
applicationPhases?: Prisma.ApplicationPhaseCreateNestedManyWithoutTenantInput;
|
|
1473
|
+
questionnairePhases?: Prisma.QuestionnairePhaseCreateNestedManyWithoutTenantInput;
|
|
1474
|
+
documentationPhases?: Prisma.DocumentationPhaseCreateNestedManyWithoutTenantInput;
|
|
1475
|
+
paymentPhases?: Prisma.PaymentPhaseCreateNestedManyWithoutTenantInput;
|
|
1476
|
+
questionnaireFields?: Prisma.QuestionnaireFieldCreateNestedManyWithoutTenantInput;
|
|
1477
|
+
applicationEvents?: Prisma.ApplicationEventCreateNestedManyWithoutTenantInput;
|
|
1478
|
+
paymentInstallments?: Prisma.PaymentInstallmentCreateNestedManyWithoutTenantInput;
|
|
1479
|
+
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutTenantInput;
|
|
1480
|
+
applicationDocuments?: Prisma.ApplicationDocumentCreateNestedManyWithoutTenantInput;
|
|
1481
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutTenantInput;
|
|
1482
|
+
approvalStageProgress?: Prisma.ApprovalStageProgressCreateNestedManyWithoutTenantInput;
|
|
1483
|
+
propertyMedia?: Prisma.PropertyMediaCreateNestedManyWithoutTenantInput;
|
|
1484
|
+
propertyDocuments?: Prisma.PropertyDocumentCreateNestedManyWithoutTenantInput;
|
|
1485
|
+
propertyVariants?: Prisma.PropertyVariantCreateNestedManyWithoutTenantInput;
|
|
1486
|
+
propertyVariantAmenities?: Prisma.PropertyVariantAmenityCreateNestedManyWithoutTenantInput;
|
|
1487
|
+
propertyVariantMedia?: Prisma.PropertyVariantMediaCreateNestedManyWithoutTenantInput;
|
|
1488
|
+
propertyUnits?: Prisma.PropertyUnitCreateNestedManyWithoutTenantInput;
|
|
1489
|
+
propertyAmenities?: Prisma.PropertyAmenityCreateNestedManyWithoutTenantInput;
|
|
1490
|
+
amenities?: Prisma.AmenityCreateNestedManyWithoutTenantInput;
|
|
1491
|
+
socials?: Prisma.SocialCreateNestedManyWithoutTenantInput;
|
|
1492
|
+
wallets?: Prisma.WalletCreateNestedManyWithoutTenantInput;
|
|
1493
|
+
transactions?: Prisma.TransactionCreateNestedManyWithoutTenantInput;
|
|
1494
|
+
settings?: Prisma.SettingsCreateNestedManyWithoutTenantInput;
|
|
1495
|
+
domainEvents?: Prisma.DomainEventCreateNestedManyWithoutTenantInput;
|
|
1496
|
+
workflowBlockers?: Prisma.WorkflowBlockerCreateNestedManyWithoutTenantInput;
|
|
1497
|
+
questionnairePlans?: Prisma.QuestionnairePlanCreateNestedManyWithoutTenantInput;
|
|
1498
|
+
questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutTenantInput;
|
|
1499
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
|
|
1500
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
1501
|
+
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
1502
|
+
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
1503
|
+
};
|
|
1504
|
+
export type TenantUncheckedCreateWithoutOrganizationTypesInput = {
|
|
1505
|
+
id?: string;
|
|
1506
|
+
name: string;
|
|
1507
|
+
subdomain: string;
|
|
1508
|
+
isActive?: boolean;
|
|
1509
|
+
createdAt?: Date | string;
|
|
1510
|
+
updatedAt?: Date | string;
|
|
1511
|
+
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
1512
|
+
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
1513
|
+
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
1514
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
1515
|
+
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
1516
|
+
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutTenantInput;
|
|
1517
|
+
roles?: Prisma.RoleUncheckedCreateNestedManyWithoutTenantInput;
|
|
1518
|
+
permissions?: Prisma.PermissionUncheckedCreateNestedManyWithoutTenantInput;
|
|
1519
|
+
memberships?: Prisma.TenantMembershipUncheckedCreateNestedManyWithoutTenantInput;
|
|
1520
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutTenantInput;
|
|
1521
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutTenantInput;
|
|
1522
|
+
contractTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutTenantInput;
|
|
1523
|
+
documentTemplates?: Prisma.DocumentTemplateUncheckedCreateNestedManyWithoutTenantInput;
|
|
1524
|
+
offerLetters?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutTenantInput;
|
|
1525
|
+
apiKeys?: Prisma.ApiKeyUncheckedCreateNestedManyWithoutTenantInput;
|
|
1526
|
+
eventChannels?: Prisma.EventChannelUncheckedCreateNestedManyWithoutTenantInput;
|
|
1527
|
+
eventTypes?: Prisma.EventTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
1528
|
+
eventHandlers?: Prisma.EventHandlerUncheckedCreateNestedManyWithoutTenantInput;
|
|
1529
|
+
propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutTenantInput;
|
|
1530
|
+
approvalRequests?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutTenantInput;
|
|
1531
|
+
contractRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutTenantInput;
|
|
1532
|
+
propertyPaymentMethodLinks?: Prisma.PropertyPaymentMethodLinkUncheckedCreateNestedManyWithoutTenantInput;
|
|
1533
|
+
propertyPaymentMethodPhases?: Prisma.PropertyPaymentMethodPhaseUncheckedCreateNestedManyWithoutTenantInput;
|
|
1534
|
+
phaseEventAttachments?: Prisma.PhaseEventAttachmentUncheckedCreateNestedManyWithoutTenantInput;
|
|
1535
|
+
paymentMethodPhaseSteps?: Prisma.PaymentMethodPhaseStepUncheckedCreateNestedManyWithoutTenantInput;
|
|
1536
|
+
stepEventAttachments?: Prisma.StepEventAttachmentUncheckedCreateNestedManyWithoutTenantInput;
|
|
1537
|
+
paymentMethodPhaseDocuments?: Prisma.PaymentMethodPhaseDocumentUncheckedCreateNestedManyWithoutTenantInput;
|
|
1538
|
+
paymentMethodPhaseFields?: Prisma.PaymentMethodPhaseFieldUncheckedCreateNestedManyWithoutTenantInput;
|
|
1539
|
+
applicationPhases?: Prisma.ApplicationPhaseUncheckedCreateNestedManyWithoutTenantInput;
|
|
1540
|
+
questionnairePhases?: Prisma.QuestionnairePhaseUncheckedCreateNestedManyWithoutTenantInput;
|
|
1541
|
+
documentationPhases?: Prisma.DocumentationPhaseUncheckedCreateNestedManyWithoutTenantInput;
|
|
1542
|
+
paymentPhases?: Prisma.PaymentPhaseUncheckedCreateNestedManyWithoutTenantInput;
|
|
1543
|
+
questionnaireFields?: Prisma.QuestionnaireFieldUncheckedCreateNestedManyWithoutTenantInput;
|
|
1544
|
+
applicationEvents?: Prisma.ApplicationEventUncheckedCreateNestedManyWithoutTenantInput;
|
|
1545
|
+
paymentInstallments?: Prisma.PaymentInstallmentUncheckedCreateNestedManyWithoutTenantInput;
|
|
1546
|
+
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutTenantInput;
|
|
1547
|
+
applicationDocuments?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutTenantInput;
|
|
1548
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutTenantInput;
|
|
1549
|
+
approvalStageProgress?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutTenantInput;
|
|
1550
|
+
propertyMedia?: Prisma.PropertyMediaUncheckedCreateNestedManyWithoutTenantInput;
|
|
1551
|
+
propertyDocuments?: Prisma.PropertyDocumentUncheckedCreateNestedManyWithoutTenantInput;
|
|
1552
|
+
propertyVariants?: Prisma.PropertyVariantUncheckedCreateNestedManyWithoutTenantInput;
|
|
1553
|
+
propertyVariantAmenities?: Prisma.PropertyVariantAmenityUncheckedCreateNestedManyWithoutTenantInput;
|
|
1554
|
+
propertyVariantMedia?: Prisma.PropertyVariantMediaUncheckedCreateNestedManyWithoutTenantInput;
|
|
1555
|
+
propertyUnits?: Prisma.PropertyUnitUncheckedCreateNestedManyWithoutTenantInput;
|
|
1556
|
+
propertyAmenities?: Prisma.PropertyAmenityUncheckedCreateNestedManyWithoutTenantInput;
|
|
1557
|
+
amenities?: Prisma.AmenityUncheckedCreateNestedManyWithoutTenantInput;
|
|
1558
|
+
socials?: Prisma.SocialUncheckedCreateNestedManyWithoutTenantInput;
|
|
1559
|
+
wallets?: Prisma.WalletUncheckedCreateNestedManyWithoutTenantInput;
|
|
1560
|
+
transactions?: Prisma.TransactionUncheckedCreateNestedManyWithoutTenantInput;
|
|
1561
|
+
settings?: Prisma.SettingsUncheckedCreateNestedManyWithoutTenantInput;
|
|
1562
|
+
domainEvents?: Prisma.DomainEventUncheckedCreateNestedManyWithoutTenantInput;
|
|
1563
|
+
workflowBlockers?: Prisma.WorkflowBlockerUncheckedCreateNestedManyWithoutTenantInput;
|
|
1564
|
+
questionnairePlans?: Prisma.QuestionnairePlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
1565
|
+
questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutTenantInput;
|
|
1566
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
|
|
1567
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
1568
|
+
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
1569
|
+
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
1570
|
+
};
|
|
1571
|
+
export type TenantCreateOrConnectWithoutOrganizationTypesInput = {
|
|
1572
|
+
where: Prisma.TenantWhereUniqueInput;
|
|
1573
|
+
create: Prisma.XOR<Prisma.TenantCreateWithoutOrganizationTypesInput, Prisma.TenantUncheckedCreateWithoutOrganizationTypesInput>;
|
|
1574
|
+
};
|
|
1575
|
+
export type TenantUpsertWithoutOrganizationTypesInput = {
|
|
1576
|
+
update: Prisma.XOR<Prisma.TenantUpdateWithoutOrganizationTypesInput, Prisma.TenantUncheckedUpdateWithoutOrganizationTypesInput>;
|
|
1577
|
+
create: Prisma.XOR<Prisma.TenantCreateWithoutOrganizationTypesInput, Prisma.TenantUncheckedCreateWithoutOrganizationTypesInput>;
|
|
1578
|
+
where?: Prisma.TenantWhereInput;
|
|
1579
|
+
};
|
|
1580
|
+
export type TenantUpdateToOneWithWhereWithoutOrganizationTypesInput = {
|
|
1581
|
+
where?: Prisma.TenantWhereInput;
|
|
1582
|
+
data: Prisma.XOR<Prisma.TenantUpdateWithoutOrganizationTypesInput, Prisma.TenantUncheckedUpdateWithoutOrganizationTypesInput>;
|
|
1583
|
+
};
|
|
1584
|
+
export type TenantUpdateWithoutOrganizationTypesInput = {
|
|
1585
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1586
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1587
|
+
subdomain?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1588
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1589
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1590
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1591
|
+
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
1592
|
+
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
1593
|
+
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
1594
|
+
documentationPlans?: Prisma.DocumentationPlanUpdateManyWithoutTenantNestedInput;
|
|
1595
|
+
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
1596
|
+
applications?: Prisma.ApplicationUpdateManyWithoutTenantNestedInput;
|
|
1597
|
+
roles?: Prisma.RoleUpdateManyWithoutTenantNestedInput;
|
|
1598
|
+
permissions?: Prisma.PermissionUpdateManyWithoutTenantNestedInput;
|
|
1599
|
+
memberships?: Prisma.TenantMembershipUpdateManyWithoutTenantNestedInput;
|
|
1600
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutTenantNestedInput;
|
|
1601
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutTenantNestedInput;
|
|
1602
|
+
contractTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutTenantNestedInput;
|
|
1603
|
+
documentTemplates?: Prisma.DocumentTemplateUpdateManyWithoutTenantNestedInput;
|
|
1604
|
+
offerLetters?: Prisma.OfferLetterUpdateManyWithoutTenantNestedInput;
|
|
1605
|
+
apiKeys?: Prisma.ApiKeyUpdateManyWithoutTenantNestedInput;
|
|
1606
|
+
eventChannels?: Prisma.EventChannelUpdateManyWithoutTenantNestedInput;
|
|
1607
|
+
eventTypes?: Prisma.EventTypeUpdateManyWithoutTenantNestedInput;
|
|
1608
|
+
eventHandlers?: Prisma.EventHandlerUpdateManyWithoutTenantNestedInput;
|
|
1609
|
+
propertyTransferRequests?: Prisma.PropertyTransferRequestUpdateManyWithoutTenantNestedInput;
|
|
1610
|
+
approvalRequests?: Prisma.ApprovalRequestUpdateManyWithoutTenantNestedInput;
|
|
1611
|
+
contractRefunds?: Prisma.ApplicationRefundUpdateManyWithoutTenantNestedInput;
|
|
1612
|
+
propertyPaymentMethodLinks?: Prisma.PropertyPaymentMethodLinkUpdateManyWithoutTenantNestedInput;
|
|
1613
|
+
propertyPaymentMethodPhases?: Prisma.PropertyPaymentMethodPhaseUpdateManyWithoutTenantNestedInput;
|
|
1614
|
+
phaseEventAttachments?: Prisma.PhaseEventAttachmentUpdateManyWithoutTenantNestedInput;
|
|
1615
|
+
paymentMethodPhaseSteps?: Prisma.PaymentMethodPhaseStepUpdateManyWithoutTenantNestedInput;
|
|
1616
|
+
stepEventAttachments?: Prisma.StepEventAttachmentUpdateManyWithoutTenantNestedInput;
|
|
1617
|
+
paymentMethodPhaseDocuments?: Prisma.PaymentMethodPhaseDocumentUpdateManyWithoutTenantNestedInput;
|
|
1618
|
+
paymentMethodPhaseFields?: Prisma.PaymentMethodPhaseFieldUpdateManyWithoutTenantNestedInput;
|
|
1619
|
+
applicationPhases?: Prisma.ApplicationPhaseUpdateManyWithoutTenantNestedInput;
|
|
1620
|
+
questionnairePhases?: Prisma.QuestionnairePhaseUpdateManyWithoutTenantNestedInput;
|
|
1621
|
+
documentationPhases?: Prisma.DocumentationPhaseUpdateManyWithoutTenantNestedInput;
|
|
1622
|
+
paymentPhases?: Prisma.PaymentPhaseUpdateManyWithoutTenantNestedInput;
|
|
1623
|
+
questionnaireFields?: Prisma.QuestionnaireFieldUpdateManyWithoutTenantNestedInput;
|
|
1624
|
+
applicationEvents?: Prisma.ApplicationEventUpdateManyWithoutTenantNestedInput;
|
|
1625
|
+
paymentInstallments?: Prisma.PaymentInstallmentUpdateManyWithoutTenantNestedInput;
|
|
1626
|
+
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutTenantNestedInput;
|
|
1627
|
+
applicationDocuments?: Prisma.ApplicationDocumentUpdateManyWithoutTenantNestedInput;
|
|
1628
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutTenantNestedInput;
|
|
1629
|
+
approvalStageProgress?: Prisma.ApprovalStageProgressUpdateManyWithoutTenantNestedInput;
|
|
1630
|
+
propertyMedia?: Prisma.PropertyMediaUpdateManyWithoutTenantNestedInput;
|
|
1631
|
+
propertyDocuments?: Prisma.PropertyDocumentUpdateManyWithoutTenantNestedInput;
|
|
1632
|
+
propertyVariants?: Prisma.PropertyVariantUpdateManyWithoutTenantNestedInput;
|
|
1633
|
+
propertyVariantAmenities?: Prisma.PropertyVariantAmenityUpdateManyWithoutTenantNestedInput;
|
|
1634
|
+
propertyVariantMedia?: Prisma.PropertyVariantMediaUpdateManyWithoutTenantNestedInput;
|
|
1635
|
+
propertyUnits?: Prisma.PropertyUnitUpdateManyWithoutTenantNestedInput;
|
|
1636
|
+
propertyAmenities?: Prisma.PropertyAmenityUpdateManyWithoutTenantNestedInput;
|
|
1637
|
+
amenities?: Prisma.AmenityUpdateManyWithoutTenantNestedInput;
|
|
1638
|
+
socials?: Prisma.SocialUpdateManyWithoutTenantNestedInput;
|
|
1639
|
+
wallets?: Prisma.WalletUpdateManyWithoutTenantNestedInput;
|
|
1640
|
+
transactions?: Prisma.TransactionUpdateManyWithoutTenantNestedInput;
|
|
1641
|
+
settings?: Prisma.SettingsUpdateManyWithoutTenantNestedInput;
|
|
1642
|
+
domainEvents?: Prisma.DomainEventUpdateManyWithoutTenantNestedInput;
|
|
1643
|
+
workflowBlockers?: Prisma.WorkflowBlockerUpdateManyWithoutTenantNestedInput;
|
|
1644
|
+
questionnairePlans?: Prisma.QuestionnairePlanUpdateManyWithoutTenantNestedInput;
|
|
1645
|
+
questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutTenantNestedInput;
|
|
1646
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
|
|
1647
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
1648
|
+
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
1649
|
+
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
1650
|
+
};
|
|
1651
|
+
export type TenantUncheckedUpdateWithoutOrganizationTypesInput = {
|
|
1652
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1653
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1654
|
+
subdomain?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1655
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1656
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1657
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1658
|
+
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1659
|
+
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1660
|
+
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1661
|
+
documentationPlans?: Prisma.DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1662
|
+
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1663
|
+
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1664
|
+
roles?: Prisma.RoleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1665
|
+
permissions?: Prisma.PermissionUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1666
|
+
memberships?: Prisma.TenantMembershipUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1667
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1668
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1669
|
+
contractTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1670
|
+
documentTemplates?: Prisma.DocumentTemplateUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1671
|
+
offerLetters?: Prisma.OfferLetterUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1672
|
+
apiKeys?: Prisma.ApiKeyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1673
|
+
eventChannels?: Prisma.EventChannelUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1674
|
+
eventTypes?: Prisma.EventTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1675
|
+
eventHandlers?: Prisma.EventHandlerUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1676
|
+
propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1677
|
+
approvalRequests?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1678
|
+
contractRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1679
|
+
propertyPaymentMethodLinks?: Prisma.PropertyPaymentMethodLinkUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1680
|
+
propertyPaymentMethodPhases?: Prisma.PropertyPaymentMethodPhaseUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1681
|
+
phaseEventAttachments?: Prisma.PhaseEventAttachmentUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1682
|
+
paymentMethodPhaseSteps?: Prisma.PaymentMethodPhaseStepUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1683
|
+
stepEventAttachments?: Prisma.StepEventAttachmentUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1684
|
+
paymentMethodPhaseDocuments?: Prisma.PaymentMethodPhaseDocumentUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1685
|
+
paymentMethodPhaseFields?: Prisma.PaymentMethodPhaseFieldUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1686
|
+
applicationPhases?: Prisma.ApplicationPhaseUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1687
|
+
questionnairePhases?: Prisma.QuestionnairePhaseUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1688
|
+
documentationPhases?: Prisma.DocumentationPhaseUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1689
|
+
paymentPhases?: Prisma.PaymentPhaseUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1690
|
+
questionnaireFields?: Prisma.QuestionnaireFieldUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1691
|
+
applicationEvents?: Prisma.ApplicationEventUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1692
|
+
paymentInstallments?: Prisma.PaymentInstallmentUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1693
|
+
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1694
|
+
applicationDocuments?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1695
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1696
|
+
approvalStageProgress?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1697
|
+
propertyMedia?: Prisma.PropertyMediaUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1698
|
+
propertyDocuments?: Prisma.PropertyDocumentUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1699
|
+
propertyVariants?: Prisma.PropertyVariantUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1700
|
+
propertyVariantAmenities?: Prisma.PropertyVariantAmenityUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1701
|
+
propertyVariantMedia?: Prisma.PropertyVariantMediaUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1702
|
+
propertyUnits?: Prisma.PropertyUnitUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1703
|
+
propertyAmenities?: Prisma.PropertyAmenityUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1704
|
+
amenities?: Prisma.AmenityUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1705
|
+
socials?: Prisma.SocialUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1706
|
+
wallets?: Prisma.WalletUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1707
|
+
transactions?: Prisma.TransactionUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1708
|
+
settings?: Prisma.SettingsUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1709
|
+
domainEvents?: Prisma.DomainEventUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1710
|
+
workflowBlockers?: Prisma.WorkflowBlockerUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1711
|
+
questionnairePlans?: Prisma.QuestionnairePlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1712
|
+
questionnairePhaseReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1713
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1714
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1715
|
+
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1716
|
+
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1717
|
+
};
|
|
1418
1718
|
export type TenantCreateWithoutUsersInput = {
|
|
1419
1719
|
id?: string;
|
|
1420
1720
|
name: string;
|
|
@@ -1480,6 +1780,7 @@ export type TenantCreateWithoutUsersInput = {
|
|
|
1480
1780
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
1481
1781
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
1482
1782
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
1783
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
1483
1784
|
};
|
|
1484
1785
|
export type TenantUncheckedCreateWithoutUsersInput = {
|
|
1485
1786
|
id?: string;
|
|
@@ -1546,6 +1847,7 @@ export type TenantUncheckedCreateWithoutUsersInput = {
|
|
|
1546
1847
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
1547
1848
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
1548
1849
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
1850
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
1549
1851
|
};
|
|
1550
1852
|
export type TenantCreateOrConnectWithoutUsersInput = {
|
|
1551
1853
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -1625,6 +1927,7 @@ export type TenantUpdateWithoutUsersInput = {
|
|
|
1625
1927
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
1626
1928
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
1627
1929
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
1930
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
1628
1931
|
};
|
|
1629
1932
|
export type TenantUncheckedUpdateWithoutUsersInput = {
|
|
1630
1933
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -1691,6 +1994,7 @@ export type TenantUncheckedUpdateWithoutUsersInput = {
|
|
|
1691
1994
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1692
1995
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1693
1996
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1997
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1694
1998
|
};
|
|
1695
1999
|
export type TenantCreateWithoutRolesInput = {
|
|
1696
2000
|
id?: string;
|
|
@@ -1757,6 +2061,7 @@ export type TenantCreateWithoutRolesInput = {
|
|
|
1757
2061
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
1758
2062
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
1759
2063
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
2064
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
1760
2065
|
};
|
|
1761
2066
|
export type TenantUncheckedCreateWithoutRolesInput = {
|
|
1762
2067
|
id?: string;
|
|
@@ -1823,6 +2128,7 @@ export type TenantUncheckedCreateWithoutRolesInput = {
|
|
|
1823
2128
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
1824
2129
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
1825
2130
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
2131
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
1826
2132
|
};
|
|
1827
2133
|
export type TenantCreateOrConnectWithoutRolesInput = {
|
|
1828
2134
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -1902,6 +2208,7 @@ export type TenantUpdateWithoutRolesInput = {
|
|
|
1902
2208
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
1903
2209
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
1904
2210
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
2211
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
1905
2212
|
};
|
|
1906
2213
|
export type TenantUncheckedUpdateWithoutRolesInput = {
|
|
1907
2214
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -1968,6 +2275,7 @@ export type TenantUncheckedUpdateWithoutRolesInput = {
|
|
|
1968
2275
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1969
2276
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1970
2277
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2278
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1971
2279
|
};
|
|
1972
2280
|
export type TenantCreateWithoutPermissionsInput = {
|
|
1973
2281
|
id?: string;
|
|
@@ -2034,6 +2342,7 @@ export type TenantCreateWithoutPermissionsInput = {
|
|
|
2034
2342
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
2035
2343
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
2036
2344
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
2345
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
2037
2346
|
};
|
|
2038
2347
|
export type TenantUncheckedCreateWithoutPermissionsInput = {
|
|
2039
2348
|
id?: string;
|
|
@@ -2100,6 +2409,7 @@ export type TenantUncheckedCreateWithoutPermissionsInput = {
|
|
|
2100
2409
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
2101
2410
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
2102
2411
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
2412
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
2103
2413
|
};
|
|
2104
2414
|
export type TenantCreateOrConnectWithoutPermissionsInput = {
|
|
2105
2415
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -2179,6 +2489,7 @@ export type TenantUpdateWithoutPermissionsInput = {
|
|
|
2179
2489
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
2180
2490
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
2181
2491
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
2492
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
2182
2493
|
};
|
|
2183
2494
|
export type TenantUncheckedUpdateWithoutPermissionsInput = {
|
|
2184
2495
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -2245,6 +2556,7 @@ export type TenantUncheckedUpdateWithoutPermissionsInput = {
|
|
|
2245
2556
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2246
2557
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2247
2558
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2559
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2248
2560
|
};
|
|
2249
2561
|
export type TenantCreateWithoutMembershipsInput = {
|
|
2250
2562
|
id?: string;
|
|
@@ -2311,6 +2623,7 @@ export type TenantCreateWithoutMembershipsInput = {
|
|
|
2311
2623
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
2312
2624
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
2313
2625
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
2626
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
2314
2627
|
};
|
|
2315
2628
|
export type TenantUncheckedCreateWithoutMembershipsInput = {
|
|
2316
2629
|
id?: string;
|
|
@@ -2377,6 +2690,7 @@ export type TenantUncheckedCreateWithoutMembershipsInput = {
|
|
|
2377
2690
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
2378
2691
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
2379
2692
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
2693
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
2380
2694
|
};
|
|
2381
2695
|
export type TenantCreateOrConnectWithoutMembershipsInput = {
|
|
2382
2696
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -2456,6 +2770,7 @@ export type TenantUpdateWithoutMembershipsInput = {
|
|
|
2456
2770
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
2457
2771
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
2458
2772
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
2773
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
2459
2774
|
};
|
|
2460
2775
|
export type TenantUncheckedUpdateWithoutMembershipsInput = {
|
|
2461
2776
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -2522,6 +2837,7 @@ export type TenantUncheckedUpdateWithoutMembershipsInput = {
|
|
|
2522
2837
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2523
2838
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2524
2839
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2840
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2525
2841
|
};
|
|
2526
2842
|
export type TenantCreateWithoutOrganizationsInput = {
|
|
2527
2843
|
id?: string;
|
|
@@ -2588,6 +2904,7 @@ export type TenantCreateWithoutOrganizationsInput = {
|
|
|
2588
2904
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
|
|
2589
2905
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
2590
2906
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
2907
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
2591
2908
|
};
|
|
2592
2909
|
export type TenantUncheckedCreateWithoutOrganizationsInput = {
|
|
2593
2910
|
id?: string;
|
|
@@ -2654,6 +2971,7 @@ export type TenantUncheckedCreateWithoutOrganizationsInput = {
|
|
|
2654
2971
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
|
|
2655
2972
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
2656
2973
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
2974
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
2657
2975
|
};
|
|
2658
2976
|
export type TenantCreateOrConnectWithoutOrganizationsInput = {
|
|
2659
2977
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -2733,6 +3051,7 @@ export type TenantUpdateWithoutOrganizationsInput = {
|
|
|
2733
3051
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
|
|
2734
3052
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
2735
3053
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
3054
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
2736
3055
|
};
|
|
2737
3056
|
export type TenantUncheckedUpdateWithoutOrganizationsInput = {
|
|
2738
3057
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -2799,6 +3118,7 @@ export type TenantUncheckedUpdateWithoutOrganizationsInput = {
|
|
|
2799
3118
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2800
3119
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2801
3120
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3121
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
2802
3122
|
};
|
|
2803
3123
|
export type TenantCreateWithoutBankDocumentRequirementsInput = {
|
|
2804
3124
|
id?: string;
|
|
@@ -2865,6 +3185,7 @@ export type TenantCreateWithoutBankDocumentRequirementsInput = {
|
|
|
2865
3185
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
|
|
2866
3186
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
2867
3187
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
3188
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
2868
3189
|
};
|
|
2869
3190
|
export type TenantUncheckedCreateWithoutBankDocumentRequirementsInput = {
|
|
2870
3191
|
id?: string;
|
|
@@ -2931,6 +3252,7 @@ export type TenantUncheckedCreateWithoutBankDocumentRequirementsInput = {
|
|
|
2931
3252
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
|
|
2932
3253
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
2933
3254
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
3255
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
2934
3256
|
};
|
|
2935
3257
|
export type TenantCreateOrConnectWithoutBankDocumentRequirementsInput = {
|
|
2936
3258
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -3010,6 +3332,7 @@ export type TenantUpdateWithoutBankDocumentRequirementsInput = {
|
|
|
3010
3332
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
|
|
3011
3333
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
3012
3334
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
3335
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
3013
3336
|
};
|
|
3014
3337
|
export type TenantUncheckedUpdateWithoutBankDocumentRequirementsInput = {
|
|
3015
3338
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -3076,6 +3399,7 @@ export type TenantUncheckedUpdateWithoutBankDocumentRequirementsInput = {
|
|
|
3076
3399
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3077
3400
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3078
3401
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3402
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3079
3403
|
};
|
|
3080
3404
|
export type TenantCreateWithoutApiKeysInput = {
|
|
3081
3405
|
id?: string;
|
|
@@ -3142,6 +3466,7 @@ export type TenantCreateWithoutApiKeysInput = {
|
|
|
3142
3466
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
3143
3467
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
3144
3468
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
3469
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
3145
3470
|
};
|
|
3146
3471
|
export type TenantUncheckedCreateWithoutApiKeysInput = {
|
|
3147
3472
|
id?: string;
|
|
@@ -3208,6 +3533,7 @@ export type TenantUncheckedCreateWithoutApiKeysInput = {
|
|
|
3208
3533
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
3209
3534
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
3210
3535
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
3536
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
3211
3537
|
};
|
|
3212
3538
|
export type TenantCreateOrConnectWithoutApiKeysInput = {
|
|
3213
3539
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -3287,6 +3613,7 @@ export type TenantUpdateWithoutApiKeysInput = {
|
|
|
3287
3613
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
3288
3614
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
3289
3615
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
3616
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
3290
3617
|
};
|
|
3291
3618
|
export type TenantUncheckedUpdateWithoutApiKeysInput = {
|
|
3292
3619
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -3353,6 +3680,7 @@ export type TenantUncheckedUpdateWithoutApiKeysInput = {
|
|
|
3353
3680
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3354
3681
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3355
3682
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3683
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3356
3684
|
};
|
|
3357
3685
|
export type TenantCreateWithoutSocialsInput = {
|
|
3358
3686
|
id?: string;
|
|
@@ -3419,6 +3747,7 @@ export type TenantCreateWithoutSocialsInput = {
|
|
|
3419
3747
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
3420
3748
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
3421
3749
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
3750
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
3422
3751
|
};
|
|
3423
3752
|
export type TenantUncheckedCreateWithoutSocialsInput = {
|
|
3424
3753
|
id?: string;
|
|
@@ -3485,6 +3814,7 @@ export type TenantUncheckedCreateWithoutSocialsInput = {
|
|
|
3485
3814
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
3486
3815
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
3487
3816
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
3817
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
3488
3818
|
};
|
|
3489
3819
|
export type TenantCreateOrConnectWithoutSocialsInput = {
|
|
3490
3820
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -3564,6 +3894,7 @@ export type TenantUpdateWithoutSocialsInput = {
|
|
|
3564
3894
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
3565
3895
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
3566
3896
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
3897
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
3567
3898
|
};
|
|
3568
3899
|
export type TenantUncheckedUpdateWithoutSocialsInput = {
|
|
3569
3900
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -3630,6 +3961,7 @@ export type TenantUncheckedUpdateWithoutSocialsInput = {
|
|
|
3630
3961
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3631
3962
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3632
3963
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3964
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3633
3965
|
};
|
|
3634
3966
|
export type TenantCreateWithoutWalletsInput = {
|
|
3635
3967
|
id?: string;
|
|
@@ -3696,6 +4028,7 @@ export type TenantCreateWithoutWalletsInput = {
|
|
|
3696
4028
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
3697
4029
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
3698
4030
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
4031
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
3699
4032
|
};
|
|
3700
4033
|
export type TenantUncheckedCreateWithoutWalletsInput = {
|
|
3701
4034
|
id?: string;
|
|
@@ -3762,6 +4095,7 @@ export type TenantUncheckedCreateWithoutWalletsInput = {
|
|
|
3762
4095
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
3763
4096
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
3764
4097
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
4098
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
3765
4099
|
};
|
|
3766
4100
|
export type TenantCreateOrConnectWithoutWalletsInput = {
|
|
3767
4101
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -3841,6 +4175,7 @@ export type TenantUpdateWithoutWalletsInput = {
|
|
|
3841
4175
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
3842
4176
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
3843
4177
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
4178
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
3844
4179
|
};
|
|
3845
4180
|
export type TenantUncheckedUpdateWithoutWalletsInput = {
|
|
3846
4181
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -3907,6 +4242,7 @@ export type TenantUncheckedUpdateWithoutWalletsInput = {
|
|
|
3907
4242
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3908
4243
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3909
4244
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4245
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
3910
4246
|
};
|
|
3911
4247
|
export type TenantCreateWithoutTransactionsInput = {
|
|
3912
4248
|
id?: string;
|
|
@@ -3973,6 +4309,7 @@ export type TenantCreateWithoutTransactionsInput = {
|
|
|
3973
4309
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
3974
4310
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
3975
4311
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
4312
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
3976
4313
|
};
|
|
3977
4314
|
export type TenantUncheckedCreateWithoutTransactionsInput = {
|
|
3978
4315
|
id?: string;
|
|
@@ -4039,6 +4376,7 @@ export type TenantUncheckedCreateWithoutTransactionsInput = {
|
|
|
4039
4376
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
4040
4377
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
4041
4378
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
4379
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
4042
4380
|
};
|
|
4043
4381
|
export type TenantCreateOrConnectWithoutTransactionsInput = {
|
|
4044
4382
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -4118,6 +4456,7 @@ export type TenantUpdateWithoutTransactionsInput = {
|
|
|
4118
4456
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
4119
4457
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
4120
4458
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
4459
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
4121
4460
|
};
|
|
4122
4461
|
export type TenantUncheckedUpdateWithoutTransactionsInput = {
|
|
4123
4462
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -4184,6 +4523,7 @@ export type TenantUncheckedUpdateWithoutTransactionsInput = {
|
|
|
4184
4523
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4185
4524
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4186
4525
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4526
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4187
4527
|
};
|
|
4188
4528
|
export type TenantCreateWithoutSettingsInput = {
|
|
4189
4529
|
id?: string;
|
|
@@ -4250,6 +4590,7 @@ export type TenantCreateWithoutSettingsInput = {
|
|
|
4250
4590
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
4251
4591
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
4252
4592
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
4593
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
4253
4594
|
};
|
|
4254
4595
|
export type TenantUncheckedCreateWithoutSettingsInput = {
|
|
4255
4596
|
id?: string;
|
|
@@ -4316,6 +4657,7 @@ export type TenantUncheckedCreateWithoutSettingsInput = {
|
|
|
4316
4657
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
4317
4658
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
4318
4659
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
4660
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
4319
4661
|
};
|
|
4320
4662
|
export type TenantCreateOrConnectWithoutSettingsInput = {
|
|
4321
4663
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -4395,6 +4737,7 @@ export type TenantUpdateWithoutSettingsInput = {
|
|
|
4395
4737
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
4396
4738
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
4397
4739
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
4740
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
4398
4741
|
};
|
|
4399
4742
|
export type TenantUncheckedUpdateWithoutSettingsInput = {
|
|
4400
4743
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -4461,6 +4804,7 @@ export type TenantUncheckedUpdateWithoutSettingsInput = {
|
|
|
4461
4804
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4462
4805
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4463
4806
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4807
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4464
4808
|
};
|
|
4465
4809
|
export type TenantCreateWithoutPropertiesInput = {
|
|
4466
4810
|
id?: string;
|
|
@@ -4527,6 +4871,7 @@ export type TenantCreateWithoutPropertiesInput = {
|
|
|
4527
4871
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
4528
4872
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
4529
4873
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
4874
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
4530
4875
|
};
|
|
4531
4876
|
export type TenantUncheckedCreateWithoutPropertiesInput = {
|
|
4532
4877
|
id?: string;
|
|
@@ -4593,6 +4938,7 @@ export type TenantUncheckedCreateWithoutPropertiesInput = {
|
|
|
4593
4938
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
4594
4939
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
4595
4940
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
4941
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
4596
4942
|
};
|
|
4597
4943
|
export type TenantCreateOrConnectWithoutPropertiesInput = {
|
|
4598
4944
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -4672,6 +5018,7 @@ export type TenantUpdateWithoutPropertiesInput = {
|
|
|
4672
5018
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
4673
5019
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
4674
5020
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
5021
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
4675
5022
|
};
|
|
4676
5023
|
export type TenantUncheckedUpdateWithoutPropertiesInput = {
|
|
4677
5024
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -4738,6 +5085,7 @@ export type TenantUncheckedUpdateWithoutPropertiesInput = {
|
|
|
4738
5085
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4739
5086
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4740
5087
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5088
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
4741
5089
|
};
|
|
4742
5090
|
export type TenantCreateWithoutPropertyMediaInput = {
|
|
4743
5091
|
id?: string;
|
|
@@ -4804,6 +5152,7 @@ export type TenantCreateWithoutPropertyMediaInput = {
|
|
|
4804
5152
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
4805
5153
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
4806
5154
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
5155
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
4807
5156
|
};
|
|
4808
5157
|
export type TenantUncheckedCreateWithoutPropertyMediaInput = {
|
|
4809
5158
|
id?: string;
|
|
@@ -4870,6 +5219,7 @@ export type TenantUncheckedCreateWithoutPropertyMediaInput = {
|
|
|
4870
5219
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
4871
5220
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
4872
5221
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
5222
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
4873
5223
|
};
|
|
4874
5224
|
export type TenantCreateOrConnectWithoutPropertyMediaInput = {
|
|
4875
5225
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -4949,6 +5299,7 @@ export type TenantUpdateWithoutPropertyMediaInput = {
|
|
|
4949
5299
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
4950
5300
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
4951
5301
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
5302
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
4952
5303
|
};
|
|
4953
5304
|
export type TenantUncheckedUpdateWithoutPropertyMediaInput = {
|
|
4954
5305
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -5015,6 +5366,7 @@ export type TenantUncheckedUpdateWithoutPropertyMediaInput = {
|
|
|
5015
5366
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5016
5367
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5017
5368
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5369
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5018
5370
|
};
|
|
5019
5371
|
export type TenantCreateWithoutPropertyDocumentsInput = {
|
|
5020
5372
|
id?: string;
|
|
@@ -5081,6 +5433,7 @@ export type TenantCreateWithoutPropertyDocumentsInput = {
|
|
|
5081
5433
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
5082
5434
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
5083
5435
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
5436
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
5084
5437
|
};
|
|
5085
5438
|
export type TenantUncheckedCreateWithoutPropertyDocumentsInput = {
|
|
5086
5439
|
id?: string;
|
|
@@ -5147,6 +5500,7 @@ export type TenantUncheckedCreateWithoutPropertyDocumentsInput = {
|
|
|
5147
5500
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
5148
5501
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
5149
5502
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
5503
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
5150
5504
|
};
|
|
5151
5505
|
export type TenantCreateOrConnectWithoutPropertyDocumentsInput = {
|
|
5152
5506
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -5226,6 +5580,7 @@ export type TenantUpdateWithoutPropertyDocumentsInput = {
|
|
|
5226
5580
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
5227
5581
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
5228
5582
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
5583
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
5229
5584
|
};
|
|
5230
5585
|
export type TenantUncheckedUpdateWithoutPropertyDocumentsInput = {
|
|
5231
5586
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -5292,6 +5647,7 @@ export type TenantUncheckedUpdateWithoutPropertyDocumentsInput = {
|
|
|
5292
5647
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5293
5648
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5294
5649
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5650
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5295
5651
|
};
|
|
5296
5652
|
export type TenantCreateWithoutAmenitiesInput = {
|
|
5297
5653
|
id?: string;
|
|
@@ -5358,6 +5714,7 @@ export type TenantCreateWithoutAmenitiesInput = {
|
|
|
5358
5714
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
5359
5715
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
5360
5716
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
5717
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
5361
5718
|
};
|
|
5362
5719
|
export type TenantUncheckedCreateWithoutAmenitiesInput = {
|
|
5363
5720
|
id?: string;
|
|
@@ -5424,6 +5781,7 @@ export type TenantUncheckedCreateWithoutAmenitiesInput = {
|
|
|
5424
5781
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
5425
5782
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
5426
5783
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
5784
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
5427
5785
|
};
|
|
5428
5786
|
export type TenantCreateOrConnectWithoutAmenitiesInput = {
|
|
5429
5787
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -5503,6 +5861,7 @@ export type TenantUpdateWithoutAmenitiesInput = {
|
|
|
5503
5861
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
5504
5862
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
5505
5863
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
5864
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
5506
5865
|
};
|
|
5507
5866
|
export type TenantUncheckedUpdateWithoutAmenitiesInput = {
|
|
5508
5867
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -5569,6 +5928,7 @@ export type TenantUncheckedUpdateWithoutAmenitiesInput = {
|
|
|
5569
5928
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5570
5929
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5571
5930
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5931
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5572
5932
|
};
|
|
5573
5933
|
export type TenantCreateWithoutPropertyVariantsInput = {
|
|
5574
5934
|
id?: string;
|
|
@@ -5635,6 +5995,7 @@ export type TenantCreateWithoutPropertyVariantsInput = {
|
|
|
5635
5995
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
5636
5996
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
5637
5997
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
5998
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
5638
5999
|
};
|
|
5639
6000
|
export type TenantUncheckedCreateWithoutPropertyVariantsInput = {
|
|
5640
6001
|
id?: string;
|
|
@@ -5701,6 +6062,7 @@ export type TenantUncheckedCreateWithoutPropertyVariantsInput = {
|
|
|
5701
6062
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
5702
6063
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
5703
6064
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
6065
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
5704
6066
|
};
|
|
5705
6067
|
export type TenantCreateOrConnectWithoutPropertyVariantsInput = {
|
|
5706
6068
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -5780,6 +6142,7 @@ export type TenantUpdateWithoutPropertyVariantsInput = {
|
|
|
5780
6142
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
5781
6143
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
5782
6144
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
6145
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
5783
6146
|
};
|
|
5784
6147
|
export type TenantUncheckedUpdateWithoutPropertyVariantsInput = {
|
|
5785
6148
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -5846,6 +6209,7 @@ export type TenantUncheckedUpdateWithoutPropertyVariantsInput = {
|
|
|
5846
6209
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5847
6210
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5848
6211
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6212
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
5849
6213
|
};
|
|
5850
6214
|
export type TenantCreateWithoutPropertyVariantAmenitiesInput = {
|
|
5851
6215
|
id?: string;
|
|
@@ -5912,6 +6276,7 @@ export type TenantCreateWithoutPropertyVariantAmenitiesInput = {
|
|
|
5912
6276
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
5913
6277
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
5914
6278
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
6279
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
5915
6280
|
};
|
|
5916
6281
|
export type TenantUncheckedCreateWithoutPropertyVariantAmenitiesInput = {
|
|
5917
6282
|
id?: string;
|
|
@@ -5978,6 +6343,7 @@ export type TenantUncheckedCreateWithoutPropertyVariantAmenitiesInput = {
|
|
|
5978
6343
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
5979
6344
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
5980
6345
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
6346
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
5981
6347
|
};
|
|
5982
6348
|
export type TenantCreateOrConnectWithoutPropertyVariantAmenitiesInput = {
|
|
5983
6349
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -6057,6 +6423,7 @@ export type TenantUpdateWithoutPropertyVariantAmenitiesInput = {
|
|
|
6057
6423
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
6058
6424
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
6059
6425
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
6426
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
6060
6427
|
};
|
|
6061
6428
|
export type TenantUncheckedUpdateWithoutPropertyVariantAmenitiesInput = {
|
|
6062
6429
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -6123,6 +6490,7 @@ export type TenantUncheckedUpdateWithoutPropertyVariantAmenitiesInput = {
|
|
|
6123
6490
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6124
6491
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6125
6492
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6493
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6126
6494
|
};
|
|
6127
6495
|
export type TenantCreateWithoutPropertyVariantMediaInput = {
|
|
6128
6496
|
id?: string;
|
|
@@ -6189,6 +6557,7 @@ export type TenantCreateWithoutPropertyVariantMediaInput = {
|
|
|
6189
6557
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
6190
6558
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
6191
6559
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
6560
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
6192
6561
|
};
|
|
6193
6562
|
export type TenantUncheckedCreateWithoutPropertyVariantMediaInput = {
|
|
6194
6563
|
id?: string;
|
|
@@ -6255,6 +6624,7 @@ export type TenantUncheckedCreateWithoutPropertyVariantMediaInput = {
|
|
|
6255
6624
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
6256
6625
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
6257
6626
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
6627
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
6258
6628
|
};
|
|
6259
6629
|
export type TenantCreateOrConnectWithoutPropertyVariantMediaInput = {
|
|
6260
6630
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -6334,6 +6704,7 @@ export type TenantUpdateWithoutPropertyVariantMediaInput = {
|
|
|
6334
6704
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
6335
6705
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
6336
6706
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
6707
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
6337
6708
|
};
|
|
6338
6709
|
export type TenantUncheckedUpdateWithoutPropertyVariantMediaInput = {
|
|
6339
6710
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -6400,6 +6771,7 @@ export type TenantUncheckedUpdateWithoutPropertyVariantMediaInput = {
|
|
|
6400
6771
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6401
6772
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6402
6773
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6774
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6403
6775
|
};
|
|
6404
6776
|
export type TenantCreateWithoutPropertyUnitsInput = {
|
|
6405
6777
|
id?: string;
|
|
@@ -6466,6 +6838,7 @@ export type TenantCreateWithoutPropertyUnitsInput = {
|
|
|
6466
6838
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
6467
6839
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
6468
6840
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
6841
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
6469
6842
|
};
|
|
6470
6843
|
export type TenantUncheckedCreateWithoutPropertyUnitsInput = {
|
|
6471
6844
|
id?: string;
|
|
@@ -6532,6 +6905,7 @@ export type TenantUncheckedCreateWithoutPropertyUnitsInput = {
|
|
|
6532
6905
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
6533
6906
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
6534
6907
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
6908
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
6535
6909
|
};
|
|
6536
6910
|
export type TenantCreateOrConnectWithoutPropertyUnitsInput = {
|
|
6537
6911
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -6611,6 +6985,7 @@ export type TenantUpdateWithoutPropertyUnitsInput = {
|
|
|
6611
6985
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
6612
6986
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
6613
6987
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
6988
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
6614
6989
|
};
|
|
6615
6990
|
export type TenantUncheckedUpdateWithoutPropertyUnitsInput = {
|
|
6616
6991
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -6677,6 +7052,7 @@ export type TenantUncheckedUpdateWithoutPropertyUnitsInput = {
|
|
|
6677
7052
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6678
7053
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6679
7054
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7055
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6680
7056
|
};
|
|
6681
7057
|
export type TenantCreateWithoutPropertyAmenitiesInput = {
|
|
6682
7058
|
id?: string;
|
|
@@ -6743,6 +7119,7 @@ export type TenantCreateWithoutPropertyAmenitiesInput = {
|
|
|
6743
7119
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
6744
7120
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
6745
7121
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
7122
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
6746
7123
|
};
|
|
6747
7124
|
export type TenantUncheckedCreateWithoutPropertyAmenitiesInput = {
|
|
6748
7125
|
id?: string;
|
|
@@ -6809,6 +7186,7 @@ export type TenantUncheckedCreateWithoutPropertyAmenitiesInput = {
|
|
|
6809
7186
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
6810
7187
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
6811
7188
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
7189
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
6812
7190
|
};
|
|
6813
7191
|
export type TenantCreateOrConnectWithoutPropertyAmenitiesInput = {
|
|
6814
7192
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -6888,6 +7266,7 @@ export type TenantUpdateWithoutPropertyAmenitiesInput = {
|
|
|
6888
7266
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
6889
7267
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
6890
7268
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
7269
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
6891
7270
|
};
|
|
6892
7271
|
export type TenantUncheckedUpdateWithoutPropertyAmenitiesInput = {
|
|
6893
7272
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -6954,6 +7333,7 @@ export type TenantUncheckedUpdateWithoutPropertyAmenitiesInput = {
|
|
|
6954
7333
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6955
7334
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6956
7335
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7336
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
6957
7337
|
};
|
|
6958
7338
|
export type TenantCreateWithoutDocumentationPlansInput = {
|
|
6959
7339
|
id?: string;
|
|
@@ -7020,6 +7400,7 @@ export type TenantCreateWithoutDocumentationPlansInput = {
|
|
|
7020
7400
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
7021
7401
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
7022
7402
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
7403
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
7023
7404
|
};
|
|
7024
7405
|
export type TenantUncheckedCreateWithoutDocumentationPlansInput = {
|
|
7025
7406
|
id?: string;
|
|
@@ -7086,6 +7467,7 @@ export type TenantUncheckedCreateWithoutDocumentationPlansInput = {
|
|
|
7086
7467
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
7087
7468
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
7088
7469
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
7470
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
7089
7471
|
};
|
|
7090
7472
|
export type TenantCreateOrConnectWithoutDocumentationPlansInput = {
|
|
7091
7473
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -7165,6 +7547,7 @@ export type TenantUpdateWithoutDocumentationPlansInput = {
|
|
|
7165
7547
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
7166
7548
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
7167
7549
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
7550
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
7168
7551
|
};
|
|
7169
7552
|
export type TenantUncheckedUpdateWithoutDocumentationPlansInput = {
|
|
7170
7553
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -7231,6 +7614,7 @@ export type TenantUncheckedUpdateWithoutDocumentationPlansInput = {
|
|
|
7231
7614
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7232
7615
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7233
7616
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7617
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7234
7618
|
};
|
|
7235
7619
|
export type TenantCreateWithoutQuestionnairePlansInput = {
|
|
7236
7620
|
id?: string;
|
|
@@ -7297,6 +7681,7 @@ export type TenantCreateWithoutQuestionnairePlansInput = {
|
|
|
7297
7681
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
7298
7682
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
7299
7683
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
7684
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
7300
7685
|
};
|
|
7301
7686
|
export type TenantUncheckedCreateWithoutQuestionnairePlansInput = {
|
|
7302
7687
|
id?: string;
|
|
@@ -7363,6 +7748,7 @@ export type TenantUncheckedCreateWithoutQuestionnairePlansInput = {
|
|
|
7363
7748
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
7364
7749
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
7365
7750
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
7751
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
7366
7752
|
};
|
|
7367
7753
|
export type TenantCreateOrConnectWithoutQuestionnairePlansInput = {
|
|
7368
7754
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -7442,6 +7828,7 @@ export type TenantUpdateWithoutQuestionnairePlansInput = {
|
|
|
7442
7828
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
7443
7829
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
7444
7830
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
7831
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
7445
7832
|
};
|
|
7446
7833
|
export type TenantUncheckedUpdateWithoutQuestionnairePlansInput = {
|
|
7447
7834
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -7508,6 +7895,7 @@ export type TenantUncheckedUpdateWithoutQuestionnairePlansInput = {
|
|
|
7508
7895
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7509
7896
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7510
7897
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7898
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7511
7899
|
};
|
|
7512
7900
|
export type TenantCreateWithoutPaymentPlansInput = {
|
|
7513
7901
|
id?: string;
|
|
@@ -7574,6 +7962,7 @@ export type TenantCreateWithoutPaymentPlansInput = {
|
|
|
7574
7962
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
7575
7963
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
7576
7964
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
7965
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
7577
7966
|
};
|
|
7578
7967
|
export type TenantUncheckedCreateWithoutPaymentPlansInput = {
|
|
7579
7968
|
id?: string;
|
|
@@ -7640,6 +8029,7 @@ export type TenantUncheckedCreateWithoutPaymentPlansInput = {
|
|
|
7640
8029
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
7641
8030
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
7642
8031
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
8032
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
7643
8033
|
};
|
|
7644
8034
|
export type TenantCreateOrConnectWithoutPaymentPlansInput = {
|
|
7645
8035
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -7719,6 +8109,7 @@ export type TenantUpdateWithoutPaymentPlansInput = {
|
|
|
7719
8109
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
7720
8110
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
7721
8111
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
8112
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
7722
8113
|
};
|
|
7723
8114
|
export type TenantUncheckedUpdateWithoutPaymentPlansInput = {
|
|
7724
8115
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -7785,6 +8176,7 @@ export type TenantUncheckedUpdateWithoutPaymentPlansInput = {
|
|
|
7785
8176
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7786
8177
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7787
8178
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8179
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
7788
8180
|
};
|
|
7789
8181
|
export type TenantCreateWithoutPaymentMethodsInput = {
|
|
7790
8182
|
id?: string;
|
|
@@ -7851,6 +8243,7 @@ export type TenantCreateWithoutPaymentMethodsInput = {
|
|
|
7851
8243
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
7852
8244
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
7853
8245
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
8246
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
7854
8247
|
};
|
|
7855
8248
|
export type TenantUncheckedCreateWithoutPaymentMethodsInput = {
|
|
7856
8249
|
id?: string;
|
|
@@ -7917,6 +8310,7 @@ export type TenantUncheckedCreateWithoutPaymentMethodsInput = {
|
|
|
7917
8310
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
7918
8311
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
7919
8312
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
8313
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
7920
8314
|
};
|
|
7921
8315
|
export type TenantCreateOrConnectWithoutPaymentMethodsInput = {
|
|
7922
8316
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -7996,6 +8390,7 @@ export type TenantUpdateWithoutPaymentMethodsInput = {
|
|
|
7996
8390
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
7997
8391
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
7998
8392
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
8393
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
7999
8394
|
};
|
|
8000
8395
|
export type TenantUncheckedUpdateWithoutPaymentMethodsInput = {
|
|
8001
8396
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -8062,6 +8457,7 @@ export type TenantUncheckedUpdateWithoutPaymentMethodsInput = {
|
|
|
8062
8457
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8063
8458
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8064
8459
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8460
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8065
8461
|
};
|
|
8066
8462
|
export type TenantCreateWithoutPropertyPaymentMethodLinksInput = {
|
|
8067
8463
|
id?: string;
|
|
@@ -8128,6 +8524,7 @@ export type TenantCreateWithoutPropertyPaymentMethodLinksInput = {
|
|
|
8128
8524
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
8129
8525
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
8130
8526
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
8527
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
8131
8528
|
};
|
|
8132
8529
|
export type TenantUncheckedCreateWithoutPropertyPaymentMethodLinksInput = {
|
|
8133
8530
|
id?: string;
|
|
@@ -8194,6 +8591,7 @@ export type TenantUncheckedCreateWithoutPropertyPaymentMethodLinksInput = {
|
|
|
8194
8591
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
8195
8592
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
8196
8593
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
8594
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
8197
8595
|
};
|
|
8198
8596
|
export type TenantCreateOrConnectWithoutPropertyPaymentMethodLinksInput = {
|
|
8199
8597
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -8273,6 +8671,7 @@ export type TenantUpdateWithoutPropertyPaymentMethodLinksInput = {
|
|
|
8273
8671
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
8274
8672
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
8275
8673
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
8674
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
8276
8675
|
};
|
|
8277
8676
|
export type TenantUncheckedUpdateWithoutPropertyPaymentMethodLinksInput = {
|
|
8278
8677
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -8339,6 +8738,7 @@ export type TenantUncheckedUpdateWithoutPropertyPaymentMethodLinksInput = {
|
|
|
8339
8738
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8340
8739
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8341
8740
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8741
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8342
8742
|
};
|
|
8343
8743
|
export type TenantCreateWithoutPropertyPaymentMethodPhasesInput = {
|
|
8344
8744
|
id?: string;
|
|
@@ -8405,6 +8805,7 @@ export type TenantCreateWithoutPropertyPaymentMethodPhasesInput = {
|
|
|
8405
8805
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
8406
8806
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
8407
8807
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
8808
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
8408
8809
|
};
|
|
8409
8810
|
export type TenantUncheckedCreateWithoutPropertyPaymentMethodPhasesInput = {
|
|
8410
8811
|
id?: string;
|
|
@@ -8471,6 +8872,7 @@ export type TenantUncheckedCreateWithoutPropertyPaymentMethodPhasesInput = {
|
|
|
8471
8872
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
8472
8873
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
8473
8874
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
8875
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
8474
8876
|
};
|
|
8475
8877
|
export type TenantCreateOrConnectWithoutPropertyPaymentMethodPhasesInput = {
|
|
8476
8878
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -8550,6 +8952,7 @@ export type TenantUpdateWithoutPropertyPaymentMethodPhasesInput = {
|
|
|
8550
8952
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
8551
8953
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
8552
8954
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
8955
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
8553
8956
|
};
|
|
8554
8957
|
export type TenantUncheckedUpdateWithoutPropertyPaymentMethodPhasesInput = {
|
|
8555
8958
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -8616,6 +9019,7 @@ export type TenantUncheckedUpdateWithoutPropertyPaymentMethodPhasesInput = {
|
|
|
8616
9019
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8617
9020
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8618
9021
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9022
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8619
9023
|
};
|
|
8620
9024
|
export type TenantCreateWithoutPhaseEventAttachmentsInput = {
|
|
8621
9025
|
id?: string;
|
|
@@ -8682,6 +9086,7 @@ export type TenantCreateWithoutPhaseEventAttachmentsInput = {
|
|
|
8682
9086
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
8683
9087
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
8684
9088
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
9089
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
8685
9090
|
};
|
|
8686
9091
|
export type TenantUncheckedCreateWithoutPhaseEventAttachmentsInput = {
|
|
8687
9092
|
id?: string;
|
|
@@ -8748,6 +9153,7 @@ export type TenantUncheckedCreateWithoutPhaseEventAttachmentsInput = {
|
|
|
8748
9153
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
8749
9154
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
8750
9155
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
9156
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
8751
9157
|
};
|
|
8752
9158
|
export type TenantCreateOrConnectWithoutPhaseEventAttachmentsInput = {
|
|
8753
9159
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -8827,6 +9233,7 @@ export type TenantUpdateWithoutPhaseEventAttachmentsInput = {
|
|
|
8827
9233
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
8828
9234
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
8829
9235
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
9236
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
8830
9237
|
};
|
|
8831
9238
|
export type TenantUncheckedUpdateWithoutPhaseEventAttachmentsInput = {
|
|
8832
9239
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -8893,6 +9300,7 @@ export type TenantUncheckedUpdateWithoutPhaseEventAttachmentsInput = {
|
|
|
8893
9300
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8894
9301
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8895
9302
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9303
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
8896
9304
|
};
|
|
8897
9305
|
export type TenantCreateWithoutPaymentMethodPhaseStepsInput = {
|
|
8898
9306
|
id?: string;
|
|
@@ -8959,6 +9367,7 @@ export type TenantCreateWithoutPaymentMethodPhaseStepsInput = {
|
|
|
8959
9367
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
8960
9368
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
8961
9369
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
9370
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
8962
9371
|
};
|
|
8963
9372
|
export type TenantUncheckedCreateWithoutPaymentMethodPhaseStepsInput = {
|
|
8964
9373
|
id?: string;
|
|
@@ -9025,6 +9434,7 @@ export type TenantUncheckedCreateWithoutPaymentMethodPhaseStepsInput = {
|
|
|
9025
9434
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
9026
9435
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
9027
9436
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
9437
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
9028
9438
|
};
|
|
9029
9439
|
export type TenantCreateOrConnectWithoutPaymentMethodPhaseStepsInput = {
|
|
9030
9440
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -9104,6 +9514,7 @@ export type TenantUpdateWithoutPaymentMethodPhaseStepsInput = {
|
|
|
9104
9514
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
9105
9515
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
9106
9516
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
9517
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
9107
9518
|
};
|
|
9108
9519
|
export type TenantUncheckedUpdateWithoutPaymentMethodPhaseStepsInput = {
|
|
9109
9520
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -9170,6 +9581,7 @@ export type TenantUncheckedUpdateWithoutPaymentMethodPhaseStepsInput = {
|
|
|
9170
9581
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9171
9582
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9172
9583
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9584
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9173
9585
|
};
|
|
9174
9586
|
export type TenantCreateWithoutStepEventAttachmentsInput = {
|
|
9175
9587
|
id?: string;
|
|
@@ -9236,6 +9648,7 @@ export type TenantCreateWithoutStepEventAttachmentsInput = {
|
|
|
9236
9648
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
9237
9649
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
9238
9650
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
9651
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
9239
9652
|
};
|
|
9240
9653
|
export type TenantUncheckedCreateWithoutStepEventAttachmentsInput = {
|
|
9241
9654
|
id?: string;
|
|
@@ -9302,6 +9715,7 @@ export type TenantUncheckedCreateWithoutStepEventAttachmentsInput = {
|
|
|
9302
9715
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
9303
9716
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
9304
9717
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
9718
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
9305
9719
|
};
|
|
9306
9720
|
export type TenantCreateOrConnectWithoutStepEventAttachmentsInput = {
|
|
9307
9721
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -9381,6 +9795,7 @@ export type TenantUpdateWithoutStepEventAttachmentsInput = {
|
|
|
9381
9795
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
9382
9796
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
9383
9797
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
9798
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
9384
9799
|
};
|
|
9385
9800
|
export type TenantUncheckedUpdateWithoutStepEventAttachmentsInput = {
|
|
9386
9801
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -9447,6 +9862,7 @@ export type TenantUncheckedUpdateWithoutStepEventAttachmentsInput = {
|
|
|
9447
9862
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9448
9863
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9449
9864
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9865
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9450
9866
|
};
|
|
9451
9867
|
export type TenantCreateWithoutPaymentMethodPhaseDocumentsInput = {
|
|
9452
9868
|
id?: string;
|
|
@@ -9513,6 +9929,7 @@ export type TenantCreateWithoutPaymentMethodPhaseDocumentsInput = {
|
|
|
9513
9929
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
9514
9930
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
9515
9931
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
9932
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
9516
9933
|
};
|
|
9517
9934
|
export type TenantUncheckedCreateWithoutPaymentMethodPhaseDocumentsInput = {
|
|
9518
9935
|
id?: string;
|
|
@@ -9579,6 +9996,7 @@ export type TenantUncheckedCreateWithoutPaymentMethodPhaseDocumentsInput = {
|
|
|
9579
9996
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
9580
9997
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
9581
9998
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
9999
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
9582
10000
|
};
|
|
9583
10001
|
export type TenantCreateOrConnectWithoutPaymentMethodPhaseDocumentsInput = {
|
|
9584
10002
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -9658,6 +10076,7 @@ export type TenantUpdateWithoutPaymentMethodPhaseDocumentsInput = {
|
|
|
9658
10076
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
9659
10077
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
9660
10078
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
10079
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
9661
10080
|
};
|
|
9662
10081
|
export type TenantUncheckedUpdateWithoutPaymentMethodPhaseDocumentsInput = {
|
|
9663
10082
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -9724,6 +10143,7 @@ export type TenantUncheckedUpdateWithoutPaymentMethodPhaseDocumentsInput = {
|
|
|
9724
10143
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9725
10144
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9726
10145
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10146
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
9727
10147
|
};
|
|
9728
10148
|
export type TenantCreateWithoutPaymentMethodPhaseFieldsInput = {
|
|
9729
10149
|
id?: string;
|
|
@@ -9790,6 +10210,7 @@ export type TenantCreateWithoutPaymentMethodPhaseFieldsInput = {
|
|
|
9790
10210
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
9791
10211
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
9792
10212
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
10213
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
9793
10214
|
};
|
|
9794
10215
|
export type TenantUncheckedCreateWithoutPaymentMethodPhaseFieldsInput = {
|
|
9795
10216
|
id?: string;
|
|
@@ -9856,6 +10277,7 @@ export type TenantUncheckedCreateWithoutPaymentMethodPhaseFieldsInput = {
|
|
|
9856
10277
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
9857
10278
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
9858
10279
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
10280
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
9859
10281
|
};
|
|
9860
10282
|
export type TenantCreateOrConnectWithoutPaymentMethodPhaseFieldsInput = {
|
|
9861
10283
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -9935,6 +10357,7 @@ export type TenantUpdateWithoutPaymentMethodPhaseFieldsInput = {
|
|
|
9935
10357
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
9936
10358
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
9937
10359
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
10360
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
9938
10361
|
};
|
|
9939
10362
|
export type TenantUncheckedUpdateWithoutPaymentMethodPhaseFieldsInput = {
|
|
9940
10363
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -10001,6 +10424,7 @@ export type TenantUncheckedUpdateWithoutPaymentMethodPhaseFieldsInput = {
|
|
|
10001
10424
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10002
10425
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10003
10426
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10427
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10004
10428
|
};
|
|
10005
10429
|
export type TenantCreateWithoutApplicationsInput = {
|
|
10006
10430
|
id?: string;
|
|
@@ -10067,6 +10491,7 @@ export type TenantCreateWithoutApplicationsInput = {
|
|
|
10067
10491
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
10068
10492
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
10069
10493
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
10494
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
10070
10495
|
};
|
|
10071
10496
|
export type TenantUncheckedCreateWithoutApplicationsInput = {
|
|
10072
10497
|
id?: string;
|
|
@@ -10133,6 +10558,7 @@ export type TenantUncheckedCreateWithoutApplicationsInput = {
|
|
|
10133
10558
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
10134
10559
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
10135
10560
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
10561
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
10136
10562
|
};
|
|
10137
10563
|
export type TenantCreateOrConnectWithoutApplicationsInput = {
|
|
10138
10564
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -10212,6 +10638,7 @@ export type TenantUpdateWithoutApplicationsInput = {
|
|
|
10212
10638
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
10213
10639
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
10214
10640
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
10641
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
10215
10642
|
};
|
|
10216
10643
|
export type TenantUncheckedUpdateWithoutApplicationsInput = {
|
|
10217
10644
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -10278,6 +10705,7 @@ export type TenantUncheckedUpdateWithoutApplicationsInput = {
|
|
|
10278
10705
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10279
10706
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10280
10707
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10708
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10281
10709
|
};
|
|
10282
10710
|
export type TenantCreateWithoutApplicationOrganizationsInput = {
|
|
10283
10711
|
id?: string;
|
|
@@ -10344,6 +10772,7 @@ export type TenantCreateWithoutApplicationOrganizationsInput = {
|
|
|
10344
10772
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutTenantInput;
|
|
10345
10773
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
10346
10774
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
10775
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
10347
10776
|
};
|
|
10348
10777
|
export type TenantUncheckedCreateWithoutApplicationOrganizationsInput = {
|
|
10349
10778
|
id?: string;
|
|
@@ -10410,6 +10839,7 @@ export type TenantUncheckedCreateWithoutApplicationOrganizationsInput = {
|
|
|
10410
10839
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutTenantInput;
|
|
10411
10840
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
10412
10841
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
10842
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
10413
10843
|
};
|
|
10414
10844
|
export type TenantCreateOrConnectWithoutApplicationOrganizationsInput = {
|
|
10415
10845
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -10489,6 +10919,7 @@ export type TenantUpdateWithoutApplicationOrganizationsInput = {
|
|
|
10489
10919
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutTenantNestedInput;
|
|
10490
10920
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
10491
10921
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
10922
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
10492
10923
|
};
|
|
10493
10924
|
export type TenantUncheckedUpdateWithoutApplicationOrganizationsInput = {
|
|
10494
10925
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -10555,6 +10986,7 @@ export type TenantUncheckedUpdateWithoutApplicationOrganizationsInput = {
|
|
|
10555
10986
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10556
10987
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10557
10988
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10989
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10558
10990
|
};
|
|
10559
10991
|
export type TenantCreateWithoutContractRefundsInput = {
|
|
10560
10992
|
id?: string;
|
|
@@ -10621,6 +11053,7 @@ export type TenantCreateWithoutContractRefundsInput = {
|
|
|
10621
11053
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
10622
11054
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
10623
11055
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
11056
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
10624
11057
|
};
|
|
10625
11058
|
export type TenantUncheckedCreateWithoutContractRefundsInput = {
|
|
10626
11059
|
id?: string;
|
|
@@ -10687,6 +11120,7 @@ export type TenantUncheckedCreateWithoutContractRefundsInput = {
|
|
|
10687
11120
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
10688
11121
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
10689
11122
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
11123
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
10690
11124
|
};
|
|
10691
11125
|
export type TenantCreateOrConnectWithoutContractRefundsInput = {
|
|
10692
11126
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -10766,6 +11200,7 @@ export type TenantUpdateWithoutContractRefundsInput = {
|
|
|
10766
11200
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
10767
11201
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
10768
11202
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
11203
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
10769
11204
|
};
|
|
10770
11205
|
export type TenantUncheckedUpdateWithoutContractRefundsInput = {
|
|
10771
11206
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -10832,6 +11267,7 @@ export type TenantUncheckedUpdateWithoutContractRefundsInput = {
|
|
|
10832
11267
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10833
11268
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10834
11269
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11270
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
10835
11271
|
};
|
|
10836
11272
|
export type TenantCreateWithoutApplicationPhasesInput = {
|
|
10837
11273
|
id?: string;
|
|
@@ -10898,6 +11334,7 @@ export type TenantCreateWithoutApplicationPhasesInput = {
|
|
|
10898
11334
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
10899
11335
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
10900
11336
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
11337
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
10901
11338
|
};
|
|
10902
11339
|
export type TenantUncheckedCreateWithoutApplicationPhasesInput = {
|
|
10903
11340
|
id?: string;
|
|
@@ -10964,6 +11401,7 @@ export type TenantUncheckedCreateWithoutApplicationPhasesInput = {
|
|
|
10964
11401
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
10965
11402
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
10966
11403
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
11404
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
10967
11405
|
};
|
|
10968
11406
|
export type TenantCreateOrConnectWithoutApplicationPhasesInput = {
|
|
10969
11407
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -11043,6 +11481,7 @@ export type TenantUpdateWithoutApplicationPhasesInput = {
|
|
|
11043
11481
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
11044
11482
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
11045
11483
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
11484
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
11046
11485
|
};
|
|
11047
11486
|
export type TenantUncheckedUpdateWithoutApplicationPhasesInput = {
|
|
11048
11487
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -11109,6 +11548,7 @@ export type TenantUncheckedUpdateWithoutApplicationPhasesInput = {
|
|
|
11109
11548
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11110
11549
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11111
11550
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11551
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11112
11552
|
};
|
|
11113
11553
|
export type TenantCreateWithoutQuestionnairePhasesInput = {
|
|
11114
11554
|
id?: string;
|
|
@@ -11175,6 +11615,7 @@ export type TenantCreateWithoutQuestionnairePhasesInput = {
|
|
|
11175
11615
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
11176
11616
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
11177
11617
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
11618
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
11178
11619
|
};
|
|
11179
11620
|
export type TenantUncheckedCreateWithoutQuestionnairePhasesInput = {
|
|
11180
11621
|
id?: string;
|
|
@@ -11241,6 +11682,7 @@ export type TenantUncheckedCreateWithoutQuestionnairePhasesInput = {
|
|
|
11241
11682
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
11242
11683
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
11243
11684
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
11685
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
11244
11686
|
};
|
|
11245
11687
|
export type TenantCreateOrConnectWithoutQuestionnairePhasesInput = {
|
|
11246
11688
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -11320,6 +11762,7 @@ export type TenantUpdateWithoutQuestionnairePhasesInput = {
|
|
|
11320
11762
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
11321
11763
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
11322
11764
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
11765
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
11323
11766
|
};
|
|
11324
11767
|
export type TenantUncheckedUpdateWithoutQuestionnairePhasesInput = {
|
|
11325
11768
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -11386,6 +11829,7 @@ export type TenantUncheckedUpdateWithoutQuestionnairePhasesInput = {
|
|
|
11386
11829
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11387
11830
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11388
11831
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11832
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11389
11833
|
};
|
|
11390
11834
|
export type TenantCreateWithoutQuestionnairePhaseReviewsInput = {
|
|
11391
11835
|
id?: string;
|
|
@@ -11452,6 +11896,7 @@ export type TenantCreateWithoutQuestionnairePhaseReviewsInput = {
|
|
|
11452
11896
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
11453
11897
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
11454
11898
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
11899
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
11455
11900
|
};
|
|
11456
11901
|
export type TenantUncheckedCreateWithoutQuestionnairePhaseReviewsInput = {
|
|
11457
11902
|
id?: string;
|
|
@@ -11518,6 +11963,7 @@ export type TenantUncheckedCreateWithoutQuestionnairePhaseReviewsInput = {
|
|
|
11518
11963
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
11519
11964
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
11520
11965
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
11966
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
11521
11967
|
};
|
|
11522
11968
|
export type TenantCreateOrConnectWithoutQuestionnairePhaseReviewsInput = {
|
|
11523
11969
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -11597,6 +12043,7 @@ export type TenantUpdateWithoutQuestionnairePhaseReviewsInput = {
|
|
|
11597
12043
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
11598
12044
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
11599
12045
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
12046
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
11600
12047
|
};
|
|
11601
12048
|
export type TenantUncheckedUpdateWithoutQuestionnairePhaseReviewsInput = {
|
|
11602
12049
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -11663,6 +12110,7 @@ export type TenantUncheckedUpdateWithoutQuestionnairePhaseReviewsInput = {
|
|
|
11663
12110
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11664
12111
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11665
12112
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
12113
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11666
12114
|
};
|
|
11667
12115
|
export type TenantCreateWithoutDocumentationPhasesInput = {
|
|
11668
12116
|
id?: string;
|
|
@@ -11729,6 +12177,7 @@ export type TenantCreateWithoutDocumentationPhasesInput = {
|
|
|
11729
12177
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
11730
12178
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
11731
12179
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
12180
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
11732
12181
|
};
|
|
11733
12182
|
export type TenantUncheckedCreateWithoutDocumentationPhasesInput = {
|
|
11734
12183
|
id?: string;
|
|
@@ -11795,6 +12244,7 @@ export type TenantUncheckedCreateWithoutDocumentationPhasesInput = {
|
|
|
11795
12244
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
11796
12245
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
11797
12246
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
12247
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
11798
12248
|
};
|
|
11799
12249
|
export type TenantCreateOrConnectWithoutDocumentationPhasesInput = {
|
|
11800
12250
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -11874,6 +12324,7 @@ export type TenantUpdateWithoutDocumentationPhasesInput = {
|
|
|
11874
12324
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
11875
12325
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
11876
12326
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
12327
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
11877
12328
|
};
|
|
11878
12329
|
export type TenantUncheckedUpdateWithoutDocumentationPhasesInput = {
|
|
11879
12330
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -11940,6 +12391,7 @@ export type TenantUncheckedUpdateWithoutDocumentationPhasesInput = {
|
|
|
11940
12391
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11941
12392
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11942
12393
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
12394
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
11943
12395
|
};
|
|
11944
12396
|
export type TenantCreateWithoutPaymentPhasesInput = {
|
|
11945
12397
|
id?: string;
|
|
@@ -12006,6 +12458,7 @@ export type TenantCreateWithoutPaymentPhasesInput = {
|
|
|
12006
12458
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
12007
12459
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
12008
12460
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
12461
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
12009
12462
|
};
|
|
12010
12463
|
export type TenantUncheckedCreateWithoutPaymentPhasesInput = {
|
|
12011
12464
|
id?: string;
|
|
@@ -12072,6 +12525,7 @@ export type TenantUncheckedCreateWithoutPaymentPhasesInput = {
|
|
|
12072
12525
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
12073
12526
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
12074
12527
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
12528
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
12075
12529
|
};
|
|
12076
12530
|
export type TenantCreateOrConnectWithoutPaymentPhasesInput = {
|
|
12077
12531
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -12151,6 +12605,7 @@ export type TenantUpdateWithoutPaymentPhasesInput = {
|
|
|
12151
12605
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
12152
12606
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
12153
12607
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
12608
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
12154
12609
|
};
|
|
12155
12610
|
export type TenantUncheckedUpdateWithoutPaymentPhasesInput = {
|
|
12156
12611
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -12217,6 +12672,7 @@ export type TenantUncheckedUpdateWithoutPaymentPhasesInput = {
|
|
|
12217
12672
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
12218
12673
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
12219
12674
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
12675
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
12220
12676
|
};
|
|
12221
12677
|
export type TenantCreateWithoutQuestionnaireFieldsInput = {
|
|
12222
12678
|
id?: string;
|
|
@@ -12283,6 +12739,7 @@ export type TenantCreateWithoutQuestionnaireFieldsInput = {
|
|
|
12283
12739
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
12284
12740
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
12285
12741
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
12742
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
12286
12743
|
};
|
|
12287
12744
|
export type TenantUncheckedCreateWithoutQuestionnaireFieldsInput = {
|
|
12288
12745
|
id?: string;
|
|
@@ -12349,6 +12806,7 @@ export type TenantUncheckedCreateWithoutQuestionnaireFieldsInput = {
|
|
|
12349
12806
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
12350
12807
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
12351
12808
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
12809
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
12352
12810
|
};
|
|
12353
12811
|
export type TenantCreateOrConnectWithoutQuestionnaireFieldsInput = {
|
|
12354
12812
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -12428,6 +12886,7 @@ export type TenantUpdateWithoutQuestionnaireFieldsInput = {
|
|
|
12428
12886
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
12429
12887
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
12430
12888
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
12889
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
12431
12890
|
};
|
|
12432
12891
|
export type TenantUncheckedUpdateWithoutQuestionnaireFieldsInput = {
|
|
12433
12892
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -12494,6 +12953,7 @@ export type TenantUncheckedUpdateWithoutQuestionnaireFieldsInput = {
|
|
|
12494
12953
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
12495
12954
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
12496
12955
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
12956
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
12497
12957
|
};
|
|
12498
12958
|
export type TenantCreateWithoutApplicationEventsInput = {
|
|
12499
12959
|
id?: string;
|
|
@@ -12560,6 +13020,7 @@ export type TenantCreateWithoutApplicationEventsInput = {
|
|
|
12560
13020
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
12561
13021
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
12562
13022
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
13023
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
12563
13024
|
};
|
|
12564
13025
|
export type TenantUncheckedCreateWithoutApplicationEventsInput = {
|
|
12565
13026
|
id?: string;
|
|
@@ -12626,6 +13087,7 @@ export type TenantUncheckedCreateWithoutApplicationEventsInput = {
|
|
|
12626
13087
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
12627
13088
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
12628
13089
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
13090
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
12629
13091
|
};
|
|
12630
13092
|
export type TenantCreateOrConnectWithoutApplicationEventsInput = {
|
|
12631
13093
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -12705,6 +13167,7 @@ export type TenantUpdateWithoutApplicationEventsInput = {
|
|
|
12705
13167
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
12706
13168
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
12707
13169
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
13170
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
12708
13171
|
};
|
|
12709
13172
|
export type TenantUncheckedUpdateWithoutApplicationEventsInput = {
|
|
12710
13173
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -12771,6 +13234,7 @@ export type TenantUncheckedUpdateWithoutApplicationEventsInput = {
|
|
|
12771
13234
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
12772
13235
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
12773
13236
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13237
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
12774
13238
|
};
|
|
12775
13239
|
export type TenantCreateWithoutPaymentInstallmentsInput = {
|
|
12776
13240
|
id?: string;
|
|
@@ -12837,6 +13301,7 @@ export type TenantCreateWithoutPaymentInstallmentsInput = {
|
|
|
12837
13301
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
12838
13302
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
12839
13303
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
13304
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
12840
13305
|
};
|
|
12841
13306
|
export type TenantUncheckedCreateWithoutPaymentInstallmentsInput = {
|
|
12842
13307
|
id?: string;
|
|
@@ -12903,6 +13368,7 @@ export type TenantUncheckedCreateWithoutPaymentInstallmentsInput = {
|
|
|
12903
13368
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
12904
13369
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
12905
13370
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
13371
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
12906
13372
|
};
|
|
12907
13373
|
export type TenantCreateOrConnectWithoutPaymentInstallmentsInput = {
|
|
12908
13374
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -12982,6 +13448,7 @@ export type TenantUpdateWithoutPaymentInstallmentsInput = {
|
|
|
12982
13448
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
12983
13449
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
12984
13450
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
13451
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
12985
13452
|
};
|
|
12986
13453
|
export type TenantUncheckedUpdateWithoutPaymentInstallmentsInput = {
|
|
12987
13454
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -13048,6 +13515,7 @@ export type TenantUncheckedUpdateWithoutPaymentInstallmentsInput = {
|
|
|
13048
13515
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13049
13516
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13050
13517
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13518
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13051
13519
|
};
|
|
13052
13520
|
export type TenantCreateWithoutApplicationPaymentsInput = {
|
|
13053
13521
|
id?: string;
|
|
@@ -13114,6 +13582,7 @@ export type TenantCreateWithoutApplicationPaymentsInput = {
|
|
|
13114
13582
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
13115
13583
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
13116
13584
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
13585
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
13117
13586
|
};
|
|
13118
13587
|
export type TenantUncheckedCreateWithoutApplicationPaymentsInput = {
|
|
13119
13588
|
id?: string;
|
|
@@ -13180,6 +13649,7 @@ export type TenantUncheckedCreateWithoutApplicationPaymentsInput = {
|
|
|
13180
13649
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
13181
13650
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
13182
13651
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
13652
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
13183
13653
|
};
|
|
13184
13654
|
export type TenantCreateOrConnectWithoutApplicationPaymentsInput = {
|
|
13185
13655
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -13259,6 +13729,7 @@ export type TenantUpdateWithoutApplicationPaymentsInput = {
|
|
|
13259
13729
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
13260
13730
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
13261
13731
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
13732
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
13262
13733
|
};
|
|
13263
13734
|
export type TenantUncheckedUpdateWithoutApplicationPaymentsInput = {
|
|
13264
13735
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -13325,6 +13796,7 @@ export type TenantUncheckedUpdateWithoutApplicationPaymentsInput = {
|
|
|
13325
13796
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13326
13797
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13327
13798
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13799
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13328
13800
|
};
|
|
13329
13801
|
export type TenantCreateWithoutApplicationDocumentsInput = {
|
|
13330
13802
|
id?: string;
|
|
@@ -13391,6 +13863,7 @@ export type TenantCreateWithoutApplicationDocumentsInput = {
|
|
|
13391
13863
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
13392
13864
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
13393
13865
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
13866
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
13394
13867
|
};
|
|
13395
13868
|
export type TenantUncheckedCreateWithoutApplicationDocumentsInput = {
|
|
13396
13869
|
id?: string;
|
|
@@ -13457,6 +13930,7 @@ export type TenantUncheckedCreateWithoutApplicationDocumentsInput = {
|
|
|
13457
13930
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
13458
13931
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
13459
13932
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
13933
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
13460
13934
|
};
|
|
13461
13935
|
export type TenantCreateOrConnectWithoutApplicationDocumentsInput = {
|
|
13462
13936
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -13536,6 +14010,7 @@ export type TenantUpdateWithoutApplicationDocumentsInput = {
|
|
|
13536
14010
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
13537
14011
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
13538
14012
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
14013
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
13539
14014
|
};
|
|
13540
14015
|
export type TenantUncheckedUpdateWithoutApplicationDocumentsInput = {
|
|
13541
14016
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -13602,6 +14077,7 @@ export type TenantUncheckedUpdateWithoutApplicationDocumentsInput = {
|
|
|
13602
14077
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13603
14078
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13604
14079
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14080
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13605
14081
|
};
|
|
13606
14082
|
export type TenantCreateWithoutDocumentReviewsInput = {
|
|
13607
14083
|
id?: string;
|
|
@@ -13668,6 +14144,7 @@ export type TenantCreateWithoutDocumentReviewsInput = {
|
|
|
13668
14144
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
13669
14145
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
13670
14146
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
14147
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
13671
14148
|
};
|
|
13672
14149
|
export type TenantUncheckedCreateWithoutDocumentReviewsInput = {
|
|
13673
14150
|
id?: string;
|
|
@@ -13734,6 +14211,7 @@ export type TenantUncheckedCreateWithoutDocumentReviewsInput = {
|
|
|
13734
14211
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
13735
14212
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
13736
14213
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
14214
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
13737
14215
|
};
|
|
13738
14216
|
export type TenantCreateOrConnectWithoutDocumentReviewsInput = {
|
|
13739
14217
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -13813,6 +14291,7 @@ export type TenantUpdateWithoutDocumentReviewsInput = {
|
|
|
13813
14291
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
13814
14292
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
13815
14293
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
14294
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
13816
14295
|
};
|
|
13817
14296
|
export type TenantUncheckedUpdateWithoutDocumentReviewsInput = {
|
|
13818
14297
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -13879,6 +14358,7 @@ export type TenantUncheckedUpdateWithoutDocumentReviewsInput = {
|
|
|
13879
14358
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13880
14359
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13881
14360
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14361
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
13882
14362
|
};
|
|
13883
14363
|
export type TenantCreateWithoutApprovalStageProgressInput = {
|
|
13884
14364
|
id?: string;
|
|
@@ -13945,6 +14425,7 @@ export type TenantCreateWithoutApprovalStageProgressInput = {
|
|
|
13945
14425
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
13946
14426
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
13947
14427
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
14428
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
13948
14429
|
};
|
|
13949
14430
|
export type TenantUncheckedCreateWithoutApprovalStageProgressInput = {
|
|
13950
14431
|
id?: string;
|
|
@@ -14011,6 +14492,7 @@ export type TenantUncheckedCreateWithoutApprovalStageProgressInput = {
|
|
|
14011
14492
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
14012
14493
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
14013
14494
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
14495
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
14014
14496
|
};
|
|
14015
14497
|
export type TenantCreateOrConnectWithoutApprovalStageProgressInput = {
|
|
14016
14498
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -14090,6 +14572,7 @@ export type TenantUpdateWithoutApprovalStageProgressInput = {
|
|
|
14090
14572
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
14091
14573
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
14092
14574
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
14575
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
14093
14576
|
};
|
|
14094
14577
|
export type TenantUncheckedUpdateWithoutApprovalStageProgressInput = {
|
|
14095
14578
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -14156,6 +14639,7 @@ export type TenantUncheckedUpdateWithoutApprovalStageProgressInput = {
|
|
|
14156
14639
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14157
14640
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14158
14641
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14642
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14159
14643
|
};
|
|
14160
14644
|
export type TenantCreateWithoutDocumentApprovalsInput = {
|
|
14161
14645
|
id?: string;
|
|
@@ -14222,6 +14706,7 @@ export type TenantCreateWithoutDocumentApprovalsInput = {
|
|
|
14222
14706
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
14223
14707
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
14224
14708
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
14709
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
14225
14710
|
};
|
|
14226
14711
|
export type TenantUncheckedCreateWithoutDocumentApprovalsInput = {
|
|
14227
14712
|
id?: string;
|
|
@@ -14288,6 +14773,7 @@ export type TenantUncheckedCreateWithoutDocumentApprovalsInput = {
|
|
|
14288
14773
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
14289
14774
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
14290
14775
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
14776
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
14291
14777
|
};
|
|
14292
14778
|
export type TenantCreateOrConnectWithoutDocumentApprovalsInput = {
|
|
14293
14779
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -14367,6 +14853,7 @@ export type TenantUpdateWithoutDocumentApprovalsInput = {
|
|
|
14367
14853
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
14368
14854
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
14369
14855
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
14856
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
14370
14857
|
};
|
|
14371
14858
|
export type TenantUncheckedUpdateWithoutDocumentApprovalsInput = {
|
|
14372
14859
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -14433,6 +14920,7 @@ export type TenantUncheckedUpdateWithoutDocumentApprovalsInput = {
|
|
|
14433
14920
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14434
14921
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14435
14922
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14923
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14436
14924
|
};
|
|
14437
14925
|
export type TenantCreateWithoutDocumentTemplatesInput = {
|
|
14438
14926
|
id?: string;
|
|
@@ -14499,6 +14987,7 @@ export type TenantCreateWithoutDocumentTemplatesInput = {
|
|
|
14499
14987
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
14500
14988
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
14501
14989
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
14990
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
14502
14991
|
};
|
|
14503
14992
|
export type TenantUncheckedCreateWithoutDocumentTemplatesInput = {
|
|
14504
14993
|
id?: string;
|
|
@@ -14565,6 +15054,7 @@ export type TenantUncheckedCreateWithoutDocumentTemplatesInput = {
|
|
|
14565
15054
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
14566
15055
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
14567
15056
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
15057
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
14568
15058
|
};
|
|
14569
15059
|
export type TenantCreateOrConnectWithoutDocumentTemplatesInput = {
|
|
14570
15060
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -14644,6 +15134,7 @@ export type TenantUpdateWithoutDocumentTemplatesInput = {
|
|
|
14644
15134
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
14645
15135
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
14646
15136
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
15137
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
14647
15138
|
};
|
|
14648
15139
|
export type TenantUncheckedUpdateWithoutDocumentTemplatesInput = {
|
|
14649
15140
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -14710,6 +15201,7 @@ export type TenantUncheckedUpdateWithoutDocumentTemplatesInput = {
|
|
|
14710
15201
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14711
15202
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14712
15203
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
15204
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14713
15205
|
};
|
|
14714
15206
|
export type TenantCreateWithoutOfferLettersInput = {
|
|
14715
15207
|
id?: string;
|
|
@@ -14776,6 +15268,7 @@ export type TenantCreateWithoutOfferLettersInput = {
|
|
|
14776
15268
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
14777
15269
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
14778
15270
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
15271
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
14779
15272
|
};
|
|
14780
15273
|
export type TenantUncheckedCreateWithoutOfferLettersInput = {
|
|
14781
15274
|
id?: string;
|
|
@@ -14842,6 +15335,7 @@ export type TenantUncheckedCreateWithoutOfferLettersInput = {
|
|
|
14842
15335
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
14843
15336
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
14844
15337
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
15338
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
14845
15339
|
};
|
|
14846
15340
|
export type TenantCreateOrConnectWithoutOfferLettersInput = {
|
|
14847
15341
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -14921,6 +15415,7 @@ export type TenantUpdateWithoutOfferLettersInput = {
|
|
|
14921
15415
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
14922
15416
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
14923
15417
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
15418
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
14924
15419
|
};
|
|
14925
15420
|
export type TenantUncheckedUpdateWithoutOfferLettersInput = {
|
|
14926
15421
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -14987,6 +15482,7 @@ export type TenantUncheckedUpdateWithoutOfferLettersInput = {
|
|
|
14987
15482
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14988
15483
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14989
15484
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
15485
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
14990
15486
|
};
|
|
14991
15487
|
export type TenantCreateWithoutContractTerminationsInput = {
|
|
14992
15488
|
id?: string;
|
|
@@ -15053,6 +15549,7 @@ export type TenantCreateWithoutContractTerminationsInput = {
|
|
|
15053
15549
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
15054
15550
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
15055
15551
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
15552
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
15056
15553
|
};
|
|
15057
15554
|
export type TenantUncheckedCreateWithoutContractTerminationsInput = {
|
|
15058
15555
|
id?: string;
|
|
@@ -15119,6 +15616,7 @@ export type TenantUncheckedCreateWithoutContractTerminationsInput = {
|
|
|
15119
15616
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
15120
15617
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
15121
15618
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
15619
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
15122
15620
|
};
|
|
15123
15621
|
export type TenantCreateOrConnectWithoutContractTerminationsInput = {
|
|
15124
15622
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -15198,6 +15696,7 @@ export type TenantUpdateWithoutContractTerminationsInput = {
|
|
|
15198
15696
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
15199
15697
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
15200
15698
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
15699
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
15201
15700
|
};
|
|
15202
15701
|
export type TenantUncheckedUpdateWithoutContractTerminationsInput = {
|
|
15203
15702
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -15264,6 +15763,7 @@ export type TenantUncheckedUpdateWithoutContractTerminationsInput = {
|
|
|
15264
15763
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
15265
15764
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
15266
15765
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
15766
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
15267
15767
|
};
|
|
15268
15768
|
export type TenantCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
15269
15769
|
id?: string;
|
|
@@ -15330,6 +15830,7 @@ export type TenantCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
15330
15830
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
15331
15831
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
15332
15832
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
15833
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
15333
15834
|
};
|
|
15334
15835
|
export type TenantUncheckedCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
15335
15836
|
id?: string;
|
|
@@ -15396,6 +15897,7 @@ export type TenantUncheckedCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
15396
15897
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
15397
15898
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
15398
15899
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
15900
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
15399
15901
|
};
|
|
15400
15902
|
export type TenantCreateOrConnectWithoutPaymentMethodChangeRequestsInput = {
|
|
15401
15903
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -15475,6 +15977,7 @@ export type TenantUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
15475
15977
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
15476
15978
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
15477
15979
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
15980
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
15478
15981
|
};
|
|
15479
15982
|
export type TenantUncheckedUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
15480
15983
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -15541,6 +16044,7 @@ export type TenantUncheckedUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
15541
16044
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
15542
16045
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
15543
16046
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
16047
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
15544
16048
|
};
|
|
15545
16049
|
export type TenantCreateWithoutDocumentRequirementRulesInput = {
|
|
15546
16050
|
id?: string;
|
|
@@ -15607,6 +16111,7 @@ export type TenantCreateWithoutDocumentRequirementRulesInput = {
|
|
|
15607
16111
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
15608
16112
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
15609
16113
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
16114
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
15610
16115
|
};
|
|
15611
16116
|
export type TenantUncheckedCreateWithoutDocumentRequirementRulesInput = {
|
|
15612
16117
|
id?: string;
|
|
@@ -15673,6 +16178,7 @@ export type TenantUncheckedCreateWithoutDocumentRequirementRulesInput = {
|
|
|
15673
16178
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
15674
16179
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
15675
16180
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
16181
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
15676
16182
|
};
|
|
15677
16183
|
export type TenantCreateOrConnectWithoutDocumentRequirementRulesInput = {
|
|
15678
16184
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -15752,6 +16258,7 @@ export type TenantUpdateWithoutDocumentRequirementRulesInput = {
|
|
|
15752
16258
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
15753
16259
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
15754
16260
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
16261
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
15755
16262
|
};
|
|
15756
16263
|
export type TenantUncheckedUpdateWithoutDocumentRequirementRulesInput = {
|
|
15757
16264
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -15818,6 +16325,7 @@ export type TenantUncheckedUpdateWithoutDocumentRequirementRulesInput = {
|
|
|
15818
16325
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
15819
16326
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
15820
16327
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
16328
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
15821
16329
|
};
|
|
15822
16330
|
export type TenantCreateWithoutEventChannelsInput = {
|
|
15823
16331
|
id?: string;
|
|
@@ -15884,6 +16392,7 @@ export type TenantCreateWithoutEventChannelsInput = {
|
|
|
15884
16392
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
15885
16393
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
15886
16394
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
16395
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
15887
16396
|
};
|
|
15888
16397
|
export type TenantUncheckedCreateWithoutEventChannelsInput = {
|
|
15889
16398
|
id?: string;
|
|
@@ -15950,6 +16459,7 @@ export type TenantUncheckedCreateWithoutEventChannelsInput = {
|
|
|
15950
16459
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
15951
16460
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
15952
16461
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
16462
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
15953
16463
|
};
|
|
15954
16464
|
export type TenantCreateOrConnectWithoutEventChannelsInput = {
|
|
15955
16465
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -16029,6 +16539,7 @@ export type TenantUpdateWithoutEventChannelsInput = {
|
|
|
16029
16539
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
16030
16540
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
16031
16541
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
16542
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
16032
16543
|
};
|
|
16033
16544
|
export type TenantUncheckedUpdateWithoutEventChannelsInput = {
|
|
16034
16545
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -16095,6 +16606,7 @@ export type TenantUncheckedUpdateWithoutEventChannelsInput = {
|
|
|
16095
16606
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
16096
16607
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
16097
16608
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
16609
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
16098
16610
|
};
|
|
16099
16611
|
export type TenantCreateWithoutEventTypesInput = {
|
|
16100
16612
|
id?: string;
|
|
@@ -16161,6 +16673,7 @@ export type TenantCreateWithoutEventTypesInput = {
|
|
|
16161
16673
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
16162
16674
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
16163
16675
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
16676
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
16164
16677
|
};
|
|
16165
16678
|
export type TenantUncheckedCreateWithoutEventTypesInput = {
|
|
16166
16679
|
id?: string;
|
|
@@ -16227,6 +16740,7 @@ export type TenantUncheckedCreateWithoutEventTypesInput = {
|
|
|
16227
16740
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
16228
16741
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
16229
16742
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
16743
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
16230
16744
|
};
|
|
16231
16745
|
export type TenantCreateOrConnectWithoutEventTypesInput = {
|
|
16232
16746
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -16306,6 +16820,7 @@ export type TenantUpdateWithoutEventTypesInput = {
|
|
|
16306
16820
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
16307
16821
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
16308
16822
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
16823
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
16309
16824
|
};
|
|
16310
16825
|
export type TenantUncheckedUpdateWithoutEventTypesInput = {
|
|
16311
16826
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -16372,6 +16887,7 @@ export type TenantUncheckedUpdateWithoutEventTypesInput = {
|
|
|
16372
16887
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
16373
16888
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
16374
16889
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
16890
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
16375
16891
|
};
|
|
16376
16892
|
export type TenantCreateWithoutEventHandlersInput = {
|
|
16377
16893
|
id?: string;
|
|
@@ -16438,6 +16954,7 @@ export type TenantCreateWithoutEventHandlersInput = {
|
|
|
16438
16954
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
16439
16955
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
16440
16956
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
16957
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
16441
16958
|
};
|
|
16442
16959
|
export type TenantUncheckedCreateWithoutEventHandlersInput = {
|
|
16443
16960
|
id?: string;
|
|
@@ -16504,6 +17021,7 @@ export type TenantUncheckedCreateWithoutEventHandlersInput = {
|
|
|
16504
17021
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
16505
17022
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
16506
17023
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
17024
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
16507
17025
|
};
|
|
16508
17026
|
export type TenantCreateOrConnectWithoutEventHandlersInput = {
|
|
16509
17027
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -16583,6 +17101,7 @@ export type TenantUpdateWithoutEventHandlersInput = {
|
|
|
16583
17101
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
16584
17102
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
16585
17103
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
17104
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
16586
17105
|
};
|
|
16587
17106
|
export type TenantUncheckedUpdateWithoutEventHandlersInput = {
|
|
16588
17107
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -16649,6 +17168,7 @@ export type TenantUncheckedUpdateWithoutEventHandlersInput = {
|
|
|
16649
17168
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
16650
17169
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
16651
17170
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
17171
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
16652
17172
|
};
|
|
16653
17173
|
export type TenantCreateWithoutDomainEventsInput = {
|
|
16654
17174
|
id?: string;
|
|
@@ -16715,6 +17235,7 @@ export type TenantCreateWithoutDomainEventsInput = {
|
|
|
16715
17235
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
16716
17236
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
16717
17237
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
17238
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
16718
17239
|
};
|
|
16719
17240
|
export type TenantUncheckedCreateWithoutDomainEventsInput = {
|
|
16720
17241
|
id?: string;
|
|
@@ -16781,6 +17302,7 @@ export type TenantUncheckedCreateWithoutDomainEventsInput = {
|
|
|
16781
17302
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
16782
17303
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
16783
17304
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
17305
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
16784
17306
|
};
|
|
16785
17307
|
export type TenantCreateOrConnectWithoutDomainEventsInput = {
|
|
16786
17308
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -16860,6 +17382,7 @@ export type TenantUpdateWithoutDomainEventsInput = {
|
|
|
16860
17382
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
16861
17383
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
16862
17384
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
17385
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
16863
17386
|
};
|
|
16864
17387
|
export type TenantUncheckedUpdateWithoutDomainEventsInput = {
|
|
16865
17388
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -16926,6 +17449,7 @@ export type TenantUncheckedUpdateWithoutDomainEventsInput = {
|
|
|
16926
17449
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
16927
17450
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
16928
17451
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
17452
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
16929
17453
|
};
|
|
16930
17454
|
export type TenantCreateWithoutPropertyTransferRequestsInput = {
|
|
16931
17455
|
id?: string;
|
|
@@ -16992,6 +17516,7 @@ export type TenantCreateWithoutPropertyTransferRequestsInput = {
|
|
|
16992
17516
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
16993
17517
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
16994
17518
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
17519
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
16995
17520
|
};
|
|
16996
17521
|
export type TenantUncheckedCreateWithoutPropertyTransferRequestsInput = {
|
|
16997
17522
|
id?: string;
|
|
@@ -17058,6 +17583,7 @@ export type TenantUncheckedCreateWithoutPropertyTransferRequestsInput = {
|
|
|
17058
17583
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
17059
17584
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
17060
17585
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
17586
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
17061
17587
|
};
|
|
17062
17588
|
export type TenantCreateOrConnectWithoutPropertyTransferRequestsInput = {
|
|
17063
17589
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -17137,6 +17663,7 @@ export type TenantUpdateWithoutPropertyTransferRequestsInput = {
|
|
|
17137
17663
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
17138
17664
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
17139
17665
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
17666
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
17140
17667
|
};
|
|
17141
17668
|
export type TenantUncheckedUpdateWithoutPropertyTransferRequestsInput = {
|
|
17142
17669
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -17203,6 +17730,7 @@ export type TenantUncheckedUpdateWithoutPropertyTransferRequestsInput = {
|
|
|
17203
17730
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
17204
17731
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
17205
17732
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
17733
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
17206
17734
|
};
|
|
17207
17735
|
export type TenantCreateWithoutApprovalRequestsInput = {
|
|
17208
17736
|
id?: string;
|
|
@@ -17269,6 +17797,7 @@ export type TenantCreateWithoutApprovalRequestsInput = {
|
|
|
17269
17797
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
17270
17798
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
17271
17799
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
17800
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
17272
17801
|
};
|
|
17273
17802
|
export type TenantUncheckedCreateWithoutApprovalRequestsInput = {
|
|
17274
17803
|
id?: string;
|
|
@@ -17335,6 +17864,7 @@ export type TenantUncheckedCreateWithoutApprovalRequestsInput = {
|
|
|
17335
17864
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
17336
17865
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
17337
17866
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
17867
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
17338
17868
|
};
|
|
17339
17869
|
export type TenantCreateOrConnectWithoutApprovalRequestsInput = {
|
|
17340
17870
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -17414,6 +17944,7 @@ export type TenantUpdateWithoutApprovalRequestsInput = {
|
|
|
17414
17944
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
17415
17945
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
17416
17946
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
17947
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
17417
17948
|
};
|
|
17418
17949
|
export type TenantUncheckedUpdateWithoutApprovalRequestsInput = {
|
|
17419
17950
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -17480,6 +18011,7 @@ export type TenantUncheckedUpdateWithoutApprovalRequestsInput = {
|
|
|
17480
18011
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
17481
18012
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
17482
18013
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
18014
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
17483
18015
|
};
|
|
17484
18016
|
export type TenantCreateWithoutWorkflowBlockersInput = {
|
|
17485
18017
|
id?: string;
|
|
@@ -17546,6 +18078,7 @@ export type TenantCreateWithoutWorkflowBlockersInput = {
|
|
|
17546
18078
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutTenantInput;
|
|
17547
18079
|
organizations?: Prisma.OrganizationCreateNestedManyWithoutTenantInput;
|
|
17548
18080
|
applicationOrganizations?: Prisma.ApplicationOrganizationCreateNestedManyWithoutTenantInput;
|
|
18081
|
+
organizationTypes?: Prisma.OrganizationTypeCreateNestedManyWithoutTenantInput;
|
|
17549
18082
|
};
|
|
17550
18083
|
export type TenantUncheckedCreateWithoutWorkflowBlockersInput = {
|
|
17551
18084
|
id?: string;
|
|
@@ -17612,6 +18145,7 @@ export type TenantUncheckedCreateWithoutWorkflowBlockersInput = {
|
|
|
17612
18145
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutTenantInput;
|
|
17613
18146
|
organizations?: Prisma.OrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
17614
18147
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedCreateNestedManyWithoutTenantInput;
|
|
18148
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedCreateNestedManyWithoutTenantInput;
|
|
17615
18149
|
};
|
|
17616
18150
|
export type TenantCreateOrConnectWithoutWorkflowBlockersInput = {
|
|
17617
18151
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -17691,6 +18225,7 @@ export type TenantUpdateWithoutWorkflowBlockersInput = {
|
|
|
17691
18225
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutTenantNestedInput;
|
|
17692
18226
|
organizations?: Prisma.OrganizationUpdateManyWithoutTenantNestedInput;
|
|
17693
18227
|
applicationOrganizations?: Prisma.ApplicationOrganizationUpdateManyWithoutTenantNestedInput;
|
|
18228
|
+
organizationTypes?: Prisma.OrganizationTypeUpdateManyWithoutTenantNestedInput;
|
|
17694
18229
|
};
|
|
17695
18230
|
export type TenantUncheckedUpdateWithoutWorkflowBlockersInput = {
|
|
17696
18231
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -17757,6 +18292,7 @@ export type TenantUncheckedUpdateWithoutWorkflowBlockersInput = {
|
|
|
17757
18292
|
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutTenantNestedInput;
|
|
17758
18293
|
organizations?: Prisma.OrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
17759
18294
|
applicationOrganizations?: Prisma.ApplicationOrganizationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
18295
|
+
organizationTypes?: Prisma.OrganizationTypeUncheckedUpdateManyWithoutTenantNestedInput;
|
|
17760
18296
|
};
|
|
17761
18297
|
/**
|
|
17762
18298
|
* Count Type TenantCountOutputType
|
|
@@ -17821,6 +18357,7 @@ export type TenantCountOutputType = {
|
|
|
17821
18357
|
bankDocumentRequirements: number;
|
|
17822
18358
|
organizations: number;
|
|
17823
18359
|
applicationOrganizations: number;
|
|
18360
|
+
organizationTypes: number;
|
|
17824
18361
|
};
|
|
17825
18362
|
export type TenantCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
17826
18363
|
users?: boolean | TenantCountOutputTypeCountUsersArgs;
|
|
@@ -17882,6 +18419,7 @@ export type TenantCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions
|
|
|
17882
18419
|
bankDocumentRequirements?: boolean | TenantCountOutputTypeCountBankDocumentRequirementsArgs;
|
|
17883
18420
|
organizations?: boolean | TenantCountOutputTypeCountOrganizationsArgs;
|
|
17884
18421
|
applicationOrganizations?: boolean | TenantCountOutputTypeCountApplicationOrganizationsArgs;
|
|
18422
|
+
organizationTypes?: boolean | TenantCountOutputTypeCountOrganizationTypesArgs;
|
|
17885
18423
|
};
|
|
17886
18424
|
/**
|
|
17887
18425
|
* TenantCountOutputType without action
|
|
@@ -18246,6 +18784,12 @@ export type TenantCountOutputTypeCountOrganizationsArgs<ExtArgs extends runtime.
|
|
|
18246
18784
|
export type TenantCountOutputTypeCountApplicationOrganizationsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
18247
18785
|
where?: Prisma.ApplicationOrganizationWhereInput;
|
|
18248
18786
|
};
|
|
18787
|
+
/**
|
|
18788
|
+
* TenantCountOutputType without action
|
|
18789
|
+
*/
|
|
18790
|
+
export type TenantCountOutputTypeCountOrganizationTypesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
18791
|
+
where?: Prisma.OrganizationTypeWhereInput;
|
|
18792
|
+
};
|
|
18249
18793
|
export type TenantSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
18250
18794
|
id?: boolean;
|
|
18251
18795
|
name?: boolean;
|
|
@@ -18312,6 +18856,7 @@ export type TenantSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
18312
18856
|
bankDocumentRequirements?: boolean | Prisma.Tenant$bankDocumentRequirementsArgs<ExtArgs>;
|
|
18313
18857
|
organizations?: boolean | Prisma.Tenant$organizationsArgs<ExtArgs>;
|
|
18314
18858
|
applicationOrganizations?: boolean | Prisma.Tenant$applicationOrganizationsArgs<ExtArgs>;
|
|
18859
|
+
organizationTypes?: boolean | Prisma.Tenant$organizationTypesArgs<ExtArgs>;
|
|
18315
18860
|
_count?: boolean | Prisma.TenantCountOutputTypeDefaultArgs<ExtArgs>;
|
|
18316
18861
|
}, ExtArgs["result"]["tenant"]>;
|
|
18317
18862
|
export type TenantSelectScalar = {
|
|
@@ -18383,6 +18928,7 @@ export type TenantInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
18383
18928
|
bankDocumentRequirements?: boolean | Prisma.Tenant$bankDocumentRequirementsArgs<ExtArgs>;
|
|
18384
18929
|
organizations?: boolean | Prisma.Tenant$organizationsArgs<ExtArgs>;
|
|
18385
18930
|
applicationOrganizations?: boolean | Prisma.Tenant$applicationOrganizationsArgs<ExtArgs>;
|
|
18931
|
+
organizationTypes?: boolean | Prisma.Tenant$organizationTypesArgs<ExtArgs>;
|
|
18386
18932
|
_count?: boolean | Prisma.TenantCountOutputTypeDefaultArgs<ExtArgs>;
|
|
18387
18933
|
};
|
|
18388
18934
|
export type $TenantPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
@@ -18447,6 +18993,7 @@ export type $TenantPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
18447
18993
|
bankDocumentRequirements: Prisma.$BankDocumentRequirementPayload<ExtArgs>[];
|
|
18448
18994
|
organizations: Prisma.$OrganizationPayload<ExtArgs>[];
|
|
18449
18995
|
applicationOrganizations: Prisma.$ApplicationOrganizationPayload<ExtArgs>[];
|
|
18996
|
+
organizationTypes: Prisma.$OrganizationTypePayload<ExtArgs>[];
|
|
18450
18997
|
};
|
|
18451
18998
|
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
|
18452
18999
|
id: string;
|
|
@@ -18791,6 +19338,7 @@ export interface Prisma__TenantClient<T, Null = never, ExtArgs extends runtime.T
|
|
|
18791
19338
|
bankDocumentRequirements<T extends Prisma.Tenant$bankDocumentRequirementsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Tenant$bankDocumentRequirementsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$BankDocumentRequirementPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
18792
19339
|
organizations<T extends Prisma.Tenant$organizationsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Tenant$organizationsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$OrganizationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
18793
19340
|
applicationOrganizations<T extends Prisma.Tenant$applicationOrganizationsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Tenant$applicationOrganizationsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ApplicationOrganizationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
19341
|
+
organizationTypes<T extends Prisma.Tenant$organizationTypesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Tenant$organizationTypesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$OrganizationTypePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
18794
19342
|
/**
|
|
18795
19343
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
18796
19344
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -20506,6 +21054,29 @@ export type Tenant$applicationOrganizationsArgs<ExtArgs extends runtime.Types.Ex
|
|
|
20506
21054
|
skip?: number;
|
|
20507
21055
|
distinct?: Prisma.ApplicationOrganizationScalarFieldEnum | Prisma.ApplicationOrganizationScalarFieldEnum[];
|
|
20508
21056
|
};
|
|
21057
|
+
/**
|
|
21058
|
+
* Tenant.organizationTypes
|
|
21059
|
+
*/
|
|
21060
|
+
export type Tenant$organizationTypesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
21061
|
+
/**
|
|
21062
|
+
* Select specific fields to fetch from the OrganizationType
|
|
21063
|
+
*/
|
|
21064
|
+
select?: Prisma.OrganizationTypeSelect<ExtArgs> | null;
|
|
21065
|
+
/**
|
|
21066
|
+
* Omit specific fields from the OrganizationType
|
|
21067
|
+
*/
|
|
21068
|
+
omit?: Prisma.OrganizationTypeOmit<ExtArgs> | null;
|
|
21069
|
+
/**
|
|
21070
|
+
* Choose, which related nodes to fetch as well
|
|
21071
|
+
*/
|
|
21072
|
+
include?: Prisma.OrganizationTypeInclude<ExtArgs> | null;
|
|
21073
|
+
where?: Prisma.OrganizationTypeWhereInput;
|
|
21074
|
+
orderBy?: Prisma.OrganizationTypeOrderByWithRelationInput | Prisma.OrganizationTypeOrderByWithRelationInput[];
|
|
21075
|
+
cursor?: Prisma.OrganizationTypeWhereUniqueInput;
|
|
21076
|
+
take?: number;
|
|
21077
|
+
skip?: number;
|
|
21078
|
+
distinct?: Prisma.OrganizationTypeScalarFieldEnum | Prisma.OrganizationTypeScalarFieldEnum[];
|
|
21079
|
+
};
|
|
20509
21080
|
/**
|
|
20510
21081
|
* Tenant without action
|
|
20511
21082
|
*/
|