@valentine-efagene/qshelter-common 2.0.138 → 2.0.140
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 +17 -17
- package/dist/generated/client/client.d.ts +17 -17
- package/dist/generated/client/commonInputTypes.d.ts +142 -202
- package/dist/generated/client/enums.d.ts +23 -0
- package/dist/generated/client/enums.js +21 -1
- package/dist/generated/client/internal/class.d.ts +37 -37
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +348 -377
- package/dist/generated/client/internal/prismaNamespace.js +91 -116
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +97 -122
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +91 -116
- package/dist/generated/client/models/ApplicationDocument.d.ts +290 -1
- package/dist/generated/client/models/ApprovalStage.d.ts +1605 -0
- package/dist/generated/client/models/ApprovalStage.js +1 -0
- package/dist/generated/client/models/ApprovalStageProgress.d.ts +2329 -0
- package/dist/generated/client/models/ApprovalStageProgress.js +1 -0
- package/dist/generated/client/models/DocumentApproval.d.ts +1611 -0
- package/dist/generated/client/models/DocumentApproval.js +1 -0
- package/dist/generated/client/models/DocumentDefinition.d.ts +1475 -0
- package/dist/generated/client/models/DocumentDefinition.js +1 -0
- package/dist/generated/client/models/DocumentReview.d.ts +0 -3
- package/dist/generated/client/models/DocumentationPhase.d.ts +215 -629
- package/dist/generated/client/models/DocumentationPlan.d.ts +188 -57
- package/dist/generated/client/models/PaymentMethodPhaseStep.d.ts +3 -0
- package/dist/generated/client/models/Tenant.d.ts +640 -1203
- package/dist/generated/client/models/User.d.ts +414 -817
- package/dist/generated/client/models/index.d.ts +4 -4
- package/dist/generated/client/models/index.js +4 -4
- package/dist/generated/client/models.d.ts +4 -4
- package/dist/src/utils/documentation-enums.d.ts +10 -1
- package/dist/src/utils/documentation-enums.js +8 -0
- package/package.json +1 -1
- package/prisma/migrations/20260119190336_add_document_approval_workflow/migration.sql +134 -0
- package/prisma/schema.prisma +229 -214
|
@@ -248,10 +248,9 @@ export type UserWhereInput = {
|
|
|
248
248
|
applications?: Prisma.ApplicationListRelationFilter;
|
|
249
249
|
soldApplications?: Prisma.ApplicationListRelationFilter;
|
|
250
250
|
applicationPayments?: Prisma.ApplicationPaymentListRelationFilter;
|
|
251
|
-
assignedSteps?: Prisma.DocumentationStepListRelationFilter;
|
|
252
|
-
gateActedSteps?: Prisma.DocumentationStepListRelationFilter;
|
|
253
|
-
stepApprovals?: Prisma.DocumentationStepApprovalListRelationFilter;
|
|
254
251
|
uploadedDocs?: Prisma.ApplicationDocumentListRelationFilter;
|
|
252
|
+
documentApprovals?: Prisma.DocumentApprovalListRelationFilter;
|
|
253
|
+
completedStages?: Prisma.ApprovalStageProgressListRelationFilter;
|
|
255
254
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestListRelationFilter;
|
|
256
255
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestListRelationFilter;
|
|
257
256
|
initiatedTerminations?: Prisma.ApplicationTerminationListRelationFilter;
|
|
@@ -301,10 +300,9 @@ export type UserOrderByWithRelationInput = {
|
|
|
301
300
|
applications?: Prisma.ApplicationOrderByRelationAggregateInput;
|
|
302
301
|
soldApplications?: Prisma.ApplicationOrderByRelationAggregateInput;
|
|
303
302
|
applicationPayments?: Prisma.ApplicationPaymentOrderByRelationAggregateInput;
|
|
304
|
-
assignedSteps?: Prisma.DocumentationStepOrderByRelationAggregateInput;
|
|
305
|
-
gateActedSteps?: Prisma.DocumentationStepOrderByRelationAggregateInput;
|
|
306
|
-
stepApprovals?: Prisma.DocumentationStepApprovalOrderByRelationAggregateInput;
|
|
307
303
|
uploadedDocs?: Prisma.ApplicationDocumentOrderByRelationAggregateInput;
|
|
304
|
+
documentApprovals?: Prisma.DocumentApprovalOrderByRelationAggregateInput;
|
|
305
|
+
completedStages?: Prisma.ApprovalStageProgressOrderByRelationAggregateInput;
|
|
308
306
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestOrderByRelationAggregateInput;
|
|
309
307
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestOrderByRelationAggregateInput;
|
|
310
308
|
initiatedTerminations?: Prisma.ApplicationTerminationOrderByRelationAggregateInput;
|
|
@@ -358,10 +356,9 @@ export type UserWhereUniqueInput = Prisma.AtLeast<{
|
|
|
358
356
|
applications?: Prisma.ApplicationListRelationFilter;
|
|
359
357
|
soldApplications?: Prisma.ApplicationListRelationFilter;
|
|
360
358
|
applicationPayments?: Prisma.ApplicationPaymentListRelationFilter;
|
|
361
|
-
assignedSteps?: Prisma.DocumentationStepListRelationFilter;
|
|
362
|
-
gateActedSteps?: Prisma.DocumentationStepListRelationFilter;
|
|
363
|
-
stepApprovals?: Prisma.DocumentationStepApprovalListRelationFilter;
|
|
364
359
|
uploadedDocs?: Prisma.ApplicationDocumentListRelationFilter;
|
|
360
|
+
documentApprovals?: Prisma.DocumentApprovalListRelationFilter;
|
|
361
|
+
completedStages?: Prisma.ApprovalStageProgressListRelationFilter;
|
|
365
362
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestListRelationFilter;
|
|
366
363
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestListRelationFilter;
|
|
367
364
|
initiatedTerminations?: Prisma.ApplicationTerminationListRelationFilter;
|
|
@@ -453,10 +450,9 @@ export type UserCreateInput = {
|
|
|
453
450
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
454
451
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
455
452
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
456
|
-
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
457
|
-
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
458
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
459
453
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
454
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
455
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
460
456
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
461
457
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
462
458
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
@@ -504,10 +500,9 @@ export type UserUncheckedCreateInput = {
|
|
|
504
500
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
505
501
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
506
502
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
507
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
508
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
509
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
510
503
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
504
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
505
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
511
506
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
512
507
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
513
508
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
@@ -555,10 +550,9 @@ export type UserUpdateInput = {
|
|
|
555
550
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
556
551
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
557
552
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
558
|
-
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
559
|
-
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
560
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
561
553
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
554
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
555
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
562
556
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
563
557
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
564
558
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -606,10 +600,9 @@ export type UserUncheckedUpdateInput = {
|
|
|
606
600
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
607
601
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
608
602
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
609
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
610
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
611
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
612
603
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
604
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
605
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
613
606
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
614
607
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
615
608
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -1027,48 +1020,6 @@ export type UserUpdateOneWithoutProcessedRefundsNestedInput = {
|
|
|
1027
1020
|
connect?: Prisma.UserWhereUniqueInput;
|
|
1028
1021
|
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutProcessedRefundsInput, Prisma.UserUpdateWithoutProcessedRefundsInput>, Prisma.UserUncheckedUpdateWithoutProcessedRefundsInput>;
|
|
1029
1022
|
};
|
|
1030
|
-
export type UserCreateNestedOneWithoutAssignedStepsInput = {
|
|
1031
|
-
create?: Prisma.XOR<Prisma.UserCreateWithoutAssignedStepsInput, Prisma.UserUncheckedCreateWithoutAssignedStepsInput>;
|
|
1032
|
-
connectOrCreate?: Prisma.UserCreateOrConnectWithoutAssignedStepsInput;
|
|
1033
|
-
connect?: Prisma.UserWhereUniqueInput;
|
|
1034
|
-
};
|
|
1035
|
-
export type UserCreateNestedOneWithoutGateActedStepsInput = {
|
|
1036
|
-
create?: Prisma.XOR<Prisma.UserCreateWithoutGateActedStepsInput, Prisma.UserUncheckedCreateWithoutGateActedStepsInput>;
|
|
1037
|
-
connectOrCreate?: Prisma.UserCreateOrConnectWithoutGateActedStepsInput;
|
|
1038
|
-
connect?: Prisma.UserWhereUniqueInput;
|
|
1039
|
-
};
|
|
1040
|
-
export type UserUpdateOneWithoutAssignedStepsNestedInput = {
|
|
1041
|
-
create?: Prisma.XOR<Prisma.UserCreateWithoutAssignedStepsInput, Prisma.UserUncheckedCreateWithoutAssignedStepsInput>;
|
|
1042
|
-
connectOrCreate?: Prisma.UserCreateOrConnectWithoutAssignedStepsInput;
|
|
1043
|
-
upsert?: Prisma.UserUpsertWithoutAssignedStepsInput;
|
|
1044
|
-
disconnect?: Prisma.UserWhereInput | boolean;
|
|
1045
|
-
delete?: Prisma.UserWhereInput | boolean;
|
|
1046
|
-
connect?: Prisma.UserWhereUniqueInput;
|
|
1047
|
-
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutAssignedStepsInput, Prisma.UserUpdateWithoutAssignedStepsInput>, Prisma.UserUncheckedUpdateWithoutAssignedStepsInput>;
|
|
1048
|
-
};
|
|
1049
|
-
export type UserUpdateOneWithoutGateActedStepsNestedInput = {
|
|
1050
|
-
create?: Prisma.XOR<Prisma.UserCreateWithoutGateActedStepsInput, Prisma.UserUncheckedCreateWithoutGateActedStepsInput>;
|
|
1051
|
-
connectOrCreate?: Prisma.UserCreateOrConnectWithoutGateActedStepsInput;
|
|
1052
|
-
upsert?: Prisma.UserUpsertWithoutGateActedStepsInput;
|
|
1053
|
-
disconnect?: Prisma.UserWhereInput | boolean;
|
|
1054
|
-
delete?: Prisma.UserWhereInput | boolean;
|
|
1055
|
-
connect?: Prisma.UserWhereUniqueInput;
|
|
1056
|
-
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutGateActedStepsInput, Prisma.UserUpdateWithoutGateActedStepsInput>, Prisma.UserUncheckedUpdateWithoutGateActedStepsInput>;
|
|
1057
|
-
};
|
|
1058
|
-
export type UserCreateNestedOneWithoutStepApprovalsInput = {
|
|
1059
|
-
create?: Prisma.XOR<Prisma.UserCreateWithoutStepApprovalsInput, Prisma.UserUncheckedCreateWithoutStepApprovalsInput>;
|
|
1060
|
-
connectOrCreate?: Prisma.UserCreateOrConnectWithoutStepApprovalsInput;
|
|
1061
|
-
connect?: Prisma.UserWhereUniqueInput;
|
|
1062
|
-
};
|
|
1063
|
-
export type UserUpdateOneWithoutStepApprovalsNestedInput = {
|
|
1064
|
-
create?: Prisma.XOR<Prisma.UserCreateWithoutStepApprovalsInput, Prisma.UserUncheckedCreateWithoutStepApprovalsInput>;
|
|
1065
|
-
connectOrCreate?: Prisma.UserCreateOrConnectWithoutStepApprovalsInput;
|
|
1066
|
-
upsert?: Prisma.UserUpsertWithoutStepApprovalsInput;
|
|
1067
|
-
disconnect?: Prisma.UserWhereInput | boolean;
|
|
1068
|
-
delete?: Prisma.UserWhereInput | boolean;
|
|
1069
|
-
connect?: Prisma.UserWhereUniqueInput;
|
|
1070
|
-
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutStepApprovalsInput, Prisma.UserUpdateWithoutStepApprovalsInput>, Prisma.UserUncheckedUpdateWithoutStepApprovalsInput>;
|
|
1071
|
-
};
|
|
1072
1023
|
export type UserCreateNestedOneWithoutApplicationPaymentsInput = {
|
|
1073
1024
|
create?: Prisma.XOR<Prisma.UserCreateWithoutApplicationPaymentsInput, Prisma.UserUncheckedCreateWithoutApplicationPaymentsInput>;
|
|
1074
1025
|
connectOrCreate?: Prisma.UserCreateOrConnectWithoutApplicationPaymentsInput;
|
|
@@ -1111,6 +1062,32 @@ export type UserUpdateOneWithoutDocumentReviewsNestedInput = {
|
|
|
1111
1062
|
connect?: Prisma.UserWhereUniqueInput;
|
|
1112
1063
|
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutDocumentReviewsInput, Prisma.UserUpdateWithoutDocumentReviewsInput>, Prisma.UserUncheckedUpdateWithoutDocumentReviewsInput>;
|
|
1113
1064
|
};
|
|
1065
|
+
export type UserCreateNestedOneWithoutCompletedStagesInput = {
|
|
1066
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutCompletedStagesInput, Prisma.UserUncheckedCreateWithoutCompletedStagesInput>;
|
|
1067
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutCompletedStagesInput;
|
|
1068
|
+
connect?: Prisma.UserWhereUniqueInput;
|
|
1069
|
+
};
|
|
1070
|
+
export type UserUpdateOneWithoutCompletedStagesNestedInput = {
|
|
1071
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutCompletedStagesInput, Prisma.UserUncheckedCreateWithoutCompletedStagesInput>;
|
|
1072
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutCompletedStagesInput;
|
|
1073
|
+
upsert?: Prisma.UserUpsertWithoutCompletedStagesInput;
|
|
1074
|
+
disconnect?: Prisma.UserWhereInput | boolean;
|
|
1075
|
+
delete?: Prisma.UserWhereInput | boolean;
|
|
1076
|
+
connect?: Prisma.UserWhereUniqueInput;
|
|
1077
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutCompletedStagesInput, Prisma.UserUpdateWithoutCompletedStagesInput>, Prisma.UserUncheckedUpdateWithoutCompletedStagesInput>;
|
|
1078
|
+
};
|
|
1079
|
+
export type UserCreateNestedOneWithoutDocumentApprovalsInput = {
|
|
1080
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutDocumentApprovalsInput, Prisma.UserUncheckedCreateWithoutDocumentApprovalsInput>;
|
|
1081
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutDocumentApprovalsInput;
|
|
1082
|
+
connect?: Prisma.UserWhereUniqueInput;
|
|
1083
|
+
};
|
|
1084
|
+
export type UserUpdateOneRequiredWithoutDocumentApprovalsNestedInput = {
|
|
1085
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutDocumentApprovalsInput, Prisma.UserUncheckedCreateWithoutDocumentApprovalsInput>;
|
|
1086
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutDocumentApprovalsInput;
|
|
1087
|
+
upsert?: Prisma.UserUpsertWithoutDocumentApprovalsInput;
|
|
1088
|
+
connect?: Prisma.UserWhereUniqueInput;
|
|
1089
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutDocumentApprovalsInput, Prisma.UserUpdateWithoutDocumentApprovalsInput>, Prisma.UserUncheckedUpdateWithoutDocumentApprovalsInput>;
|
|
1090
|
+
};
|
|
1114
1091
|
export type UserCreateNestedOneWithoutOfferLettersGeneratedInput = {
|
|
1115
1092
|
create?: Prisma.XOR<Prisma.UserCreateWithoutOfferLettersGeneratedInput, Prisma.UserUncheckedCreateWithoutOfferLettersGeneratedInput>;
|
|
1116
1093
|
connectOrCreate?: Prisma.UserCreateOrConnectWithoutOfferLettersGeneratedInput;
|
|
@@ -1288,10 +1265,9 @@ export type UserCreateWithoutUserRolesInput = {
|
|
|
1288
1265
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
1289
1266
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
1290
1267
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
1291
|
-
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
1292
|
-
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
1293
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
1294
1268
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
1269
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
1270
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
1295
1271
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
1296
1272
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
1297
1273
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
@@ -1338,10 +1314,9 @@ export type UserUncheckedCreateWithoutUserRolesInput = {
|
|
|
1338
1314
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
1339
1315
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
1340
1316
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
1341
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
1342
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
1343
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
1344
1317
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
1318
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
1319
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
1345
1320
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
1346
1321
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
1347
1322
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
@@ -1401,10 +1376,9 @@ export type UserUpdateWithoutUserRolesInput = {
|
|
|
1401
1376
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
1402
1377
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
1403
1378
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
1404
|
-
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
1405
|
-
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
1406
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
1407
1379
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
1380
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
1381
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
1408
1382
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
1409
1383
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
1410
1384
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -1451,10 +1425,9 @@ export type UserUncheckedUpdateWithoutUserRolesInput = {
|
|
|
1451
1425
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
1452
1426
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
1453
1427
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
1454
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
1455
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
1456
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
1457
1428
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
1429
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
1430
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
1458
1431
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
1459
1432
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
1460
1433
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -1501,10 +1474,9 @@ export type UserCreateWithoutTenantMembershipsInput = {
|
|
|
1501
1474
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
1502
1475
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
1503
1476
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
1504
|
-
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
1505
|
-
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
1506
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
1507
1477
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
1478
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
1479
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
1508
1480
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
1509
1481
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
1510
1482
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
@@ -1551,10 +1523,9 @@ export type UserUncheckedCreateWithoutTenantMembershipsInput = {
|
|
|
1551
1523
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
1552
1524
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
1553
1525
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
1554
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
1555
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
1556
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
1557
1526
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
1527
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
1528
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
1558
1529
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
1559
1530
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
1560
1531
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
@@ -1614,10 +1585,9 @@ export type UserUpdateWithoutTenantMembershipsInput = {
|
|
|
1614
1585
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
1615
1586
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
1616
1587
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
1617
|
-
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
1618
|
-
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
1619
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
1620
1588
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
1589
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
1590
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
1621
1591
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
1622
1592
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
1623
1593
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -1664,10 +1634,9 @@ export type UserUncheckedUpdateWithoutTenantMembershipsInput = {
|
|
|
1664
1634
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
1665
1635
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
1666
1636
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
1667
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
1668
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
1669
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
1670
1637
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
1638
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
1639
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
1671
1640
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
1672
1641
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
1673
1642
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -1715,10 +1684,9 @@ export type UserCreateWithoutOrganizationMembershipsInput = {
|
|
|
1715
1684
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
1716
1685
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
1717
1686
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
1718
|
-
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
1719
|
-
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
1720
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
1721
1687
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
1688
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
1689
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
1722
1690
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
1723
1691
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
1724
1692
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
@@ -1765,10 +1733,9 @@ export type UserUncheckedCreateWithoutOrganizationMembershipsInput = {
|
|
|
1765
1733
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
1766
1734
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
1767
1735
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
1768
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
1769
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
1770
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
1771
1736
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
1737
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
1738
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
1772
1739
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
1773
1740
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
1774
1741
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
@@ -1828,10 +1795,9 @@ export type UserUpdateWithoutOrganizationMembershipsInput = {
|
|
|
1828
1795
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
1829
1796
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
1830
1797
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
1831
|
-
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
1832
|
-
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
1833
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
1834
1798
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
1799
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
1800
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
1835
1801
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
1836
1802
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
1837
1803
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -1878,10 +1844,9 @@ export type UserUncheckedUpdateWithoutOrganizationMembershipsInput = {
|
|
|
1878
1844
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
1879
1845
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
1880
1846
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
1881
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
1882
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
1883
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
1884
1847
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
1848
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
1849
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
1885
1850
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
1886
1851
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
1887
1852
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -1927,10 +1892,9 @@ export type UserCreateWithoutTenantInput = {
|
|
|
1927
1892
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
1928
1893
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
1929
1894
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
1930
|
-
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
1931
|
-
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
1932
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
1933
1895
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
1896
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
1897
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
1934
1898
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
1935
1899
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
1936
1900
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
@@ -1977,10 +1941,9 @@ export type UserUncheckedCreateWithoutTenantInput = {
|
|
|
1977
1941
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
1978
1942
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
1979
1943
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
1980
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
1981
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
1982
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
1983
1944
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
1945
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
1946
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
1984
1947
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
1985
1948
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
1986
1949
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
@@ -2070,10 +2033,9 @@ export type UserCreateWithoutRefreshTokensInput = {
|
|
|
2070
2033
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
2071
2034
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
2072
2035
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
2073
|
-
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
2074
|
-
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
2075
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
2076
2036
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
2037
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
2038
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
2077
2039
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
2078
2040
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
2079
2041
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
@@ -2120,10 +2082,9 @@ export type UserUncheckedCreateWithoutRefreshTokensInput = {
|
|
|
2120
2082
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
2121
2083
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
2122
2084
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
2123
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
2124
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
2125
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
2126
2085
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
2086
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
2087
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
2127
2088
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
2128
2089
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
2129
2090
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
@@ -2183,10 +2144,9 @@ export type UserUpdateWithoutRefreshTokensInput = {
|
|
|
2183
2144
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
2184
2145
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
2185
2146
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
2186
|
-
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
2187
|
-
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
2188
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
2189
2147
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
2148
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
2149
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
2190
2150
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
2191
2151
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
2192
2152
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -2233,10 +2193,9 @@ export type UserUncheckedUpdateWithoutRefreshTokensInput = {
|
|
|
2233
2193
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
2234
2194
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
2235
2195
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
2236
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
2237
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
2238
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
2239
2196
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
2197
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
2198
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
2240
2199
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
2241
2200
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
2242
2201
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -2283,10 +2242,9 @@ export type UserCreateWithoutPasswordResetsInput = {
|
|
|
2283
2242
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
2284
2243
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
2285
2244
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
2286
|
-
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
2287
|
-
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
2288
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
2289
2245
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
2246
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
2247
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
2290
2248
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
2291
2249
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
2292
2250
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
@@ -2333,10 +2291,9 @@ export type UserUncheckedCreateWithoutPasswordResetsInput = {
|
|
|
2333
2291
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
2334
2292
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
2335
2293
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
2336
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
2337
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
2338
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
2339
2294
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
2295
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
2296
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
2340
2297
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
2341
2298
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
2342
2299
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
@@ -2396,10 +2353,9 @@ export type UserUpdateWithoutPasswordResetsInput = {
|
|
|
2396
2353
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
2397
2354
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
2398
2355
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
2399
|
-
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
2400
|
-
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
2401
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
2402
2356
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
2357
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
2358
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
2403
2359
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
2404
2360
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
2405
2361
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -2446,10 +2402,9 @@ export type UserUncheckedUpdateWithoutPasswordResetsInput = {
|
|
|
2446
2402
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
2447
2403
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
2448
2404
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
2449
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
2450
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
2451
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
2452
2405
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
2406
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
2407
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
2453
2408
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
2454
2409
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
2455
2410
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -2496,10 +2451,9 @@ export type UserCreateWithoutSuspensionsInput = {
|
|
|
2496
2451
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
2497
2452
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
2498
2453
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
2499
|
-
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
2500
|
-
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
2501
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
2502
2454
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
2455
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
2456
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
2503
2457
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
2504
2458
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
2505
2459
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
@@ -2546,10 +2500,9 @@ export type UserUncheckedCreateWithoutSuspensionsInput = {
|
|
|
2546
2500
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
2547
2501
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
2548
2502
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
2549
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
2550
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
2551
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
2552
2503
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
2504
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
2505
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
2553
2506
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
2554
2507
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
2555
2508
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
@@ -2609,10 +2562,9 @@ export type UserUpdateWithoutSuspensionsInput = {
|
|
|
2609
2562
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
2610
2563
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
2611
2564
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
2612
|
-
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
2613
|
-
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
2614
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
2615
2565
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
2566
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
2567
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
2616
2568
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
2617
2569
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
2618
2570
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -2659,10 +2611,9 @@ export type UserUncheckedUpdateWithoutSuspensionsInput = {
|
|
|
2659
2611
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
2660
2612
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
2661
2613
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
2662
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
2663
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
2664
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
2665
2614
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
2615
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
2616
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
2666
2617
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
2667
2618
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
2668
2619
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -2709,10 +2660,9 @@ export type UserCreateWithoutEmailPreferencesInput = {
|
|
|
2709
2660
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
2710
2661
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
2711
2662
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
2712
|
-
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
2713
|
-
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
2714
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
2715
2663
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
2664
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
2665
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
2716
2666
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
2717
2667
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
2718
2668
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
@@ -2759,10 +2709,9 @@ export type UserUncheckedCreateWithoutEmailPreferencesInput = {
|
|
|
2759
2709
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
2760
2710
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
2761
2711
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
2762
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
2763
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
2764
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
2765
2712
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
2713
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
2714
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
2766
2715
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
2767
2716
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
2768
2717
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
@@ -2822,10 +2771,9 @@ export type UserUpdateWithoutEmailPreferencesInput = {
|
|
|
2822
2771
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
2823
2772
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
2824
2773
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
2825
|
-
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
2826
|
-
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
2827
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
2828
2774
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
2775
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
2776
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
2829
2777
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
2830
2778
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
2831
2779
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -2872,10 +2820,9 @@ export type UserUncheckedUpdateWithoutEmailPreferencesInput = {
|
|
|
2872
2820
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
2873
2821
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
2874
2822
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
2875
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
2876
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
2877
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
2878
2823
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
2824
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
2825
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
2879
2826
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
2880
2827
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
2881
2828
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -2922,10 +2869,9 @@ export type UserCreateWithoutDeviceEndpointsInput = {
|
|
|
2922
2869
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
2923
2870
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
2924
2871
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
2925
|
-
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
2926
|
-
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
2927
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
2928
2872
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
2873
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
2874
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
2929
2875
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
2930
2876
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
2931
2877
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
@@ -2972,10 +2918,9 @@ export type UserUncheckedCreateWithoutDeviceEndpointsInput = {
|
|
|
2972
2918
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
2973
2919
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
2974
2920
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
2975
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
2976
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
2977
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
2978
2921
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
2922
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
2923
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
2979
2924
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
2980
2925
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
2981
2926
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
@@ -3035,10 +2980,9 @@ export type UserUpdateWithoutDeviceEndpointsInput = {
|
|
|
3035
2980
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
3036
2981
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
3037
2982
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
3038
|
-
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
3039
|
-
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
3040
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
3041
2983
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
2984
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
2985
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
3042
2986
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
3043
2987
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
3044
2988
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -3085,10 +3029,9 @@ export type UserUncheckedUpdateWithoutDeviceEndpointsInput = {
|
|
|
3085
3029
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
3086
3030
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
3087
3031
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
3088
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
3089
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
3090
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
3091
3032
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
3033
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
3034
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
3092
3035
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
3093
3036
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
3094
3037
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -3135,10 +3078,9 @@ export type UserCreateWithoutSocialsInput = {
|
|
|
3135
3078
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
3136
3079
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
3137
3080
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
3138
|
-
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
3139
|
-
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
3140
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
3141
3081
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
3082
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
3083
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
3142
3084
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
3143
3085
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
3144
3086
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
@@ -3185,10 +3127,9 @@ export type UserUncheckedCreateWithoutSocialsInput = {
|
|
|
3185
3127
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
3186
3128
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
3187
3129
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
3188
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
3189
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
3190
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
3191
3130
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
3131
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
3132
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
3192
3133
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
3193
3134
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
3194
3135
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
@@ -3248,10 +3189,9 @@ export type UserUpdateWithoutSocialsInput = {
|
|
|
3248
3189
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
3249
3190
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
3250
3191
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
3251
|
-
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
3252
|
-
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
3253
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
3254
3192
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
3193
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
3194
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
3255
3195
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
3256
3196
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
3257
3197
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -3298,10 +3238,9 @@ export type UserUncheckedUpdateWithoutSocialsInput = {
|
|
|
3298
3238
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
3299
3239
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
3300
3240
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
3301
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
3302
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
3303
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
3304
3241
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
3242
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
3243
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
3305
3244
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
3306
3245
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
3307
3246
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -3348,10 +3287,9 @@ export type UserCreateWithoutWalletInput = {
|
|
|
3348
3287
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
3349
3288
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
3350
3289
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
3351
|
-
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
3352
|
-
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
3353
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
3354
3290
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
3291
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
3292
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
3355
3293
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
3356
3294
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
3357
3295
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
@@ -3398,10 +3336,9 @@ export type UserUncheckedCreateWithoutWalletInput = {
|
|
|
3398
3336
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
3399
3337
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
3400
3338
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
3401
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
3402
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
3403
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
3404
3339
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
3340
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
3341
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
3405
3342
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
3406
3343
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
3407
3344
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
@@ -3461,10 +3398,9 @@ export type UserUpdateWithoutWalletInput = {
|
|
|
3461
3398
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
3462
3399
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
3463
3400
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
3464
|
-
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
3465
|
-
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
3466
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
3467
3401
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
3402
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
3403
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
3468
3404
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
3469
3405
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
3470
3406
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -3511,10 +3447,9 @@ export type UserUncheckedUpdateWithoutWalletInput = {
|
|
|
3511
3447
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
3512
3448
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
3513
3449
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
3514
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
3515
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
3516
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
3517
3450
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
3451
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
3452
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
3518
3453
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
3519
3454
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
3520
3455
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -3561,10 +3496,9 @@ export type UserCreateWithoutPropertiesInput = {
|
|
|
3561
3496
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
3562
3497
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
3563
3498
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
3564
|
-
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
3565
|
-
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
3566
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
3567
3499
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
3500
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
3501
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
3568
3502
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
3569
3503
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
3570
3504
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
@@ -3611,10 +3545,9 @@ export type UserUncheckedCreateWithoutPropertiesInput = {
|
|
|
3611
3545
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
3612
3546
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
3613
3547
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
3614
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
3615
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
3616
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
3617
3548
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
3549
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
3550
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
3618
3551
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
3619
3552
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
3620
3553
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
@@ -3674,10 +3607,9 @@ export type UserUpdateWithoutPropertiesInput = {
|
|
|
3674
3607
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
3675
3608
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
3676
3609
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
3677
|
-
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
3678
|
-
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
3679
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
3680
3610
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
3611
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
3612
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
3681
3613
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
3682
3614
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
3683
3615
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -3724,10 +3656,9 @@ export type UserUncheckedUpdateWithoutPropertiesInput = {
|
|
|
3724
3656
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
3725
3657
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
3726
3658
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
3727
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
3728
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
3729
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
3730
3659
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
3660
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
3661
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
3731
3662
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
3732
3663
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
3733
3664
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -3774,10 +3705,9 @@ export type UserCreateWithoutApplicationsInput = {
|
|
|
3774
3705
|
properties?: Prisma.PropertyCreateNestedManyWithoutUserInput;
|
|
3775
3706
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
3776
3707
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
3777
|
-
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
3778
|
-
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
3779
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
3780
3708
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
3709
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
3710
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
3781
3711
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
3782
3712
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
3783
3713
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
@@ -3824,10 +3754,9 @@ export type UserUncheckedCreateWithoutApplicationsInput = {
|
|
|
3824
3754
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutUserInput;
|
|
3825
3755
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
3826
3756
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
3827
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
3828
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
3829
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
3830
3757
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
3758
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
3759
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
3831
3760
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
3832
3761
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
3833
3762
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
@@ -3878,10 +3807,9 @@ export type UserCreateWithoutSoldApplicationsInput = {
|
|
|
3878
3807
|
properties?: Prisma.PropertyCreateNestedManyWithoutUserInput;
|
|
3879
3808
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
3880
3809
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
3881
|
-
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
3882
|
-
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
3883
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
3884
3810
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
3811
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
3812
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
3885
3813
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
3886
3814
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
3887
3815
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
@@ -3928,10 +3856,9 @@ export type UserUncheckedCreateWithoutSoldApplicationsInput = {
|
|
|
3928
3856
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutUserInput;
|
|
3929
3857
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
3930
3858
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
3931
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
3932
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
3933
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
3934
3859
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
3860
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
3861
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
3935
3862
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
3936
3863
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
3937
3864
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
@@ -3991,10 +3918,9 @@ export type UserUpdateWithoutApplicationsInput = {
|
|
|
3991
3918
|
properties?: Prisma.PropertyUpdateManyWithoutUserNestedInput;
|
|
3992
3919
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
3993
3920
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
3994
|
-
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
3995
|
-
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
3996
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
3997
3921
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
3922
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
3923
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
3998
3924
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
3999
3925
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
4000
3926
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -4041,10 +3967,9 @@ export type UserUncheckedUpdateWithoutApplicationsInput = {
|
|
|
4041
3967
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutUserNestedInput;
|
|
4042
3968
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
4043
3969
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
4044
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
4045
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
4046
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
4047
3970
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
3971
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
3972
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
4048
3973
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
4049
3974
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
4050
3975
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -4100,10 +4025,9 @@ export type UserUpdateWithoutSoldApplicationsInput = {
|
|
|
4100
4025
|
properties?: Prisma.PropertyUpdateManyWithoutUserNestedInput;
|
|
4101
4026
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
4102
4027
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
4103
|
-
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
4104
|
-
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
4105
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
4106
4028
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
4029
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
4030
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
4107
4031
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
4108
4032
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
4109
4033
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -4150,10 +4074,9 @@ export type UserUncheckedUpdateWithoutSoldApplicationsInput = {
|
|
|
4150
4074
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutUserNestedInput;
|
|
4151
4075
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
4152
4076
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
4153
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
4154
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
4155
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
4156
4077
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
4078
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
4079
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
4157
4080
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
4158
4081
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
4159
4082
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -4201,10 +4124,9 @@ export type UserCreateWithoutRequestedRefundsInput = {
|
|
|
4201
4124
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
4202
4125
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
4203
4126
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
4204
|
-
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
4205
|
-
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
4206
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
4207
4127
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
4128
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
4129
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
4208
4130
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
4209
4131
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
4210
4132
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
@@ -4251,10 +4173,9 @@ export type UserUncheckedCreateWithoutRequestedRefundsInput = {
|
|
|
4251
4173
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
4252
4174
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
4253
4175
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
4254
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
4255
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
4256
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
4257
4176
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
4177
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4178
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
4258
4179
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
4259
4180
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4260
4181
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
@@ -4305,10 +4226,9 @@ export type UserCreateWithoutApprovedRefundsInput = {
|
|
|
4305
4226
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
4306
4227
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
4307
4228
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
4308
|
-
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
4309
|
-
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
4310
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
4311
4229
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
4230
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
4231
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
4312
4232
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
4313
4233
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
4314
4234
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
@@ -4355,10 +4275,9 @@ export type UserUncheckedCreateWithoutApprovedRefundsInput = {
|
|
|
4355
4275
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
4356
4276
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
4357
4277
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
4358
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
4359
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
4360
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
4361
4278
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
4279
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4280
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
4362
4281
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
4363
4282
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4364
4283
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
@@ -4409,10 +4328,9 @@ export type UserCreateWithoutProcessedRefundsInput = {
|
|
|
4409
4328
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
4410
4329
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
4411
4330
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
4412
|
-
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
4413
|
-
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
4414
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
4415
4331
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
4332
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
4333
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
4416
4334
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
4417
4335
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
4418
4336
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
@@ -4459,10 +4377,9 @@ export type UserUncheckedCreateWithoutProcessedRefundsInput = {
|
|
|
4459
4377
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
4460
4378
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
4461
4379
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
4462
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
4463
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
4464
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
4465
4380
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
4381
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4382
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
4466
4383
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
4467
4384
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4468
4385
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
@@ -4522,10 +4439,9 @@ export type UserUpdateWithoutRequestedRefundsInput = {
|
|
|
4522
4439
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
4523
4440
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
4524
4441
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
4525
|
-
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
4526
|
-
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
4527
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
4528
4442
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
4443
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
4444
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
4529
4445
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
4530
4446
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
4531
4447
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -4572,10 +4488,9 @@ export type UserUncheckedUpdateWithoutRequestedRefundsInput = {
|
|
|
4572
4488
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
4573
4489
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
4574
4490
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
4575
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
4576
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
4577
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
4578
4491
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
4492
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
4493
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
4579
4494
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
4580
4495
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
4581
4496
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -4631,10 +4546,9 @@ export type UserUpdateWithoutApprovedRefundsInput = {
|
|
|
4631
4546
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
4632
4547
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
4633
4548
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
4634
|
-
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
4635
|
-
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
4636
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
4637
4549
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
4550
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
4551
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
4638
4552
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
4639
4553
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
4640
4554
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -4681,10 +4595,9 @@ export type UserUncheckedUpdateWithoutApprovedRefundsInput = {
|
|
|
4681
4595
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
4682
4596
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
4683
4597
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
4684
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
4685
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
4686
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
4687
4598
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
4599
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
4600
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
4688
4601
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
4689
4602
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
4690
4603
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -4740,10 +4653,9 @@ export type UserUpdateWithoutProcessedRefundsInput = {
|
|
|
4740
4653
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
4741
4654
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
4742
4655
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
4743
|
-
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
4744
|
-
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
4745
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
4746
4656
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
4657
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
4658
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
4747
4659
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
4748
4660
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
4749
4661
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -4790,10 +4702,9 @@ export type UserUncheckedUpdateWithoutProcessedRefundsInput = {
|
|
|
4790
4702
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
4791
4703
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
4792
4704
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
4793
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
4794
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
4795
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
4796
4705
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
4706
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
4707
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
4797
4708
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
4798
4709
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
4799
4710
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -4810,111 +4721,7 @@ export type UserUncheckedUpdateWithoutProcessedRefundsInput = {
|
|
|
4810
4721
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
4811
4722
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
4812
4723
|
};
|
|
4813
|
-
export type
|
|
4814
|
-
id?: string;
|
|
4815
|
-
email: string;
|
|
4816
|
-
password?: string | null;
|
|
4817
|
-
phone?: string | null;
|
|
4818
|
-
firstName?: string | null;
|
|
4819
|
-
lastName?: string | null;
|
|
4820
|
-
isActive?: boolean;
|
|
4821
|
-
isEmailVerified?: boolean;
|
|
4822
|
-
googleId?: string | null;
|
|
4823
|
-
avatar?: string | null;
|
|
4824
|
-
createdAt?: Date | string;
|
|
4825
|
-
updatedAt?: Date | string;
|
|
4826
|
-
emailVerifiedAt?: Date | string | null;
|
|
4827
|
-
emailVerificationToken?: string | null;
|
|
4828
|
-
lastLoginAt?: Date | string | null;
|
|
4829
|
-
tenant?: Prisma.TenantCreateNestedOneWithoutUsersInput;
|
|
4830
|
-
tenantMemberships?: Prisma.TenantMembershipCreateNestedManyWithoutUserInput;
|
|
4831
|
-
userRoles?: Prisma.UserRoleCreateNestedManyWithoutUserInput;
|
|
4832
|
-
wallet?: Prisma.WalletCreateNestedOneWithoutUserInput;
|
|
4833
|
-
refreshTokens?: Prisma.RefreshTokenCreateNestedManyWithoutUserInput;
|
|
4834
|
-
passwordResets?: Prisma.PasswordResetCreateNestedManyWithoutUserInput;
|
|
4835
|
-
suspensions?: Prisma.UserSuspensionCreateNestedManyWithoutUserInput;
|
|
4836
|
-
emailPreferences?: Prisma.EmailPreferenceCreateNestedManyWithoutUserInput;
|
|
4837
|
-
deviceEndpoints?: Prisma.DeviceEndpointCreateNestedManyWithoutUserInput;
|
|
4838
|
-
socials?: Prisma.SocialCreateNestedManyWithoutUserInput;
|
|
4839
|
-
properties?: Prisma.PropertyCreateNestedManyWithoutUserInput;
|
|
4840
|
-
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
4841
|
-
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
4842
|
-
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
4843
|
-
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
4844
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
4845
|
-
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
4846
|
-
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
4847
|
-
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
4848
|
-
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
4849
|
-
reviewedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutReviewerInput;
|
|
4850
|
-
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
4851
|
-
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
4852
|
-
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
4853
|
-
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
4854
|
-
approvalRequestsSubmitted?: Prisma.ApprovalRequestCreateNestedManyWithoutRequestedByInput;
|
|
4855
|
-
approvalRequestsAssigned?: Prisma.ApprovalRequestCreateNestedManyWithoutAssigneeInput;
|
|
4856
|
-
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
4857
|
-
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
4858
|
-
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
4859
|
-
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
4860
|
-
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
4861
|
-
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
4862
|
-
};
|
|
4863
|
-
export type UserUncheckedCreateWithoutAssignedStepsInput = {
|
|
4864
|
-
id?: string;
|
|
4865
|
-
email: string;
|
|
4866
|
-
password?: string | null;
|
|
4867
|
-
phone?: string | null;
|
|
4868
|
-
firstName?: string | null;
|
|
4869
|
-
lastName?: string | null;
|
|
4870
|
-
isActive?: boolean;
|
|
4871
|
-
isEmailVerified?: boolean;
|
|
4872
|
-
googleId?: string | null;
|
|
4873
|
-
avatar?: string | null;
|
|
4874
|
-
tenantId?: string | null;
|
|
4875
|
-
walletId?: string | null;
|
|
4876
|
-
createdAt?: Date | string;
|
|
4877
|
-
updatedAt?: Date | string;
|
|
4878
|
-
emailVerifiedAt?: Date | string | null;
|
|
4879
|
-
emailVerificationToken?: string | null;
|
|
4880
|
-
lastLoginAt?: Date | string | null;
|
|
4881
|
-
tenantMemberships?: Prisma.TenantMembershipUncheckedCreateNestedManyWithoutUserInput;
|
|
4882
|
-
userRoles?: Prisma.UserRoleUncheckedCreateNestedManyWithoutUserInput;
|
|
4883
|
-
refreshTokens?: Prisma.RefreshTokenUncheckedCreateNestedManyWithoutUserInput;
|
|
4884
|
-
passwordResets?: Prisma.PasswordResetUncheckedCreateNestedManyWithoutUserInput;
|
|
4885
|
-
suspensions?: Prisma.UserSuspensionUncheckedCreateNestedManyWithoutUserInput;
|
|
4886
|
-
emailPreferences?: Prisma.EmailPreferenceUncheckedCreateNestedManyWithoutUserInput;
|
|
4887
|
-
deviceEndpoints?: Prisma.DeviceEndpointUncheckedCreateNestedManyWithoutUserInput;
|
|
4888
|
-
socials?: Prisma.SocialUncheckedCreateNestedManyWithoutUserInput;
|
|
4889
|
-
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutUserInput;
|
|
4890
|
-
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
4891
|
-
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
4892
|
-
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
4893
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
4894
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
4895
|
-
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
4896
|
-
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
4897
|
-
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4898
|
-
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
4899
|
-
reviewedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4900
|
-
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
4901
|
-
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
4902
|
-
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4903
|
-
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
4904
|
-
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4905
|
-
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
4906
|
-
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
4907
|
-
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4908
|
-
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
4909
|
-
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
4910
|
-
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4911
|
-
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
4912
|
-
};
|
|
4913
|
-
export type UserCreateOrConnectWithoutAssignedStepsInput = {
|
|
4914
|
-
where: Prisma.UserWhereUniqueInput;
|
|
4915
|
-
create: Prisma.XOR<Prisma.UserCreateWithoutAssignedStepsInput, Prisma.UserUncheckedCreateWithoutAssignedStepsInput>;
|
|
4916
|
-
};
|
|
4917
|
-
export type UserCreateWithoutGateActedStepsInput = {
|
|
4724
|
+
export type UserCreateWithoutApplicationPaymentsInput = {
|
|
4918
4725
|
id?: string;
|
|
4919
4726
|
email: string;
|
|
4920
4727
|
password?: string | null;
|
|
@@ -4943,10 +4750,9 @@ export type UserCreateWithoutGateActedStepsInput = {
|
|
|
4943
4750
|
properties?: Prisma.PropertyCreateNestedManyWithoutUserInput;
|
|
4944
4751
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
4945
4752
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
4946
|
-
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
4947
|
-
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
4948
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
4949
4753
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
4754
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
4755
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
4950
4756
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
4951
4757
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
4952
4758
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
@@ -4964,7 +4770,7 @@ export type UserCreateWithoutGateActedStepsInput = {
|
|
|
4964
4770
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
4965
4771
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
4966
4772
|
};
|
|
4967
|
-
export type
|
|
4773
|
+
export type UserUncheckedCreateWithoutApplicationPaymentsInput = {
|
|
4968
4774
|
id?: string;
|
|
4969
4775
|
email: string;
|
|
4970
4776
|
password?: string | null;
|
|
@@ -4993,10 +4799,9 @@ export type UserUncheckedCreateWithoutGateActedStepsInput = {
|
|
|
4993
4799
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutUserInput;
|
|
4994
4800
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
4995
4801
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
4996
|
-
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
4997
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
4998
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
4999
4802
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
4803
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4804
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
5000
4805
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
5001
4806
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5002
4807
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
@@ -5014,129 +4819,20 @@ export type UserUncheckedCreateWithoutGateActedStepsInput = {
|
|
|
5014
4819
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5015
4820
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
5016
4821
|
};
|
|
5017
|
-
export type
|
|
4822
|
+
export type UserCreateOrConnectWithoutApplicationPaymentsInput = {
|
|
5018
4823
|
where: Prisma.UserWhereUniqueInput;
|
|
5019
|
-
create: Prisma.XOR<Prisma.
|
|
5020
|
-
};
|
|
5021
|
-
export type UserUpsertWithoutAssignedStepsInput = {
|
|
5022
|
-
update: Prisma.XOR<Prisma.UserUpdateWithoutAssignedStepsInput, Prisma.UserUncheckedUpdateWithoutAssignedStepsInput>;
|
|
5023
|
-
create: Prisma.XOR<Prisma.UserCreateWithoutAssignedStepsInput, Prisma.UserUncheckedCreateWithoutAssignedStepsInput>;
|
|
5024
|
-
where?: Prisma.UserWhereInput;
|
|
5025
|
-
};
|
|
5026
|
-
export type UserUpdateToOneWithWhereWithoutAssignedStepsInput = {
|
|
5027
|
-
where?: Prisma.UserWhereInput;
|
|
5028
|
-
data: Prisma.XOR<Prisma.UserUpdateWithoutAssignedStepsInput, Prisma.UserUncheckedUpdateWithoutAssignedStepsInput>;
|
|
5029
|
-
};
|
|
5030
|
-
export type UserUpdateWithoutAssignedStepsInput = {
|
|
5031
|
-
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5032
|
-
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5033
|
-
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5034
|
-
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5035
|
-
firstName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5036
|
-
lastName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5037
|
-
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
5038
|
-
isEmailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
5039
|
-
googleId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5040
|
-
avatar?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5041
|
-
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
5042
|
-
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
5043
|
-
emailVerifiedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
5044
|
-
emailVerificationToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5045
|
-
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
5046
|
-
tenant?: Prisma.TenantUpdateOneWithoutUsersNestedInput;
|
|
5047
|
-
tenantMemberships?: Prisma.TenantMembershipUpdateManyWithoutUserNestedInput;
|
|
5048
|
-
userRoles?: Prisma.UserRoleUpdateManyWithoutUserNestedInput;
|
|
5049
|
-
wallet?: Prisma.WalletUpdateOneWithoutUserNestedInput;
|
|
5050
|
-
refreshTokens?: Prisma.RefreshTokenUpdateManyWithoutUserNestedInput;
|
|
5051
|
-
passwordResets?: Prisma.PasswordResetUpdateManyWithoutUserNestedInput;
|
|
5052
|
-
suspensions?: Prisma.UserSuspensionUpdateManyWithoutUserNestedInput;
|
|
5053
|
-
emailPreferences?: Prisma.EmailPreferenceUpdateManyWithoutUserNestedInput;
|
|
5054
|
-
deviceEndpoints?: Prisma.DeviceEndpointUpdateManyWithoutUserNestedInput;
|
|
5055
|
-
socials?: Prisma.SocialUpdateManyWithoutUserNestedInput;
|
|
5056
|
-
properties?: Prisma.PropertyUpdateManyWithoutUserNestedInput;
|
|
5057
|
-
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
5058
|
-
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
5059
|
-
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
5060
|
-
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
5061
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
5062
|
-
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
5063
|
-
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
5064
|
-
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
5065
|
-
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
5066
|
-
reviewedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutReviewerNestedInput;
|
|
5067
|
-
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
5068
|
-
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
5069
|
-
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
5070
|
-
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
5071
|
-
approvalRequestsSubmitted?: Prisma.ApprovalRequestUpdateManyWithoutRequestedByNestedInput;
|
|
5072
|
-
approvalRequestsAssigned?: Prisma.ApprovalRequestUpdateManyWithoutAssigneeNestedInput;
|
|
5073
|
-
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
5074
|
-
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
5075
|
-
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
5076
|
-
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
5077
|
-
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
5078
|
-
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
5079
|
-
};
|
|
5080
|
-
export type UserUncheckedUpdateWithoutAssignedStepsInput = {
|
|
5081
|
-
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5082
|
-
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5083
|
-
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5084
|
-
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5085
|
-
firstName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5086
|
-
lastName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5087
|
-
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
5088
|
-
isEmailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
5089
|
-
googleId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5090
|
-
avatar?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5091
|
-
tenantId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5092
|
-
walletId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5093
|
-
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
5094
|
-
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
5095
|
-
emailVerifiedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
5096
|
-
emailVerificationToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5097
|
-
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
5098
|
-
tenantMemberships?: Prisma.TenantMembershipUncheckedUpdateManyWithoutUserNestedInput;
|
|
5099
|
-
userRoles?: Prisma.UserRoleUncheckedUpdateManyWithoutUserNestedInput;
|
|
5100
|
-
refreshTokens?: Prisma.RefreshTokenUncheckedUpdateManyWithoutUserNestedInput;
|
|
5101
|
-
passwordResets?: Prisma.PasswordResetUncheckedUpdateManyWithoutUserNestedInput;
|
|
5102
|
-
suspensions?: Prisma.UserSuspensionUncheckedUpdateManyWithoutUserNestedInput;
|
|
5103
|
-
emailPreferences?: Prisma.EmailPreferenceUncheckedUpdateManyWithoutUserNestedInput;
|
|
5104
|
-
deviceEndpoints?: Prisma.DeviceEndpointUncheckedUpdateManyWithoutUserNestedInput;
|
|
5105
|
-
socials?: Prisma.SocialUncheckedUpdateManyWithoutUserNestedInput;
|
|
5106
|
-
properties?: Prisma.PropertyUncheckedUpdateManyWithoutUserNestedInput;
|
|
5107
|
-
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
5108
|
-
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
5109
|
-
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
5110
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
5111
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
5112
|
-
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
5113
|
-
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
5114
|
-
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5115
|
-
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
5116
|
-
reviewedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5117
|
-
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
5118
|
-
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
5119
|
-
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
5120
|
-
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
5121
|
-
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
5122
|
-
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
5123
|
-
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
5124
|
-
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
5125
|
-
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
5126
|
-
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
5127
|
-
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5128
|
-
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
4824
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutApplicationPaymentsInput, Prisma.UserUncheckedCreateWithoutApplicationPaymentsInput>;
|
|
5129
4825
|
};
|
|
5130
|
-
export type
|
|
5131
|
-
update: Prisma.XOR<Prisma.
|
|
5132
|
-
create: Prisma.XOR<Prisma.
|
|
4826
|
+
export type UserUpsertWithoutApplicationPaymentsInput = {
|
|
4827
|
+
update: Prisma.XOR<Prisma.UserUpdateWithoutApplicationPaymentsInput, Prisma.UserUncheckedUpdateWithoutApplicationPaymentsInput>;
|
|
4828
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutApplicationPaymentsInput, Prisma.UserUncheckedCreateWithoutApplicationPaymentsInput>;
|
|
5133
4829
|
where?: Prisma.UserWhereInput;
|
|
5134
4830
|
};
|
|
5135
|
-
export type
|
|
4831
|
+
export type UserUpdateToOneWithWhereWithoutApplicationPaymentsInput = {
|
|
5136
4832
|
where?: Prisma.UserWhereInput;
|
|
5137
|
-
data: Prisma.XOR<Prisma.
|
|
4833
|
+
data: Prisma.XOR<Prisma.UserUpdateWithoutApplicationPaymentsInput, Prisma.UserUncheckedUpdateWithoutApplicationPaymentsInput>;
|
|
5138
4834
|
};
|
|
5139
|
-
export type
|
|
4835
|
+
export type UserUpdateWithoutApplicationPaymentsInput = {
|
|
5140
4836
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5141
4837
|
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5142
4838
|
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -5165,10 +4861,9 @@ export type UserUpdateWithoutGateActedStepsInput = {
|
|
|
5165
4861
|
properties?: Prisma.PropertyUpdateManyWithoutUserNestedInput;
|
|
5166
4862
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
5167
4863
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
5168
|
-
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
5169
|
-
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
5170
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
5171
4864
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
4865
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
4866
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
5172
4867
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
5173
4868
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
5174
4869
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -5186,7 +4881,7 @@ export type UserUpdateWithoutGateActedStepsInput = {
|
|
|
5186
4881
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
5187
4882
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
5188
4883
|
};
|
|
5189
|
-
export type
|
|
4884
|
+
export type UserUncheckedUpdateWithoutApplicationPaymentsInput = {
|
|
5190
4885
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5191
4886
|
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5192
4887
|
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -5215,10 +4910,9 @@ export type UserUncheckedUpdateWithoutGateActedStepsInput = {
|
|
|
5215
4910
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutUserNestedInput;
|
|
5216
4911
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
5217
4912
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
5218
|
-
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
5219
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
5220
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
5221
4913
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
4914
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
4915
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
5222
4916
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
5223
4917
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5224
4918
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -5236,7 +4930,7 @@ export type UserUncheckedUpdateWithoutGateActedStepsInput = {
|
|
|
5236
4930
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5237
4931
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
5238
4932
|
};
|
|
5239
|
-
export type
|
|
4933
|
+
export type UserCreateWithoutUploadedDocsInput = {
|
|
5240
4934
|
id?: string;
|
|
5241
4935
|
email: string;
|
|
5242
4936
|
password?: string | null;
|
|
@@ -5266,9 +4960,8 @@ export type UserCreateWithoutStepApprovalsInput = {
|
|
|
5266
4960
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
5267
4961
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
5268
4962
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
5269
|
-
|
|
5270
|
-
|
|
5271
|
-
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
4963
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
4964
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
5272
4965
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
5273
4966
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
5274
4967
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
@@ -5286,7 +4979,7 @@ export type UserCreateWithoutStepApprovalsInput = {
|
|
|
5286
4979
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
5287
4980
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
5288
4981
|
};
|
|
5289
|
-
export type
|
|
4982
|
+
export type UserUncheckedCreateWithoutUploadedDocsInput = {
|
|
5290
4983
|
id?: string;
|
|
5291
4984
|
email: string;
|
|
5292
4985
|
password?: string | null;
|
|
@@ -5316,9 +5009,8 @@ export type UserUncheckedCreateWithoutStepApprovalsInput = {
|
|
|
5316
5009
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
5317
5010
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
5318
5011
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
5319
|
-
|
|
5320
|
-
|
|
5321
|
-
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
5012
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5013
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
5322
5014
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
5323
5015
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5324
5016
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
@@ -5336,20 +5028,20 @@ export type UserUncheckedCreateWithoutStepApprovalsInput = {
|
|
|
5336
5028
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5337
5029
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
5338
5030
|
};
|
|
5339
|
-
export type
|
|
5031
|
+
export type UserCreateOrConnectWithoutUploadedDocsInput = {
|
|
5340
5032
|
where: Prisma.UserWhereUniqueInput;
|
|
5341
|
-
create: Prisma.XOR<Prisma.
|
|
5033
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutUploadedDocsInput, Prisma.UserUncheckedCreateWithoutUploadedDocsInput>;
|
|
5342
5034
|
};
|
|
5343
|
-
export type
|
|
5344
|
-
update: Prisma.XOR<Prisma.
|
|
5345
|
-
create: Prisma.XOR<Prisma.
|
|
5035
|
+
export type UserUpsertWithoutUploadedDocsInput = {
|
|
5036
|
+
update: Prisma.XOR<Prisma.UserUpdateWithoutUploadedDocsInput, Prisma.UserUncheckedUpdateWithoutUploadedDocsInput>;
|
|
5037
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutUploadedDocsInput, Prisma.UserUncheckedCreateWithoutUploadedDocsInput>;
|
|
5346
5038
|
where?: Prisma.UserWhereInput;
|
|
5347
5039
|
};
|
|
5348
|
-
export type
|
|
5040
|
+
export type UserUpdateToOneWithWhereWithoutUploadedDocsInput = {
|
|
5349
5041
|
where?: Prisma.UserWhereInput;
|
|
5350
|
-
data: Prisma.XOR<Prisma.
|
|
5042
|
+
data: Prisma.XOR<Prisma.UserUpdateWithoutUploadedDocsInput, Prisma.UserUncheckedUpdateWithoutUploadedDocsInput>;
|
|
5351
5043
|
};
|
|
5352
|
-
export type
|
|
5044
|
+
export type UserUpdateWithoutUploadedDocsInput = {
|
|
5353
5045
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5354
5046
|
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5355
5047
|
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -5379,9 +5071,8 @@ export type UserUpdateWithoutStepApprovalsInput = {
|
|
|
5379
5071
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
5380
5072
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
5381
5073
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
5382
|
-
|
|
5383
|
-
|
|
5384
|
-
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
5074
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
5075
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
5385
5076
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
5386
5077
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
5387
5078
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -5399,7 +5090,7 @@ export type UserUpdateWithoutStepApprovalsInput = {
|
|
|
5399
5090
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
5400
5091
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
5401
5092
|
};
|
|
5402
|
-
export type
|
|
5093
|
+
export type UserUncheckedUpdateWithoutUploadedDocsInput = {
|
|
5403
5094
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5404
5095
|
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5405
5096
|
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -5429,9 +5120,8 @@ export type UserUncheckedUpdateWithoutStepApprovalsInput = {
|
|
|
5429
5120
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
5430
5121
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
5431
5122
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
5432
|
-
|
|
5433
|
-
|
|
5434
|
-
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
5123
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5124
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
5435
5125
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
5436
5126
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5437
5127
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -5449,7 +5139,7 @@ export type UserUncheckedUpdateWithoutStepApprovalsInput = {
|
|
|
5449
5139
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5450
5140
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
5451
5141
|
};
|
|
5452
|
-
export type
|
|
5142
|
+
export type UserCreateWithoutDocumentReviewsInput = {
|
|
5453
5143
|
id?: string;
|
|
5454
5144
|
email: string;
|
|
5455
5145
|
password?: string | null;
|
|
@@ -5478,10 +5168,10 @@ export type UserCreateWithoutApplicationPaymentsInput = {
|
|
|
5478
5168
|
properties?: Prisma.PropertyCreateNestedManyWithoutUserInput;
|
|
5479
5169
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
5480
5170
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
5481
|
-
|
|
5482
|
-
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
5483
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
5171
|
+
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
5484
5172
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
5173
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
5174
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
5485
5175
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
5486
5176
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
5487
5177
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
@@ -5496,10 +5186,9 @@ export type UserCreateWithoutApplicationPaymentsInput = {
|
|
|
5496
5186
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
5497
5187
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
5498
5188
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
5499
|
-
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
5500
5189
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
5501
5190
|
};
|
|
5502
|
-
export type
|
|
5191
|
+
export type UserUncheckedCreateWithoutDocumentReviewsInput = {
|
|
5503
5192
|
id?: string;
|
|
5504
5193
|
email: string;
|
|
5505
5194
|
password?: string | null;
|
|
@@ -5528,10 +5217,10 @@ export type UserUncheckedCreateWithoutApplicationPaymentsInput = {
|
|
|
5528
5217
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutUserInput;
|
|
5529
5218
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
5530
5219
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
5531
|
-
|
|
5532
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
5533
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
5220
|
+
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
5534
5221
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
5222
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5223
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
5535
5224
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
5536
5225
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5537
5226
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
@@ -5546,23 +5235,22 @@ export type UserUncheckedCreateWithoutApplicationPaymentsInput = {
|
|
|
5546
5235
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
5547
5236
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
5548
5237
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
5549
|
-
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5550
5238
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
5551
5239
|
};
|
|
5552
|
-
export type
|
|
5240
|
+
export type UserCreateOrConnectWithoutDocumentReviewsInput = {
|
|
5553
5241
|
where: Prisma.UserWhereUniqueInput;
|
|
5554
|
-
create: Prisma.XOR<Prisma.
|
|
5242
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutDocumentReviewsInput, Prisma.UserUncheckedCreateWithoutDocumentReviewsInput>;
|
|
5555
5243
|
};
|
|
5556
|
-
export type
|
|
5557
|
-
update: Prisma.XOR<Prisma.
|
|
5558
|
-
create: Prisma.XOR<Prisma.
|
|
5244
|
+
export type UserUpsertWithoutDocumentReviewsInput = {
|
|
5245
|
+
update: Prisma.XOR<Prisma.UserUpdateWithoutDocumentReviewsInput, Prisma.UserUncheckedUpdateWithoutDocumentReviewsInput>;
|
|
5246
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutDocumentReviewsInput, Prisma.UserUncheckedCreateWithoutDocumentReviewsInput>;
|
|
5559
5247
|
where?: Prisma.UserWhereInput;
|
|
5560
5248
|
};
|
|
5561
|
-
export type
|
|
5249
|
+
export type UserUpdateToOneWithWhereWithoutDocumentReviewsInput = {
|
|
5562
5250
|
where?: Prisma.UserWhereInput;
|
|
5563
|
-
data: Prisma.XOR<Prisma.
|
|
5251
|
+
data: Prisma.XOR<Prisma.UserUpdateWithoutDocumentReviewsInput, Prisma.UserUncheckedUpdateWithoutDocumentReviewsInput>;
|
|
5564
5252
|
};
|
|
5565
|
-
export type
|
|
5253
|
+
export type UserUpdateWithoutDocumentReviewsInput = {
|
|
5566
5254
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5567
5255
|
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5568
5256
|
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -5591,10 +5279,10 @@ export type UserUpdateWithoutApplicationPaymentsInput = {
|
|
|
5591
5279
|
properties?: Prisma.PropertyUpdateManyWithoutUserNestedInput;
|
|
5592
5280
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
5593
5281
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
5594
|
-
|
|
5595
|
-
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
5596
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
5282
|
+
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
5597
5283
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
5284
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
5285
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
5598
5286
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
5599
5287
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
5600
5288
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -5609,10 +5297,9 @@ export type UserUpdateWithoutApplicationPaymentsInput = {
|
|
|
5609
5297
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
5610
5298
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
5611
5299
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
5612
|
-
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
5613
5300
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
5614
5301
|
};
|
|
5615
|
-
export type
|
|
5302
|
+
export type UserUncheckedUpdateWithoutDocumentReviewsInput = {
|
|
5616
5303
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5617
5304
|
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5618
5305
|
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -5641,10 +5328,10 @@ export type UserUncheckedUpdateWithoutApplicationPaymentsInput = {
|
|
|
5641
5328
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutUserNestedInput;
|
|
5642
5329
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
5643
5330
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
5644
|
-
|
|
5645
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
5646
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
5331
|
+
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
5647
5332
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
5333
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5334
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
5648
5335
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
5649
5336
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5650
5337
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -5659,10 +5346,9 @@ export type UserUncheckedUpdateWithoutApplicationPaymentsInput = {
|
|
|
5659
5346
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
5660
5347
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
5661
5348
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
5662
|
-
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5663
5349
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
5664
5350
|
};
|
|
5665
|
-
export type
|
|
5351
|
+
export type UserCreateWithoutCompletedStagesInput = {
|
|
5666
5352
|
id?: string;
|
|
5667
5353
|
email: string;
|
|
5668
5354
|
password?: string | null;
|
|
@@ -5692,9 +5378,8 @@ export type UserCreateWithoutUploadedDocsInput = {
|
|
|
5692
5378
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
5693
5379
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
5694
5380
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
5695
|
-
|
|
5696
|
-
|
|
5697
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
5381
|
+
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
5382
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
5698
5383
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
5699
5384
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
5700
5385
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
@@ -5712,7 +5397,7 @@ export type UserCreateWithoutUploadedDocsInput = {
|
|
|
5712
5397
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
5713
5398
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
5714
5399
|
};
|
|
5715
|
-
export type
|
|
5400
|
+
export type UserUncheckedCreateWithoutCompletedStagesInput = {
|
|
5716
5401
|
id?: string;
|
|
5717
5402
|
email: string;
|
|
5718
5403
|
password?: string | null;
|
|
@@ -5742,9 +5427,8 @@ export type UserUncheckedCreateWithoutUploadedDocsInput = {
|
|
|
5742
5427
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
5743
5428
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
5744
5429
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
5745
|
-
|
|
5746
|
-
|
|
5747
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
5430
|
+
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
5431
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5748
5432
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
5749
5433
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5750
5434
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
@@ -5762,20 +5446,20 @@ export type UserUncheckedCreateWithoutUploadedDocsInput = {
|
|
|
5762
5446
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5763
5447
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
5764
5448
|
};
|
|
5765
|
-
export type
|
|
5449
|
+
export type UserCreateOrConnectWithoutCompletedStagesInput = {
|
|
5766
5450
|
where: Prisma.UserWhereUniqueInput;
|
|
5767
|
-
create: Prisma.XOR<Prisma.
|
|
5451
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutCompletedStagesInput, Prisma.UserUncheckedCreateWithoutCompletedStagesInput>;
|
|
5768
5452
|
};
|
|
5769
|
-
export type
|
|
5770
|
-
update: Prisma.XOR<Prisma.
|
|
5771
|
-
create: Prisma.XOR<Prisma.
|
|
5453
|
+
export type UserUpsertWithoutCompletedStagesInput = {
|
|
5454
|
+
update: Prisma.XOR<Prisma.UserUpdateWithoutCompletedStagesInput, Prisma.UserUncheckedUpdateWithoutCompletedStagesInput>;
|
|
5455
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutCompletedStagesInput, Prisma.UserUncheckedCreateWithoutCompletedStagesInput>;
|
|
5772
5456
|
where?: Prisma.UserWhereInput;
|
|
5773
5457
|
};
|
|
5774
|
-
export type
|
|
5458
|
+
export type UserUpdateToOneWithWhereWithoutCompletedStagesInput = {
|
|
5775
5459
|
where?: Prisma.UserWhereInput;
|
|
5776
|
-
data: Prisma.XOR<Prisma.
|
|
5460
|
+
data: Prisma.XOR<Prisma.UserUpdateWithoutCompletedStagesInput, Prisma.UserUncheckedUpdateWithoutCompletedStagesInput>;
|
|
5777
5461
|
};
|
|
5778
|
-
export type
|
|
5462
|
+
export type UserUpdateWithoutCompletedStagesInput = {
|
|
5779
5463
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5780
5464
|
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5781
5465
|
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -5805,9 +5489,8 @@ export type UserUpdateWithoutUploadedDocsInput = {
|
|
|
5805
5489
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
5806
5490
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
5807
5491
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
5808
|
-
|
|
5809
|
-
|
|
5810
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
5492
|
+
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
5493
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
5811
5494
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
5812
5495
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
5813
5496
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -5825,7 +5508,7 @@ export type UserUpdateWithoutUploadedDocsInput = {
|
|
|
5825
5508
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
5826
5509
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
5827
5510
|
};
|
|
5828
|
-
export type
|
|
5511
|
+
export type UserUncheckedUpdateWithoutCompletedStagesInput = {
|
|
5829
5512
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5830
5513
|
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5831
5514
|
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -5855,9 +5538,8 @@ export type UserUncheckedUpdateWithoutUploadedDocsInput = {
|
|
|
5855
5538
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
5856
5539
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
5857
5540
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
5858
|
-
|
|
5859
|
-
|
|
5860
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
5541
|
+
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
5542
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5861
5543
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
5862
5544
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5863
5545
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -5875,7 +5557,7 @@ export type UserUncheckedUpdateWithoutUploadedDocsInput = {
|
|
|
5875
5557
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5876
5558
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
5877
5559
|
};
|
|
5878
|
-
export type
|
|
5560
|
+
export type UserCreateWithoutDocumentApprovalsInput = {
|
|
5879
5561
|
id?: string;
|
|
5880
5562
|
email: string;
|
|
5881
5563
|
password?: string | null;
|
|
@@ -5905,10 +5587,8 @@ export type UserCreateWithoutDocumentReviewsInput = {
|
|
|
5905
5587
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
5906
5588
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
5907
5589
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
5908
|
-
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
5909
|
-
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
5910
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
5911
5590
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
5591
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
5912
5592
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
5913
5593
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
5914
5594
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
@@ -5923,9 +5603,10 @@ export type UserCreateWithoutDocumentReviewsInput = {
|
|
|
5923
5603
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
5924
5604
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
5925
5605
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
5606
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
5926
5607
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
5927
5608
|
};
|
|
5928
|
-
export type
|
|
5609
|
+
export type UserUncheckedCreateWithoutDocumentApprovalsInput = {
|
|
5929
5610
|
id?: string;
|
|
5930
5611
|
email: string;
|
|
5931
5612
|
password?: string | null;
|
|
@@ -5955,10 +5636,8 @@ export type UserUncheckedCreateWithoutDocumentReviewsInput = {
|
|
|
5955
5636
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
5956
5637
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
5957
5638
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
5958
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
5959
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
5960
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
5961
5639
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
5640
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
5962
5641
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
5963
5642
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5964
5643
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
@@ -5973,22 +5652,23 @@ export type UserUncheckedCreateWithoutDocumentReviewsInput = {
|
|
|
5973
5652
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
5974
5653
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
5975
5654
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
5655
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5976
5656
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
5977
5657
|
};
|
|
5978
|
-
export type
|
|
5658
|
+
export type UserCreateOrConnectWithoutDocumentApprovalsInput = {
|
|
5979
5659
|
where: Prisma.UserWhereUniqueInput;
|
|
5980
|
-
create: Prisma.XOR<Prisma.
|
|
5660
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutDocumentApprovalsInput, Prisma.UserUncheckedCreateWithoutDocumentApprovalsInput>;
|
|
5981
5661
|
};
|
|
5982
|
-
export type
|
|
5983
|
-
update: Prisma.XOR<Prisma.
|
|
5984
|
-
create: Prisma.XOR<Prisma.
|
|
5662
|
+
export type UserUpsertWithoutDocumentApprovalsInput = {
|
|
5663
|
+
update: Prisma.XOR<Prisma.UserUpdateWithoutDocumentApprovalsInput, Prisma.UserUncheckedUpdateWithoutDocumentApprovalsInput>;
|
|
5664
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutDocumentApprovalsInput, Prisma.UserUncheckedCreateWithoutDocumentApprovalsInput>;
|
|
5985
5665
|
where?: Prisma.UserWhereInput;
|
|
5986
5666
|
};
|
|
5987
|
-
export type
|
|
5667
|
+
export type UserUpdateToOneWithWhereWithoutDocumentApprovalsInput = {
|
|
5988
5668
|
where?: Prisma.UserWhereInput;
|
|
5989
|
-
data: Prisma.XOR<Prisma.
|
|
5669
|
+
data: Prisma.XOR<Prisma.UserUpdateWithoutDocumentApprovalsInput, Prisma.UserUncheckedUpdateWithoutDocumentApprovalsInput>;
|
|
5990
5670
|
};
|
|
5991
|
-
export type
|
|
5671
|
+
export type UserUpdateWithoutDocumentApprovalsInput = {
|
|
5992
5672
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5993
5673
|
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5994
5674
|
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -6018,10 +5698,8 @@ export type UserUpdateWithoutDocumentReviewsInput = {
|
|
|
6018
5698
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
6019
5699
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
6020
5700
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
6021
|
-
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
6022
|
-
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
6023
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
6024
5701
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
5702
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
6025
5703
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
6026
5704
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
6027
5705
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -6036,9 +5714,10 @@ export type UserUpdateWithoutDocumentReviewsInput = {
|
|
|
6036
5714
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
6037
5715
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
6038
5716
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
5717
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
6039
5718
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
6040
5719
|
};
|
|
6041
|
-
export type
|
|
5720
|
+
export type UserUncheckedUpdateWithoutDocumentApprovalsInput = {
|
|
6042
5721
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
6043
5722
|
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
6044
5723
|
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -6068,10 +5747,8 @@ export type UserUncheckedUpdateWithoutDocumentReviewsInput = {
|
|
|
6068
5747
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
6069
5748
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
6070
5749
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
6071
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
6072
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
6073
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
6074
5750
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
5751
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
6075
5752
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
6076
5753
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
6077
5754
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -6086,6 +5763,7 @@ export type UserUncheckedUpdateWithoutDocumentReviewsInput = {
|
|
|
6086
5763
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
6087
5764
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
6088
5765
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
5766
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
6089
5767
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
6090
5768
|
};
|
|
6091
5769
|
export type UserCreateWithoutOfferLettersGeneratedInput = {
|
|
@@ -6118,10 +5796,9 @@ export type UserCreateWithoutOfferLettersGeneratedInput = {
|
|
|
6118
5796
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
6119
5797
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
6120
5798
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
6121
|
-
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
6122
|
-
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
6123
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
6124
5799
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
5800
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
5801
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
6125
5802
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
6126
5803
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
6127
5804
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
@@ -6168,10 +5845,9 @@ export type UserUncheckedCreateWithoutOfferLettersGeneratedInput = {
|
|
|
6168
5845
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
6169
5846
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
6170
5847
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
6171
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
6172
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
6173
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
6174
5848
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
5849
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5850
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
6175
5851
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
6176
5852
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
6177
5853
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
@@ -6222,10 +5898,9 @@ export type UserCreateWithoutOfferLettersSentInput = {
|
|
|
6222
5898
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
6223
5899
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
6224
5900
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
6225
|
-
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
6226
|
-
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
6227
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
6228
5901
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
5902
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
5903
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
6229
5904
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
6230
5905
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
6231
5906
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
@@ -6272,10 +5947,9 @@ export type UserUncheckedCreateWithoutOfferLettersSentInput = {
|
|
|
6272
5947
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
6273
5948
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
6274
5949
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
6275
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
6276
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
6277
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
6278
5950
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
5951
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5952
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
6279
5953
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
6280
5954
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
6281
5955
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
@@ -6335,10 +6009,9 @@ export type UserUpdateWithoutOfferLettersGeneratedInput = {
|
|
|
6335
6009
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
6336
6010
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
6337
6011
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
6338
|
-
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
6339
|
-
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
6340
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
6341
6012
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
6013
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
6014
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
6342
6015
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
6343
6016
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
6344
6017
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -6385,10 +6058,9 @@ export type UserUncheckedUpdateWithoutOfferLettersGeneratedInput = {
|
|
|
6385
6058
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
6386
6059
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
6387
6060
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
6388
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
6389
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
6390
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
6391
6061
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
6062
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
6063
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
6392
6064
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
6393
6065
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
6394
6066
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -6444,10 +6116,9 @@ export type UserUpdateWithoutOfferLettersSentInput = {
|
|
|
6444
6116
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
6445
6117
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
6446
6118
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
6447
|
-
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
6448
|
-
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
6449
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
6450
6119
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
6120
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
6121
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
6451
6122
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
6452
6123
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
6453
6124
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -6494,10 +6165,9 @@ export type UserUncheckedUpdateWithoutOfferLettersSentInput = {
|
|
|
6494
6165
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
6495
6166
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
6496
6167
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
6497
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
6498
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
6499
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
6500
6168
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
6169
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
6170
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
6501
6171
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
6502
6172
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
6503
6173
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -6544,10 +6214,9 @@ export type UserCreateWithoutInitiatedTerminationsInput = {
|
|
|
6544
6214
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
6545
6215
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
6546
6216
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
6547
|
-
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
6548
|
-
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
6549
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
6550
6217
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
6218
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
6219
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
6551
6220
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
6552
6221
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
6553
6222
|
reviewedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutReviewerInput;
|
|
@@ -6594,10 +6263,9 @@ export type UserUncheckedCreateWithoutInitiatedTerminationsInput = {
|
|
|
6594
6263
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
6595
6264
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
6596
6265
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
6597
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
6598
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
6599
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
6600
6266
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
6267
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
6268
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
6601
6269
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
6602
6270
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
6603
6271
|
reviewedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
@@ -6648,10 +6316,9 @@ export type UserCreateWithoutReviewedTerminationsInput = {
|
|
|
6648
6316
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
6649
6317
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
6650
6318
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
6651
|
-
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
6652
|
-
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
6653
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
6654
6319
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
6320
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
6321
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
6655
6322
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
6656
6323
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
6657
6324
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
@@ -6698,10 +6365,9 @@ export type UserUncheckedCreateWithoutReviewedTerminationsInput = {
|
|
|
6698
6365
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
6699
6366
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
6700
6367
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
6701
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
6702
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
6703
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
6704
6368
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
6369
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
6370
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
6705
6371
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
6706
6372
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
6707
6373
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
@@ -6761,10 +6427,9 @@ export type UserUpdateWithoutInitiatedTerminationsInput = {
|
|
|
6761
6427
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
6762
6428
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
6763
6429
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
6764
|
-
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
6765
|
-
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
6766
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
6767
6430
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
6431
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
6432
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
6768
6433
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
6769
6434
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
6770
6435
|
reviewedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutReviewerNestedInput;
|
|
@@ -6811,10 +6476,9 @@ export type UserUncheckedUpdateWithoutInitiatedTerminationsInput = {
|
|
|
6811
6476
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
6812
6477
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
6813
6478
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
6814
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
6815
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
6816
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
6817
6479
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
6480
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
6481
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
6818
6482
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
6819
6483
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
6820
6484
|
reviewedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
@@ -6870,10 +6534,9 @@ export type UserUpdateWithoutReviewedTerminationsInput = {
|
|
|
6870
6534
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
6871
6535
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
6872
6536
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
6873
|
-
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
6874
|
-
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
6875
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
6876
6537
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
6538
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
6539
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
6877
6540
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
6878
6541
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
6879
6542
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -6920,10 +6583,9 @@ export type UserUncheckedUpdateWithoutReviewedTerminationsInput = {
|
|
|
6920
6583
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
6921
6584
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
6922
6585
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
6923
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
6924
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
6925
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
6926
6586
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
6587
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
6588
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
6927
6589
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
6928
6590
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
6929
6591
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -6970,10 +6632,9 @@ export type UserCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
6970
6632
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
6971
6633
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
6972
6634
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
6973
|
-
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
6974
|
-
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
6975
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
6976
6635
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
6636
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
6637
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
6977
6638
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
6978
6639
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
6979
6640
|
reviewedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutReviewerInput;
|
|
@@ -7020,10 +6681,9 @@ export type UserUncheckedCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
7020
6681
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
7021
6682
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
7022
6683
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
7023
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
7024
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
7025
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
7026
6684
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
6685
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
6686
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
7027
6687
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
7028
6688
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
7029
6689
|
reviewedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
@@ -7074,10 +6734,9 @@ export type UserCreateWithoutReviewedChangeRequestsInput = {
|
|
|
7074
6734
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
7075
6735
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
7076
6736
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
7077
|
-
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
7078
|
-
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
7079
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
7080
6737
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
6738
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
6739
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
7081
6740
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
7082
6741
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
7083
6742
|
reviewedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutReviewerInput;
|
|
@@ -7124,10 +6783,9 @@ export type UserUncheckedCreateWithoutReviewedChangeRequestsInput = {
|
|
|
7124
6783
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
7125
6784
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
7126
6785
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
7127
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
7128
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
7129
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
7130
6786
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
6787
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
6788
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
7131
6789
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
7132
6790
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
7133
6791
|
reviewedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
@@ -7187,10 +6845,9 @@ export type UserUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
7187
6845
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
7188
6846
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
7189
6847
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
7190
|
-
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
7191
|
-
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
7192
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
7193
6848
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
6849
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
6850
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
7194
6851
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
7195
6852
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
7196
6853
|
reviewedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutReviewerNestedInput;
|
|
@@ -7237,10 +6894,9 @@ export type UserUncheckedUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
7237
6894
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
7238
6895
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
7239
6896
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
7240
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
7241
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
7242
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
7243
6897
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
6898
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
6899
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
7244
6900
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
7245
6901
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
7246
6902
|
reviewedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
@@ -7296,10 +6952,9 @@ export type UserUpdateWithoutReviewedChangeRequestsInput = {
|
|
|
7296
6952
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
7297
6953
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
7298
6954
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
7299
|
-
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
7300
|
-
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
7301
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
7302
6955
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
6956
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
6957
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
7303
6958
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
7304
6959
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
7305
6960
|
reviewedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutReviewerNestedInput;
|
|
@@ -7346,10 +7001,9 @@ export type UserUncheckedUpdateWithoutReviewedChangeRequestsInput = {
|
|
|
7346
7001
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
7347
7002
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
7348
7003
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
7349
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
7350
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
7351
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
7352
7004
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
7005
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
7006
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
7353
7007
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
7354
7008
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
7355
7009
|
reviewedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
@@ -7396,10 +7050,9 @@ export type UserCreateWithoutTransferRequestsSubmittedInput = {
|
|
|
7396
7050
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
7397
7051
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
7398
7052
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
7399
|
-
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
7400
|
-
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
7401
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
7402
7053
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
7054
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
7055
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
7403
7056
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
7404
7057
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
7405
7058
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
@@ -7446,10 +7099,9 @@ export type UserUncheckedCreateWithoutTransferRequestsSubmittedInput = {
|
|
|
7446
7099
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
7447
7100
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
7448
7101
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
7449
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
7450
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
7451
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
7452
7102
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
7103
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
7104
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
7453
7105
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
7454
7106
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
7455
7107
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
@@ -7500,10 +7152,9 @@ export type UserCreateWithoutTransferRequestsReviewedInput = {
|
|
|
7500
7152
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
7501
7153
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
7502
7154
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
7503
|
-
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
7504
|
-
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
7505
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
7506
7155
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
7156
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
7157
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
7507
7158
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
7508
7159
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
7509
7160
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
@@ -7550,10 +7201,9 @@ export type UserUncheckedCreateWithoutTransferRequestsReviewedInput = {
|
|
|
7550
7201
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
7551
7202
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
7552
7203
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
7553
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
7554
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
7555
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
7556
7204
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
7205
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
7206
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
7557
7207
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
7558
7208
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
7559
7209
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
@@ -7613,10 +7263,9 @@ export type UserUpdateWithoutTransferRequestsSubmittedInput = {
|
|
|
7613
7263
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
7614
7264
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
7615
7265
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
7616
|
-
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
7617
|
-
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
7618
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
7619
7266
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
7267
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
7268
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
7620
7269
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
7621
7270
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
7622
7271
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -7663,10 +7312,9 @@ export type UserUncheckedUpdateWithoutTransferRequestsSubmittedInput = {
|
|
|
7663
7312
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
7664
7313
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
7665
7314
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
7666
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
7667
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
7668
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
7669
7315
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
7316
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
7317
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
7670
7318
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
7671
7319
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
7672
7320
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -7722,10 +7370,9 @@ export type UserUpdateWithoutTransferRequestsReviewedInput = {
|
|
|
7722
7370
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
7723
7371
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
7724
7372
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
7725
|
-
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
7726
|
-
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
7727
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
7728
7373
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
7374
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
7375
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
7729
7376
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
7730
7377
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
7731
7378
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -7772,10 +7419,9 @@ export type UserUncheckedUpdateWithoutTransferRequestsReviewedInput = {
|
|
|
7772
7419
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
7773
7420
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
7774
7421
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
7775
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
7776
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
7777
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
7778
7422
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
7423
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
7424
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
7779
7425
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
7780
7426
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
7781
7427
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -7822,10 +7468,9 @@ export type UserCreateWithoutApprovalRequestsSubmittedInput = {
|
|
|
7822
7468
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
7823
7469
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
7824
7470
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
7825
|
-
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
7826
|
-
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
7827
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
7828
7471
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
7472
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
7473
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
7829
7474
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
7830
7475
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
7831
7476
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
@@ -7872,10 +7517,9 @@ export type UserUncheckedCreateWithoutApprovalRequestsSubmittedInput = {
|
|
|
7872
7517
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
7873
7518
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
7874
7519
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
7875
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
7876
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
7877
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
7878
7520
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
7521
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
7522
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
7879
7523
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
7880
7524
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
7881
7525
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
@@ -7926,10 +7570,9 @@ export type UserCreateWithoutApprovalRequestsAssignedInput = {
|
|
|
7926
7570
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
7927
7571
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
7928
7572
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
7929
|
-
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
7930
|
-
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
7931
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
7932
7573
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
7574
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
7575
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
7933
7576
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
7934
7577
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
7935
7578
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
@@ -7976,10 +7619,9 @@ export type UserUncheckedCreateWithoutApprovalRequestsAssignedInput = {
|
|
|
7976
7619
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
7977
7620
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
7978
7621
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
7979
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
7980
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
7981
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
7982
7622
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
7623
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
7624
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
7983
7625
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
7984
7626
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
7985
7627
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
@@ -8030,10 +7672,9 @@ export type UserCreateWithoutApprovalRequestsReviewedInput = {
|
|
|
8030
7672
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
8031
7673
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
8032
7674
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
8033
|
-
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
8034
|
-
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
8035
|
-
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
8036
7675
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
7676
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
7677
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
8037
7678
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
8038
7679
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
8039
7680
|
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
@@ -8080,10 +7721,9 @@ export type UserUncheckedCreateWithoutApprovalRequestsReviewedInput = {
|
|
|
8080
7721
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
8081
7722
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
8082
7723
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
8083
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
8084
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
8085
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
8086
7724
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
7725
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
7726
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
8087
7727
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
8088
7728
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
8089
7729
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
@@ -8143,10 +7783,9 @@ export type UserUpdateWithoutApprovalRequestsSubmittedInput = {
|
|
|
8143
7783
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
8144
7784
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
8145
7785
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
8146
|
-
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
8147
|
-
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
8148
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
8149
7786
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
7787
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
7788
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
8150
7789
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
8151
7790
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
8152
7791
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -8193,10 +7832,9 @@ export type UserUncheckedUpdateWithoutApprovalRequestsSubmittedInput = {
|
|
|
8193
7832
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
8194
7833
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
8195
7834
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
8196
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
8197
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
8198
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
8199
7835
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
7836
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
7837
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
8200
7838
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
8201
7839
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
8202
7840
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -8252,10 +7890,9 @@ export type UserUpdateWithoutApprovalRequestsAssignedInput = {
|
|
|
8252
7890
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
8253
7891
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
8254
7892
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
8255
|
-
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
8256
|
-
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
8257
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
8258
7893
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
7894
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
7895
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
8259
7896
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
8260
7897
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
8261
7898
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -8302,10 +7939,9 @@ export type UserUncheckedUpdateWithoutApprovalRequestsAssignedInput = {
|
|
|
8302
7939
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
8303
7940
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
8304
7941
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
8305
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
8306
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
8307
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
8308
7942
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
7943
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
7944
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
8309
7945
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
8310
7946
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
8311
7947
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -8361,10 +7997,9 @@ export type UserUpdateWithoutApprovalRequestsReviewedInput = {
|
|
|
8361
7997
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
8362
7998
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
8363
7999
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
8364
|
-
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
8365
|
-
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
8366
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
8367
8000
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
8001
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
8002
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
8368
8003
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
8369
8004
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
8370
8005
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -8411,10 +8046,9 @@ export type UserUncheckedUpdateWithoutApprovalRequestsReviewedInput = {
|
|
|
8411
8046
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
8412
8047
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
8413
8048
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
8414
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
8415
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
8416
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
8417
8049
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
8050
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
8051
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
8418
8052
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
8419
8053
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
8420
8054
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -8478,10 +8112,9 @@ export type UserUpdateWithoutTenantInput = {
|
|
|
8478
8112
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
8479
8113
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
8480
8114
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
8481
|
-
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
8482
|
-
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
8483
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
8484
8115
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
8116
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
8117
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
8485
8118
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
8486
8119
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
8487
8120
|
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -8528,10 +8161,9 @@ export type UserUncheckedUpdateWithoutTenantInput = {
|
|
|
8528
8161
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
8529
8162
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
8530
8163
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
8531
|
-
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
8532
|
-
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
8533
|
-
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
8534
8164
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
8165
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
8166
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
8535
8167
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
8536
8168
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
8537
8169
|
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
@@ -8583,10 +8215,9 @@ export type UserCountOutputType = {
|
|
|
8583
8215
|
applications: number;
|
|
8584
8216
|
soldApplications: number;
|
|
8585
8217
|
applicationPayments: number;
|
|
8586
|
-
assignedSteps: number;
|
|
8587
|
-
gateActedSteps: number;
|
|
8588
|
-
stepApprovals: number;
|
|
8589
8218
|
uploadedDocs: number;
|
|
8219
|
+
documentApprovals: number;
|
|
8220
|
+
completedStages: number;
|
|
8590
8221
|
paymentMethodChangeRequests: number;
|
|
8591
8222
|
reviewedChangeRequests: number;
|
|
8592
8223
|
initiatedTerminations: number;
|
|
@@ -8617,10 +8248,9 @@ export type UserCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.I
|
|
|
8617
8248
|
applications?: boolean | UserCountOutputTypeCountApplicationsArgs;
|
|
8618
8249
|
soldApplications?: boolean | UserCountOutputTypeCountSoldApplicationsArgs;
|
|
8619
8250
|
applicationPayments?: boolean | UserCountOutputTypeCountApplicationPaymentsArgs;
|
|
8620
|
-
assignedSteps?: boolean | UserCountOutputTypeCountAssignedStepsArgs;
|
|
8621
|
-
gateActedSteps?: boolean | UserCountOutputTypeCountGateActedStepsArgs;
|
|
8622
|
-
stepApprovals?: boolean | UserCountOutputTypeCountStepApprovalsArgs;
|
|
8623
8251
|
uploadedDocs?: boolean | UserCountOutputTypeCountUploadedDocsArgs;
|
|
8252
|
+
documentApprovals?: boolean | UserCountOutputTypeCountDocumentApprovalsArgs;
|
|
8253
|
+
completedStages?: boolean | UserCountOutputTypeCountCompletedStagesArgs;
|
|
8624
8254
|
paymentMethodChangeRequests?: boolean | UserCountOutputTypeCountPaymentMethodChangeRequestsArgs;
|
|
8625
8255
|
reviewedChangeRequests?: boolean | UserCountOutputTypeCountReviewedChangeRequestsArgs;
|
|
8626
8256
|
initiatedTerminations?: boolean | UserCountOutputTypeCountInitiatedTerminationsArgs;
|
|
@@ -8722,26 +8352,20 @@ export type UserCountOutputTypeCountApplicationPaymentsArgs<ExtArgs extends runt
|
|
|
8722
8352
|
/**
|
|
8723
8353
|
* UserCountOutputType without action
|
|
8724
8354
|
*/
|
|
8725
|
-
export type
|
|
8726
|
-
where?: Prisma.
|
|
8727
|
-
};
|
|
8728
|
-
/**
|
|
8729
|
-
* UserCountOutputType without action
|
|
8730
|
-
*/
|
|
8731
|
-
export type UserCountOutputTypeCountGateActedStepsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
8732
|
-
where?: Prisma.DocumentationStepWhereInput;
|
|
8355
|
+
export type UserCountOutputTypeCountUploadedDocsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
8356
|
+
where?: Prisma.ApplicationDocumentWhereInput;
|
|
8733
8357
|
};
|
|
8734
8358
|
/**
|
|
8735
8359
|
* UserCountOutputType without action
|
|
8736
8360
|
*/
|
|
8737
|
-
export type
|
|
8738
|
-
where?: Prisma.
|
|
8361
|
+
export type UserCountOutputTypeCountDocumentApprovalsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
8362
|
+
where?: Prisma.DocumentApprovalWhereInput;
|
|
8739
8363
|
};
|
|
8740
8364
|
/**
|
|
8741
8365
|
* UserCountOutputType without action
|
|
8742
8366
|
*/
|
|
8743
|
-
export type
|
|
8744
|
-
where?: Prisma.
|
|
8367
|
+
export type UserCountOutputTypeCountCompletedStagesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
8368
|
+
where?: Prisma.ApprovalStageProgressWhereInput;
|
|
8745
8369
|
};
|
|
8746
8370
|
/**
|
|
8747
8371
|
* UserCountOutputType without action
|
|
@@ -8871,10 +8495,9 @@ export type UserSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
8871
8495
|
applications?: boolean | Prisma.User$applicationsArgs<ExtArgs>;
|
|
8872
8496
|
soldApplications?: boolean | Prisma.User$soldApplicationsArgs<ExtArgs>;
|
|
8873
8497
|
applicationPayments?: boolean | Prisma.User$applicationPaymentsArgs<ExtArgs>;
|
|
8874
|
-
assignedSteps?: boolean | Prisma.User$assignedStepsArgs<ExtArgs>;
|
|
8875
|
-
gateActedSteps?: boolean | Prisma.User$gateActedStepsArgs<ExtArgs>;
|
|
8876
|
-
stepApprovals?: boolean | Prisma.User$stepApprovalsArgs<ExtArgs>;
|
|
8877
8498
|
uploadedDocs?: boolean | Prisma.User$uploadedDocsArgs<ExtArgs>;
|
|
8499
|
+
documentApprovals?: boolean | Prisma.User$documentApprovalsArgs<ExtArgs>;
|
|
8500
|
+
completedStages?: boolean | Prisma.User$completedStagesArgs<ExtArgs>;
|
|
8878
8501
|
paymentMethodChangeRequests?: boolean | Prisma.User$paymentMethodChangeRequestsArgs<ExtArgs>;
|
|
8879
8502
|
reviewedChangeRequests?: boolean | Prisma.User$reviewedChangeRequestsArgs<ExtArgs>;
|
|
8880
8503
|
initiatedTerminations?: boolean | Prisma.User$initiatedTerminationsArgs<ExtArgs>;
|
|
@@ -8928,10 +8551,9 @@ export type UserInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
8928
8551
|
applications?: boolean | Prisma.User$applicationsArgs<ExtArgs>;
|
|
8929
8552
|
soldApplications?: boolean | Prisma.User$soldApplicationsArgs<ExtArgs>;
|
|
8930
8553
|
applicationPayments?: boolean | Prisma.User$applicationPaymentsArgs<ExtArgs>;
|
|
8931
|
-
assignedSteps?: boolean | Prisma.User$assignedStepsArgs<ExtArgs>;
|
|
8932
|
-
gateActedSteps?: boolean | Prisma.User$gateActedStepsArgs<ExtArgs>;
|
|
8933
|
-
stepApprovals?: boolean | Prisma.User$stepApprovalsArgs<ExtArgs>;
|
|
8934
8554
|
uploadedDocs?: boolean | Prisma.User$uploadedDocsArgs<ExtArgs>;
|
|
8555
|
+
documentApprovals?: boolean | Prisma.User$documentApprovalsArgs<ExtArgs>;
|
|
8556
|
+
completedStages?: boolean | Prisma.User$completedStagesArgs<ExtArgs>;
|
|
8935
8557
|
paymentMethodChangeRequests?: boolean | Prisma.User$paymentMethodChangeRequestsArgs<ExtArgs>;
|
|
8936
8558
|
reviewedChangeRequests?: boolean | Prisma.User$reviewedChangeRequestsArgs<ExtArgs>;
|
|
8937
8559
|
initiatedTerminations?: boolean | Prisma.User$initiatedTerminationsArgs<ExtArgs>;
|
|
@@ -8967,10 +8589,9 @@ export type $UserPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
8967
8589
|
applications: Prisma.$ApplicationPayload<ExtArgs>[];
|
|
8968
8590
|
soldApplications: Prisma.$ApplicationPayload<ExtArgs>[];
|
|
8969
8591
|
applicationPayments: Prisma.$ApplicationPaymentPayload<ExtArgs>[];
|
|
8970
|
-
assignedSteps: Prisma.$DocumentationStepPayload<ExtArgs>[];
|
|
8971
|
-
gateActedSteps: Prisma.$DocumentationStepPayload<ExtArgs>[];
|
|
8972
|
-
stepApprovals: Prisma.$DocumentationStepApprovalPayload<ExtArgs>[];
|
|
8973
8592
|
uploadedDocs: Prisma.$ApplicationDocumentPayload<ExtArgs>[];
|
|
8593
|
+
documentApprovals: Prisma.$DocumentApprovalPayload<ExtArgs>[];
|
|
8594
|
+
completedStages: Prisma.$ApprovalStageProgressPayload<ExtArgs>[];
|
|
8974
8595
|
paymentMethodChangeRequests: Prisma.$PaymentMethodChangeRequestPayload<ExtArgs>[];
|
|
8975
8596
|
reviewedChangeRequests: Prisma.$PaymentMethodChangeRequestPayload<ExtArgs>[];
|
|
8976
8597
|
initiatedTerminations: Prisma.$ApplicationTerminationPayload<ExtArgs>[];
|
|
@@ -9297,10 +8918,9 @@ export interface Prisma__UserClient<T, Null = never, ExtArgs extends runtime.Typ
|
|
|
9297
8918
|
applications<T extends Prisma.User$applicationsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$applicationsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ApplicationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
9298
8919
|
soldApplications<T extends Prisma.User$soldApplicationsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$soldApplicationsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ApplicationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
9299
8920
|
applicationPayments<T extends Prisma.User$applicationPaymentsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$applicationPaymentsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ApplicationPaymentPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
9300
|
-
assignedSteps<T extends Prisma.User$assignedStepsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$assignedStepsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$DocumentationStepPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
9301
|
-
gateActedSteps<T extends Prisma.User$gateActedStepsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$gateActedStepsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$DocumentationStepPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
9302
|
-
stepApprovals<T extends Prisma.User$stepApprovalsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$stepApprovalsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$DocumentationStepApprovalPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
9303
8921
|
uploadedDocs<T extends Prisma.User$uploadedDocsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$uploadedDocsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ApplicationDocumentPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
8922
|
+
documentApprovals<T extends Prisma.User$documentApprovalsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$documentApprovalsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$DocumentApprovalPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
8923
|
+
completedStages<T extends Prisma.User$completedStagesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$completedStagesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ApprovalStageProgressPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
9304
8924
|
paymentMethodChangeRequests<T extends Prisma.User$paymentMethodChangeRequestsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$paymentMethodChangeRequestsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PaymentMethodChangeRequestPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
9305
8925
|
reviewedChangeRequests<T extends Prisma.User$reviewedChangeRequestsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$reviewedChangeRequestsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PaymentMethodChangeRequestPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
9306
8926
|
initiatedTerminations<T extends Prisma.User$initiatedTerminationsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$initiatedTerminationsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ApplicationTerminationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
@@ -9999,96 +9619,73 @@ export type User$applicationPaymentsArgs<ExtArgs extends runtime.Types.Extension
|
|
|
9999
9619
|
distinct?: Prisma.ApplicationPaymentScalarFieldEnum | Prisma.ApplicationPaymentScalarFieldEnum[];
|
|
10000
9620
|
};
|
|
10001
9621
|
/**
|
|
10002
|
-
* User.
|
|
10003
|
-
*/
|
|
10004
|
-
export type User$assignedStepsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
10005
|
-
/**
|
|
10006
|
-
* Select specific fields to fetch from the DocumentationStep
|
|
10007
|
-
*/
|
|
10008
|
-
select?: Prisma.DocumentationStepSelect<ExtArgs> | null;
|
|
10009
|
-
/**
|
|
10010
|
-
* Omit specific fields from the DocumentationStep
|
|
10011
|
-
*/
|
|
10012
|
-
omit?: Prisma.DocumentationStepOmit<ExtArgs> | null;
|
|
10013
|
-
/**
|
|
10014
|
-
* Choose, which related nodes to fetch as well
|
|
10015
|
-
*/
|
|
10016
|
-
include?: Prisma.DocumentationStepInclude<ExtArgs> | null;
|
|
10017
|
-
where?: Prisma.DocumentationStepWhereInput;
|
|
10018
|
-
orderBy?: Prisma.DocumentationStepOrderByWithRelationInput | Prisma.DocumentationStepOrderByWithRelationInput[];
|
|
10019
|
-
cursor?: Prisma.DocumentationStepWhereUniqueInput;
|
|
10020
|
-
take?: number;
|
|
10021
|
-
skip?: number;
|
|
10022
|
-
distinct?: Prisma.DocumentationStepScalarFieldEnum | Prisma.DocumentationStepScalarFieldEnum[];
|
|
10023
|
-
};
|
|
10024
|
-
/**
|
|
10025
|
-
* User.gateActedSteps
|
|
9622
|
+
* User.uploadedDocs
|
|
10026
9623
|
*/
|
|
10027
|
-
export type User$
|
|
9624
|
+
export type User$uploadedDocsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
10028
9625
|
/**
|
|
10029
|
-
* Select specific fields to fetch from the
|
|
9626
|
+
* Select specific fields to fetch from the ApplicationDocument
|
|
10030
9627
|
*/
|
|
10031
|
-
select?: Prisma.
|
|
9628
|
+
select?: Prisma.ApplicationDocumentSelect<ExtArgs> | null;
|
|
10032
9629
|
/**
|
|
10033
|
-
* Omit specific fields from the
|
|
9630
|
+
* Omit specific fields from the ApplicationDocument
|
|
10034
9631
|
*/
|
|
10035
|
-
omit?: Prisma.
|
|
9632
|
+
omit?: Prisma.ApplicationDocumentOmit<ExtArgs> | null;
|
|
10036
9633
|
/**
|
|
10037
9634
|
* Choose, which related nodes to fetch as well
|
|
10038
9635
|
*/
|
|
10039
|
-
include?: Prisma.
|
|
10040
|
-
where?: Prisma.
|
|
10041
|
-
orderBy?: Prisma.
|
|
10042
|
-
cursor?: Prisma.
|
|
9636
|
+
include?: Prisma.ApplicationDocumentInclude<ExtArgs> | null;
|
|
9637
|
+
where?: Prisma.ApplicationDocumentWhereInput;
|
|
9638
|
+
orderBy?: Prisma.ApplicationDocumentOrderByWithRelationInput | Prisma.ApplicationDocumentOrderByWithRelationInput[];
|
|
9639
|
+
cursor?: Prisma.ApplicationDocumentWhereUniqueInput;
|
|
10043
9640
|
take?: number;
|
|
10044
9641
|
skip?: number;
|
|
10045
|
-
distinct?: Prisma.
|
|
9642
|
+
distinct?: Prisma.ApplicationDocumentScalarFieldEnum | Prisma.ApplicationDocumentScalarFieldEnum[];
|
|
10046
9643
|
};
|
|
10047
9644
|
/**
|
|
10048
|
-
* User.
|
|
9645
|
+
* User.documentApprovals
|
|
10049
9646
|
*/
|
|
10050
|
-
export type User$
|
|
9647
|
+
export type User$documentApprovalsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
10051
9648
|
/**
|
|
10052
|
-
* Select specific fields to fetch from the
|
|
9649
|
+
* Select specific fields to fetch from the DocumentApproval
|
|
10053
9650
|
*/
|
|
10054
|
-
select?: Prisma.
|
|
9651
|
+
select?: Prisma.DocumentApprovalSelect<ExtArgs> | null;
|
|
10055
9652
|
/**
|
|
10056
|
-
* Omit specific fields from the
|
|
9653
|
+
* Omit specific fields from the DocumentApproval
|
|
10057
9654
|
*/
|
|
10058
|
-
omit?: Prisma.
|
|
9655
|
+
omit?: Prisma.DocumentApprovalOmit<ExtArgs> | null;
|
|
10059
9656
|
/**
|
|
10060
9657
|
* Choose, which related nodes to fetch as well
|
|
10061
9658
|
*/
|
|
10062
|
-
include?: Prisma.
|
|
10063
|
-
where?: Prisma.
|
|
10064
|
-
orderBy?: Prisma.
|
|
10065
|
-
cursor?: Prisma.
|
|
9659
|
+
include?: Prisma.DocumentApprovalInclude<ExtArgs> | null;
|
|
9660
|
+
where?: Prisma.DocumentApprovalWhereInput;
|
|
9661
|
+
orderBy?: Prisma.DocumentApprovalOrderByWithRelationInput | Prisma.DocumentApprovalOrderByWithRelationInput[];
|
|
9662
|
+
cursor?: Prisma.DocumentApprovalWhereUniqueInput;
|
|
10066
9663
|
take?: number;
|
|
10067
9664
|
skip?: number;
|
|
10068
|
-
distinct?: Prisma.
|
|
9665
|
+
distinct?: Prisma.DocumentApprovalScalarFieldEnum | Prisma.DocumentApprovalScalarFieldEnum[];
|
|
10069
9666
|
};
|
|
10070
9667
|
/**
|
|
10071
|
-
* User.
|
|
9668
|
+
* User.completedStages
|
|
10072
9669
|
*/
|
|
10073
|
-
export type User$
|
|
9670
|
+
export type User$completedStagesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
10074
9671
|
/**
|
|
10075
|
-
* Select specific fields to fetch from the
|
|
9672
|
+
* Select specific fields to fetch from the ApprovalStageProgress
|
|
10076
9673
|
*/
|
|
10077
|
-
select?: Prisma.
|
|
9674
|
+
select?: Prisma.ApprovalStageProgressSelect<ExtArgs> | null;
|
|
10078
9675
|
/**
|
|
10079
|
-
* Omit specific fields from the
|
|
9676
|
+
* Omit specific fields from the ApprovalStageProgress
|
|
10080
9677
|
*/
|
|
10081
|
-
omit?: Prisma.
|
|
9678
|
+
omit?: Prisma.ApprovalStageProgressOmit<ExtArgs> | null;
|
|
10082
9679
|
/**
|
|
10083
9680
|
* Choose, which related nodes to fetch as well
|
|
10084
9681
|
*/
|
|
10085
|
-
include?: Prisma.
|
|
10086
|
-
where?: Prisma.
|
|
10087
|
-
orderBy?: Prisma.
|
|
10088
|
-
cursor?: Prisma.
|
|
9682
|
+
include?: Prisma.ApprovalStageProgressInclude<ExtArgs> | null;
|
|
9683
|
+
where?: Prisma.ApprovalStageProgressWhereInput;
|
|
9684
|
+
orderBy?: Prisma.ApprovalStageProgressOrderByWithRelationInput | Prisma.ApprovalStageProgressOrderByWithRelationInput[];
|
|
9685
|
+
cursor?: Prisma.ApprovalStageProgressWhereUniqueInput;
|
|
10089
9686
|
take?: number;
|
|
10090
9687
|
skip?: number;
|
|
10091
|
-
distinct?: Prisma.
|
|
9688
|
+
distinct?: Prisma.ApprovalStageProgressScalarFieldEnum | Prisma.ApprovalStageProgressScalarFieldEnum[];
|
|
10092
9689
|
};
|
|
10093
9690
|
/**
|
|
10094
9691
|
* User.paymentMethodChangeRequests
|