@valentine-efagene/qshelter-common 2.0.48 → 2.0.49
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 +6 -6
- package/dist/generated/client/client.d.ts +6 -6
- package/dist/generated/client/internal/class.d.ts +12 -12
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +109 -109
- package/dist/generated/client/internal/prismaNamespace.js +9 -9
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +15 -15
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +9 -9
- package/dist/generated/client/models/ContractPhase.d.ts +35 -35
- package/dist/generated/client/models/DocumentationStep.d.ts +1819 -0
- package/dist/generated/client/models/DocumentationStep.js +1 -0
- package/dist/generated/client/models/DocumentationStepApproval.d.ts +1253 -0
- package/dist/generated/client/models/DocumentationStepApproval.js +1 -0
- package/dist/generated/client/models/DocumentationStepDocument.d.ts +1052 -0
- package/dist/generated/client/models/DocumentationStepDocument.js +1 -0
- package/dist/generated/client/models/User.d.ts +214 -214
- package/dist/generated/client/models.d.ts +3 -3
- package/package.json +1 -1
- package/prisma/schema.prisma +13 -13
|
@@ -247,8 +247,8 @@ export type UserWhereInput = {
|
|
|
247
247
|
contracts?: Prisma.ContractListRelationFilter;
|
|
248
248
|
soldContracts?: Prisma.ContractListRelationFilter;
|
|
249
249
|
contractPayments?: Prisma.ContractPaymentListRelationFilter;
|
|
250
|
-
assignedSteps?: Prisma.
|
|
251
|
-
stepApprovals?: Prisma.
|
|
250
|
+
assignedSteps?: Prisma.DocumentationStepListRelationFilter;
|
|
251
|
+
stepApprovals?: Prisma.DocumentationStepApprovalListRelationFilter;
|
|
252
252
|
uploadedDocs?: Prisma.ContractDocumentListRelationFilter;
|
|
253
253
|
prequalifications?: Prisma.PrequalificationListRelationFilter;
|
|
254
254
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestListRelationFilter;
|
|
@@ -289,8 +289,8 @@ export type UserOrderByWithRelationInput = {
|
|
|
289
289
|
contracts?: Prisma.ContractOrderByRelationAggregateInput;
|
|
290
290
|
soldContracts?: Prisma.ContractOrderByRelationAggregateInput;
|
|
291
291
|
contractPayments?: Prisma.ContractPaymentOrderByRelationAggregateInput;
|
|
292
|
-
assignedSteps?: Prisma.
|
|
293
|
-
stepApprovals?: Prisma.
|
|
292
|
+
assignedSteps?: Prisma.DocumentationStepOrderByRelationAggregateInput;
|
|
293
|
+
stepApprovals?: Prisma.DocumentationStepApprovalOrderByRelationAggregateInput;
|
|
294
294
|
uploadedDocs?: Prisma.ContractDocumentOrderByRelationAggregateInput;
|
|
295
295
|
prequalifications?: Prisma.PrequalificationOrderByRelationAggregateInput;
|
|
296
296
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestOrderByRelationAggregateInput;
|
|
@@ -335,8 +335,8 @@ export type UserWhereUniqueInput = Prisma.AtLeast<{
|
|
|
335
335
|
contracts?: Prisma.ContractListRelationFilter;
|
|
336
336
|
soldContracts?: Prisma.ContractListRelationFilter;
|
|
337
337
|
contractPayments?: Prisma.ContractPaymentListRelationFilter;
|
|
338
|
-
assignedSteps?: Prisma.
|
|
339
|
-
stepApprovals?: Prisma.
|
|
338
|
+
assignedSteps?: Prisma.DocumentationStepListRelationFilter;
|
|
339
|
+
stepApprovals?: Prisma.DocumentationStepApprovalListRelationFilter;
|
|
340
340
|
uploadedDocs?: Prisma.ContractDocumentListRelationFilter;
|
|
341
341
|
prequalifications?: Prisma.PrequalificationListRelationFilter;
|
|
342
342
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestListRelationFilter;
|
|
@@ -419,8 +419,8 @@ export type UserCreateInput = {
|
|
|
419
419
|
contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
|
|
420
420
|
soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
|
|
421
421
|
contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
|
|
422
|
-
assignedSteps?: Prisma.
|
|
423
|
-
stepApprovals?: Prisma.
|
|
422
|
+
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
423
|
+
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
424
424
|
uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
|
|
425
425
|
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
|
|
426
426
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -459,8 +459,8 @@ export type UserUncheckedCreateInput = {
|
|
|
459
459
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
|
|
460
460
|
soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
|
|
461
461
|
contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
462
|
-
assignedSteps?: Prisma.
|
|
463
|
-
stepApprovals?: Prisma.
|
|
462
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
463
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
464
464
|
uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
465
465
|
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
|
|
466
466
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -499,8 +499,8 @@ export type UserUpdateInput = {
|
|
|
499
499
|
contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
|
|
500
500
|
soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
|
|
501
501
|
contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
|
|
502
|
-
assignedSteps?: Prisma.
|
|
503
|
-
stepApprovals?: Prisma.
|
|
502
|
+
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
503
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
504
504
|
uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
505
505
|
prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
|
|
506
506
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -539,8 +539,8 @@ export type UserUncheckedUpdateInput = {
|
|
|
539
539
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
540
540
|
soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
|
|
541
541
|
contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
542
|
-
assignedSteps?: Prisma.
|
|
543
|
-
stepApprovals?: Prisma.
|
|
542
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
543
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
544
544
|
uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
545
545
|
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
|
|
546
546
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -1064,8 +1064,8 @@ export type UserCreateWithoutUserRolesInput = {
|
|
|
1064
1064
|
contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
|
|
1065
1065
|
soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
|
|
1066
1066
|
contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
|
|
1067
|
-
assignedSteps?: Prisma.
|
|
1068
|
-
stepApprovals?: Prisma.
|
|
1067
|
+
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
1068
|
+
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
1069
1069
|
uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
|
|
1070
1070
|
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
|
|
1071
1071
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -1103,8 +1103,8 @@ export type UserUncheckedCreateWithoutUserRolesInput = {
|
|
|
1103
1103
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
|
|
1104
1104
|
soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
|
|
1105
1105
|
contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
1106
|
-
assignedSteps?: Prisma.
|
|
1107
|
-
stepApprovals?: Prisma.
|
|
1106
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
1107
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
1108
1108
|
uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
1109
1109
|
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
|
|
1110
1110
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -1155,8 +1155,8 @@ export type UserUpdateWithoutUserRolesInput = {
|
|
|
1155
1155
|
contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
|
|
1156
1156
|
soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
|
|
1157
1157
|
contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
|
|
1158
|
-
assignedSteps?: Prisma.
|
|
1159
|
-
stepApprovals?: Prisma.
|
|
1158
|
+
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
1159
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
1160
1160
|
uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
1161
1161
|
prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
|
|
1162
1162
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -1194,8 +1194,8 @@ export type UserUncheckedUpdateWithoutUserRolesInput = {
|
|
|
1194
1194
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
1195
1195
|
soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
|
|
1196
1196
|
contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
1197
|
-
assignedSteps?: Prisma.
|
|
1198
|
-
stepApprovals?: Prisma.
|
|
1197
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
1198
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
1199
1199
|
uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
1200
1200
|
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
|
|
1201
1201
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -1233,8 +1233,8 @@ export type UserCreateWithoutTenantInput = {
|
|
|
1233
1233
|
contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
|
|
1234
1234
|
soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
|
|
1235
1235
|
contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
|
|
1236
|
-
assignedSteps?: Prisma.
|
|
1237
|
-
stepApprovals?: Prisma.
|
|
1236
|
+
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
1237
|
+
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
1238
1238
|
uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
|
|
1239
1239
|
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
|
|
1240
1240
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -1272,8 +1272,8 @@ export type UserUncheckedCreateWithoutTenantInput = {
|
|
|
1272
1272
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
|
|
1273
1273
|
soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
|
|
1274
1274
|
contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
1275
|
-
assignedSteps?: Prisma.
|
|
1276
|
-
stepApprovals?: Prisma.
|
|
1275
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
1276
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
1277
1277
|
uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
1278
1278
|
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
|
|
1279
1279
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -1354,8 +1354,8 @@ export type UserCreateWithoutRefreshTokensInput = {
|
|
|
1354
1354
|
contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
|
|
1355
1355
|
soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
|
|
1356
1356
|
contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
|
|
1357
|
-
assignedSteps?: Prisma.
|
|
1358
|
-
stepApprovals?: Prisma.
|
|
1357
|
+
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
1358
|
+
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
1359
1359
|
uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
|
|
1360
1360
|
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
|
|
1361
1361
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -1393,8 +1393,8 @@ export type UserUncheckedCreateWithoutRefreshTokensInput = {
|
|
|
1393
1393
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
|
|
1394
1394
|
soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
|
|
1395
1395
|
contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
1396
|
-
assignedSteps?: Prisma.
|
|
1397
|
-
stepApprovals?: Prisma.
|
|
1396
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
1397
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
1398
1398
|
uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
1399
1399
|
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
|
|
1400
1400
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -1445,8 +1445,8 @@ export type UserUpdateWithoutRefreshTokensInput = {
|
|
|
1445
1445
|
contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
|
|
1446
1446
|
soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
|
|
1447
1447
|
contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
|
|
1448
|
-
assignedSteps?: Prisma.
|
|
1449
|
-
stepApprovals?: Prisma.
|
|
1448
|
+
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
1449
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
1450
1450
|
uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
1451
1451
|
prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
|
|
1452
1452
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -1484,8 +1484,8 @@ export type UserUncheckedUpdateWithoutRefreshTokensInput = {
|
|
|
1484
1484
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
1485
1485
|
soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
|
|
1486
1486
|
contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
1487
|
-
assignedSteps?: Prisma.
|
|
1488
|
-
stepApprovals?: Prisma.
|
|
1487
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
1488
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
1489
1489
|
uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
1490
1490
|
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
|
|
1491
1491
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -1523,8 +1523,8 @@ export type UserCreateWithoutPasswordResetsInput = {
|
|
|
1523
1523
|
contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
|
|
1524
1524
|
soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
|
|
1525
1525
|
contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
|
|
1526
|
-
assignedSteps?: Prisma.
|
|
1527
|
-
stepApprovals?: Prisma.
|
|
1526
|
+
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
1527
|
+
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
1528
1528
|
uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
|
|
1529
1529
|
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
|
|
1530
1530
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -1562,8 +1562,8 @@ export type UserUncheckedCreateWithoutPasswordResetsInput = {
|
|
|
1562
1562
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
|
|
1563
1563
|
soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
|
|
1564
1564
|
contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
1565
|
-
assignedSteps?: Prisma.
|
|
1566
|
-
stepApprovals?: Prisma.
|
|
1565
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
1566
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
1567
1567
|
uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
1568
1568
|
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
|
|
1569
1569
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -1614,8 +1614,8 @@ export type UserUpdateWithoutPasswordResetsInput = {
|
|
|
1614
1614
|
contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
|
|
1615
1615
|
soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
|
|
1616
1616
|
contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
|
|
1617
|
-
assignedSteps?: Prisma.
|
|
1618
|
-
stepApprovals?: Prisma.
|
|
1617
|
+
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
1618
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
1619
1619
|
uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
1620
1620
|
prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
|
|
1621
1621
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -1653,8 +1653,8 @@ export type UserUncheckedUpdateWithoutPasswordResetsInput = {
|
|
|
1653
1653
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
1654
1654
|
soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
|
|
1655
1655
|
contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
1656
|
-
assignedSteps?: Prisma.
|
|
1657
|
-
stepApprovals?: Prisma.
|
|
1656
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
1657
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
1658
1658
|
uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
1659
1659
|
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
|
|
1660
1660
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -1692,8 +1692,8 @@ export type UserCreateWithoutSuspensionsInput = {
|
|
|
1692
1692
|
contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
|
|
1693
1693
|
soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
|
|
1694
1694
|
contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
|
|
1695
|
-
assignedSteps?: Prisma.
|
|
1696
|
-
stepApprovals?: Prisma.
|
|
1695
|
+
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
1696
|
+
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
1697
1697
|
uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
|
|
1698
1698
|
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
|
|
1699
1699
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -1731,8 +1731,8 @@ export type UserUncheckedCreateWithoutSuspensionsInput = {
|
|
|
1731
1731
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
|
|
1732
1732
|
soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
|
|
1733
1733
|
contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
1734
|
-
assignedSteps?: Prisma.
|
|
1735
|
-
stepApprovals?: Prisma.
|
|
1734
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
1735
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
1736
1736
|
uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
1737
1737
|
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
|
|
1738
1738
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -1783,8 +1783,8 @@ export type UserUpdateWithoutSuspensionsInput = {
|
|
|
1783
1783
|
contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
|
|
1784
1784
|
soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
|
|
1785
1785
|
contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
|
|
1786
|
-
assignedSteps?: Prisma.
|
|
1787
|
-
stepApprovals?: Prisma.
|
|
1786
|
+
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
1787
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
1788
1788
|
uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
1789
1789
|
prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
|
|
1790
1790
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -1822,8 +1822,8 @@ export type UserUncheckedUpdateWithoutSuspensionsInput = {
|
|
|
1822
1822
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
1823
1823
|
soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
|
|
1824
1824
|
contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
1825
|
-
assignedSteps?: Prisma.
|
|
1826
|
-
stepApprovals?: Prisma.
|
|
1825
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
1826
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
1827
1827
|
uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
1828
1828
|
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
|
|
1829
1829
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -1861,8 +1861,8 @@ export type UserCreateWithoutEmailPreferencesInput = {
|
|
|
1861
1861
|
contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
|
|
1862
1862
|
soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
|
|
1863
1863
|
contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
|
|
1864
|
-
assignedSteps?: Prisma.
|
|
1865
|
-
stepApprovals?: Prisma.
|
|
1864
|
+
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
1865
|
+
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
1866
1866
|
uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
|
|
1867
1867
|
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
|
|
1868
1868
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -1900,8 +1900,8 @@ export type UserUncheckedCreateWithoutEmailPreferencesInput = {
|
|
|
1900
1900
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
|
|
1901
1901
|
soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
|
|
1902
1902
|
contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
1903
|
-
assignedSteps?: Prisma.
|
|
1904
|
-
stepApprovals?: Prisma.
|
|
1903
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
1904
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
1905
1905
|
uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
1906
1906
|
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
|
|
1907
1907
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -1952,8 +1952,8 @@ export type UserUpdateWithoutEmailPreferencesInput = {
|
|
|
1952
1952
|
contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
|
|
1953
1953
|
soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
|
|
1954
1954
|
contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
|
|
1955
|
-
assignedSteps?: Prisma.
|
|
1956
|
-
stepApprovals?: Prisma.
|
|
1955
|
+
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
1956
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
1957
1957
|
uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
1958
1958
|
prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
|
|
1959
1959
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -1991,8 +1991,8 @@ export type UserUncheckedUpdateWithoutEmailPreferencesInput = {
|
|
|
1991
1991
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
1992
1992
|
soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
|
|
1993
1993
|
contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
1994
|
-
assignedSteps?: Prisma.
|
|
1995
|
-
stepApprovals?: Prisma.
|
|
1994
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
1995
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
1996
1996
|
uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
1997
1997
|
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
|
|
1998
1998
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -2030,8 +2030,8 @@ export type UserCreateWithoutDeviceEndpointsInput = {
|
|
|
2030
2030
|
contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
|
|
2031
2031
|
soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
|
|
2032
2032
|
contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
|
|
2033
|
-
assignedSteps?: Prisma.
|
|
2034
|
-
stepApprovals?: Prisma.
|
|
2033
|
+
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
2034
|
+
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
2035
2035
|
uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
|
|
2036
2036
|
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
|
|
2037
2037
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -2069,8 +2069,8 @@ export type UserUncheckedCreateWithoutDeviceEndpointsInput = {
|
|
|
2069
2069
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
|
|
2070
2070
|
soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
|
|
2071
2071
|
contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
2072
|
-
assignedSteps?: Prisma.
|
|
2073
|
-
stepApprovals?: Prisma.
|
|
2072
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
2073
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
2074
2074
|
uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
2075
2075
|
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
|
|
2076
2076
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -2121,8 +2121,8 @@ export type UserUpdateWithoutDeviceEndpointsInput = {
|
|
|
2121
2121
|
contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
|
|
2122
2122
|
soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
|
|
2123
2123
|
contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
|
|
2124
|
-
assignedSteps?: Prisma.
|
|
2125
|
-
stepApprovals?: Prisma.
|
|
2124
|
+
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
2125
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
2126
2126
|
uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
2127
2127
|
prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
|
|
2128
2128
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -2160,8 +2160,8 @@ export type UserUncheckedUpdateWithoutDeviceEndpointsInput = {
|
|
|
2160
2160
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
2161
2161
|
soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
|
|
2162
2162
|
contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
2163
|
-
assignedSteps?: Prisma.
|
|
2164
|
-
stepApprovals?: Prisma.
|
|
2163
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
2164
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
2165
2165
|
uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
2166
2166
|
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
|
|
2167
2167
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -2199,8 +2199,8 @@ export type UserCreateWithoutSocialsInput = {
|
|
|
2199
2199
|
contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
|
|
2200
2200
|
soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
|
|
2201
2201
|
contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
|
|
2202
|
-
assignedSteps?: Prisma.
|
|
2203
|
-
stepApprovals?: Prisma.
|
|
2202
|
+
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
2203
|
+
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
2204
2204
|
uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
|
|
2205
2205
|
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
|
|
2206
2206
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -2238,8 +2238,8 @@ export type UserUncheckedCreateWithoutSocialsInput = {
|
|
|
2238
2238
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
|
|
2239
2239
|
soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
|
|
2240
2240
|
contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
2241
|
-
assignedSteps?: Prisma.
|
|
2242
|
-
stepApprovals?: Prisma.
|
|
2241
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
2242
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
2243
2243
|
uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
2244
2244
|
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
|
|
2245
2245
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -2290,8 +2290,8 @@ export type UserUpdateWithoutSocialsInput = {
|
|
|
2290
2290
|
contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
|
|
2291
2291
|
soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
|
|
2292
2292
|
contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
|
|
2293
|
-
assignedSteps?: Prisma.
|
|
2294
|
-
stepApprovals?: Prisma.
|
|
2293
|
+
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
2294
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
2295
2295
|
uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
2296
2296
|
prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
|
|
2297
2297
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -2329,8 +2329,8 @@ export type UserUncheckedUpdateWithoutSocialsInput = {
|
|
|
2329
2329
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
2330
2330
|
soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
|
|
2331
2331
|
contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
2332
|
-
assignedSteps?: Prisma.
|
|
2333
|
-
stepApprovals?: Prisma.
|
|
2332
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
2333
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
2334
2334
|
uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
2335
2335
|
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
|
|
2336
2336
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -2368,8 +2368,8 @@ export type UserCreateWithoutWalletInput = {
|
|
|
2368
2368
|
contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
|
|
2369
2369
|
soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
|
|
2370
2370
|
contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
|
|
2371
|
-
assignedSteps?: Prisma.
|
|
2372
|
-
stepApprovals?: Prisma.
|
|
2371
|
+
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
2372
|
+
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
2373
2373
|
uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
|
|
2374
2374
|
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
|
|
2375
2375
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -2407,8 +2407,8 @@ export type UserUncheckedCreateWithoutWalletInput = {
|
|
|
2407
2407
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
|
|
2408
2408
|
soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
|
|
2409
2409
|
contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
2410
|
-
assignedSteps?: Prisma.
|
|
2411
|
-
stepApprovals?: Prisma.
|
|
2410
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
2411
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
2412
2412
|
uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
2413
2413
|
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
|
|
2414
2414
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -2459,8 +2459,8 @@ export type UserUpdateWithoutWalletInput = {
|
|
|
2459
2459
|
contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
|
|
2460
2460
|
soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
|
|
2461
2461
|
contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
|
|
2462
|
-
assignedSteps?: Prisma.
|
|
2463
|
-
stepApprovals?: Prisma.
|
|
2462
|
+
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
2463
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
2464
2464
|
uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
2465
2465
|
prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
|
|
2466
2466
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -2498,8 +2498,8 @@ export type UserUncheckedUpdateWithoutWalletInput = {
|
|
|
2498
2498
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
2499
2499
|
soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
|
|
2500
2500
|
contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
2501
|
-
assignedSteps?: Prisma.
|
|
2502
|
-
stepApprovals?: Prisma.
|
|
2501
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
2502
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
2503
2503
|
uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
2504
2504
|
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
|
|
2505
2505
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -2537,8 +2537,8 @@ export type UserCreateWithoutPropertiesInput = {
|
|
|
2537
2537
|
contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
|
|
2538
2538
|
soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
|
|
2539
2539
|
contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
|
|
2540
|
-
assignedSteps?: Prisma.
|
|
2541
|
-
stepApprovals?: Prisma.
|
|
2540
|
+
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
2541
|
+
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
2542
2542
|
uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
|
|
2543
2543
|
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
|
|
2544
2544
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -2576,8 +2576,8 @@ export type UserUncheckedCreateWithoutPropertiesInput = {
|
|
|
2576
2576
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
|
|
2577
2577
|
soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
|
|
2578
2578
|
contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
2579
|
-
assignedSteps?: Prisma.
|
|
2580
|
-
stepApprovals?: Prisma.
|
|
2579
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
2580
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
2581
2581
|
uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
2582
2582
|
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
|
|
2583
2583
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -2628,8 +2628,8 @@ export type UserUpdateWithoutPropertiesInput = {
|
|
|
2628
2628
|
contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
|
|
2629
2629
|
soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
|
|
2630
2630
|
contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
|
|
2631
|
-
assignedSteps?: Prisma.
|
|
2632
|
-
stepApprovals?: Prisma.
|
|
2631
|
+
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
2632
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
2633
2633
|
uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
2634
2634
|
prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
|
|
2635
2635
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -2667,8 +2667,8 @@ export type UserUncheckedUpdateWithoutPropertiesInput = {
|
|
|
2667
2667
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
2668
2668
|
soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
|
|
2669
2669
|
contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
2670
|
-
assignedSteps?: Prisma.
|
|
2671
|
-
stepApprovals?: Prisma.
|
|
2670
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
2671
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
2672
2672
|
uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
2673
2673
|
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
|
|
2674
2674
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -2706,8 +2706,8 @@ export type UserCreateWithoutContractsInput = {
|
|
|
2706
2706
|
properties?: Prisma.PropertyCreateNestedManyWithoutUserInput;
|
|
2707
2707
|
soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
|
|
2708
2708
|
contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
|
|
2709
|
-
assignedSteps?: Prisma.
|
|
2710
|
-
stepApprovals?: Prisma.
|
|
2709
|
+
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
2710
|
+
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
2711
2711
|
uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
|
|
2712
2712
|
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
|
|
2713
2713
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -2745,8 +2745,8 @@ export type UserUncheckedCreateWithoutContractsInput = {
|
|
|
2745
2745
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutUserInput;
|
|
2746
2746
|
soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
|
|
2747
2747
|
contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
2748
|
-
assignedSteps?: Prisma.
|
|
2749
|
-
stepApprovals?: Prisma.
|
|
2748
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
2749
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
2750
2750
|
uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
2751
2751
|
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
|
|
2752
2752
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -2788,8 +2788,8 @@ export type UserCreateWithoutSoldContractsInput = {
|
|
|
2788
2788
|
properties?: Prisma.PropertyCreateNestedManyWithoutUserInput;
|
|
2789
2789
|
contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
|
|
2790
2790
|
contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
|
|
2791
|
-
assignedSteps?: Prisma.
|
|
2792
|
-
stepApprovals?: Prisma.
|
|
2791
|
+
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
2792
|
+
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
2793
2793
|
uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
|
|
2794
2794
|
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
|
|
2795
2795
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -2827,8 +2827,8 @@ export type UserUncheckedCreateWithoutSoldContractsInput = {
|
|
|
2827
2827
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutUserInput;
|
|
2828
2828
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
|
|
2829
2829
|
contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
2830
|
-
assignedSteps?: Prisma.
|
|
2831
|
-
stepApprovals?: Prisma.
|
|
2830
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
2831
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
2832
2832
|
uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
2833
2833
|
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
|
|
2834
2834
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -2879,8 +2879,8 @@ export type UserUpdateWithoutContractsInput = {
|
|
|
2879
2879
|
properties?: Prisma.PropertyUpdateManyWithoutUserNestedInput;
|
|
2880
2880
|
soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
|
|
2881
2881
|
contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
|
|
2882
|
-
assignedSteps?: Prisma.
|
|
2883
|
-
stepApprovals?: Prisma.
|
|
2882
|
+
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
2883
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
2884
2884
|
uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
2885
2885
|
prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
|
|
2886
2886
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -2918,8 +2918,8 @@ export type UserUncheckedUpdateWithoutContractsInput = {
|
|
|
2918
2918
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutUserNestedInput;
|
|
2919
2919
|
soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
|
|
2920
2920
|
contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
2921
|
-
assignedSteps?: Prisma.
|
|
2922
|
-
stepApprovals?: Prisma.
|
|
2921
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
2922
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
2923
2923
|
uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
2924
2924
|
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
|
|
2925
2925
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -2966,8 +2966,8 @@ export type UserUpdateWithoutSoldContractsInput = {
|
|
|
2966
2966
|
properties?: Prisma.PropertyUpdateManyWithoutUserNestedInput;
|
|
2967
2967
|
contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
|
|
2968
2968
|
contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
|
|
2969
|
-
assignedSteps?: Prisma.
|
|
2970
|
-
stepApprovals?: Prisma.
|
|
2969
|
+
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
2970
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
2971
2971
|
uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
2972
2972
|
prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
|
|
2973
2973
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -3005,8 +3005,8 @@ export type UserUncheckedUpdateWithoutSoldContractsInput = {
|
|
|
3005
3005
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutUserNestedInput;
|
|
3006
3006
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
3007
3007
|
contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
3008
|
-
assignedSteps?: Prisma.
|
|
3009
|
-
stepApprovals?: Prisma.
|
|
3008
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
3009
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
3010
3010
|
uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
3011
3011
|
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
|
|
3012
3012
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -3045,7 +3045,7 @@ export type UserCreateWithoutAssignedStepsInput = {
|
|
|
3045
3045
|
contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
|
|
3046
3046
|
soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
|
|
3047
3047
|
contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
|
|
3048
|
-
stepApprovals?: Prisma.
|
|
3048
|
+
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
3049
3049
|
uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
|
|
3050
3050
|
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
|
|
3051
3051
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -3084,7 +3084,7 @@ export type UserUncheckedCreateWithoutAssignedStepsInput = {
|
|
|
3084
3084
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
|
|
3085
3085
|
soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
|
|
3086
3086
|
contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
3087
|
-
stepApprovals?: Prisma.
|
|
3087
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
3088
3088
|
uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
3089
3089
|
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
|
|
3090
3090
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -3136,7 +3136,7 @@ export type UserUpdateWithoutAssignedStepsInput = {
|
|
|
3136
3136
|
contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
|
|
3137
3137
|
soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
|
|
3138
3138
|
contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
|
|
3139
|
-
stepApprovals?: Prisma.
|
|
3139
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
3140
3140
|
uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
3141
3141
|
prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
|
|
3142
3142
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -3175,7 +3175,7 @@ export type UserUncheckedUpdateWithoutAssignedStepsInput = {
|
|
|
3175
3175
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
3176
3176
|
soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
|
|
3177
3177
|
contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
3178
|
-
stepApprovals?: Prisma.
|
|
3178
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
3179
3179
|
uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
3180
3180
|
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
|
|
3181
3181
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -3214,7 +3214,7 @@ export type UserCreateWithoutStepApprovalsInput = {
|
|
|
3214
3214
|
contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
|
|
3215
3215
|
soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
|
|
3216
3216
|
contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
|
|
3217
|
-
assignedSteps?: Prisma.
|
|
3217
|
+
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
3218
3218
|
uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
|
|
3219
3219
|
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
|
|
3220
3220
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -3253,7 +3253,7 @@ export type UserUncheckedCreateWithoutStepApprovalsInput = {
|
|
|
3253
3253
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
|
|
3254
3254
|
soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
|
|
3255
3255
|
contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
3256
|
-
assignedSteps?: Prisma.
|
|
3256
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
3257
3257
|
uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
3258
3258
|
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
|
|
3259
3259
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -3305,7 +3305,7 @@ export type UserUpdateWithoutStepApprovalsInput = {
|
|
|
3305
3305
|
contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
|
|
3306
3306
|
soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
|
|
3307
3307
|
contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
|
|
3308
|
-
assignedSteps?: Prisma.
|
|
3308
|
+
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
3309
3309
|
uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
3310
3310
|
prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
|
|
3311
3311
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -3344,7 +3344,7 @@ export type UserUncheckedUpdateWithoutStepApprovalsInput = {
|
|
|
3344
3344
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
3345
3345
|
soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
|
|
3346
3346
|
contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
3347
|
-
assignedSteps?: Prisma.
|
|
3347
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
3348
3348
|
uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
3349
3349
|
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
|
|
3350
3350
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -3382,8 +3382,8 @@ export type UserCreateWithoutContractPaymentsInput = {
|
|
|
3382
3382
|
properties?: Prisma.PropertyCreateNestedManyWithoutUserInput;
|
|
3383
3383
|
contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
|
|
3384
3384
|
soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
|
|
3385
|
-
assignedSteps?: Prisma.
|
|
3386
|
-
stepApprovals?: Prisma.
|
|
3385
|
+
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
3386
|
+
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
3387
3387
|
uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
|
|
3388
3388
|
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
|
|
3389
3389
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -3421,8 +3421,8 @@ export type UserUncheckedCreateWithoutContractPaymentsInput = {
|
|
|
3421
3421
|
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutUserInput;
|
|
3422
3422
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
|
|
3423
3423
|
soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
|
|
3424
|
-
assignedSteps?: Prisma.
|
|
3425
|
-
stepApprovals?: Prisma.
|
|
3424
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
3425
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
3426
3426
|
uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
3427
3427
|
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
|
|
3428
3428
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -3473,8 +3473,8 @@ export type UserUpdateWithoutContractPaymentsInput = {
|
|
|
3473
3473
|
properties?: Prisma.PropertyUpdateManyWithoutUserNestedInput;
|
|
3474
3474
|
contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
|
|
3475
3475
|
soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
|
|
3476
|
-
assignedSteps?: Prisma.
|
|
3477
|
-
stepApprovals?: Prisma.
|
|
3476
|
+
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
3477
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
3478
3478
|
uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
3479
3479
|
prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
|
|
3480
3480
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -3512,8 +3512,8 @@ export type UserUncheckedUpdateWithoutContractPaymentsInput = {
|
|
|
3512
3512
|
properties?: Prisma.PropertyUncheckedUpdateManyWithoutUserNestedInput;
|
|
3513
3513
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
3514
3514
|
soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
|
|
3515
|
-
assignedSteps?: Prisma.
|
|
3516
|
-
stepApprovals?: Prisma.
|
|
3515
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
3516
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
3517
3517
|
uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
3518
3518
|
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
|
|
3519
3519
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -3552,8 +3552,8 @@ export type UserCreateWithoutUploadedDocsInput = {
|
|
|
3552
3552
|
contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
|
|
3553
3553
|
soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
|
|
3554
3554
|
contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
|
|
3555
|
-
assignedSteps?: Prisma.
|
|
3556
|
-
stepApprovals?: Prisma.
|
|
3555
|
+
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
3556
|
+
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
3557
3557
|
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
|
|
3558
3558
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
3559
3559
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
@@ -3591,8 +3591,8 @@ export type UserUncheckedCreateWithoutUploadedDocsInput = {
|
|
|
3591
3591
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
|
|
3592
3592
|
soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
|
|
3593
3593
|
contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
3594
|
-
assignedSteps?: Prisma.
|
|
3595
|
-
stepApprovals?: Prisma.
|
|
3594
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
3595
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
3596
3596
|
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
|
|
3597
3597
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
3598
3598
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
@@ -3643,8 +3643,8 @@ export type UserUpdateWithoutUploadedDocsInput = {
|
|
|
3643
3643
|
contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
|
|
3644
3644
|
soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
|
|
3645
3645
|
contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
|
|
3646
|
-
assignedSteps?: Prisma.
|
|
3647
|
-
stepApprovals?: Prisma.
|
|
3646
|
+
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
3647
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
3648
3648
|
prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
|
|
3649
3649
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
3650
3650
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
@@ -3682,8 +3682,8 @@ export type UserUncheckedUpdateWithoutUploadedDocsInput = {
|
|
|
3682
3682
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
3683
3683
|
soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
|
|
3684
3684
|
contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
3685
|
-
assignedSteps?: Prisma.
|
|
3686
|
-
stepApprovals?: Prisma.
|
|
3685
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
3686
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
3687
3687
|
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
|
|
3688
3688
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
3689
3689
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
@@ -3721,8 +3721,8 @@ export type UserCreateWithoutOfferLettersGeneratedInput = {
|
|
|
3721
3721
|
contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
|
|
3722
3722
|
soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
|
|
3723
3723
|
contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
|
|
3724
|
-
assignedSteps?: Prisma.
|
|
3725
|
-
stepApprovals?: Prisma.
|
|
3724
|
+
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
3725
|
+
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
3726
3726
|
uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
|
|
3727
3727
|
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
|
|
3728
3728
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -3760,8 +3760,8 @@ export type UserUncheckedCreateWithoutOfferLettersGeneratedInput = {
|
|
|
3760
3760
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
|
|
3761
3761
|
soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
|
|
3762
3762
|
contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
3763
|
-
assignedSteps?: Prisma.
|
|
3764
|
-
stepApprovals?: Prisma.
|
|
3763
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
3764
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
3765
3765
|
uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
3766
3766
|
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
|
|
3767
3767
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -3803,8 +3803,8 @@ export type UserCreateWithoutOfferLettersSentInput = {
|
|
|
3803
3803
|
contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
|
|
3804
3804
|
soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
|
|
3805
3805
|
contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
|
|
3806
|
-
assignedSteps?: Prisma.
|
|
3807
|
-
stepApprovals?: Prisma.
|
|
3806
|
+
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
3807
|
+
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
3808
3808
|
uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
|
|
3809
3809
|
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
|
|
3810
3810
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -3842,8 +3842,8 @@ export type UserUncheckedCreateWithoutOfferLettersSentInput = {
|
|
|
3842
3842
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
|
|
3843
3843
|
soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
|
|
3844
3844
|
contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
3845
|
-
assignedSteps?: Prisma.
|
|
3846
|
-
stepApprovals?: Prisma.
|
|
3845
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
3846
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
3847
3847
|
uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
3848
3848
|
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
|
|
3849
3849
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -3894,8 +3894,8 @@ export type UserUpdateWithoutOfferLettersGeneratedInput = {
|
|
|
3894
3894
|
contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
|
|
3895
3895
|
soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
|
|
3896
3896
|
contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
|
|
3897
|
-
assignedSteps?: Prisma.
|
|
3898
|
-
stepApprovals?: Prisma.
|
|
3897
|
+
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
3898
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
3899
3899
|
uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
3900
3900
|
prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
|
|
3901
3901
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -3933,8 +3933,8 @@ export type UserUncheckedUpdateWithoutOfferLettersGeneratedInput = {
|
|
|
3933
3933
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
3934
3934
|
soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
|
|
3935
3935
|
contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
3936
|
-
assignedSteps?: Prisma.
|
|
3937
|
-
stepApprovals?: Prisma.
|
|
3936
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
3937
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
3938
3938
|
uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
3939
3939
|
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
|
|
3940
3940
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -3981,8 +3981,8 @@ export type UserUpdateWithoutOfferLettersSentInput = {
|
|
|
3981
3981
|
contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
|
|
3982
3982
|
soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
|
|
3983
3983
|
contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
|
|
3984
|
-
assignedSteps?: Prisma.
|
|
3985
|
-
stepApprovals?: Prisma.
|
|
3984
|
+
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
3985
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
3986
3986
|
uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
3987
3987
|
prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
|
|
3988
3988
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -4020,8 +4020,8 @@ export type UserUncheckedUpdateWithoutOfferLettersSentInput = {
|
|
|
4020
4020
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
4021
4021
|
soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
|
|
4022
4022
|
contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
4023
|
-
assignedSteps?: Prisma.
|
|
4024
|
-
stepApprovals?: Prisma.
|
|
4023
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
4024
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
4025
4025
|
uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
4026
4026
|
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
|
|
4027
4027
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -4059,8 +4059,8 @@ export type UserCreateWithoutInitiatedTerminationsInput = {
|
|
|
4059
4059
|
contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
|
|
4060
4060
|
soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
|
|
4061
4061
|
contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
|
|
4062
|
-
assignedSteps?: Prisma.
|
|
4063
|
-
stepApprovals?: Prisma.
|
|
4062
|
+
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
4063
|
+
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
4064
4064
|
uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
|
|
4065
4065
|
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
|
|
4066
4066
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -4098,8 +4098,8 @@ export type UserUncheckedCreateWithoutInitiatedTerminationsInput = {
|
|
|
4098
4098
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
|
|
4099
4099
|
soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
|
|
4100
4100
|
contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
4101
|
-
assignedSteps?: Prisma.
|
|
4102
|
-
stepApprovals?: Prisma.
|
|
4101
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
4102
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
4103
4103
|
uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
4104
4104
|
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
|
|
4105
4105
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -4141,8 +4141,8 @@ export type UserCreateWithoutReviewedTerminationsInput = {
|
|
|
4141
4141
|
contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
|
|
4142
4142
|
soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
|
|
4143
4143
|
contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
|
|
4144
|
-
assignedSteps?: Prisma.
|
|
4145
|
-
stepApprovals?: Prisma.
|
|
4144
|
+
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
4145
|
+
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
4146
4146
|
uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
|
|
4147
4147
|
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
|
|
4148
4148
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -4180,8 +4180,8 @@ export type UserUncheckedCreateWithoutReviewedTerminationsInput = {
|
|
|
4180
4180
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
|
|
4181
4181
|
soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
|
|
4182
4182
|
contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
4183
|
-
assignedSteps?: Prisma.
|
|
4184
|
-
stepApprovals?: Prisma.
|
|
4183
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
4184
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
4185
4185
|
uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
4186
4186
|
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
|
|
4187
4187
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -4232,8 +4232,8 @@ export type UserUpdateWithoutInitiatedTerminationsInput = {
|
|
|
4232
4232
|
contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
|
|
4233
4233
|
soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
|
|
4234
4234
|
contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
|
|
4235
|
-
assignedSteps?: Prisma.
|
|
4236
|
-
stepApprovals?: Prisma.
|
|
4235
|
+
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
4236
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
4237
4237
|
uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
4238
4238
|
prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
|
|
4239
4239
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -4271,8 +4271,8 @@ export type UserUncheckedUpdateWithoutInitiatedTerminationsInput = {
|
|
|
4271
4271
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
4272
4272
|
soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
|
|
4273
4273
|
contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
4274
|
-
assignedSteps?: Prisma.
|
|
4275
|
-
stepApprovals?: Prisma.
|
|
4274
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
4275
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
4276
4276
|
uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
4277
4277
|
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
|
|
4278
4278
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -4319,8 +4319,8 @@ export type UserUpdateWithoutReviewedTerminationsInput = {
|
|
|
4319
4319
|
contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
|
|
4320
4320
|
soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
|
|
4321
4321
|
contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
|
|
4322
|
-
assignedSteps?: Prisma.
|
|
4323
|
-
stepApprovals?: Prisma.
|
|
4322
|
+
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
4323
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
4324
4324
|
uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
4325
4325
|
prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
|
|
4326
4326
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -4358,8 +4358,8 @@ export type UserUncheckedUpdateWithoutReviewedTerminationsInput = {
|
|
|
4358
4358
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
4359
4359
|
soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
|
|
4360
4360
|
contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
4361
|
-
assignedSteps?: Prisma.
|
|
4362
|
-
stepApprovals?: Prisma.
|
|
4361
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
4362
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
4363
4363
|
uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
4364
4364
|
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
|
|
4365
4365
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -4397,8 +4397,8 @@ export type UserCreateWithoutPrequalificationsInput = {
|
|
|
4397
4397
|
contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
|
|
4398
4398
|
soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
|
|
4399
4399
|
contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
|
|
4400
|
-
assignedSteps?: Prisma.
|
|
4401
|
-
stepApprovals?: Prisma.
|
|
4400
|
+
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
4401
|
+
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
4402
4402
|
uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
|
|
4403
4403
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
4404
4404
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
@@ -4436,8 +4436,8 @@ export type UserUncheckedCreateWithoutPrequalificationsInput = {
|
|
|
4436
4436
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
|
|
4437
4437
|
soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
|
|
4438
4438
|
contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
4439
|
-
assignedSteps?: Prisma.
|
|
4440
|
-
stepApprovals?: Prisma.
|
|
4439
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
4440
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
4441
4441
|
uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
4442
4442
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
4443
4443
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
@@ -4488,8 +4488,8 @@ export type UserUpdateWithoutPrequalificationsInput = {
|
|
|
4488
4488
|
contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
|
|
4489
4489
|
soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
|
|
4490
4490
|
contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
|
|
4491
|
-
assignedSteps?: Prisma.
|
|
4492
|
-
stepApprovals?: Prisma.
|
|
4491
|
+
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
4492
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
4493
4493
|
uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
4494
4494
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
4495
4495
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
@@ -4527,8 +4527,8 @@ export type UserUncheckedUpdateWithoutPrequalificationsInput = {
|
|
|
4527
4527
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
4528
4528
|
soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
|
|
4529
4529
|
contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
4530
|
-
assignedSteps?: Prisma.
|
|
4531
|
-
stepApprovals?: Prisma.
|
|
4530
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
4531
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
4532
4532
|
uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
4533
4533
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
4534
4534
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
@@ -4566,8 +4566,8 @@ export type UserCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
4566
4566
|
contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
|
|
4567
4567
|
soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
|
|
4568
4568
|
contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
|
|
4569
|
-
assignedSteps?: Prisma.
|
|
4570
|
-
stepApprovals?: Prisma.
|
|
4569
|
+
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
4570
|
+
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
4571
4571
|
uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
|
|
4572
4572
|
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
|
|
4573
4573
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
@@ -4605,8 +4605,8 @@ export type UserUncheckedCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
4605
4605
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
|
|
4606
4606
|
soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
|
|
4607
4607
|
contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
4608
|
-
assignedSteps?: Prisma.
|
|
4609
|
-
stepApprovals?: Prisma.
|
|
4608
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
4609
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
4610
4610
|
uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
4611
4611
|
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
|
|
4612
4612
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
@@ -4648,8 +4648,8 @@ export type UserCreateWithoutReviewedChangeRequestsInput = {
|
|
|
4648
4648
|
contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
|
|
4649
4649
|
soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
|
|
4650
4650
|
contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
|
|
4651
|
-
assignedSteps?: Prisma.
|
|
4652
|
-
stepApprovals?: Prisma.
|
|
4651
|
+
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
4652
|
+
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
4653
4653
|
uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
|
|
4654
4654
|
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
|
|
4655
4655
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -4687,8 +4687,8 @@ export type UserUncheckedCreateWithoutReviewedChangeRequestsInput = {
|
|
|
4687
4687
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
|
|
4688
4688
|
soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
|
|
4689
4689
|
contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
4690
|
-
assignedSteps?: Prisma.
|
|
4691
|
-
stepApprovals?: Prisma.
|
|
4690
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
4691
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
4692
4692
|
uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
4693
4693
|
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
|
|
4694
4694
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -4739,8 +4739,8 @@ export type UserUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
4739
4739
|
contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
|
|
4740
4740
|
soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
|
|
4741
4741
|
contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
|
|
4742
|
-
assignedSteps?: Prisma.
|
|
4743
|
-
stepApprovals?: Prisma.
|
|
4742
|
+
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
4743
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
4744
4744
|
uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
4745
4745
|
prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
|
|
4746
4746
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
@@ -4778,8 +4778,8 @@ export type UserUncheckedUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
4778
4778
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
4779
4779
|
soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
|
|
4780
4780
|
contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
4781
|
-
assignedSteps?: Prisma.
|
|
4782
|
-
stepApprovals?: Prisma.
|
|
4781
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
4782
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
4783
4783
|
uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
4784
4784
|
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
|
|
4785
4785
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
@@ -4826,8 +4826,8 @@ export type UserUpdateWithoutReviewedChangeRequestsInput = {
|
|
|
4826
4826
|
contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
|
|
4827
4827
|
soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
|
|
4828
4828
|
contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
|
|
4829
|
-
assignedSteps?: Prisma.
|
|
4830
|
-
stepApprovals?: Prisma.
|
|
4829
|
+
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
4830
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
4831
4831
|
uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
4832
4832
|
prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
|
|
4833
4833
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -4865,8 +4865,8 @@ export type UserUncheckedUpdateWithoutReviewedChangeRequestsInput = {
|
|
|
4865
4865
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
4866
4866
|
soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
|
|
4867
4867
|
contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
4868
|
-
assignedSteps?: Prisma.
|
|
4869
|
-
stepApprovals?: Prisma.
|
|
4868
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
4869
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
4870
4870
|
uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
4871
4871
|
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
|
|
4872
4872
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -4921,8 +4921,8 @@ export type UserUpdateWithoutTenantInput = {
|
|
|
4921
4921
|
contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
|
|
4922
4922
|
soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
|
|
4923
4923
|
contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
|
|
4924
|
-
assignedSteps?: Prisma.
|
|
4925
|
-
stepApprovals?: Prisma.
|
|
4924
|
+
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
4925
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
4926
4926
|
uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
4927
4927
|
prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
|
|
4928
4928
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -4960,8 +4960,8 @@ export type UserUncheckedUpdateWithoutTenantInput = {
|
|
|
4960
4960
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
4961
4961
|
soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
|
|
4962
4962
|
contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
4963
|
-
assignedSteps?: Prisma.
|
|
4964
|
-
stepApprovals?: Prisma.
|
|
4963
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
4964
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
4965
4965
|
uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
4966
4966
|
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
|
|
4967
4967
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -5117,13 +5117,13 @@ export type UserCountOutputTypeCountContractPaymentsArgs<ExtArgs extends runtime
|
|
|
5117
5117
|
* UserCountOutputType without action
|
|
5118
5118
|
*/
|
|
5119
5119
|
export type UserCountOutputTypeCountAssignedStepsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
5120
|
-
where?: Prisma.
|
|
5120
|
+
where?: Prisma.DocumentationStepWhereInput;
|
|
5121
5121
|
};
|
|
5122
5122
|
/**
|
|
5123
5123
|
* UserCountOutputType without action
|
|
5124
5124
|
*/
|
|
5125
5125
|
export type UserCountOutputTypeCountStepApprovalsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
5126
|
-
where?: Prisma.
|
|
5126
|
+
where?: Prisma.DocumentationStepApprovalWhereInput;
|
|
5127
5127
|
};
|
|
5128
5128
|
/**
|
|
5129
5129
|
* UserCountOutputType without action
|
|
@@ -5278,8 +5278,8 @@ export type $UserPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
5278
5278
|
contracts: Prisma.$ContractPayload<ExtArgs>[];
|
|
5279
5279
|
soldContracts: Prisma.$ContractPayload<ExtArgs>[];
|
|
5280
5280
|
contractPayments: Prisma.$ContractPaymentPayload<ExtArgs>[];
|
|
5281
|
-
assignedSteps: Prisma.$
|
|
5282
|
-
stepApprovals: Prisma.$
|
|
5281
|
+
assignedSteps: Prisma.$DocumentationStepPayload<ExtArgs>[];
|
|
5282
|
+
stepApprovals: Prisma.$DocumentationStepApprovalPayload<ExtArgs>[];
|
|
5283
5283
|
uploadedDocs: Prisma.$ContractDocumentPayload<ExtArgs>[];
|
|
5284
5284
|
prequalifications: Prisma.$PrequalificationPayload<ExtArgs>[];
|
|
5285
5285
|
paymentMethodChangeRequests: Prisma.$PaymentMethodChangeRequestPayload<ExtArgs>[];
|
|
@@ -5597,8 +5597,8 @@ export interface Prisma__UserClient<T, Null = never, ExtArgs extends runtime.Typ
|
|
|
5597
5597
|
contracts<T extends Prisma.User$contractsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$contractsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ContractPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
5598
5598
|
soldContracts<T extends Prisma.User$soldContractsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$soldContractsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ContractPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
5599
5599
|
contractPayments<T extends Prisma.User$contractPaymentsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$contractPaymentsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ContractPaymentPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
5600
|
-
assignedSteps<T extends Prisma.User$assignedStepsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$assignedStepsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$
|
|
5601
|
-
stepApprovals<T extends Prisma.User$stepApprovalsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$stepApprovalsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$
|
|
5600
|
+
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>;
|
|
5601
|
+
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>;
|
|
5602
5602
|
uploadedDocs<T extends Prisma.User$uploadedDocsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$uploadedDocsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ContractDocumentPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
5603
5603
|
prequalifications<T extends Prisma.User$prequalificationsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$prequalificationsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PrequalificationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
5604
5604
|
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>;
|
|
@@ -6270,46 +6270,46 @@ export type User$contractPaymentsArgs<ExtArgs extends runtime.Types.Extensions.I
|
|
|
6270
6270
|
*/
|
|
6271
6271
|
export type User$assignedStepsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
6272
6272
|
/**
|
|
6273
|
-
* Select specific fields to fetch from the
|
|
6273
|
+
* Select specific fields to fetch from the DocumentationStep
|
|
6274
6274
|
*/
|
|
6275
|
-
select?: Prisma.
|
|
6275
|
+
select?: Prisma.DocumentationStepSelect<ExtArgs> | null;
|
|
6276
6276
|
/**
|
|
6277
|
-
* Omit specific fields from the
|
|
6277
|
+
* Omit specific fields from the DocumentationStep
|
|
6278
6278
|
*/
|
|
6279
|
-
omit?: Prisma.
|
|
6279
|
+
omit?: Prisma.DocumentationStepOmit<ExtArgs> | null;
|
|
6280
6280
|
/**
|
|
6281
6281
|
* Choose, which related nodes to fetch as well
|
|
6282
6282
|
*/
|
|
6283
|
-
include?: Prisma.
|
|
6284
|
-
where?: Prisma.
|
|
6285
|
-
orderBy?: Prisma.
|
|
6286
|
-
cursor?: Prisma.
|
|
6283
|
+
include?: Prisma.DocumentationStepInclude<ExtArgs> | null;
|
|
6284
|
+
where?: Prisma.DocumentationStepWhereInput;
|
|
6285
|
+
orderBy?: Prisma.DocumentationStepOrderByWithRelationInput | Prisma.DocumentationStepOrderByWithRelationInput[];
|
|
6286
|
+
cursor?: Prisma.DocumentationStepWhereUniqueInput;
|
|
6287
6287
|
take?: number;
|
|
6288
6288
|
skip?: number;
|
|
6289
|
-
distinct?: Prisma.
|
|
6289
|
+
distinct?: Prisma.DocumentationStepScalarFieldEnum | Prisma.DocumentationStepScalarFieldEnum[];
|
|
6290
6290
|
};
|
|
6291
6291
|
/**
|
|
6292
6292
|
* User.stepApprovals
|
|
6293
6293
|
*/
|
|
6294
6294
|
export type User$stepApprovalsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
6295
6295
|
/**
|
|
6296
|
-
* Select specific fields to fetch from the
|
|
6296
|
+
* Select specific fields to fetch from the DocumentationStepApproval
|
|
6297
6297
|
*/
|
|
6298
|
-
select?: Prisma.
|
|
6298
|
+
select?: Prisma.DocumentationStepApprovalSelect<ExtArgs> | null;
|
|
6299
6299
|
/**
|
|
6300
|
-
* Omit specific fields from the
|
|
6300
|
+
* Omit specific fields from the DocumentationStepApproval
|
|
6301
6301
|
*/
|
|
6302
|
-
omit?: Prisma.
|
|
6302
|
+
omit?: Prisma.DocumentationStepApprovalOmit<ExtArgs> | null;
|
|
6303
6303
|
/**
|
|
6304
6304
|
* Choose, which related nodes to fetch as well
|
|
6305
6305
|
*/
|
|
6306
|
-
include?: Prisma.
|
|
6307
|
-
where?: Prisma.
|
|
6308
|
-
orderBy?: Prisma.
|
|
6309
|
-
cursor?: Prisma.
|
|
6306
|
+
include?: Prisma.DocumentationStepApprovalInclude<ExtArgs> | null;
|
|
6307
|
+
where?: Prisma.DocumentationStepApprovalWhereInput;
|
|
6308
|
+
orderBy?: Prisma.DocumentationStepApprovalOrderByWithRelationInput | Prisma.DocumentationStepApprovalOrderByWithRelationInput[];
|
|
6309
|
+
cursor?: Prisma.DocumentationStepApprovalWhereUniqueInput;
|
|
6310
6310
|
take?: number;
|
|
6311
6311
|
skip?: number;
|
|
6312
|
-
distinct?: Prisma.
|
|
6312
|
+
distinct?: Prisma.DocumentationStepApprovalScalarFieldEnum | Prisma.DocumentationStepApprovalScalarFieldEnum[];
|
|
6313
6313
|
};
|
|
6314
6314
|
/**
|
|
6315
6315
|
* User.uploadedDocs
|