@valentine-efagene/qshelter-common 2.0.71 → 2.0.73
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 +11 -0
- package/dist/generated/client/client.d.ts +11 -0
- package/dist/generated/client/commonInputTypes.d.ts +60 -0
- package/dist/generated/client/enums.d.ts +18 -0
- package/dist/generated/client/enums.js +17 -1
- package/dist/generated/client/internal/class.d.ts +22 -0
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +199 -1
- package/dist/generated/client/internal/prismaNamespace.js +55 -3
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +56 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +55 -3
- package/dist/generated/client/models/Contract.d.ts +1522 -280
- package/dist/generated/client/models/EventHandler.d.ts +154 -4
- package/dist/generated/client/models/PaymentMethodPhaseStep.d.ts +133 -0
- package/dist/generated/client/models/PropertyTransferRequest.d.ts +2535 -0
- package/dist/generated/client/models/PropertyTransferRequest.js +1 -0
- package/dist/generated/client/models/PropertyUnit.d.ts +147 -0
- package/dist/generated/client/models/StepEventAttachment.d.ts +1331 -0
- package/dist/generated/client/models/StepEventAttachment.js +1 -0
- package/dist/generated/client/models/Tenant.d.ts +219 -0
- package/dist/generated/client/models/User.d.ts +632 -0
- package/dist/generated/client/models.d.ts +2 -0
- package/dist/src/events/workflow-event.service.d.ts +1 -1
- package/package.json +1 -1
- package/prisma/migrations/20260106062140_add_step_event_attachments/migration.sql +22 -0
- package/prisma/migrations/20260107121844_add_property_transfer_requests/migration.sql +64 -0
- package/prisma/schema.prisma +134 -0
|
@@ -256,6 +256,8 @@ export type UserWhereInput = {
|
|
|
256
256
|
reviewedTerminations?: Prisma.ContractTerminationListRelationFilter;
|
|
257
257
|
offerLettersGenerated?: Prisma.OfferLetterListRelationFilter;
|
|
258
258
|
offerLettersSent?: Prisma.OfferLetterListRelationFilter;
|
|
259
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestListRelationFilter;
|
|
260
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestListRelationFilter;
|
|
259
261
|
};
|
|
260
262
|
export type UserOrderByWithRelationInput = {
|
|
261
263
|
id?: Prisma.SortOrder;
|
|
@@ -297,6 +299,8 @@ export type UserOrderByWithRelationInput = {
|
|
|
297
299
|
reviewedTerminations?: Prisma.ContractTerminationOrderByRelationAggregateInput;
|
|
298
300
|
offerLettersGenerated?: Prisma.OfferLetterOrderByRelationAggregateInput;
|
|
299
301
|
offerLettersSent?: Prisma.OfferLetterOrderByRelationAggregateInput;
|
|
302
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestOrderByRelationAggregateInput;
|
|
303
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestOrderByRelationAggregateInput;
|
|
300
304
|
_relevance?: Prisma.UserOrderByRelevanceInput;
|
|
301
305
|
};
|
|
302
306
|
export type UserWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -342,6 +346,8 @@ export type UserWhereUniqueInput = Prisma.AtLeast<{
|
|
|
342
346
|
reviewedTerminations?: Prisma.ContractTerminationListRelationFilter;
|
|
343
347
|
offerLettersGenerated?: Prisma.OfferLetterListRelationFilter;
|
|
344
348
|
offerLettersSent?: Prisma.OfferLetterListRelationFilter;
|
|
349
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestListRelationFilter;
|
|
350
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestListRelationFilter;
|
|
345
351
|
}, "id" | "email" | "phone" | "walletId">;
|
|
346
352
|
export type UserOrderByWithAggregationInput = {
|
|
347
353
|
id?: Prisma.SortOrder;
|
|
@@ -425,6 +431,8 @@ export type UserCreateInput = {
|
|
|
425
431
|
reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
|
|
426
432
|
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
427
433
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
434
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
435
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
428
436
|
};
|
|
429
437
|
export type UserUncheckedCreateInput = {
|
|
430
438
|
id?: string;
|
|
@@ -464,6 +472,8 @@ export type UserUncheckedCreateInput = {
|
|
|
464
472
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
465
473
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
466
474
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
475
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
476
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
467
477
|
};
|
|
468
478
|
export type UserUpdateInput = {
|
|
469
479
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -503,6 +513,8 @@ export type UserUpdateInput = {
|
|
|
503
513
|
reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
|
|
504
514
|
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
505
515
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
516
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
517
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
506
518
|
};
|
|
507
519
|
export type UserUncheckedUpdateInput = {
|
|
508
520
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -542,6 +554,8 @@ export type UserUncheckedUpdateInput = {
|
|
|
542
554
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
543
555
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
544
556
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
557
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
558
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
545
559
|
};
|
|
546
560
|
export type UserCreateManyInput = {
|
|
547
561
|
id?: string;
|
|
@@ -1017,6 +1031,32 @@ export type UserUpdateOneWithoutReviewedChangeRequestsNestedInput = {
|
|
|
1017
1031
|
connect?: Prisma.UserWhereUniqueInput;
|
|
1018
1032
|
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutReviewedChangeRequestsInput, Prisma.UserUpdateWithoutReviewedChangeRequestsInput>, Prisma.UserUncheckedUpdateWithoutReviewedChangeRequestsInput>;
|
|
1019
1033
|
};
|
|
1034
|
+
export type UserCreateNestedOneWithoutTransferRequestsSubmittedInput = {
|
|
1035
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutTransferRequestsSubmittedInput, Prisma.UserUncheckedCreateWithoutTransferRequestsSubmittedInput>;
|
|
1036
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutTransferRequestsSubmittedInput;
|
|
1037
|
+
connect?: Prisma.UserWhereUniqueInput;
|
|
1038
|
+
};
|
|
1039
|
+
export type UserCreateNestedOneWithoutTransferRequestsReviewedInput = {
|
|
1040
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutTransferRequestsReviewedInput, Prisma.UserUncheckedCreateWithoutTransferRequestsReviewedInput>;
|
|
1041
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutTransferRequestsReviewedInput;
|
|
1042
|
+
connect?: Prisma.UserWhereUniqueInput;
|
|
1043
|
+
};
|
|
1044
|
+
export type UserUpdateOneRequiredWithoutTransferRequestsSubmittedNestedInput = {
|
|
1045
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutTransferRequestsSubmittedInput, Prisma.UserUncheckedCreateWithoutTransferRequestsSubmittedInput>;
|
|
1046
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutTransferRequestsSubmittedInput;
|
|
1047
|
+
upsert?: Prisma.UserUpsertWithoutTransferRequestsSubmittedInput;
|
|
1048
|
+
connect?: Prisma.UserWhereUniqueInput;
|
|
1049
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutTransferRequestsSubmittedInput, Prisma.UserUpdateWithoutTransferRequestsSubmittedInput>, Prisma.UserUncheckedUpdateWithoutTransferRequestsSubmittedInput>;
|
|
1050
|
+
};
|
|
1051
|
+
export type UserUpdateOneWithoutTransferRequestsReviewedNestedInput = {
|
|
1052
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutTransferRequestsReviewedInput, Prisma.UserUncheckedCreateWithoutTransferRequestsReviewedInput>;
|
|
1053
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutTransferRequestsReviewedInput;
|
|
1054
|
+
upsert?: Prisma.UserUpsertWithoutTransferRequestsReviewedInput;
|
|
1055
|
+
disconnect?: Prisma.UserWhereInput | boolean;
|
|
1056
|
+
delete?: Prisma.UserWhereInput | boolean;
|
|
1057
|
+
connect?: Prisma.UserWhereUniqueInput;
|
|
1058
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutTransferRequestsReviewedInput, Prisma.UserUpdateWithoutTransferRequestsReviewedInput>, Prisma.UserUncheckedUpdateWithoutTransferRequestsReviewedInput>;
|
|
1059
|
+
};
|
|
1020
1060
|
export type UserCreateWithoutUserRolesInput = {
|
|
1021
1061
|
id?: string;
|
|
1022
1062
|
email: string;
|
|
@@ -1054,6 +1094,8 @@ export type UserCreateWithoutUserRolesInput = {
|
|
|
1054
1094
|
reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
|
|
1055
1095
|
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
1056
1096
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
1097
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
1098
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
1057
1099
|
};
|
|
1058
1100
|
export type UserUncheckedCreateWithoutUserRolesInput = {
|
|
1059
1101
|
id?: string;
|
|
@@ -1092,6 +1134,8 @@ export type UserUncheckedCreateWithoutUserRolesInput = {
|
|
|
1092
1134
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
1093
1135
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
1094
1136
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
1137
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
1138
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
1095
1139
|
};
|
|
1096
1140
|
export type UserCreateOrConnectWithoutUserRolesInput = {
|
|
1097
1141
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -1143,6 +1187,8 @@ export type UserUpdateWithoutUserRolesInput = {
|
|
|
1143
1187
|
reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
|
|
1144
1188
|
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
1145
1189
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
1190
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
1191
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
1146
1192
|
};
|
|
1147
1193
|
export type UserUncheckedUpdateWithoutUserRolesInput = {
|
|
1148
1194
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -1181,6 +1227,8 @@ export type UserUncheckedUpdateWithoutUserRolesInput = {
|
|
|
1181
1227
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
1182
1228
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
1183
1229
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
1230
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
1231
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
1184
1232
|
};
|
|
1185
1233
|
export type UserCreateWithoutTenantInput = {
|
|
1186
1234
|
id?: string;
|
|
@@ -1219,6 +1267,8 @@ export type UserCreateWithoutTenantInput = {
|
|
|
1219
1267
|
reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
|
|
1220
1268
|
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
1221
1269
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
1270
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
1271
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
1222
1272
|
};
|
|
1223
1273
|
export type UserUncheckedCreateWithoutTenantInput = {
|
|
1224
1274
|
id?: string;
|
|
@@ -1257,6 +1307,8 @@ export type UserUncheckedCreateWithoutTenantInput = {
|
|
|
1257
1307
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
1258
1308
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
1259
1309
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
1310
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
1311
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
1260
1312
|
};
|
|
1261
1313
|
export type UserCreateOrConnectWithoutTenantInput = {
|
|
1262
1314
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -1338,6 +1390,8 @@ export type UserCreateWithoutRefreshTokensInput = {
|
|
|
1338
1390
|
reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
|
|
1339
1391
|
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
1340
1392
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
1393
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
1394
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
1341
1395
|
};
|
|
1342
1396
|
export type UserUncheckedCreateWithoutRefreshTokensInput = {
|
|
1343
1397
|
id?: string;
|
|
@@ -1376,6 +1430,8 @@ export type UserUncheckedCreateWithoutRefreshTokensInput = {
|
|
|
1376
1430
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
1377
1431
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
1378
1432
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
1433
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
1434
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
1379
1435
|
};
|
|
1380
1436
|
export type UserCreateOrConnectWithoutRefreshTokensInput = {
|
|
1381
1437
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -1427,6 +1483,8 @@ export type UserUpdateWithoutRefreshTokensInput = {
|
|
|
1427
1483
|
reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
|
|
1428
1484
|
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
1429
1485
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
1486
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
1487
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
1430
1488
|
};
|
|
1431
1489
|
export type UserUncheckedUpdateWithoutRefreshTokensInput = {
|
|
1432
1490
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -1465,6 +1523,8 @@ export type UserUncheckedUpdateWithoutRefreshTokensInput = {
|
|
|
1465
1523
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
1466
1524
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
1467
1525
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
1526
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
1527
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
1468
1528
|
};
|
|
1469
1529
|
export type UserCreateWithoutPasswordResetsInput = {
|
|
1470
1530
|
id?: string;
|
|
@@ -1503,6 +1563,8 @@ export type UserCreateWithoutPasswordResetsInput = {
|
|
|
1503
1563
|
reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
|
|
1504
1564
|
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
1505
1565
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
1566
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
1567
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
1506
1568
|
};
|
|
1507
1569
|
export type UserUncheckedCreateWithoutPasswordResetsInput = {
|
|
1508
1570
|
id?: string;
|
|
@@ -1541,6 +1603,8 @@ export type UserUncheckedCreateWithoutPasswordResetsInput = {
|
|
|
1541
1603
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
1542
1604
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
1543
1605
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
1606
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
1607
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
1544
1608
|
};
|
|
1545
1609
|
export type UserCreateOrConnectWithoutPasswordResetsInput = {
|
|
1546
1610
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -1592,6 +1656,8 @@ export type UserUpdateWithoutPasswordResetsInput = {
|
|
|
1592
1656
|
reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
|
|
1593
1657
|
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
1594
1658
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
1659
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
1660
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
1595
1661
|
};
|
|
1596
1662
|
export type UserUncheckedUpdateWithoutPasswordResetsInput = {
|
|
1597
1663
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -1630,6 +1696,8 @@ export type UserUncheckedUpdateWithoutPasswordResetsInput = {
|
|
|
1630
1696
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
1631
1697
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
1632
1698
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
1699
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
1700
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
1633
1701
|
};
|
|
1634
1702
|
export type UserCreateWithoutSuspensionsInput = {
|
|
1635
1703
|
id?: string;
|
|
@@ -1668,6 +1736,8 @@ export type UserCreateWithoutSuspensionsInput = {
|
|
|
1668
1736
|
reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
|
|
1669
1737
|
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
1670
1738
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
1739
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
1740
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
1671
1741
|
};
|
|
1672
1742
|
export type UserUncheckedCreateWithoutSuspensionsInput = {
|
|
1673
1743
|
id?: string;
|
|
@@ -1706,6 +1776,8 @@ export type UserUncheckedCreateWithoutSuspensionsInput = {
|
|
|
1706
1776
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
1707
1777
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
1708
1778
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
1779
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
1780
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
1709
1781
|
};
|
|
1710
1782
|
export type UserCreateOrConnectWithoutSuspensionsInput = {
|
|
1711
1783
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -1757,6 +1829,8 @@ export type UserUpdateWithoutSuspensionsInput = {
|
|
|
1757
1829
|
reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
|
|
1758
1830
|
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
1759
1831
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
1832
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
1833
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
1760
1834
|
};
|
|
1761
1835
|
export type UserUncheckedUpdateWithoutSuspensionsInput = {
|
|
1762
1836
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -1795,6 +1869,8 @@ export type UserUncheckedUpdateWithoutSuspensionsInput = {
|
|
|
1795
1869
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
1796
1870
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
1797
1871
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
1872
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
1873
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
1798
1874
|
};
|
|
1799
1875
|
export type UserCreateWithoutEmailPreferencesInput = {
|
|
1800
1876
|
id?: string;
|
|
@@ -1833,6 +1909,8 @@ export type UserCreateWithoutEmailPreferencesInput = {
|
|
|
1833
1909
|
reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
|
|
1834
1910
|
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
1835
1911
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
1912
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
1913
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
1836
1914
|
};
|
|
1837
1915
|
export type UserUncheckedCreateWithoutEmailPreferencesInput = {
|
|
1838
1916
|
id?: string;
|
|
@@ -1871,6 +1949,8 @@ export type UserUncheckedCreateWithoutEmailPreferencesInput = {
|
|
|
1871
1949
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
1872
1950
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
1873
1951
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
1952
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
1953
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
1874
1954
|
};
|
|
1875
1955
|
export type UserCreateOrConnectWithoutEmailPreferencesInput = {
|
|
1876
1956
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -1922,6 +2002,8 @@ export type UserUpdateWithoutEmailPreferencesInput = {
|
|
|
1922
2002
|
reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
|
|
1923
2003
|
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
1924
2004
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
2005
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
2006
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
1925
2007
|
};
|
|
1926
2008
|
export type UserUncheckedUpdateWithoutEmailPreferencesInput = {
|
|
1927
2009
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -1960,6 +2042,8 @@ export type UserUncheckedUpdateWithoutEmailPreferencesInput = {
|
|
|
1960
2042
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
1961
2043
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
1962
2044
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
2045
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
2046
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
1963
2047
|
};
|
|
1964
2048
|
export type UserCreateWithoutDeviceEndpointsInput = {
|
|
1965
2049
|
id?: string;
|
|
@@ -1998,6 +2082,8 @@ export type UserCreateWithoutDeviceEndpointsInput = {
|
|
|
1998
2082
|
reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
|
|
1999
2083
|
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
2000
2084
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
2085
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
2086
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
2001
2087
|
};
|
|
2002
2088
|
export type UserUncheckedCreateWithoutDeviceEndpointsInput = {
|
|
2003
2089
|
id?: string;
|
|
@@ -2036,6 +2122,8 @@ export type UserUncheckedCreateWithoutDeviceEndpointsInput = {
|
|
|
2036
2122
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
2037
2123
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
2038
2124
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
2125
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
2126
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
2039
2127
|
};
|
|
2040
2128
|
export type UserCreateOrConnectWithoutDeviceEndpointsInput = {
|
|
2041
2129
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -2087,6 +2175,8 @@ export type UserUpdateWithoutDeviceEndpointsInput = {
|
|
|
2087
2175
|
reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
|
|
2088
2176
|
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
2089
2177
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
2178
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
2179
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
2090
2180
|
};
|
|
2091
2181
|
export type UserUncheckedUpdateWithoutDeviceEndpointsInput = {
|
|
2092
2182
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -2125,6 +2215,8 @@ export type UserUncheckedUpdateWithoutDeviceEndpointsInput = {
|
|
|
2125
2215
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
2126
2216
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
2127
2217
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
2218
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
2219
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
2128
2220
|
};
|
|
2129
2221
|
export type UserCreateWithoutSocialsInput = {
|
|
2130
2222
|
id?: string;
|
|
@@ -2163,6 +2255,8 @@ export type UserCreateWithoutSocialsInput = {
|
|
|
2163
2255
|
reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
|
|
2164
2256
|
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
2165
2257
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
2258
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
2259
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
2166
2260
|
};
|
|
2167
2261
|
export type UserUncheckedCreateWithoutSocialsInput = {
|
|
2168
2262
|
id?: string;
|
|
@@ -2201,6 +2295,8 @@ export type UserUncheckedCreateWithoutSocialsInput = {
|
|
|
2201
2295
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
2202
2296
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
2203
2297
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
2298
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
2299
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
2204
2300
|
};
|
|
2205
2301
|
export type UserCreateOrConnectWithoutSocialsInput = {
|
|
2206
2302
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -2252,6 +2348,8 @@ export type UserUpdateWithoutSocialsInput = {
|
|
|
2252
2348
|
reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
|
|
2253
2349
|
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
2254
2350
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
2351
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
2352
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
2255
2353
|
};
|
|
2256
2354
|
export type UserUncheckedUpdateWithoutSocialsInput = {
|
|
2257
2355
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -2290,6 +2388,8 @@ export type UserUncheckedUpdateWithoutSocialsInput = {
|
|
|
2290
2388
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
2291
2389
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
2292
2390
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
2391
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
2392
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
2293
2393
|
};
|
|
2294
2394
|
export type UserCreateWithoutWalletInput = {
|
|
2295
2395
|
id?: string;
|
|
@@ -2328,6 +2428,8 @@ export type UserCreateWithoutWalletInput = {
|
|
|
2328
2428
|
reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
|
|
2329
2429
|
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
2330
2430
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
2431
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
2432
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
2331
2433
|
};
|
|
2332
2434
|
export type UserUncheckedCreateWithoutWalletInput = {
|
|
2333
2435
|
id?: string;
|
|
@@ -2366,6 +2468,8 @@ export type UserUncheckedCreateWithoutWalletInput = {
|
|
|
2366
2468
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
2367
2469
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
2368
2470
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
2471
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
2472
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
2369
2473
|
};
|
|
2370
2474
|
export type UserCreateOrConnectWithoutWalletInput = {
|
|
2371
2475
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -2417,6 +2521,8 @@ export type UserUpdateWithoutWalletInput = {
|
|
|
2417
2521
|
reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
|
|
2418
2522
|
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
2419
2523
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
2524
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
2525
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
2420
2526
|
};
|
|
2421
2527
|
export type UserUncheckedUpdateWithoutWalletInput = {
|
|
2422
2528
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -2455,6 +2561,8 @@ export type UserUncheckedUpdateWithoutWalletInput = {
|
|
|
2455
2561
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
2456
2562
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
2457
2563
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
2564
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
2565
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
2458
2566
|
};
|
|
2459
2567
|
export type UserCreateWithoutPropertiesInput = {
|
|
2460
2568
|
id?: string;
|
|
@@ -2493,6 +2601,8 @@ export type UserCreateWithoutPropertiesInput = {
|
|
|
2493
2601
|
reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
|
|
2494
2602
|
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
2495
2603
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
2604
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
2605
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
2496
2606
|
};
|
|
2497
2607
|
export type UserUncheckedCreateWithoutPropertiesInput = {
|
|
2498
2608
|
id?: string;
|
|
@@ -2531,6 +2641,8 @@ export type UserUncheckedCreateWithoutPropertiesInput = {
|
|
|
2531
2641
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
2532
2642
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
2533
2643
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
2644
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
2645
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
2534
2646
|
};
|
|
2535
2647
|
export type UserCreateOrConnectWithoutPropertiesInput = {
|
|
2536
2648
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -2582,6 +2694,8 @@ export type UserUpdateWithoutPropertiesInput = {
|
|
|
2582
2694
|
reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
|
|
2583
2695
|
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
2584
2696
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
2697
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
2698
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
2585
2699
|
};
|
|
2586
2700
|
export type UserUncheckedUpdateWithoutPropertiesInput = {
|
|
2587
2701
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -2620,6 +2734,8 @@ export type UserUncheckedUpdateWithoutPropertiesInput = {
|
|
|
2620
2734
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
2621
2735
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
2622
2736
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
2737
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
2738
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
2623
2739
|
};
|
|
2624
2740
|
export type UserCreateWithoutContractsInput = {
|
|
2625
2741
|
id?: string;
|
|
@@ -2658,6 +2774,8 @@ export type UserCreateWithoutContractsInput = {
|
|
|
2658
2774
|
reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
|
|
2659
2775
|
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
2660
2776
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
2777
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
2778
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
2661
2779
|
};
|
|
2662
2780
|
export type UserUncheckedCreateWithoutContractsInput = {
|
|
2663
2781
|
id?: string;
|
|
@@ -2696,6 +2814,8 @@ export type UserUncheckedCreateWithoutContractsInput = {
|
|
|
2696
2814
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
2697
2815
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
2698
2816
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
2817
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
2818
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
2699
2819
|
};
|
|
2700
2820
|
export type UserCreateOrConnectWithoutContractsInput = {
|
|
2701
2821
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -2738,6 +2858,8 @@ export type UserCreateWithoutSoldContractsInput = {
|
|
|
2738
2858
|
reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
|
|
2739
2859
|
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
2740
2860
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
2861
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
2862
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
2741
2863
|
};
|
|
2742
2864
|
export type UserUncheckedCreateWithoutSoldContractsInput = {
|
|
2743
2865
|
id?: string;
|
|
@@ -2776,6 +2898,8 @@ export type UserUncheckedCreateWithoutSoldContractsInput = {
|
|
|
2776
2898
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
2777
2899
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
2778
2900
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
2901
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
2902
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
2779
2903
|
};
|
|
2780
2904
|
export type UserCreateOrConnectWithoutSoldContractsInput = {
|
|
2781
2905
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -2827,6 +2951,8 @@ export type UserUpdateWithoutContractsInput = {
|
|
|
2827
2951
|
reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
|
|
2828
2952
|
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
2829
2953
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
2954
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
2955
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
2830
2956
|
};
|
|
2831
2957
|
export type UserUncheckedUpdateWithoutContractsInput = {
|
|
2832
2958
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -2865,6 +2991,8 @@ export type UserUncheckedUpdateWithoutContractsInput = {
|
|
|
2865
2991
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
2866
2992
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
2867
2993
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
2994
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
2995
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
2868
2996
|
};
|
|
2869
2997
|
export type UserUpsertWithoutSoldContractsInput = {
|
|
2870
2998
|
update: Prisma.XOR<Prisma.UserUpdateWithoutSoldContractsInput, Prisma.UserUncheckedUpdateWithoutSoldContractsInput>;
|
|
@@ -2912,6 +3040,8 @@ export type UserUpdateWithoutSoldContractsInput = {
|
|
|
2912
3040
|
reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
|
|
2913
3041
|
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
2914
3042
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
3043
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
3044
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
2915
3045
|
};
|
|
2916
3046
|
export type UserUncheckedUpdateWithoutSoldContractsInput = {
|
|
2917
3047
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -2950,6 +3080,8 @@ export type UserUncheckedUpdateWithoutSoldContractsInput = {
|
|
|
2950
3080
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
2951
3081
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
2952
3082
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
3083
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
3084
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
2953
3085
|
};
|
|
2954
3086
|
export type UserCreateWithoutAssignedStepsInput = {
|
|
2955
3087
|
id?: string;
|
|
@@ -2988,6 +3120,8 @@ export type UserCreateWithoutAssignedStepsInput = {
|
|
|
2988
3120
|
reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
|
|
2989
3121
|
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
2990
3122
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
3123
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
3124
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
2991
3125
|
};
|
|
2992
3126
|
export type UserUncheckedCreateWithoutAssignedStepsInput = {
|
|
2993
3127
|
id?: string;
|
|
@@ -3026,6 +3160,8 @@ export type UserUncheckedCreateWithoutAssignedStepsInput = {
|
|
|
3026
3160
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
3027
3161
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
3028
3162
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
3163
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
3164
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
3029
3165
|
};
|
|
3030
3166
|
export type UserCreateOrConnectWithoutAssignedStepsInput = {
|
|
3031
3167
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -3077,6 +3213,8 @@ export type UserUpdateWithoutAssignedStepsInput = {
|
|
|
3077
3213
|
reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
|
|
3078
3214
|
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
3079
3215
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
3216
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
3217
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
3080
3218
|
};
|
|
3081
3219
|
export type UserUncheckedUpdateWithoutAssignedStepsInput = {
|
|
3082
3220
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -3115,6 +3253,8 @@ export type UserUncheckedUpdateWithoutAssignedStepsInput = {
|
|
|
3115
3253
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
3116
3254
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
3117
3255
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
3256
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
3257
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
3118
3258
|
};
|
|
3119
3259
|
export type UserCreateWithoutStepApprovalsInput = {
|
|
3120
3260
|
id?: string;
|
|
@@ -3153,6 +3293,8 @@ export type UserCreateWithoutStepApprovalsInput = {
|
|
|
3153
3293
|
reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
|
|
3154
3294
|
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
3155
3295
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
3296
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
3297
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
3156
3298
|
};
|
|
3157
3299
|
export type UserUncheckedCreateWithoutStepApprovalsInput = {
|
|
3158
3300
|
id?: string;
|
|
@@ -3191,6 +3333,8 @@ export type UserUncheckedCreateWithoutStepApprovalsInput = {
|
|
|
3191
3333
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
3192
3334
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
3193
3335
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
3336
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
3337
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
3194
3338
|
};
|
|
3195
3339
|
export type UserCreateOrConnectWithoutStepApprovalsInput = {
|
|
3196
3340
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -3242,6 +3386,8 @@ export type UserUpdateWithoutStepApprovalsInput = {
|
|
|
3242
3386
|
reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
|
|
3243
3387
|
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
3244
3388
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
3389
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
3390
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
3245
3391
|
};
|
|
3246
3392
|
export type UserUncheckedUpdateWithoutStepApprovalsInput = {
|
|
3247
3393
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -3280,6 +3426,8 @@ export type UserUncheckedUpdateWithoutStepApprovalsInput = {
|
|
|
3280
3426
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
3281
3427
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
3282
3428
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
3429
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
3430
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
3283
3431
|
};
|
|
3284
3432
|
export type UserCreateWithoutContractPaymentsInput = {
|
|
3285
3433
|
id?: string;
|
|
@@ -3318,6 +3466,8 @@ export type UserCreateWithoutContractPaymentsInput = {
|
|
|
3318
3466
|
reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
|
|
3319
3467
|
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
3320
3468
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
3469
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
3470
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
3321
3471
|
};
|
|
3322
3472
|
export type UserUncheckedCreateWithoutContractPaymentsInput = {
|
|
3323
3473
|
id?: string;
|
|
@@ -3356,6 +3506,8 @@ export type UserUncheckedCreateWithoutContractPaymentsInput = {
|
|
|
3356
3506
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
3357
3507
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
3358
3508
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
3509
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
3510
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
3359
3511
|
};
|
|
3360
3512
|
export type UserCreateOrConnectWithoutContractPaymentsInput = {
|
|
3361
3513
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -3407,6 +3559,8 @@ export type UserUpdateWithoutContractPaymentsInput = {
|
|
|
3407
3559
|
reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
|
|
3408
3560
|
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
3409
3561
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
3562
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
3563
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
3410
3564
|
};
|
|
3411
3565
|
export type UserUncheckedUpdateWithoutContractPaymentsInput = {
|
|
3412
3566
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -3445,6 +3599,8 @@ export type UserUncheckedUpdateWithoutContractPaymentsInput = {
|
|
|
3445
3599
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
3446
3600
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
3447
3601
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
3602
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
3603
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
3448
3604
|
};
|
|
3449
3605
|
export type UserCreateWithoutUploadedDocsInput = {
|
|
3450
3606
|
id?: string;
|
|
@@ -3483,6 +3639,8 @@ export type UserCreateWithoutUploadedDocsInput = {
|
|
|
3483
3639
|
reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
|
|
3484
3640
|
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
3485
3641
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
3642
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
3643
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
3486
3644
|
};
|
|
3487
3645
|
export type UserUncheckedCreateWithoutUploadedDocsInput = {
|
|
3488
3646
|
id?: string;
|
|
@@ -3521,6 +3679,8 @@ export type UserUncheckedCreateWithoutUploadedDocsInput = {
|
|
|
3521
3679
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
3522
3680
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
3523
3681
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
3682
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
3683
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
3524
3684
|
};
|
|
3525
3685
|
export type UserCreateOrConnectWithoutUploadedDocsInput = {
|
|
3526
3686
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -3572,6 +3732,8 @@ export type UserUpdateWithoutUploadedDocsInput = {
|
|
|
3572
3732
|
reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
|
|
3573
3733
|
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
3574
3734
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
3735
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
3736
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
3575
3737
|
};
|
|
3576
3738
|
export type UserUncheckedUpdateWithoutUploadedDocsInput = {
|
|
3577
3739
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -3610,6 +3772,8 @@ export type UserUncheckedUpdateWithoutUploadedDocsInput = {
|
|
|
3610
3772
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
3611
3773
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
3612
3774
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
3775
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
3776
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
3613
3777
|
};
|
|
3614
3778
|
export type UserCreateWithoutOfferLettersGeneratedInput = {
|
|
3615
3779
|
id?: string;
|
|
@@ -3648,6 +3812,8 @@ export type UserCreateWithoutOfferLettersGeneratedInput = {
|
|
|
3648
3812
|
initiatedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutInitiatorInput;
|
|
3649
3813
|
reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
|
|
3650
3814
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
3815
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
3816
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
3651
3817
|
};
|
|
3652
3818
|
export type UserUncheckedCreateWithoutOfferLettersGeneratedInput = {
|
|
3653
3819
|
id?: string;
|
|
@@ -3686,6 +3852,8 @@ export type UserUncheckedCreateWithoutOfferLettersGeneratedInput = {
|
|
|
3686
3852
|
initiatedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
3687
3853
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
3688
3854
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
3855
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
3856
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
3689
3857
|
};
|
|
3690
3858
|
export type UserCreateOrConnectWithoutOfferLettersGeneratedInput = {
|
|
3691
3859
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -3728,6 +3896,8 @@ export type UserCreateWithoutOfferLettersSentInput = {
|
|
|
3728
3896
|
initiatedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutInitiatorInput;
|
|
3729
3897
|
reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
|
|
3730
3898
|
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
3899
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
3900
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
3731
3901
|
};
|
|
3732
3902
|
export type UserUncheckedCreateWithoutOfferLettersSentInput = {
|
|
3733
3903
|
id?: string;
|
|
@@ -3766,6 +3936,8 @@ export type UserUncheckedCreateWithoutOfferLettersSentInput = {
|
|
|
3766
3936
|
initiatedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
3767
3937
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
3768
3938
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
3939
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
3940
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
3769
3941
|
};
|
|
3770
3942
|
export type UserCreateOrConnectWithoutOfferLettersSentInput = {
|
|
3771
3943
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -3817,6 +3989,8 @@ export type UserUpdateWithoutOfferLettersGeneratedInput = {
|
|
|
3817
3989
|
initiatedTerminations?: Prisma.ContractTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
3818
3990
|
reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
|
|
3819
3991
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
3992
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
3993
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
3820
3994
|
};
|
|
3821
3995
|
export type UserUncheckedUpdateWithoutOfferLettersGeneratedInput = {
|
|
3822
3996
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -3855,6 +4029,8 @@ export type UserUncheckedUpdateWithoutOfferLettersGeneratedInput = {
|
|
|
3855
4029
|
initiatedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
3856
4030
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
3857
4031
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
4032
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
4033
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
3858
4034
|
};
|
|
3859
4035
|
export type UserUpsertWithoutOfferLettersSentInput = {
|
|
3860
4036
|
update: Prisma.XOR<Prisma.UserUpdateWithoutOfferLettersSentInput, Prisma.UserUncheckedUpdateWithoutOfferLettersSentInput>;
|
|
@@ -3902,6 +4078,8 @@ export type UserUpdateWithoutOfferLettersSentInput = {
|
|
|
3902
4078
|
initiatedTerminations?: Prisma.ContractTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
3903
4079
|
reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
|
|
3904
4080
|
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
4081
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
4082
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
3905
4083
|
};
|
|
3906
4084
|
export type UserUncheckedUpdateWithoutOfferLettersSentInput = {
|
|
3907
4085
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -3940,6 +4118,8 @@ export type UserUncheckedUpdateWithoutOfferLettersSentInput = {
|
|
|
3940
4118
|
initiatedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
3941
4119
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
3942
4120
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
4121
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
4122
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
3943
4123
|
};
|
|
3944
4124
|
export type UserCreateWithoutInitiatedTerminationsInput = {
|
|
3945
4125
|
id?: string;
|
|
@@ -3978,6 +4158,8 @@ export type UserCreateWithoutInitiatedTerminationsInput = {
|
|
|
3978
4158
|
reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
|
|
3979
4159
|
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
3980
4160
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
4161
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
4162
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
3981
4163
|
};
|
|
3982
4164
|
export type UserUncheckedCreateWithoutInitiatedTerminationsInput = {
|
|
3983
4165
|
id?: string;
|
|
@@ -4016,6 +4198,8 @@ export type UserUncheckedCreateWithoutInitiatedTerminationsInput = {
|
|
|
4016
4198
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4017
4199
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
4018
4200
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
4201
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4202
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
4019
4203
|
};
|
|
4020
4204
|
export type UserCreateOrConnectWithoutInitiatedTerminationsInput = {
|
|
4021
4205
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -4058,6 +4242,8 @@ export type UserCreateWithoutReviewedTerminationsInput = {
|
|
|
4058
4242
|
initiatedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutInitiatorInput;
|
|
4059
4243
|
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
4060
4244
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
4245
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
4246
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
4061
4247
|
};
|
|
4062
4248
|
export type UserUncheckedCreateWithoutReviewedTerminationsInput = {
|
|
4063
4249
|
id?: string;
|
|
@@ -4096,6 +4282,8 @@ export type UserUncheckedCreateWithoutReviewedTerminationsInput = {
|
|
|
4096
4282
|
initiatedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
4097
4283
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
4098
4284
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
4285
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4286
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
4099
4287
|
};
|
|
4100
4288
|
export type UserCreateOrConnectWithoutReviewedTerminationsInput = {
|
|
4101
4289
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -4147,6 +4335,8 @@ export type UserUpdateWithoutInitiatedTerminationsInput = {
|
|
|
4147
4335
|
reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
|
|
4148
4336
|
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
4149
4337
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
4338
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
4339
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
4150
4340
|
};
|
|
4151
4341
|
export type UserUncheckedUpdateWithoutInitiatedTerminationsInput = {
|
|
4152
4342
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -4185,6 +4375,8 @@ export type UserUncheckedUpdateWithoutInitiatedTerminationsInput = {
|
|
|
4185
4375
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
4186
4376
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
4187
4377
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
4378
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
4379
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
4188
4380
|
};
|
|
4189
4381
|
export type UserUpsertWithoutReviewedTerminationsInput = {
|
|
4190
4382
|
update: Prisma.XOR<Prisma.UserUpdateWithoutReviewedTerminationsInput, Prisma.UserUncheckedUpdateWithoutReviewedTerminationsInput>;
|
|
@@ -4232,6 +4424,8 @@ export type UserUpdateWithoutReviewedTerminationsInput = {
|
|
|
4232
4424
|
initiatedTerminations?: Prisma.ContractTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
4233
4425
|
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
4234
4426
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
4427
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
4428
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
4235
4429
|
};
|
|
4236
4430
|
export type UserUncheckedUpdateWithoutReviewedTerminationsInput = {
|
|
4237
4431
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -4270,6 +4464,8 @@ export type UserUncheckedUpdateWithoutReviewedTerminationsInput = {
|
|
|
4270
4464
|
initiatedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
4271
4465
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
4272
4466
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
4467
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
4468
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
4273
4469
|
};
|
|
4274
4470
|
export type UserCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
4275
4471
|
id?: string;
|
|
@@ -4308,6 +4504,8 @@ export type UserCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
4308
4504
|
reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
|
|
4309
4505
|
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
4310
4506
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
4507
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
4508
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
4311
4509
|
};
|
|
4312
4510
|
export type UserUncheckedCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
4313
4511
|
id?: string;
|
|
@@ -4346,6 +4544,8 @@ export type UserUncheckedCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
4346
4544
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4347
4545
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
4348
4546
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
4547
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4548
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
4349
4549
|
};
|
|
4350
4550
|
export type UserCreateOrConnectWithoutPaymentMethodChangeRequestsInput = {
|
|
4351
4551
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -4388,6 +4588,8 @@ export type UserCreateWithoutReviewedChangeRequestsInput = {
|
|
|
4388
4588
|
reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
|
|
4389
4589
|
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
4390
4590
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
4591
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
4592
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
4391
4593
|
};
|
|
4392
4594
|
export type UserUncheckedCreateWithoutReviewedChangeRequestsInput = {
|
|
4393
4595
|
id?: string;
|
|
@@ -4426,6 +4628,8 @@ export type UserUncheckedCreateWithoutReviewedChangeRequestsInput = {
|
|
|
4426
4628
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4427
4629
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
4428
4630
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
4631
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4632
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
4429
4633
|
};
|
|
4430
4634
|
export type UserCreateOrConnectWithoutReviewedChangeRequestsInput = {
|
|
4431
4635
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -4477,6 +4681,8 @@ export type UserUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
4477
4681
|
reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
|
|
4478
4682
|
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
4479
4683
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
4684
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
4685
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
4480
4686
|
};
|
|
4481
4687
|
export type UserUncheckedUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
4482
4688
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -4515,6 +4721,8 @@ export type UserUncheckedUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
4515
4721
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
4516
4722
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
4517
4723
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
4724
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
4725
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
4518
4726
|
};
|
|
4519
4727
|
export type UserUpsertWithoutReviewedChangeRequestsInput = {
|
|
4520
4728
|
update: Prisma.XOR<Prisma.UserUpdateWithoutReviewedChangeRequestsInput, Prisma.UserUncheckedUpdateWithoutReviewedChangeRequestsInput>;
|
|
@@ -4562,6 +4770,8 @@ export type UserUpdateWithoutReviewedChangeRequestsInput = {
|
|
|
4562
4770
|
reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
|
|
4563
4771
|
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
4564
4772
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
4773
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
4774
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
4565
4775
|
};
|
|
4566
4776
|
export type UserUncheckedUpdateWithoutReviewedChangeRequestsInput = {
|
|
4567
4777
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -4600,6 +4810,354 @@ export type UserUncheckedUpdateWithoutReviewedChangeRequestsInput = {
|
|
|
4600
4810
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
4601
4811
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
4602
4812
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
4813
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
4814
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
4815
|
+
};
|
|
4816
|
+
export type UserCreateWithoutTransferRequestsSubmittedInput = {
|
|
4817
|
+
id?: string;
|
|
4818
|
+
email: string;
|
|
4819
|
+
password?: string | null;
|
|
4820
|
+
phone?: string | null;
|
|
4821
|
+
firstName?: string | null;
|
|
4822
|
+
lastName?: string | null;
|
|
4823
|
+
isActive?: boolean;
|
|
4824
|
+
isEmailVerified?: boolean;
|
|
4825
|
+
googleId?: string | null;
|
|
4826
|
+
avatar?: string | null;
|
|
4827
|
+
createdAt?: Date | string;
|
|
4828
|
+
updatedAt?: Date | string;
|
|
4829
|
+
emailVerifiedAt?: Date | string | null;
|
|
4830
|
+
emailVerificationToken?: string | null;
|
|
4831
|
+
lastLoginAt?: Date | string | null;
|
|
4832
|
+
tenant?: Prisma.TenantCreateNestedOneWithoutUsersInput;
|
|
4833
|
+
userRoles?: Prisma.UserRoleCreateNestedManyWithoutUserInput;
|
|
4834
|
+
wallet?: Prisma.WalletCreateNestedOneWithoutUserInput;
|
|
4835
|
+
refreshTokens?: Prisma.RefreshTokenCreateNestedManyWithoutUserInput;
|
|
4836
|
+
passwordResets?: Prisma.PasswordResetCreateNestedManyWithoutUserInput;
|
|
4837
|
+
suspensions?: Prisma.UserSuspensionCreateNestedManyWithoutUserInput;
|
|
4838
|
+
emailPreferences?: Prisma.EmailPreferenceCreateNestedManyWithoutUserInput;
|
|
4839
|
+
deviceEndpoints?: Prisma.DeviceEndpointCreateNestedManyWithoutUserInput;
|
|
4840
|
+
socials?: Prisma.SocialCreateNestedManyWithoutUserInput;
|
|
4841
|
+
properties?: Prisma.PropertyCreateNestedManyWithoutUserInput;
|
|
4842
|
+
contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
|
|
4843
|
+
soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
|
|
4844
|
+
contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
|
|
4845
|
+
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
4846
|
+
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
4847
|
+
uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
|
|
4848
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
4849
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
4850
|
+
initiatedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutInitiatorInput;
|
|
4851
|
+
reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
|
|
4852
|
+
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
4853
|
+
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
4854
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
4855
|
+
};
|
|
4856
|
+
export type UserUncheckedCreateWithoutTransferRequestsSubmittedInput = {
|
|
4857
|
+
id?: string;
|
|
4858
|
+
email: string;
|
|
4859
|
+
password?: string | null;
|
|
4860
|
+
phone?: string | null;
|
|
4861
|
+
firstName?: string | null;
|
|
4862
|
+
lastName?: string | null;
|
|
4863
|
+
isActive?: boolean;
|
|
4864
|
+
isEmailVerified?: boolean;
|
|
4865
|
+
googleId?: string | null;
|
|
4866
|
+
avatar?: string | null;
|
|
4867
|
+
tenantId?: string | null;
|
|
4868
|
+
walletId?: string | null;
|
|
4869
|
+
createdAt?: Date | string;
|
|
4870
|
+
updatedAt?: Date | string;
|
|
4871
|
+
emailVerifiedAt?: Date | string | null;
|
|
4872
|
+
emailVerificationToken?: string | null;
|
|
4873
|
+
lastLoginAt?: Date | string | null;
|
|
4874
|
+
userRoles?: Prisma.UserRoleUncheckedCreateNestedManyWithoutUserInput;
|
|
4875
|
+
refreshTokens?: Prisma.RefreshTokenUncheckedCreateNestedManyWithoutUserInput;
|
|
4876
|
+
passwordResets?: Prisma.PasswordResetUncheckedCreateNestedManyWithoutUserInput;
|
|
4877
|
+
suspensions?: Prisma.UserSuspensionUncheckedCreateNestedManyWithoutUserInput;
|
|
4878
|
+
emailPreferences?: Prisma.EmailPreferenceUncheckedCreateNestedManyWithoutUserInput;
|
|
4879
|
+
deviceEndpoints?: Prisma.DeviceEndpointUncheckedCreateNestedManyWithoutUserInput;
|
|
4880
|
+
socials?: Prisma.SocialUncheckedCreateNestedManyWithoutUserInput;
|
|
4881
|
+
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutUserInput;
|
|
4882
|
+
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
|
|
4883
|
+
soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
|
|
4884
|
+
contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
4885
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
4886
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
4887
|
+
uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
4888
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
4889
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4890
|
+
initiatedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
4891
|
+
reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4892
|
+
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
4893
|
+
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
4894
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
4895
|
+
};
|
|
4896
|
+
export type UserCreateOrConnectWithoutTransferRequestsSubmittedInput = {
|
|
4897
|
+
where: Prisma.UserWhereUniqueInput;
|
|
4898
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutTransferRequestsSubmittedInput, Prisma.UserUncheckedCreateWithoutTransferRequestsSubmittedInput>;
|
|
4899
|
+
};
|
|
4900
|
+
export type UserCreateWithoutTransferRequestsReviewedInput = {
|
|
4901
|
+
id?: string;
|
|
4902
|
+
email: string;
|
|
4903
|
+
password?: string | null;
|
|
4904
|
+
phone?: string | null;
|
|
4905
|
+
firstName?: string | null;
|
|
4906
|
+
lastName?: string | null;
|
|
4907
|
+
isActive?: boolean;
|
|
4908
|
+
isEmailVerified?: boolean;
|
|
4909
|
+
googleId?: string | null;
|
|
4910
|
+
avatar?: string | null;
|
|
4911
|
+
createdAt?: Date | string;
|
|
4912
|
+
updatedAt?: Date | string;
|
|
4913
|
+
emailVerifiedAt?: Date | string | null;
|
|
4914
|
+
emailVerificationToken?: string | null;
|
|
4915
|
+
lastLoginAt?: Date | string | null;
|
|
4916
|
+
tenant?: Prisma.TenantCreateNestedOneWithoutUsersInput;
|
|
4917
|
+
userRoles?: Prisma.UserRoleCreateNestedManyWithoutUserInput;
|
|
4918
|
+
wallet?: Prisma.WalletCreateNestedOneWithoutUserInput;
|
|
4919
|
+
refreshTokens?: Prisma.RefreshTokenCreateNestedManyWithoutUserInput;
|
|
4920
|
+
passwordResets?: Prisma.PasswordResetCreateNestedManyWithoutUserInput;
|
|
4921
|
+
suspensions?: Prisma.UserSuspensionCreateNestedManyWithoutUserInput;
|
|
4922
|
+
emailPreferences?: Prisma.EmailPreferenceCreateNestedManyWithoutUserInput;
|
|
4923
|
+
deviceEndpoints?: Prisma.DeviceEndpointCreateNestedManyWithoutUserInput;
|
|
4924
|
+
socials?: Prisma.SocialCreateNestedManyWithoutUserInput;
|
|
4925
|
+
properties?: Prisma.PropertyCreateNestedManyWithoutUserInput;
|
|
4926
|
+
contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
|
|
4927
|
+
soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
|
|
4928
|
+
contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
|
|
4929
|
+
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
4930
|
+
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
4931
|
+
uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
|
|
4932
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
4933
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
4934
|
+
initiatedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutInitiatorInput;
|
|
4935
|
+
reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
|
|
4936
|
+
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
4937
|
+
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
4938
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
4939
|
+
};
|
|
4940
|
+
export type UserUncheckedCreateWithoutTransferRequestsReviewedInput = {
|
|
4941
|
+
id?: string;
|
|
4942
|
+
email: string;
|
|
4943
|
+
password?: string | null;
|
|
4944
|
+
phone?: string | null;
|
|
4945
|
+
firstName?: string | null;
|
|
4946
|
+
lastName?: string | null;
|
|
4947
|
+
isActive?: boolean;
|
|
4948
|
+
isEmailVerified?: boolean;
|
|
4949
|
+
googleId?: string | null;
|
|
4950
|
+
avatar?: string | null;
|
|
4951
|
+
tenantId?: string | null;
|
|
4952
|
+
walletId?: string | null;
|
|
4953
|
+
createdAt?: Date | string;
|
|
4954
|
+
updatedAt?: Date | string;
|
|
4955
|
+
emailVerifiedAt?: Date | string | null;
|
|
4956
|
+
emailVerificationToken?: string | null;
|
|
4957
|
+
lastLoginAt?: Date | string | null;
|
|
4958
|
+
userRoles?: Prisma.UserRoleUncheckedCreateNestedManyWithoutUserInput;
|
|
4959
|
+
refreshTokens?: Prisma.RefreshTokenUncheckedCreateNestedManyWithoutUserInput;
|
|
4960
|
+
passwordResets?: Prisma.PasswordResetUncheckedCreateNestedManyWithoutUserInput;
|
|
4961
|
+
suspensions?: Prisma.UserSuspensionUncheckedCreateNestedManyWithoutUserInput;
|
|
4962
|
+
emailPreferences?: Prisma.EmailPreferenceUncheckedCreateNestedManyWithoutUserInput;
|
|
4963
|
+
deviceEndpoints?: Prisma.DeviceEndpointUncheckedCreateNestedManyWithoutUserInput;
|
|
4964
|
+
socials?: Prisma.SocialUncheckedCreateNestedManyWithoutUserInput;
|
|
4965
|
+
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutUserInput;
|
|
4966
|
+
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
|
|
4967
|
+
soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
|
|
4968
|
+
contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
4969
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
4970
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
4971
|
+
uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
4972
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
4973
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4974
|
+
initiatedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
4975
|
+
reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4976
|
+
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
4977
|
+
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
4978
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4979
|
+
};
|
|
4980
|
+
export type UserCreateOrConnectWithoutTransferRequestsReviewedInput = {
|
|
4981
|
+
where: Prisma.UserWhereUniqueInput;
|
|
4982
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutTransferRequestsReviewedInput, Prisma.UserUncheckedCreateWithoutTransferRequestsReviewedInput>;
|
|
4983
|
+
};
|
|
4984
|
+
export type UserUpsertWithoutTransferRequestsSubmittedInput = {
|
|
4985
|
+
update: Prisma.XOR<Prisma.UserUpdateWithoutTransferRequestsSubmittedInput, Prisma.UserUncheckedUpdateWithoutTransferRequestsSubmittedInput>;
|
|
4986
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutTransferRequestsSubmittedInput, Prisma.UserUncheckedCreateWithoutTransferRequestsSubmittedInput>;
|
|
4987
|
+
where?: Prisma.UserWhereInput;
|
|
4988
|
+
};
|
|
4989
|
+
export type UserUpdateToOneWithWhereWithoutTransferRequestsSubmittedInput = {
|
|
4990
|
+
where?: Prisma.UserWhereInput;
|
|
4991
|
+
data: Prisma.XOR<Prisma.UserUpdateWithoutTransferRequestsSubmittedInput, Prisma.UserUncheckedUpdateWithoutTransferRequestsSubmittedInput>;
|
|
4992
|
+
};
|
|
4993
|
+
export type UserUpdateWithoutTransferRequestsSubmittedInput = {
|
|
4994
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
4995
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
4996
|
+
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
4997
|
+
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
4998
|
+
firstName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
4999
|
+
lastName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5000
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
5001
|
+
isEmailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
5002
|
+
googleId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5003
|
+
avatar?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5004
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
5005
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
5006
|
+
emailVerifiedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
5007
|
+
emailVerificationToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5008
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
5009
|
+
tenant?: Prisma.TenantUpdateOneWithoutUsersNestedInput;
|
|
5010
|
+
userRoles?: Prisma.UserRoleUpdateManyWithoutUserNestedInput;
|
|
5011
|
+
wallet?: Prisma.WalletUpdateOneWithoutUserNestedInput;
|
|
5012
|
+
refreshTokens?: Prisma.RefreshTokenUpdateManyWithoutUserNestedInput;
|
|
5013
|
+
passwordResets?: Prisma.PasswordResetUpdateManyWithoutUserNestedInput;
|
|
5014
|
+
suspensions?: Prisma.UserSuspensionUpdateManyWithoutUserNestedInput;
|
|
5015
|
+
emailPreferences?: Prisma.EmailPreferenceUpdateManyWithoutUserNestedInput;
|
|
5016
|
+
deviceEndpoints?: Prisma.DeviceEndpointUpdateManyWithoutUserNestedInput;
|
|
5017
|
+
socials?: Prisma.SocialUpdateManyWithoutUserNestedInput;
|
|
5018
|
+
properties?: Prisma.PropertyUpdateManyWithoutUserNestedInput;
|
|
5019
|
+
contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
|
|
5020
|
+
soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
|
|
5021
|
+
contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
|
|
5022
|
+
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
5023
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
5024
|
+
uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
5025
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
5026
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
5027
|
+
initiatedTerminations?: Prisma.ContractTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
5028
|
+
reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
|
|
5029
|
+
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
5030
|
+
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
5031
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
5032
|
+
};
|
|
5033
|
+
export type UserUncheckedUpdateWithoutTransferRequestsSubmittedInput = {
|
|
5034
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5035
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5036
|
+
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5037
|
+
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5038
|
+
firstName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5039
|
+
lastName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5040
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
5041
|
+
isEmailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
5042
|
+
googleId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5043
|
+
avatar?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5044
|
+
tenantId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5045
|
+
walletId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5046
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
5047
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
5048
|
+
emailVerifiedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
5049
|
+
emailVerificationToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5050
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
5051
|
+
userRoles?: Prisma.UserRoleUncheckedUpdateManyWithoutUserNestedInput;
|
|
5052
|
+
refreshTokens?: Prisma.RefreshTokenUncheckedUpdateManyWithoutUserNestedInput;
|
|
5053
|
+
passwordResets?: Prisma.PasswordResetUncheckedUpdateManyWithoutUserNestedInput;
|
|
5054
|
+
suspensions?: Prisma.UserSuspensionUncheckedUpdateManyWithoutUserNestedInput;
|
|
5055
|
+
emailPreferences?: Prisma.EmailPreferenceUncheckedUpdateManyWithoutUserNestedInput;
|
|
5056
|
+
deviceEndpoints?: Prisma.DeviceEndpointUncheckedUpdateManyWithoutUserNestedInput;
|
|
5057
|
+
socials?: Prisma.SocialUncheckedUpdateManyWithoutUserNestedInput;
|
|
5058
|
+
properties?: Prisma.PropertyUncheckedUpdateManyWithoutUserNestedInput;
|
|
5059
|
+
contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
5060
|
+
soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
|
|
5061
|
+
contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
5062
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
5063
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
5064
|
+
uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
5065
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
5066
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5067
|
+
initiatedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
5068
|
+
reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5069
|
+
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
5070
|
+
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
5071
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
5072
|
+
};
|
|
5073
|
+
export type UserUpsertWithoutTransferRequestsReviewedInput = {
|
|
5074
|
+
update: Prisma.XOR<Prisma.UserUpdateWithoutTransferRequestsReviewedInput, Prisma.UserUncheckedUpdateWithoutTransferRequestsReviewedInput>;
|
|
5075
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutTransferRequestsReviewedInput, Prisma.UserUncheckedCreateWithoutTransferRequestsReviewedInput>;
|
|
5076
|
+
where?: Prisma.UserWhereInput;
|
|
5077
|
+
};
|
|
5078
|
+
export type UserUpdateToOneWithWhereWithoutTransferRequestsReviewedInput = {
|
|
5079
|
+
where?: Prisma.UserWhereInput;
|
|
5080
|
+
data: Prisma.XOR<Prisma.UserUpdateWithoutTransferRequestsReviewedInput, Prisma.UserUncheckedUpdateWithoutTransferRequestsReviewedInput>;
|
|
5081
|
+
};
|
|
5082
|
+
export type UserUpdateWithoutTransferRequestsReviewedInput = {
|
|
5083
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5084
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5085
|
+
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5086
|
+
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5087
|
+
firstName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5088
|
+
lastName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5089
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
5090
|
+
isEmailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
5091
|
+
googleId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5092
|
+
avatar?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5093
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
5094
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
5095
|
+
emailVerifiedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
5096
|
+
emailVerificationToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5097
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
5098
|
+
tenant?: Prisma.TenantUpdateOneWithoutUsersNestedInput;
|
|
5099
|
+
userRoles?: Prisma.UserRoleUpdateManyWithoutUserNestedInput;
|
|
5100
|
+
wallet?: Prisma.WalletUpdateOneWithoutUserNestedInput;
|
|
5101
|
+
refreshTokens?: Prisma.RefreshTokenUpdateManyWithoutUserNestedInput;
|
|
5102
|
+
passwordResets?: Prisma.PasswordResetUpdateManyWithoutUserNestedInput;
|
|
5103
|
+
suspensions?: Prisma.UserSuspensionUpdateManyWithoutUserNestedInput;
|
|
5104
|
+
emailPreferences?: Prisma.EmailPreferenceUpdateManyWithoutUserNestedInput;
|
|
5105
|
+
deviceEndpoints?: Prisma.DeviceEndpointUpdateManyWithoutUserNestedInput;
|
|
5106
|
+
socials?: Prisma.SocialUpdateManyWithoutUserNestedInput;
|
|
5107
|
+
properties?: Prisma.PropertyUpdateManyWithoutUserNestedInput;
|
|
5108
|
+
contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
|
|
5109
|
+
soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
|
|
5110
|
+
contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
|
|
5111
|
+
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
5112
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
5113
|
+
uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
5114
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
5115
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
5116
|
+
initiatedTerminations?: Prisma.ContractTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
5117
|
+
reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
|
|
5118
|
+
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
5119
|
+
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
5120
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
5121
|
+
};
|
|
5122
|
+
export type UserUncheckedUpdateWithoutTransferRequestsReviewedInput = {
|
|
5123
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5124
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5125
|
+
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5126
|
+
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5127
|
+
firstName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5128
|
+
lastName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5129
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
5130
|
+
isEmailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
5131
|
+
googleId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5132
|
+
avatar?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5133
|
+
tenantId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5134
|
+
walletId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5135
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
5136
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
5137
|
+
emailVerifiedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
5138
|
+
emailVerificationToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5139
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
5140
|
+
userRoles?: Prisma.UserRoleUncheckedUpdateManyWithoutUserNestedInput;
|
|
5141
|
+
refreshTokens?: Prisma.RefreshTokenUncheckedUpdateManyWithoutUserNestedInput;
|
|
5142
|
+
passwordResets?: Prisma.PasswordResetUncheckedUpdateManyWithoutUserNestedInput;
|
|
5143
|
+
suspensions?: Prisma.UserSuspensionUncheckedUpdateManyWithoutUserNestedInput;
|
|
5144
|
+
emailPreferences?: Prisma.EmailPreferenceUncheckedUpdateManyWithoutUserNestedInput;
|
|
5145
|
+
deviceEndpoints?: Prisma.DeviceEndpointUncheckedUpdateManyWithoutUserNestedInput;
|
|
5146
|
+
socials?: Prisma.SocialUncheckedUpdateManyWithoutUserNestedInput;
|
|
5147
|
+
properties?: Prisma.PropertyUncheckedUpdateManyWithoutUserNestedInput;
|
|
5148
|
+
contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
5149
|
+
soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
|
|
5150
|
+
contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
5151
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
5152
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
5153
|
+
uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
5154
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
5155
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5156
|
+
initiatedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
5157
|
+
reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5158
|
+
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
5159
|
+
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
5160
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
4603
5161
|
};
|
|
4604
5162
|
export type UserCreateManyTenantInput = {
|
|
4605
5163
|
id?: string;
|
|
@@ -4656,6 +5214,8 @@ export type UserUpdateWithoutTenantInput = {
|
|
|
4656
5214
|
reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
|
|
4657
5215
|
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
4658
5216
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
5217
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
5218
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
4659
5219
|
};
|
|
4660
5220
|
export type UserUncheckedUpdateWithoutTenantInput = {
|
|
4661
5221
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -4694,6 +5254,8 @@ export type UserUncheckedUpdateWithoutTenantInput = {
|
|
|
4694
5254
|
reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
4695
5255
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
4696
5256
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
5257
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
5258
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
4697
5259
|
};
|
|
4698
5260
|
export type UserUncheckedUpdateManyWithoutTenantInput = {
|
|
4699
5261
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -4737,6 +5299,8 @@ export type UserCountOutputType = {
|
|
|
4737
5299
|
reviewedTerminations: number;
|
|
4738
5300
|
offerLettersGenerated: number;
|
|
4739
5301
|
offerLettersSent: number;
|
|
5302
|
+
transferRequestsSubmitted: number;
|
|
5303
|
+
transferRequestsReviewed: number;
|
|
4740
5304
|
};
|
|
4741
5305
|
export type UserCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
4742
5306
|
userRoles?: boolean | UserCountOutputTypeCountUserRolesArgs;
|
|
@@ -4759,6 +5323,8 @@ export type UserCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.I
|
|
|
4759
5323
|
reviewedTerminations?: boolean | UserCountOutputTypeCountReviewedTerminationsArgs;
|
|
4760
5324
|
offerLettersGenerated?: boolean | UserCountOutputTypeCountOfferLettersGeneratedArgs;
|
|
4761
5325
|
offerLettersSent?: boolean | UserCountOutputTypeCountOfferLettersSentArgs;
|
|
5326
|
+
transferRequestsSubmitted?: boolean | UserCountOutputTypeCountTransferRequestsSubmittedArgs;
|
|
5327
|
+
transferRequestsReviewed?: boolean | UserCountOutputTypeCountTransferRequestsReviewedArgs;
|
|
4762
5328
|
};
|
|
4763
5329
|
/**
|
|
4764
5330
|
* UserCountOutputType without action
|
|
@@ -4889,6 +5455,18 @@ export type UserCountOutputTypeCountOfferLettersGeneratedArgs<ExtArgs extends ru
|
|
|
4889
5455
|
export type UserCountOutputTypeCountOfferLettersSentArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
4890
5456
|
where?: Prisma.OfferLetterWhereInput;
|
|
4891
5457
|
};
|
|
5458
|
+
/**
|
|
5459
|
+
* UserCountOutputType without action
|
|
5460
|
+
*/
|
|
5461
|
+
export type UserCountOutputTypeCountTransferRequestsSubmittedArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
5462
|
+
where?: Prisma.PropertyTransferRequestWhereInput;
|
|
5463
|
+
};
|
|
5464
|
+
/**
|
|
5465
|
+
* UserCountOutputType without action
|
|
5466
|
+
*/
|
|
5467
|
+
export type UserCountOutputTypeCountTransferRequestsReviewedArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
5468
|
+
where?: Prisma.PropertyTransferRequestWhereInput;
|
|
5469
|
+
};
|
|
4892
5470
|
export type UserSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
4893
5471
|
id?: boolean;
|
|
4894
5472
|
email?: boolean;
|
|
@@ -4929,6 +5507,8 @@ export type UserSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
4929
5507
|
reviewedTerminations?: boolean | Prisma.User$reviewedTerminationsArgs<ExtArgs>;
|
|
4930
5508
|
offerLettersGenerated?: boolean | Prisma.User$offerLettersGeneratedArgs<ExtArgs>;
|
|
4931
5509
|
offerLettersSent?: boolean | Prisma.User$offerLettersSentArgs<ExtArgs>;
|
|
5510
|
+
transferRequestsSubmitted?: boolean | Prisma.User$transferRequestsSubmittedArgs<ExtArgs>;
|
|
5511
|
+
transferRequestsReviewed?: boolean | Prisma.User$transferRequestsReviewedArgs<ExtArgs>;
|
|
4932
5512
|
_count?: boolean | Prisma.UserCountOutputTypeDefaultArgs<ExtArgs>;
|
|
4933
5513
|
}, ExtArgs["result"]["user"]>;
|
|
4934
5514
|
export type UserSelectScalar = {
|
|
@@ -4974,6 +5554,8 @@ export type UserInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
4974
5554
|
reviewedTerminations?: boolean | Prisma.User$reviewedTerminationsArgs<ExtArgs>;
|
|
4975
5555
|
offerLettersGenerated?: boolean | Prisma.User$offerLettersGeneratedArgs<ExtArgs>;
|
|
4976
5556
|
offerLettersSent?: boolean | Prisma.User$offerLettersSentArgs<ExtArgs>;
|
|
5557
|
+
transferRequestsSubmitted?: boolean | Prisma.User$transferRequestsSubmittedArgs<ExtArgs>;
|
|
5558
|
+
transferRequestsReviewed?: boolean | Prisma.User$transferRequestsReviewedArgs<ExtArgs>;
|
|
4977
5559
|
_count?: boolean | Prisma.UserCountOutputTypeDefaultArgs<ExtArgs>;
|
|
4978
5560
|
};
|
|
4979
5561
|
export type $UserPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
@@ -5001,6 +5583,8 @@ export type $UserPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
5001
5583
|
reviewedTerminations: Prisma.$ContractTerminationPayload<ExtArgs>[];
|
|
5002
5584
|
offerLettersGenerated: Prisma.$OfferLetterPayload<ExtArgs>[];
|
|
5003
5585
|
offerLettersSent: Prisma.$OfferLetterPayload<ExtArgs>[];
|
|
5586
|
+
transferRequestsSubmitted: Prisma.$PropertyTransferRequestPayload<ExtArgs>[];
|
|
5587
|
+
transferRequestsReviewed: Prisma.$PropertyTransferRequestPayload<ExtArgs>[];
|
|
5004
5588
|
};
|
|
5005
5589
|
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
|
5006
5590
|
id: string;
|
|
@@ -5319,6 +5903,8 @@ export interface Prisma__UserClient<T, Null = never, ExtArgs extends runtime.Typ
|
|
|
5319
5903
|
reviewedTerminations<T extends Prisma.User$reviewedTerminationsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$reviewedTerminationsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ContractTerminationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
5320
5904
|
offerLettersGenerated<T extends Prisma.User$offerLettersGeneratedArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$offerLettersGeneratedArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$OfferLetterPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
5321
5905
|
offerLettersSent<T extends Prisma.User$offerLettersSentArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$offerLettersSentArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$OfferLetterPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
5906
|
+
transferRequestsSubmitted<T extends Prisma.User$transferRequestsSubmittedArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$transferRequestsSubmittedArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PropertyTransferRequestPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
5907
|
+
transferRequestsReviewed<T extends Prisma.User$transferRequestsReviewedArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$transferRequestsReviewedArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PropertyTransferRequestPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
5322
5908
|
/**
|
|
5323
5909
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
5324
5910
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -6184,6 +6770,52 @@ export type User$offerLettersSentArgs<ExtArgs extends runtime.Types.Extensions.I
|
|
|
6184
6770
|
skip?: number;
|
|
6185
6771
|
distinct?: Prisma.OfferLetterScalarFieldEnum | Prisma.OfferLetterScalarFieldEnum[];
|
|
6186
6772
|
};
|
|
6773
|
+
/**
|
|
6774
|
+
* User.transferRequestsSubmitted
|
|
6775
|
+
*/
|
|
6776
|
+
export type User$transferRequestsSubmittedArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
6777
|
+
/**
|
|
6778
|
+
* Select specific fields to fetch from the PropertyTransferRequest
|
|
6779
|
+
*/
|
|
6780
|
+
select?: Prisma.PropertyTransferRequestSelect<ExtArgs> | null;
|
|
6781
|
+
/**
|
|
6782
|
+
* Omit specific fields from the PropertyTransferRequest
|
|
6783
|
+
*/
|
|
6784
|
+
omit?: Prisma.PropertyTransferRequestOmit<ExtArgs> | null;
|
|
6785
|
+
/**
|
|
6786
|
+
* Choose, which related nodes to fetch as well
|
|
6787
|
+
*/
|
|
6788
|
+
include?: Prisma.PropertyTransferRequestInclude<ExtArgs> | null;
|
|
6789
|
+
where?: Prisma.PropertyTransferRequestWhereInput;
|
|
6790
|
+
orderBy?: Prisma.PropertyTransferRequestOrderByWithRelationInput | Prisma.PropertyTransferRequestOrderByWithRelationInput[];
|
|
6791
|
+
cursor?: Prisma.PropertyTransferRequestWhereUniqueInput;
|
|
6792
|
+
take?: number;
|
|
6793
|
+
skip?: number;
|
|
6794
|
+
distinct?: Prisma.PropertyTransferRequestScalarFieldEnum | Prisma.PropertyTransferRequestScalarFieldEnum[];
|
|
6795
|
+
};
|
|
6796
|
+
/**
|
|
6797
|
+
* User.transferRequestsReviewed
|
|
6798
|
+
*/
|
|
6799
|
+
export type User$transferRequestsReviewedArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
6800
|
+
/**
|
|
6801
|
+
* Select specific fields to fetch from the PropertyTransferRequest
|
|
6802
|
+
*/
|
|
6803
|
+
select?: Prisma.PropertyTransferRequestSelect<ExtArgs> | null;
|
|
6804
|
+
/**
|
|
6805
|
+
* Omit specific fields from the PropertyTransferRequest
|
|
6806
|
+
*/
|
|
6807
|
+
omit?: Prisma.PropertyTransferRequestOmit<ExtArgs> | null;
|
|
6808
|
+
/**
|
|
6809
|
+
* Choose, which related nodes to fetch as well
|
|
6810
|
+
*/
|
|
6811
|
+
include?: Prisma.PropertyTransferRequestInclude<ExtArgs> | null;
|
|
6812
|
+
where?: Prisma.PropertyTransferRequestWhereInput;
|
|
6813
|
+
orderBy?: Prisma.PropertyTransferRequestOrderByWithRelationInput | Prisma.PropertyTransferRequestOrderByWithRelationInput[];
|
|
6814
|
+
cursor?: Prisma.PropertyTransferRequestWhereUniqueInput;
|
|
6815
|
+
take?: number;
|
|
6816
|
+
skip?: number;
|
|
6817
|
+
distinct?: Prisma.PropertyTransferRequestScalarFieldEnum | Prisma.PropertyTransferRequestScalarFieldEnum[];
|
|
6818
|
+
};
|
|
6187
6819
|
/**
|
|
6188
6820
|
* User without action
|
|
6189
6821
|
*/
|