@valentine-efagene/qshelter-common 2.0.73 → 2.0.74
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 +5 -0
- package/dist/generated/client/client.d.ts +5 -0
- package/dist/generated/client/commonInputTypes.d.ts +120 -0
- package/dist/generated/client/enums.d.ts +25 -0
- package/dist/generated/client/enums.js +22 -0
- package/dist/generated/client/internal/class.d.ts +11 -0
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +118 -1
- package/dist/generated/client/internal/prismaNamespace.js +37 -1
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +38 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +37 -1
- package/dist/generated/client/models/ApprovalRequest.d.ts +2214 -0
- package/dist/generated/client/models/ApprovalRequest.js +1 -0
- package/dist/generated/client/models/Tenant.d.ts +227 -0
- package/dist/generated/client/models/User.d.ts +1014 -5
- package/dist/generated/client/models.d.ts +1 -0
- package/package.json +1 -1
- package/prisma/migrations/20260107172301_add_approval_request_model/migration.sql +46 -0
- package/prisma/schema.prisma +96 -0
|
@@ -258,6 +258,9 @@ export type UserWhereInput = {
|
|
|
258
258
|
offerLettersSent?: Prisma.OfferLetterListRelationFilter;
|
|
259
259
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestListRelationFilter;
|
|
260
260
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestListRelationFilter;
|
|
261
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestListRelationFilter;
|
|
262
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestListRelationFilter;
|
|
263
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestListRelationFilter;
|
|
261
264
|
};
|
|
262
265
|
export type UserOrderByWithRelationInput = {
|
|
263
266
|
id?: Prisma.SortOrder;
|
|
@@ -301,6 +304,9 @@ export type UserOrderByWithRelationInput = {
|
|
|
301
304
|
offerLettersSent?: Prisma.OfferLetterOrderByRelationAggregateInput;
|
|
302
305
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestOrderByRelationAggregateInput;
|
|
303
306
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestOrderByRelationAggregateInput;
|
|
307
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestOrderByRelationAggregateInput;
|
|
308
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestOrderByRelationAggregateInput;
|
|
309
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestOrderByRelationAggregateInput;
|
|
304
310
|
_relevance?: Prisma.UserOrderByRelevanceInput;
|
|
305
311
|
};
|
|
306
312
|
export type UserWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -348,6 +354,9 @@ export type UserWhereUniqueInput = Prisma.AtLeast<{
|
|
|
348
354
|
offerLettersSent?: Prisma.OfferLetterListRelationFilter;
|
|
349
355
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestListRelationFilter;
|
|
350
356
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestListRelationFilter;
|
|
357
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestListRelationFilter;
|
|
358
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestListRelationFilter;
|
|
359
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestListRelationFilter;
|
|
351
360
|
}, "id" | "email" | "phone" | "walletId">;
|
|
352
361
|
export type UserOrderByWithAggregationInput = {
|
|
353
362
|
id?: Prisma.SortOrder;
|
|
@@ -433,6 +442,9 @@ export type UserCreateInput = {
|
|
|
433
442
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
434
443
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
435
444
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
445
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestCreateNestedManyWithoutRequestedByInput;
|
|
446
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestCreateNestedManyWithoutAssigneeInput;
|
|
447
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
436
448
|
};
|
|
437
449
|
export type UserUncheckedCreateInput = {
|
|
438
450
|
id?: string;
|
|
@@ -474,6 +486,9 @@ export type UserUncheckedCreateInput = {
|
|
|
474
486
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
475
487
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
476
488
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
489
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
490
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
491
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
477
492
|
};
|
|
478
493
|
export type UserUpdateInput = {
|
|
479
494
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -515,6 +530,9 @@ export type UserUpdateInput = {
|
|
|
515
530
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
516
531
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
517
532
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
533
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUpdateManyWithoutRequestedByNestedInput;
|
|
534
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUpdateManyWithoutAssigneeNestedInput;
|
|
535
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
518
536
|
};
|
|
519
537
|
export type UserUncheckedUpdateInput = {
|
|
520
538
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -556,6 +574,9 @@ export type UserUncheckedUpdateInput = {
|
|
|
556
574
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
557
575
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
558
576
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
577
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
578
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
579
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
559
580
|
};
|
|
560
581
|
export type UserCreateManyInput = {
|
|
561
582
|
id?: string;
|
|
@@ -1057,6 +1078,46 @@ export type UserUpdateOneWithoutTransferRequestsReviewedNestedInput = {
|
|
|
1057
1078
|
connect?: Prisma.UserWhereUniqueInput;
|
|
1058
1079
|
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutTransferRequestsReviewedInput, Prisma.UserUpdateWithoutTransferRequestsReviewedInput>, Prisma.UserUncheckedUpdateWithoutTransferRequestsReviewedInput>;
|
|
1059
1080
|
};
|
|
1081
|
+
export type UserCreateNestedOneWithoutApprovalRequestsSubmittedInput = {
|
|
1082
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutApprovalRequestsSubmittedInput, Prisma.UserUncheckedCreateWithoutApprovalRequestsSubmittedInput>;
|
|
1083
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutApprovalRequestsSubmittedInput;
|
|
1084
|
+
connect?: Prisma.UserWhereUniqueInput;
|
|
1085
|
+
};
|
|
1086
|
+
export type UserCreateNestedOneWithoutApprovalRequestsAssignedInput = {
|
|
1087
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutApprovalRequestsAssignedInput, Prisma.UserUncheckedCreateWithoutApprovalRequestsAssignedInput>;
|
|
1088
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutApprovalRequestsAssignedInput;
|
|
1089
|
+
connect?: Prisma.UserWhereUniqueInput;
|
|
1090
|
+
};
|
|
1091
|
+
export type UserCreateNestedOneWithoutApprovalRequestsReviewedInput = {
|
|
1092
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutApprovalRequestsReviewedInput, Prisma.UserUncheckedCreateWithoutApprovalRequestsReviewedInput>;
|
|
1093
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutApprovalRequestsReviewedInput;
|
|
1094
|
+
connect?: Prisma.UserWhereUniqueInput;
|
|
1095
|
+
};
|
|
1096
|
+
export type UserUpdateOneRequiredWithoutApprovalRequestsSubmittedNestedInput = {
|
|
1097
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutApprovalRequestsSubmittedInput, Prisma.UserUncheckedCreateWithoutApprovalRequestsSubmittedInput>;
|
|
1098
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutApprovalRequestsSubmittedInput;
|
|
1099
|
+
upsert?: Prisma.UserUpsertWithoutApprovalRequestsSubmittedInput;
|
|
1100
|
+
connect?: Prisma.UserWhereUniqueInput;
|
|
1101
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutApprovalRequestsSubmittedInput, Prisma.UserUpdateWithoutApprovalRequestsSubmittedInput>, Prisma.UserUncheckedUpdateWithoutApprovalRequestsSubmittedInput>;
|
|
1102
|
+
};
|
|
1103
|
+
export type UserUpdateOneWithoutApprovalRequestsAssignedNestedInput = {
|
|
1104
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutApprovalRequestsAssignedInput, Prisma.UserUncheckedCreateWithoutApprovalRequestsAssignedInput>;
|
|
1105
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutApprovalRequestsAssignedInput;
|
|
1106
|
+
upsert?: Prisma.UserUpsertWithoutApprovalRequestsAssignedInput;
|
|
1107
|
+
disconnect?: Prisma.UserWhereInput | boolean;
|
|
1108
|
+
delete?: Prisma.UserWhereInput | boolean;
|
|
1109
|
+
connect?: Prisma.UserWhereUniqueInput;
|
|
1110
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutApprovalRequestsAssignedInput, Prisma.UserUpdateWithoutApprovalRequestsAssignedInput>, Prisma.UserUncheckedUpdateWithoutApprovalRequestsAssignedInput>;
|
|
1111
|
+
};
|
|
1112
|
+
export type UserUpdateOneWithoutApprovalRequestsReviewedNestedInput = {
|
|
1113
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutApprovalRequestsReviewedInput, Prisma.UserUncheckedCreateWithoutApprovalRequestsReviewedInput>;
|
|
1114
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutApprovalRequestsReviewedInput;
|
|
1115
|
+
upsert?: Prisma.UserUpsertWithoutApprovalRequestsReviewedInput;
|
|
1116
|
+
disconnect?: Prisma.UserWhereInput | boolean;
|
|
1117
|
+
delete?: Prisma.UserWhereInput | boolean;
|
|
1118
|
+
connect?: Prisma.UserWhereUniqueInput;
|
|
1119
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutApprovalRequestsReviewedInput, Prisma.UserUpdateWithoutApprovalRequestsReviewedInput>, Prisma.UserUncheckedUpdateWithoutApprovalRequestsReviewedInput>;
|
|
1120
|
+
};
|
|
1060
1121
|
export type UserCreateWithoutUserRolesInput = {
|
|
1061
1122
|
id?: string;
|
|
1062
1123
|
email: string;
|
|
@@ -1096,6 +1157,9 @@ export type UserCreateWithoutUserRolesInput = {
|
|
|
1096
1157
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
1097
1158
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
1098
1159
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
1160
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestCreateNestedManyWithoutRequestedByInput;
|
|
1161
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestCreateNestedManyWithoutAssigneeInput;
|
|
1162
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
1099
1163
|
};
|
|
1100
1164
|
export type UserUncheckedCreateWithoutUserRolesInput = {
|
|
1101
1165
|
id?: string;
|
|
@@ -1136,6 +1200,9 @@ export type UserUncheckedCreateWithoutUserRolesInput = {
|
|
|
1136
1200
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
1137
1201
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
1138
1202
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
1203
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
1204
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
1205
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
1139
1206
|
};
|
|
1140
1207
|
export type UserCreateOrConnectWithoutUserRolesInput = {
|
|
1141
1208
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -1189,6 +1256,9 @@ export type UserUpdateWithoutUserRolesInput = {
|
|
|
1189
1256
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
1190
1257
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
1191
1258
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
1259
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUpdateManyWithoutRequestedByNestedInput;
|
|
1260
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUpdateManyWithoutAssigneeNestedInput;
|
|
1261
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
1192
1262
|
};
|
|
1193
1263
|
export type UserUncheckedUpdateWithoutUserRolesInput = {
|
|
1194
1264
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -1229,6 +1299,9 @@ export type UserUncheckedUpdateWithoutUserRolesInput = {
|
|
|
1229
1299
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
1230
1300
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
1231
1301
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
1302
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
1303
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
1304
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
1232
1305
|
};
|
|
1233
1306
|
export type UserCreateWithoutTenantInput = {
|
|
1234
1307
|
id?: string;
|
|
@@ -1269,6 +1342,9 @@ export type UserCreateWithoutTenantInput = {
|
|
|
1269
1342
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
1270
1343
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
1271
1344
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
1345
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestCreateNestedManyWithoutRequestedByInput;
|
|
1346
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestCreateNestedManyWithoutAssigneeInput;
|
|
1347
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
1272
1348
|
};
|
|
1273
1349
|
export type UserUncheckedCreateWithoutTenantInput = {
|
|
1274
1350
|
id?: string;
|
|
@@ -1309,6 +1385,9 @@ export type UserUncheckedCreateWithoutTenantInput = {
|
|
|
1309
1385
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
1310
1386
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
1311
1387
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
1388
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
1389
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
1390
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
1312
1391
|
};
|
|
1313
1392
|
export type UserCreateOrConnectWithoutTenantInput = {
|
|
1314
1393
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -1392,6 +1471,9 @@ export type UserCreateWithoutRefreshTokensInput = {
|
|
|
1392
1471
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
1393
1472
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
1394
1473
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
1474
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestCreateNestedManyWithoutRequestedByInput;
|
|
1475
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestCreateNestedManyWithoutAssigneeInput;
|
|
1476
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
1395
1477
|
};
|
|
1396
1478
|
export type UserUncheckedCreateWithoutRefreshTokensInput = {
|
|
1397
1479
|
id?: string;
|
|
@@ -1432,6 +1514,9 @@ export type UserUncheckedCreateWithoutRefreshTokensInput = {
|
|
|
1432
1514
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
1433
1515
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
1434
1516
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
1517
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
1518
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
1519
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
1435
1520
|
};
|
|
1436
1521
|
export type UserCreateOrConnectWithoutRefreshTokensInput = {
|
|
1437
1522
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -1485,6 +1570,9 @@ export type UserUpdateWithoutRefreshTokensInput = {
|
|
|
1485
1570
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
1486
1571
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
1487
1572
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
1573
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUpdateManyWithoutRequestedByNestedInput;
|
|
1574
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUpdateManyWithoutAssigneeNestedInput;
|
|
1575
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
1488
1576
|
};
|
|
1489
1577
|
export type UserUncheckedUpdateWithoutRefreshTokensInput = {
|
|
1490
1578
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -1525,6 +1613,9 @@ export type UserUncheckedUpdateWithoutRefreshTokensInput = {
|
|
|
1525
1613
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
1526
1614
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
1527
1615
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
1616
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
1617
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
1618
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
1528
1619
|
};
|
|
1529
1620
|
export type UserCreateWithoutPasswordResetsInput = {
|
|
1530
1621
|
id?: string;
|
|
@@ -1565,6 +1656,9 @@ export type UserCreateWithoutPasswordResetsInput = {
|
|
|
1565
1656
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
1566
1657
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
1567
1658
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
1659
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestCreateNestedManyWithoutRequestedByInput;
|
|
1660
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestCreateNestedManyWithoutAssigneeInput;
|
|
1661
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
1568
1662
|
};
|
|
1569
1663
|
export type UserUncheckedCreateWithoutPasswordResetsInput = {
|
|
1570
1664
|
id?: string;
|
|
@@ -1605,6 +1699,9 @@ export type UserUncheckedCreateWithoutPasswordResetsInput = {
|
|
|
1605
1699
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
1606
1700
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
1607
1701
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
1702
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
1703
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
1704
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
1608
1705
|
};
|
|
1609
1706
|
export type UserCreateOrConnectWithoutPasswordResetsInput = {
|
|
1610
1707
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -1658,6 +1755,9 @@ export type UserUpdateWithoutPasswordResetsInput = {
|
|
|
1658
1755
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
1659
1756
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
1660
1757
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
1758
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUpdateManyWithoutRequestedByNestedInput;
|
|
1759
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUpdateManyWithoutAssigneeNestedInput;
|
|
1760
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
1661
1761
|
};
|
|
1662
1762
|
export type UserUncheckedUpdateWithoutPasswordResetsInput = {
|
|
1663
1763
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -1698,6 +1798,9 @@ export type UserUncheckedUpdateWithoutPasswordResetsInput = {
|
|
|
1698
1798
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
1699
1799
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
1700
1800
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
1801
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
1802
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
1803
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
1701
1804
|
};
|
|
1702
1805
|
export type UserCreateWithoutSuspensionsInput = {
|
|
1703
1806
|
id?: string;
|
|
@@ -1738,6 +1841,9 @@ export type UserCreateWithoutSuspensionsInput = {
|
|
|
1738
1841
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
1739
1842
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
1740
1843
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
1844
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestCreateNestedManyWithoutRequestedByInput;
|
|
1845
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestCreateNestedManyWithoutAssigneeInput;
|
|
1846
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
1741
1847
|
};
|
|
1742
1848
|
export type UserUncheckedCreateWithoutSuspensionsInput = {
|
|
1743
1849
|
id?: string;
|
|
@@ -1778,6 +1884,9 @@ export type UserUncheckedCreateWithoutSuspensionsInput = {
|
|
|
1778
1884
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
1779
1885
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
1780
1886
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
1887
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
1888
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
1889
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
1781
1890
|
};
|
|
1782
1891
|
export type UserCreateOrConnectWithoutSuspensionsInput = {
|
|
1783
1892
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -1831,6 +1940,9 @@ export type UserUpdateWithoutSuspensionsInput = {
|
|
|
1831
1940
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
1832
1941
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
1833
1942
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
1943
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUpdateManyWithoutRequestedByNestedInput;
|
|
1944
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUpdateManyWithoutAssigneeNestedInput;
|
|
1945
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
1834
1946
|
};
|
|
1835
1947
|
export type UserUncheckedUpdateWithoutSuspensionsInput = {
|
|
1836
1948
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -1871,6 +1983,9 @@ export type UserUncheckedUpdateWithoutSuspensionsInput = {
|
|
|
1871
1983
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
1872
1984
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
1873
1985
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
1986
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
1987
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
1988
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
1874
1989
|
};
|
|
1875
1990
|
export type UserCreateWithoutEmailPreferencesInput = {
|
|
1876
1991
|
id?: string;
|
|
@@ -1911,6 +2026,9 @@ export type UserCreateWithoutEmailPreferencesInput = {
|
|
|
1911
2026
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
1912
2027
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
1913
2028
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
2029
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestCreateNestedManyWithoutRequestedByInput;
|
|
2030
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestCreateNestedManyWithoutAssigneeInput;
|
|
2031
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
1914
2032
|
};
|
|
1915
2033
|
export type UserUncheckedCreateWithoutEmailPreferencesInput = {
|
|
1916
2034
|
id?: string;
|
|
@@ -1951,6 +2069,9 @@ export type UserUncheckedCreateWithoutEmailPreferencesInput = {
|
|
|
1951
2069
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
1952
2070
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
1953
2071
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
2072
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
2073
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
2074
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
1954
2075
|
};
|
|
1955
2076
|
export type UserCreateOrConnectWithoutEmailPreferencesInput = {
|
|
1956
2077
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -2004,6 +2125,9 @@ export type UserUpdateWithoutEmailPreferencesInput = {
|
|
|
2004
2125
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
2005
2126
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
2006
2127
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
2128
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUpdateManyWithoutRequestedByNestedInput;
|
|
2129
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUpdateManyWithoutAssigneeNestedInput;
|
|
2130
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
2007
2131
|
};
|
|
2008
2132
|
export type UserUncheckedUpdateWithoutEmailPreferencesInput = {
|
|
2009
2133
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -2044,6 +2168,9 @@ export type UserUncheckedUpdateWithoutEmailPreferencesInput = {
|
|
|
2044
2168
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
2045
2169
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
2046
2170
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
2171
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
2172
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
2173
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
2047
2174
|
};
|
|
2048
2175
|
export type UserCreateWithoutDeviceEndpointsInput = {
|
|
2049
2176
|
id?: string;
|
|
@@ -2084,6 +2211,9 @@ export type UserCreateWithoutDeviceEndpointsInput = {
|
|
|
2084
2211
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
2085
2212
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
2086
2213
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
2214
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestCreateNestedManyWithoutRequestedByInput;
|
|
2215
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestCreateNestedManyWithoutAssigneeInput;
|
|
2216
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
2087
2217
|
};
|
|
2088
2218
|
export type UserUncheckedCreateWithoutDeviceEndpointsInput = {
|
|
2089
2219
|
id?: string;
|
|
@@ -2124,6 +2254,9 @@ export type UserUncheckedCreateWithoutDeviceEndpointsInput = {
|
|
|
2124
2254
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
2125
2255
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
2126
2256
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
2257
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
2258
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
2259
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
2127
2260
|
};
|
|
2128
2261
|
export type UserCreateOrConnectWithoutDeviceEndpointsInput = {
|
|
2129
2262
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -2177,6 +2310,9 @@ export type UserUpdateWithoutDeviceEndpointsInput = {
|
|
|
2177
2310
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
2178
2311
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
2179
2312
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
2313
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUpdateManyWithoutRequestedByNestedInput;
|
|
2314
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUpdateManyWithoutAssigneeNestedInput;
|
|
2315
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
2180
2316
|
};
|
|
2181
2317
|
export type UserUncheckedUpdateWithoutDeviceEndpointsInput = {
|
|
2182
2318
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -2217,6 +2353,9 @@ export type UserUncheckedUpdateWithoutDeviceEndpointsInput = {
|
|
|
2217
2353
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
2218
2354
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
2219
2355
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
2356
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
2357
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
2358
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
2220
2359
|
};
|
|
2221
2360
|
export type UserCreateWithoutSocialsInput = {
|
|
2222
2361
|
id?: string;
|
|
@@ -2257,6 +2396,9 @@ export type UserCreateWithoutSocialsInput = {
|
|
|
2257
2396
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
2258
2397
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
2259
2398
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
2399
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestCreateNestedManyWithoutRequestedByInput;
|
|
2400
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestCreateNestedManyWithoutAssigneeInput;
|
|
2401
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
2260
2402
|
};
|
|
2261
2403
|
export type UserUncheckedCreateWithoutSocialsInput = {
|
|
2262
2404
|
id?: string;
|
|
@@ -2297,6 +2439,9 @@ export type UserUncheckedCreateWithoutSocialsInput = {
|
|
|
2297
2439
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
2298
2440
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
2299
2441
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
2442
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
2443
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
2444
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
2300
2445
|
};
|
|
2301
2446
|
export type UserCreateOrConnectWithoutSocialsInput = {
|
|
2302
2447
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -2350,6 +2495,9 @@ export type UserUpdateWithoutSocialsInput = {
|
|
|
2350
2495
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
2351
2496
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
2352
2497
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
2498
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUpdateManyWithoutRequestedByNestedInput;
|
|
2499
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUpdateManyWithoutAssigneeNestedInput;
|
|
2500
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
2353
2501
|
};
|
|
2354
2502
|
export type UserUncheckedUpdateWithoutSocialsInput = {
|
|
2355
2503
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -2390,6 +2538,9 @@ export type UserUncheckedUpdateWithoutSocialsInput = {
|
|
|
2390
2538
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
2391
2539
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
2392
2540
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
2541
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
2542
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
2543
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
2393
2544
|
};
|
|
2394
2545
|
export type UserCreateWithoutWalletInput = {
|
|
2395
2546
|
id?: string;
|
|
@@ -2430,6 +2581,9 @@ export type UserCreateWithoutWalletInput = {
|
|
|
2430
2581
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
2431
2582
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
2432
2583
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
2584
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestCreateNestedManyWithoutRequestedByInput;
|
|
2585
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestCreateNestedManyWithoutAssigneeInput;
|
|
2586
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
2433
2587
|
};
|
|
2434
2588
|
export type UserUncheckedCreateWithoutWalletInput = {
|
|
2435
2589
|
id?: string;
|
|
@@ -2470,6 +2624,9 @@ export type UserUncheckedCreateWithoutWalletInput = {
|
|
|
2470
2624
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
2471
2625
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
2472
2626
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
2627
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
2628
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
2629
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
2473
2630
|
};
|
|
2474
2631
|
export type UserCreateOrConnectWithoutWalletInput = {
|
|
2475
2632
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -2523,6 +2680,9 @@ export type UserUpdateWithoutWalletInput = {
|
|
|
2523
2680
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
2524
2681
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
2525
2682
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
2683
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUpdateManyWithoutRequestedByNestedInput;
|
|
2684
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUpdateManyWithoutAssigneeNestedInput;
|
|
2685
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
2526
2686
|
};
|
|
2527
2687
|
export type UserUncheckedUpdateWithoutWalletInput = {
|
|
2528
2688
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -2563,6 +2723,9 @@ export type UserUncheckedUpdateWithoutWalletInput = {
|
|
|
2563
2723
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
2564
2724
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
2565
2725
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
2726
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
2727
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
2728
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
2566
2729
|
};
|
|
2567
2730
|
export type UserCreateWithoutPropertiesInput = {
|
|
2568
2731
|
id?: string;
|
|
@@ -2603,6 +2766,9 @@ export type UserCreateWithoutPropertiesInput = {
|
|
|
2603
2766
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
2604
2767
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
2605
2768
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
2769
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestCreateNestedManyWithoutRequestedByInput;
|
|
2770
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestCreateNestedManyWithoutAssigneeInput;
|
|
2771
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
2606
2772
|
};
|
|
2607
2773
|
export type UserUncheckedCreateWithoutPropertiesInput = {
|
|
2608
2774
|
id?: string;
|
|
@@ -2643,6 +2809,9 @@ export type UserUncheckedCreateWithoutPropertiesInput = {
|
|
|
2643
2809
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
2644
2810
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
2645
2811
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
2812
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
2813
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
2814
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
2646
2815
|
};
|
|
2647
2816
|
export type UserCreateOrConnectWithoutPropertiesInput = {
|
|
2648
2817
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -2696,6 +2865,9 @@ export type UserUpdateWithoutPropertiesInput = {
|
|
|
2696
2865
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
2697
2866
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
2698
2867
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
2868
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUpdateManyWithoutRequestedByNestedInput;
|
|
2869
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUpdateManyWithoutAssigneeNestedInput;
|
|
2870
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
2699
2871
|
};
|
|
2700
2872
|
export type UserUncheckedUpdateWithoutPropertiesInput = {
|
|
2701
2873
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -2736,6 +2908,9 @@ export type UserUncheckedUpdateWithoutPropertiesInput = {
|
|
|
2736
2908
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
2737
2909
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
2738
2910
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
2911
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
2912
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
2913
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
2739
2914
|
};
|
|
2740
2915
|
export type UserCreateWithoutContractsInput = {
|
|
2741
2916
|
id?: string;
|
|
@@ -2776,6 +2951,9 @@ export type UserCreateWithoutContractsInput = {
|
|
|
2776
2951
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
2777
2952
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
2778
2953
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
2954
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestCreateNestedManyWithoutRequestedByInput;
|
|
2955
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestCreateNestedManyWithoutAssigneeInput;
|
|
2956
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
2779
2957
|
};
|
|
2780
2958
|
export type UserUncheckedCreateWithoutContractsInput = {
|
|
2781
2959
|
id?: string;
|
|
@@ -2816,6 +2994,9 @@ export type UserUncheckedCreateWithoutContractsInput = {
|
|
|
2816
2994
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
2817
2995
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
2818
2996
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
2997
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
2998
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
2999
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
2819
3000
|
};
|
|
2820
3001
|
export type UserCreateOrConnectWithoutContractsInput = {
|
|
2821
3002
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -2860,6 +3041,9 @@ export type UserCreateWithoutSoldContractsInput = {
|
|
|
2860
3041
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
2861
3042
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
2862
3043
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
3044
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestCreateNestedManyWithoutRequestedByInput;
|
|
3045
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestCreateNestedManyWithoutAssigneeInput;
|
|
3046
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
2863
3047
|
};
|
|
2864
3048
|
export type UserUncheckedCreateWithoutSoldContractsInput = {
|
|
2865
3049
|
id?: string;
|
|
@@ -2900,6 +3084,9 @@ export type UserUncheckedCreateWithoutSoldContractsInput = {
|
|
|
2900
3084
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
2901
3085
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
2902
3086
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
3087
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
3088
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
3089
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
2903
3090
|
};
|
|
2904
3091
|
export type UserCreateOrConnectWithoutSoldContractsInput = {
|
|
2905
3092
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -2953,6 +3140,9 @@ export type UserUpdateWithoutContractsInput = {
|
|
|
2953
3140
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
2954
3141
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
2955
3142
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
3143
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUpdateManyWithoutRequestedByNestedInput;
|
|
3144
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUpdateManyWithoutAssigneeNestedInput;
|
|
3145
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
2956
3146
|
};
|
|
2957
3147
|
export type UserUncheckedUpdateWithoutContractsInput = {
|
|
2958
3148
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -2993,6 +3183,9 @@ export type UserUncheckedUpdateWithoutContractsInput = {
|
|
|
2993
3183
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
2994
3184
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
2995
3185
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
3186
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
3187
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
3188
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
2996
3189
|
};
|
|
2997
3190
|
export type UserUpsertWithoutSoldContractsInput = {
|
|
2998
3191
|
update: Prisma.XOR<Prisma.UserUpdateWithoutSoldContractsInput, Prisma.UserUncheckedUpdateWithoutSoldContractsInput>;
|
|
@@ -3042,6 +3235,9 @@ export type UserUpdateWithoutSoldContractsInput = {
|
|
|
3042
3235
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
3043
3236
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
3044
3237
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
3238
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUpdateManyWithoutRequestedByNestedInput;
|
|
3239
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUpdateManyWithoutAssigneeNestedInput;
|
|
3240
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
3045
3241
|
};
|
|
3046
3242
|
export type UserUncheckedUpdateWithoutSoldContractsInput = {
|
|
3047
3243
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -3082,6 +3278,9 @@ export type UserUncheckedUpdateWithoutSoldContractsInput = {
|
|
|
3082
3278
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
3083
3279
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
3084
3280
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
3281
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
3282
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
3283
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
3085
3284
|
};
|
|
3086
3285
|
export type UserCreateWithoutAssignedStepsInput = {
|
|
3087
3286
|
id?: string;
|
|
@@ -3122,6 +3321,9 @@ export type UserCreateWithoutAssignedStepsInput = {
|
|
|
3122
3321
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
3123
3322
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
3124
3323
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
3324
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestCreateNestedManyWithoutRequestedByInput;
|
|
3325
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestCreateNestedManyWithoutAssigneeInput;
|
|
3326
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
3125
3327
|
};
|
|
3126
3328
|
export type UserUncheckedCreateWithoutAssignedStepsInput = {
|
|
3127
3329
|
id?: string;
|
|
@@ -3162,6 +3364,9 @@ export type UserUncheckedCreateWithoutAssignedStepsInput = {
|
|
|
3162
3364
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
3163
3365
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
3164
3366
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
3367
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
3368
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
3369
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
3165
3370
|
};
|
|
3166
3371
|
export type UserCreateOrConnectWithoutAssignedStepsInput = {
|
|
3167
3372
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -3215,6 +3420,9 @@ export type UserUpdateWithoutAssignedStepsInput = {
|
|
|
3215
3420
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
3216
3421
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
3217
3422
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
3423
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUpdateManyWithoutRequestedByNestedInput;
|
|
3424
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUpdateManyWithoutAssigneeNestedInput;
|
|
3425
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
3218
3426
|
};
|
|
3219
3427
|
export type UserUncheckedUpdateWithoutAssignedStepsInput = {
|
|
3220
3428
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -3255,6 +3463,9 @@ export type UserUncheckedUpdateWithoutAssignedStepsInput = {
|
|
|
3255
3463
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
3256
3464
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
3257
3465
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
3466
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
3467
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
3468
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
3258
3469
|
};
|
|
3259
3470
|
export type UserCreateWithoutStepApprovalsInput = {
|
|
3260
3471
|
id?: string;
|
|
@@ -3295,6 +3506,9 @@ export type UserCreateWithoutStepApprovalsInput = {
|
|
|
3295
3506
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
3296
3507
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
3297
3508
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
3509
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestCreateNestedManyWithoutRequestedByInput;
|
|
3510
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestCreateNestedManyWithoutAssigneeInput;
|
|
3511
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
3298
3512
|
};
|
|
3299
3513
|
export type UserUncheckedCreateWithoutStepApprovalsInput = {
|
|
3300
3514
|
id?: string;
|
|
@@ -3335,6 +3549,9 @@ export type UserUncheckedCreateWithoutStepApprovalsInput = {
|
|
|
3335
3549
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
3336
3550
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
3337
3551
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
3552
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
3553
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
3554
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
3338
3555
|
};
|
|
3339
3556
|
export type UserCreateOrConnectWithoutStepApprovalsInput = {
|
|
3340
3557
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -3388,6 +3605,9 @@ export type UserUpdateWithoutStepApprovalsInput = {
|
|
|
3388
3605
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
3389
3606
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
3390
3607
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
3608
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUpdateManyWithoutRequestedByNestedInput;
|
|
3609
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUpdateManyWithoutAssigneeNestedInput;
|
|
3610
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
3391
3611
|
};
|
|
3392
3612
|
export type UserUncheckedUpdateWithoutStepApprovalsInput = {
|
|
3393
3613
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -3428,6 +3648,9 @@ export type UserUncheckedUpdateWithoutStepApprovalsInput = {
|
|
|
3428
3648
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
3429
3649
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
3430
3650
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
3651
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
3652
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
3653
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
3431
3654
|
};
|
|
3432
3655
|
export type UserCreateWithoutContractPaymentsInput = {
|
|
3433
3656
|
id?: string;
|
|
@@ -3468,6 +3691,9 @@ export type UserCreateWithoutContractPaymentsInput = {
|
|
|
3468
3691
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
3469
3692
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
3470
3693
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
3694
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestCreateNestedManyWithoutRequestedByInput;
|
|
3695
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestCreateNestedManyWithoutAssigneeInput;
|
|
3696
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
3471
3697
|
};
|
|
3472
3698
|
export type UserUncheckedCreateWithoutContractPaymentsInput = {
|
|
3473
3699
|
id?: string;
|
|
@@ -3508,6 +3734,9 @@ export type UserUncheckedCreateWithoutContractPaymentsInput = {
|
|
|
3508
3734
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
3509
3735
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
3510
3736
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
3737
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
3738
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
3739
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
3511
3740
|
};
|
|
3512
3741
|
export type UserCreateOrConnectWithoutContractPaymentsInput = {
|
|
3513
3742
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -3561,6 +3790,9 @@ export type UserUpdateWithoutContractPaymentsInput = {
|
|
|
3561
3790
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
3562
3791
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
3563
3792
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
3793
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUpdateManyWithoutRequestedByNestedInput;
|
|
3794
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUpdateManyWithoutAssigneeNestedInput;
|
|
3795
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
3564
3796
|
};
|
|
3565
3797
|
export type UserUncheckedUpdateWithoutContractPaymentsInput = {
|
|
3566
3798
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -3601,6 +3833,9 @@ export type UserUncheckedUpdateWithoutContractPaymentsInput = {
|
|
|
3601
3833
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
3602
3834
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
3603
3835
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
3836
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
3837
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
3838
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
3604
3839
|
};
|
|
3605
3840
|
export type UserCreateWithoutUploadedDocsInput = {
|
|
3606
3841
|
id?: string;
|
|
@@ -3641,6 +3876,9 @@ export type UserCreateWithoutUploadedDocsInput = {
|
|
|
3641
3876
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
3642
3877
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
3643
3878
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
3879
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestCreateNestedManyWithoutRequestedByInput;
|
|
3880
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestCreateNestedManyWithoutAssigneeInput;
|
|
3881
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
3644
3882
|
};
|
|
3645
3883
|
export type UserUncheckedCreateWithoutUploadedDocsInput = {
|
|
3646
3884
|
id?: string;
|
|
@@ -3681,6 +3919,9 @@ export type UserUncheckedCreateWithoutUploadedDocsInput = {
|
|
|
3681
3919
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
3682
3920
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
3683
3921
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
3922
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
3923
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
3924
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
3684
3925
|
};
|
|
3685
3926
|
export type UserCreateOrConnectWithoutUploadedDocsInput = {
|
|
3686
3927
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -3734,6 +3975,9 @@ export type UserUpdateWithoutUploadedDocsInput = {
|
|
|
3734
3975
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
3735
3976
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
3736
3977
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
3978
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUpdateManyWithoutRequestedByNestedInput;
|
|
3979
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUpdateManyWithoutAssigneeNestedInput;
|
|
3980
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
3737
3981
|
};
|
|
3738
3982
|
export type UserUncheckedUpdateWithoutUploadedDocsInput = {
|
|
3739
3983
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -3774,6 +4018,9 @@ export type UserUncheckedUpdateWithoutUploadedDocsInput = {
|
|
|
3774
4018
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
3775
4019
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
3776
4020
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
4021
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
4022
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
4023
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
3777
4024
|
};
|
|
3778
4025
|
export type UserCreateWithoutOfferLettersGeneratedInput = {
|
|
3779
4026
|
id?: string;
|
|
@@ -3814,6 +4061,9 @@ export type UserCreateWithoutOfferLettersGeneratedInput = {
|
|
|
3814
4061
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
3815
4062
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
3816
4063
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
4064
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestCreateNestedManyWithoutRequestedByInput;
|
|
4065
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestCreateNestedManyWithoutAssigneeInput;
|
|
4066
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
3817
4067
|
};
|
|
3818
4068
|
export type UserUncheckedCreateWithoutOfferLettersGeneratedInput = {
|
|
3819
4069
|
id?: string;
|
|
@@ -3854,6 +4104,9 @@ export type UserUncheckedCreateWithoutOfferLettersGeneratedInput = {
|
|
|
3854
4104
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
3855
4105
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
3856
4106
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
4107
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4108
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
4109
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
3857
4110
|
};
|
|
3858
4111
|
export type UserCreateOrConnectWithoutOfferLettersGeneratedInput = {
|
|
3859
4112
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -3898,6 +4151,9 @@ export type UserCreateWithoutOfferLettersSentInput = {
|
|
|
3898
4151
|
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
3899
4152
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
3900
4153
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
4154
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestCreateNestedManyWithoutRequestedByInput;
|
|
4155
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestCreateNestedManyWithoutAssigneeInput;
|
|
4156
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
3901
4157
|
};
|
|
3902
4158
|
export type UserUncheckedCreateWithoutOfferLettersSentInput = {
|
|
3903
4159
|
id?: string;
|
|
@@ -3938,6 +4194,9 @@ export type UserUncheckedCreateWithoutOfferLettersSentInput = {
|
|
|
3938
4194
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
3939
4195
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
3940
4196
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
4197
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4198
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
4199
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
3941
4200
|
};
|
|
3942
4201
|
export type UserCreateOrConnectWithoutOfferLettersSentInput = {
|
|
3943
4202
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -3991,6 +4250,9 @@ export type UserUpdateWithoutOfferLettersGeneratedInput = {
|
|
|
3991
4250
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
3992
4251
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
3993
4252
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
4253
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUpdateManyWithoutRequestedByNestedInput;
|
|
4254
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUpdateManyWithoutAssigneeNestedInput;
|
|
4255
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
3994
4256
|
};
|
|
3995
4257
|
export type UserUncheckedUpdateWithoutOfferLettersGeneratedInput = {
|
|
3996
4258
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -4031,6 +4293,9 @@ export type UserUncheckedUpdateWithoutOfferLettersGeneratedInput = {
|
|
|
4031
4293
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
4032
4294
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
4033
4295
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
4296
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
4297
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
4298
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
4034
4299
|
};
|
|
4035
4300
|
export type UserUpsertWithoutOfferLettersSentInput = {
|
|
4036
4301
|
update: Prisma.XOR<Prisma.UserUpdateWithoutOfferLettersSentInput, Prisma.UserUncheckedUpdateWithoutOfferLettersSentInput>;
|
|
@@ -4080,6 +4345,9 @@ export type UserUpdateWithoutOfferLettersSentInput = {
|
|
|
4080
4345
|
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
4081
4346
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
4082
4347
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
4348
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUpdateManyWithoutRequestedByNestedInput;
|
|
4349
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUpdateManyWithoutAssigneeNestedInput;
|
|
4350
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
4083
4351
|
};
|
|
4084
4352
|
export type UserUncheckedUpdateWithoutOfferLettersSentInput = {
|
|
4085
4353
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -4120,6 +4388,9 @@ export type UserUncheckedUpdateWithoutOfferLettersSentInput = {
|
|
|
4120
4388
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
4121
4389
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
4122
4390
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
4391
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
4392
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
4393
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
4123
4394
|
};
|
|
4124
4395
|
export type UserCreateWithoutInitiatedTerminationsInput = {
|
|
4125
4396
|
id?: string;
|
|
@@ -4160,6 +4431,9 @@ export type UserCreateWithoutInitiatedTerminationsInput = {
|
|
|
4160
4431
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
4161
4432
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
4162
4433
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
4434
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestCreateNestedManyWithoutRequestedByInput;
|
|
4435
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestCreateNestedManyWithoutAssigneeInput;
|
|
4436
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
4163
4437
|
};
|
|
4164
4438
|
export type UserUncheckedCreateWithoutInitiatedTerminationsInput = {
|
|
4165
4439
|
id?: string;
|
|
@@ -4200,6 +4474,9 @@ export type UserUncheckedCreateWithoutInitiatedTerminationsInput = {
|
|
|
4200
4474
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
4201
4475
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4202
4476
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
4477
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4478
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
4479
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
4203
4480
|
};
|
|
4204
4481
|
export type UserCreateOrConnectWithoutInitiatedTerminationsInput = {
|
|
4205
4482
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -4244,6 +4521,9 @@ export type UserCreateWithoutReviewedTerminationsInput = {
|
|
|
4244
4521
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
4245
4522
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
4246
4523
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
4524
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestCreateNestedManyWithoutRequestedByInput;
|
|
4525
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestCreateNestedManyWithoutAssigneeInput;
|
|
4526
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
4247
4527
|
};
|
|
4248
4528
|
export type UserUncheckedCreateWithoutReviewedTerminationsInput = {
|
|
4249
4529
|
id?: string;
|
|
@@ -4284,6 +4564,9 @@ export type UserUncheckedCreateWithoutReviewedTerminationsInput = {
|
|
|
4284
4564
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
4285
4565
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4286
4566
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
4567
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4568
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
4569
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
4287
4570
|
};
|
|
4288
4571
|
export type UserCreateOrConnectWithoutReviewedTerminationsInput = {
|
|
4289
4572
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -4337,6 +4620,9 @@ export type UserUpdateWithoutInitiatedTerminationsInput = {
|
|
|
4337
4620
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
4338
4621
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
4339
4622
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
4623
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUpdateManyWithoutRequestedByNestedInput;
|
|
4624
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUpdateManyWithoutAssigneeNestedInput;
|
|
4625
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
4340
4626
|
};
|
|
4341
4627
|
export type UserUncheckedUpdateWithoutInitiatedTerminationsInput = {
|
|
4342
4628
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -4377,6 +4663,9 @@ export type UserUncheckedUpdateWithoutInitiatedTerminationsInput = {
|
|
|
4377
4663
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
4378
4664
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
4379
4665
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
4666
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
4667
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
4668
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
4380
4669
|
};
|
|
4381
4670
|
export type UserUpsertWithoutReviewedTerminationsInput = {
|
|
4382
4671
|
update: Prisma.XOR<Prisma.UserUpdateWithoutReviewedTerminationsInput, Prisma.UserUncheckedUpdateWithoutReviewedTerminationsInput>;
|
|
@@ -4426,6 +4715,9 @@ export type UserUpdateWithoutReviewedTerminationsInput = {
|
|
|
4426
4715
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
4427
4716
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
4428
4717
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
4718
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUpdateManyWithoutRequestedByNestedInput;
|
|
4719
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUpdateManyWithoutAssigneeNestedInput;
|
|
4720
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
4429
4721
|
};
|
|
4430
4722
|
export type UserUncheckedUpdateWithoutReviewedTerminationsInput = {
|
|
4431
4723
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -4466,6 +4758,9 @@ export type UserUncheckedUpdateWithoutReviewedTerminationsInput = {
|
|
|
4466
4758
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
4467
4759
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
4468
4760
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
4761
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
4762
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
4763
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
4469
4764
|
};
|
|
4470
4765
|
export type UserCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
4471
4766
|
id?: string;
|
|
@@ -4506,6 +4801,9 @@ export type UserCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
4506
4801
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
4507
4802
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
4508
4803
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
4804
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestCreateNestedManyWithoutRequestedByInput;
|
|
4805
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestCreateNestedManyWithoutAssigneeInput;
|
|
4806
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
4509
4807
|
};
|
|
4510
4808
|
export type UserUncheckedCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
4511
4809
|
id?: string;
|
|
@@ -4546,6 +4844,9 @@ export type UserUncheckedCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
4546
4844
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
4547
4845
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4548
4846
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
4847
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4848
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
4849
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
4549
4850
|
};
|
|
4550
4851
|
export type UserCreateOrConnectWithoutPaymentMethodChangeRequestsInput = {
|
|
4551
4852
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -4590,6 +4891,9 @@ export type UserCreateWithoutReviewedChangeRequestsInput = {
|
|
|
4590
4891
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
4591
4892
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
4592
4893
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
4894
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestCreateNestedManyWithoutRequestedByInput;
|
|
4895
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestCreateNestedManyWithoutAssigneeInput;
|
|
4896
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
4593
4897
|
};
|
|
4594
4898
|
export type UserUncheckedCreateWithoutReviewedChangeRequestsInput = {
|
|
4595
4899
|
id?: string;
|
|
@@ -4630,6 +4934,9 @@ export type UserUncheckedCreateWithoutReviewedChangeRequestsInput = {
|
|
|
4630
4934
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
4631
4935
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4632
4936
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
4937
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4938
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
4939
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
4633
4940
|
};
|
|
4634
4941
|
export type UserCreateOrConnectWithoutReviewedChangeRequestsInput = {
|
|
4635
4942
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -4683,6 +4990,9 @@ export type UserUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
4683
4990
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
4684
4991
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
4685
4992
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
4993
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUpdateManyWithoutRequestedByNestedInput;
|
|
4994
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUpdateManyWithoutAssigneeNestedInput;
|
|
4995
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
4686
4996
|
};
|
|
4687
4997
|
export type UserUncheckedUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
4688
4998
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -4723,6 +5033,9 @@ export type UserUncheckedUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
4723
5033
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
4724
5034
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
4725
5035
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
5036
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
5037
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
5038
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
4726
5039
|
};
|
|
4727
5040
|
export type UserUpsertWithoutReviewedChangeRequestsInput = {
|
|
4728
5041
|
update: Prisma.XOR<Prisma.UserUpdateWithoutReviewedChangeRequestsInput, Prisma.UserUncheckedUpdateWithoutReviewedChangeRequestsInput>;
|
|
@@ -4772,6 +5085,9 @@ export type UserUpdateWithoutReviewedChangeRequestsInput = {
|
|
|
4772
5085
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
4773
5086
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
4774
5087
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
5088
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUpdateManyWithoutRequestedByNestedInput;
|
|
5089
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUpdateManyWithoutAssigneeNestedInput;
|
|
5090
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
4775
5091
|
};
|
|
4776
5092
|
export type UserUncheckedUpdateWithoutReviewedChangeRequestsInput = {
|
|
4777
5093
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -4812,6 +5128,9 @@ export type UserUncheckedUpdateWithoutReviewedChangeRequestsInput = {
|
|
|
4812
5128
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
4813
5129
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
4814
5130
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
5131
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
5132
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
5133
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
4815
5134
|
};
|
|
4816
5135
|
export type UserCreateWithoutTransferRequestsSubmittedInput = {
|
|
4817
5136
|
id?: string;
|
|
@@ -4852,6 +5171,9 @@ export type UserCreateWithoutTransferRequestsSubmittedInput = {
|
|
|
4852
5171
|
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
4853
5172
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
4854
5173
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
5174
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestCreateNestedManyWithoutRequestedByInput;
|
|
5175
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestCreateNestedManyWithoutAssigneeInput;
|
|
5176
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
4855
5177
|
};
|
|
4856
5178
|
export type UserUncheckedCreateWithoutTransferRequestsSubmittedInput = {
|
|
4857
5179
|
id?: string;
|
|
@@ -4892,6 +5214,9 @@ export type UserUncheckedCreateWithoutTransferRequestsSubmittedInput = {
|
|
|
4892
5214
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
4893
5215
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
4894
5216
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
5217
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
5218
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
5219
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
4895
5220
|
};
|
|
4896
5221
|
export type UserCreateOrConnectWithoutTransferRequestsSubmittedInput = {
|
|
4897
5222
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -4936,6 +5261,9 @@ export type UserCreateWithoutTransferRequestsReviewedInput = {
|
|
|
4936
5261
|
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
4937
5262
|
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
4938
5263
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
5264
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestCreateNestedManyWithoutRequestedByInput;
|
|
5265
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestCreateNestedManyWithoutAssigneeInput;
|
|
5266
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
4939
5267
|
};
|
|
4940
5268
|
export type UserUncheckedCreateWithoutTransferRequestsReviewedInput = {
|
|
4941
5269
|
id?: string;
|
|
@@ -4976,6 +5304,9 @@ export type UserUncheckedCreateWithoutTransferRequestsReviewedInput = {
|
|
|
4976
5304
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
4977
5305
|
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
4978
5306
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
5307
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
5308
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
5309
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
4979
5310
|
};
|
|
4980
5311
|
export type UserCreateOrConnectWithoutTransferRequestsReviewedInput = {
|
|
4981
5312
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -5029,6 +5360,9 @@ export type UserUpdateWithoutTransferRequestsSubmittedInput = {
|
|
|
5029
5360
|
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
5030
5361
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
5031
5362
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
5363
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUpdateManyWithoutRequestedByNestedInput;
|
|
5364
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUpdateManyWithoutAssigneeNestedInput;
|
|
5365
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
5032
5366
|
};
|
|
5033
5367
|
export type UserUncheckedUpdateWithoutTransferRequestsSubmittedInput = {
|
|
5034
5368
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -5069,6 +5403,9 @@ export type UserUncheckedUpdateWithoutTransferRequestsSubmittedInput = {
|
|
|
5069
5403
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
5070
5404
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
5071
5405
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
5406
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
5407
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
5408
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
5072
5409
|
};
|
|
5073
5410
|
export type UserUpsertWithoutTransferRequestsReviewedInput = {
|
|
5074
5411
|
update: Prisma.XOR<Prisma.UserUpdateWithoutTransferRequestsReviewedInput, Prisma.UserUncheckedUpdateWithoutTransferRequestsReviewedInput>;
|
|
@@ -5118,6 +5455,9 @@ export type UserUpdateWithoutTransferRequestsReviewedInput = {
|
|
|
5118
5455
|
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
5119
5456
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
5120
5457
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
5458
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUpdateManyWithoutRequestedByNestedInput;
|
|
5459
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUpdateManyWithoutAssigneeNestedInput;
|
|
5460
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
5121
5461
|
};
|
|
5122
5462
|
export type UserUncheckedUpdateWithoutTransferRequestsReviewedInput = {
|
|
5123
5463
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -5158,8 +5498,54 @@ export type UserUncheckedUpdateWithoutTransferRequestsReviewedInput = {
|
|
|
5158
5498
|
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
5159
5499
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
5160
5500
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
5501
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
5502
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
5503
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
5161
5504
|
};
|
|
5162
|
-
export type
|
|
5505
|
+
export type UserCreateWithoutApprovalRequestsSubmittedInput = {
|
|
5506
|
+
id?: string;
|
|
5507
|
+
email: string;
|
|
5508
|
+
password?: string | null;
|
|
5509
|
+
phone?: string | null;
|
|
5510
|
+
firstName?: string | null;
|
|
5511
|
+
lastName?: string | null;
|
|
5512
|
+
isActive?: boolean;
|
|
5513
|
+
isEmailVerified?: boolean;
|
|
5514
|
+
googleId?: string | null;
|
|
5515
|
+
avatar?: string | null;
|
|
5516
|
+
createdAt?: Date | string;
|
|
5517
|
+
updatedAt?: Date | string;
|
|
5518
|
+
emailVerifiedAt?: Date | string | null;
|
|
5519
|
+
emailVerificationToken?: string | null;
|
|
5520
|
+
lastLoginAt?: Date | string | null;
|
|
5521
|
+
tenant?: Prisma.TenantCreateNestedOneWithoutUsersInput;
|
|
5522
|
+
userRoles?: Prisma.UserRoleCreateNestedManyWithoutUserInput;
|
|
5523
|
+
wallet?: Prisma.WalletCreateNestedOneWithoutUserInput;
|
|
5524
|
+
refreshTokens?: Prisma.RefreshTokenCreateNestedManyWithoutUserInput;
|
|
5525
|
+
passwordResets?: Prisma.PasswordResetCreateNestedManyWithoutUserInput;
|
|
5526
|
+
suspensions?: Prisma.UserSuspensionCreateNestedManyWithoutUserInput;
|
|
5527
|
+
emailPreferences?: Prisma.EmailPreferenceCreateNestedManyWithoutUserInput;
|
|
5528
|
+
deviceEndpoints?: Prisma.DeviceEndpointCreateNestedManyWithoutUserInput;
|
|
5529
|
+
socials?: Prisma.SocialCreateNestedManyWithoutUserInput;
|
|
5530
|
+
properties?: Prisma.PropertyCreateNestedManyWithoutUserInput;
|
|
5531
|
+
contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
|
|
5532
|
+
soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
|
|
5533
|
+
contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
|
|
5534
|
+
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
5535
|
+
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
5536
|
+
uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
|
|
5537
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
5538
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
5539
|
+
initiatedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutInitiatorInput;
|
|
5540
|
+
reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
|
|
5541
|
+
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
5542
|
+
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
5543
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
5544
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
5545
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestCreateNestedManyWithoutAssigneeInput;
|
|
5546
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
5547
|
+
};
|
|
5548
|
+
export type UserUncheckedCreateWithoutApprovalRequestsSubmittedInput = {
|
|
5163
5549
|
id?: string;
|
|
5164
5550
|
email: string;
|
|
5165
5551
|
password?: string | null;
|
|
@@ -5170,14 +5556,232 @@ export type UserCreateManyTenantInput = {
|
|
|
5170
5556
|
isEmailVerified?: boolean;
|
|
5171
5557
|
googleId?: string | null;
|
|
5172
5558
|
avatar?: string | null;
|
|
5559
|
+
tenantId?: string | null;
|
|
5173
5560
|
walletId?: string | null;
|
|
5174
5561
|
createdAt?: Date | string;
|
|
5175
5562
|
updatedAt?: Date | string;
|
|
5176
5563
|
emailVerifiedAt?: Date | string | null;
|
|
5177
5564
|
emailVerificationToken?: string | null;
|
|
5178
5565
|
lastLoginAt?: Date | string | null;
|
|
5566
|
+
userRoles?: Prisma.UserRoleUncheckedCreateNestedManyWithoutUserInput;
|
|
5567
|
+
refreshTokens?: Prisma.RefreshTokenUncheckedCreateNestedManyWithoutUserInput;
|
|
5568
|
+
passwordResets?: Prisma.PasswordResetUncheckedCreateNestedManyWithoutUserInput;
|
|
5569
|
+
suspensions?: Prisma.UserSuspensionUncheckedCreateNestedManyWithoutUserInput;
|
|
5570
|
+
emailPreferences?: Prisma.EmailPreferenceUncheckedCreateNestedManyWithoutUserInput;
|
|
5571
|
+
deviceEndpoints?: Prisma.DeviceEndpointUncheckedCreateNestedManyWithoutUserInput;
|
|
5572
|
+
socials?: Prisma.SocialUncheckedCreateNestedManyWithoutUserInput;
|
|
5573
|
+
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutUserInput;
|
|
5574
|
+
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
|
|
5575
|
+
soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
|
|
5576
|
+
contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
5577
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
5578
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
5579
|
+
uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
5580
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
5581
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5582
|
+
initiatedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
5583
|
+
reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5584
|
+
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
5585
|
+
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
5586
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
5587
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
5588
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
5589
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
5590
|
+
};
|
|
5591
|
+
export type UserCreateOrConnectWithoutApprovalRequestsSubmittedInput = {
|
|
5592
|
+
where: Prisma.UserWhereUniqueInput;
|
|
5593
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutApprovalRequestsSubmittedInput, Prisma.UserUncheckedCreateWithoutApprovalRequestsSubmittedInput>;
|
|
5594
|
+
};
|
|
5595
|
+
export type UserCreateWithoutApprovalRequestsAssignedInput = {
|
|
5596
|
+
id?: string;
|
|
5597
|
+
email: string;
|
|
5598
|
+
password?: string | null;
|
|
5599
|
+
phone?: string | null;
|
|
5600
|
+
firstName?: string | null;
|
|
5601
|
+
lastName?: string | null;
|
|
5602
|
+
isActive?: boolean;
|
|
5603
|
+
isEmailVerified?: boolean;
|
|
5604
|
+
googleId?: string | null;
|
|
5605
|
+
avatar?: string | null;
|
|
5606
|
+
createdAt?: Date | string;
|
|
5607
|
+
updatedAt?: Date | string;
|
|
5608
|
+
emailVerifiedAt?: Date | string | null;
|
|
5609
|
+
emailVerificationToken?: string | null;
|
|
5610
|
+
lastLoginAt?: Date | string | null;
|
|
5611
|
+
tenant?: Prisma.TenantCreateNestedOneWithoutUsersInput;
|
|
5612
|
+
userRoles?: Prisma.UserRoleCreateNestedManyWithoutUserInput;
|
|
5613
|
+
wallet?: Prisma.WalletCreateNestedOneWithoutUserInput;
|
|
5614
|
+
refreshTokens?: Prisma.RefreshTokenCreateNestedManyWithoutUserInput;
|
|
5615
|
+
passwordResets?: Prisma.PasswordResetCreateNestedManyWithoutUserInput;
|
|
5616
|
+
suspensions?: Prisma.UserSuspensionCreateNestedManyWithoutUserInput;
|
|
5617
|
+
emailPreferences?: Prisma.EmailPreferenceCreateNestedManyWithoutUserInput;
|
|
5618
|
+
deviceEndpoints?: Prisma.DeviceEndpointCreateNestedManyWithoutUserInput;
|
|
5619
|
+
socials?: Prisma.SocialCreateNestedManyWithoutUserInput;
|
|
5620
|
+
properties?: Prisma.PropertyCreateNestedManyWithoutUserInput;
|
|
5621
|
+
contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
|
|
5622
|
+
soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
|
|
5623
|
+
contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
|
|
5624
|
+
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
5625
|
+
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
5626
|
+
uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
|
|
5627
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
5628
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
5629
|
+
initiatedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutInitiatorInput;
|
|
5630
|
+
reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
|
|
5631
|
+
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
5632
|
+
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
5633
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
5634
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
5635
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestCreateNestedManyWithoutRequestedByInput;
|
|
5636
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
5179
5637
|
};
|
|
5180
|
-
export type
|
|
5638
|
+
export type UserUncheckedCreateWithoutApprovalRequestsAssignedInput = {
|
|
5639
|
+
id?: string;
|
|
5640
|
+
email: string;
|
|
5641
|
+
password?: string | null;
|
|
5642
|
+
phone?: string | null;
|
|
5643
|
+
firstName?: string | null;
|
|
5644
|
+
lastName?: string | null;
|
|
5645
|
+
isActive?: boolean;
|
|
5646
|
+
isEmailVerified?: boolean;
|
|
5647
|
+
googleId?: string | null;
|
|
5648
|
+
avatar?: string | null;
|
|
5649
|
+
tenantId?: string | null;
|
|
5650
|
+
walletId?: string | null;
|
|
5651
|
+
createdAt?: Date | string;
|
|
5652
|
+
updatedAt?: Date | string;
|
|
5653
|
+
emailVerifiedAt?: Date | string | null;
|
|
5654
|
+
emailVerificationToken?: string | null;
|
|
5655
|
+
lastLoginAt?: Date | string | null;
|
|
5656
|
+
userRoles?: Prisma.UserRoleUncheckedCreateNestedManyWithoutUserInput;
|
|
5657
|
+
refreshTokens?: Prisma.RefreshTokenUncheckedCreateNestedManyWithoutUserInput;
|
|
5658
|
+
passwordResets?: Prisma.PasswordResetUncheckedCreateNestedManyWithoutUserInput;
|
|
5659
|
+
suspensions?: Prisma.UserSuspensionUncheckedCreateNestedManyWithoutUserInput;
|
|
5660
|
+
emailPreferences?: Prisma.EmailPreferenceUncheckedCreateNestedManyWithoutUserInput;
|
|
5661
|
+
deviceEndpoints?: Prisma.DeviceEndpointUncheckedCreateNestedManyWithoutUserInput;
|
|
5662
|
+
socials?: Prisma.SocialUncheckedCreateNestedManyWithoutUserInput;
|
|
5663
|
+
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutUserInput;
|
|
5664
|
+
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
|
|
5665
|
+
soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
|
|
5666
|
+
contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
5667
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
5668
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
5669
|
+
uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
5670
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
5671
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5672
|
+
initiatedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
5673
|
+
reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5674
|
+
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
5675
|
+
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
5676
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
5677
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
5678
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
5679
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
5680
|
+
};
|
|
5681
|
+
export type UserCreateOrConnectWithoutApprovalRequestsAssignedInput = {
|
|
5682
|
+
where: Prisma.UserWhereUniqueInput;
|
|
5683
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutApprovalRequestsAssignedInput, Prisma.UserUncheckedCreateWithoutApprovalRequestsAssignedInput>;
|
|
5684
|
+
};
|
|
5685
|
+
export type UserCreateWithoutApprovalRequestsReviewedInput = {
|
|
5686
|
+
id?: string;
|
|
5687
|
+
email: string;
|
|
5688
|
+
password?: string | null;
|
|
5689
|
+
phone?: string | null;
|
|
5690
|
+
firstName?: string | null;
|
|
5691
|
+
lastName?: string | null;
|
|
5692
|
+
isActive?: boolean;
|
|
5693
|
+
isEmailVerified?: boolean;
|
|
5694
|
+
googleId?: string | null;
|
|
5695
|
+
avatar?: string | null;
|
|
5696
|
+
createdAt?: Date | string;
|
|
5697
|
+
updatedAt?: Date | string;
|
|
5698
|
+
emailVerifiedAt?: Date | string | null;
|
|
5699
|
+
emailVerificationToken?: string | null;
|
|
5700
|
+
lastLoginAt?: Date | string | null;
|
|
5701
|
+
tenant?: Prisma.TenantCreateNestedOneWithoutUsersInput;
|
|
5702
|
+
userRoles?: Prisma.UserRoleCreateNestedManyWithoutUserInput;
|
|
5703
|
+
wallet?: Prisma.WalletCreateNestedOneWithoutUserInput;
|
|
5704
|
+
refreshTokens?: Prisma.RefreshTokenCreateNestedManyWithoutUserInput;
|
|
5705
|
+
passwordResets?: Prisma.PasswordResetCreateNestedManyWithoutUserInput;
|
|
5706
|
+
suspensions?: Prisma.UserSuspensionCreateNestedManyWithoutUserInput;
|
|
5707
|
+
emailPreferences?: Prisma.EmailPreferenceCreateNestedManyWithoutUserInput;
|
|
5708
|
+
deviceEndpoints?: Prisma.DeviceEndpointCreateNestedManyWithoutUserInput;
|
|
5709
|
+
socials?: Prisma.SocialCreateNestedManyWithoutUserInput;
|
|
5710
|
+
properties?: Prisma.PropertyCreateNestedManyWithoutUserInput;
|
|
5711
|
+
contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
|
|
5712
|
+
soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
|
|
5713
|
+
contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
|
|
5714
|
+
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
5715
|
+
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
5716
|
+
uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
|
|
5717
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
5718
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
5719
|
+
initiatedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutInitiatorInput;
|
|
5720
|
+
reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
|
|
5721
|
+
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
5722
|
+
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
5723
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
5724
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
5725
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestCreateNestedManyWithoutRequestedByInput;
|
|
5726
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestCreateNestedManyWithoutAssigneeInput;
|
|
5727
|
+
};
|
|
5728
|
+
export type UserUncheckedCreateWithoutApprovalRequestsReviewedInput = {
|
|
5729
|
+
id?: string;
|
|
5730
|
+
email: string;
|
|
5731
|
+
password?: string | null;
|
|
5732
|
+
phone?: string | null;
|
|
5733
|
+
firstName?: string | null;
|
|
5734
|
+
lastName?: string | null;
|
|
5735
|
+
isActive?: boolean;
|
|
5736
|
+
isEmailVerified?: boolean;
|
|
5737
|
+
googleId?: string | null;
|
|
5738
|
+
avatar?: string | null;
|
|
5739
|
+
tenantId?: string | null;
|
|
5740
|
+
walletId?: string | null;
|
|
5741
|
+
createdAt?: Date | string;
|
|
5742
|
+
updatedAt?: Date | string;
|
|
5743
|
+
emailVerifiedAt?: Date | string | null;
|
|
5744
|
+
emailVerificationToken?: string | null;
|
|
5745
|
+
lastLoginAt?: Date | string | null;
|
|
5746
|
+
userRoles?: Prisma.UserRoleUncheckedCreateNestedManyWithoutUserInput;
|
|
5747
|
+
refreshTokens?: Prisma.RefreshTokenUncheckedCreateNestedManyWithoutUserInput;
|
|
5748
|
+
passwordResets?: Prisma.PasswordResetUncheckedCreateNestedManyWithoutUserInput;
|
|
5749
|
+
suspensions?: Prisma.UserSuspensionUncheckedCreateNestedManyWithoutUserInput;
|
|
5750
|
+
emailPreferences?: Prisma.EmailPreferenceUncheckedCreateNestedManyWithoutUserInput;
|
|
5751
|
+
deviceEndpoints?: Prisma.DeviceEndpointUncheckedCreateNestedManyWithoutUserInput;
|
|
5752
|
+
socials?: Prisma.SocialUncheckedCreateNestedManyWithoutUserInput;
|
|
5753
|
+
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutUserInput;
|
|
5754
|
+
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
|
|
5755
|
+
soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
|
|
5756
|
+
contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
5757
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
5758
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
5759
|
+
uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
5760
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
5761
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5762
|
+
initiatedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
5763
|
+
reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5764
|
+
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
5765
|
+
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
5766
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
5767
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
5768
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
5769
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
5770
|
+
};
|
|
5771
|
+
export type UserCreateOrConnectWithoutApprovalRequestsReviewedInput = {
|
|
5772
|
+
where: Prisma.UserWhereUniqueInput;
|
|
5773
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutApprovalRequestsReviewedInput, Prisma.UserUncheckedCreateWithoutApprovalRequestsReviewedInput>;
|
|
5774
|
+
};
|
|
5775
|
+
export type UserUpsertWithoutApprovalRequestsSubmittedInput = {
|
|
5776
|
+
update: Prisma.XOR<Prisma.UserUpdateWithoutApprovalRequestsSubmittedInput, Prisma.UserUncheckedUpdateWithoutApprovalRequestsSubmittedInput>;
|
|
5777
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutApprovalRequestsSubmittedInput, Prisma.UserUncheckedCreateWithoutApprovalRequestsSubmittedInput>;
|
|
5778
|
+
where?: Prisma.UserWhereInput;
|
|
5779
|
+
};
|
|
5780
|
+
export type UserUpdateToOneWithWhereWithoutApprovalRequestsSubmittedInput = {
|
|
5781
|
+
where?: Prisma.UserWhereInput;
|
|
5782
|
+
data: Prisma.XOR<Prisma.UserUpdateWithoutApprovalRequestsSubmittedInput, Prisma.UserUncheckedUpdateWithoutApprovalRequestsSubmittedInput>;
|
|
5783
|
+
};
|
|
5784
|
+
export type UserUpdateWithoutApprovalRequestsSubmittedInput = {
|
|
5181
5785
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5182
5786
|
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5183
5787
|
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -5193,6 +5797,7 @@ export type UserUpdateWithoutTenantInput = {
|
|
|
5193
5797
|
emailVerifiedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
5194
5798
|
emailVerificationToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5195
5799
|
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
5800
|
+
tenant?: Prisma.TenantUpdateOneWithoutUsersNestedInput;
|
|
5196
5801
|
userRoles?: Prisma.UserRoleUpdateManyWithoutUserNestedInput;
|
|
5197
5802
|
wallet?: Prisma.WalletUpdateOneWithoutUserNestedInput;
|
|
5198
5803
|
refreshTokens?: Prisma.RefreshTokenUpdateManyWithoutUserNestedInput;
|
|
@@ -5216,8 +5821,10 @@ export type UserUpdateWithoutTenantInput = {
|
|
|
5216
5821
|
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
5217
5822
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
5218
5823
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
5824
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUpdateManyWithoutAssigneeNestedInput;
|
|
5825
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
5219
5826
|
};
|
|
5220
|
-
export type
|
|
5827
|
+
export type UserUncheckedUpdateWithoutApprovalRequestsSubmittedInput = {
|
|
5221
5828
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5222
5829
|
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5223
5830
|
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -5228,6 +5835,7 @@ export type UserUncheckedUpdateWithoutTenantInput = {
|
|
|
5228
5835
|
isEmailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
5229
5836
|
googleId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5230
5837
|
avatar?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5838
|
+
tenantId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5231
5839
|
walletId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5232
5840
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
5233
5841
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
@@ -5256,9 +5864,305 @@ export type UserUncheckedUpdateWithoutTenantInput = {
|
|
|
5256
5864
|
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
5257
5865
|
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
5258
5866
|
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
5867
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
5868
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
5259
5869
|
};
|
|
5260
|
-
export type
|
|
5261
|
-
|
|
5870
|
+
export type UserUpsertWithoutApprovalRequestsAssignedInput = {
|
|
5871
|
+
update: Prisma.XOR<Prisma.UserUpdateWithoutApprovalRequestsAssignedInput, Prisma.UserUncheckedUpdateWithoutApprovalRequestsAssignedInput>;
|
|
5872
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutApprovalRequestsAssignedInput, Prisma.UserUncheckedCreateWithoutApprovalRequestsAssignedInput>;
|
|
5873
|
+
where?: Prisma.UserWhereInput;
|
|
5874
|
+
};
|
|
5875
|
+
export type UserUpdateToOneWithWhereWithoutApprovalRequestsAssignedInput = {
|
|
5876
|
+
where?: Prisma.UserWhereInput;
|
|
5877
|
+
data: Prisma.XOR<Prisma.UserUpdateWithoutApprovalRequestsAssignedInput, Prisma.UserUncheckedUpdateWithoutApprovalRequestsAssignedInput>;
|
|
5878
|
+
};
|
|
5879
|
+
export type UserUpdateWithoutApprovalRequestsAssignedInput = {
|
|
5880
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5881
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5882
|
+
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5883
|
+
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5884
|
+
firstName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5885
|
+
lastName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5886
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
5887
|
+
isEmailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
5888
|
+
googleId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5889
|
+
avatar?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5890
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
5891
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
5892
|
+
emailVerifiedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
5893
|
+
emailVerificationToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5894
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
5895
|
+
tenant?: Prisma.TenantUpdateOneWithoutUsersNestedInput;
|
|
5896
|
+
userRoles?: Prisma.UserRoleUpdateManyWithoutUserNestedInput;
|
|
5897
|
+
wallet?: Prisma.WalletUpdateOneWithoutUserNestedInput;
|
|
5898
|
+
refreshTokens?: Prisma.RefreshTokenUpdateManyWithoutUserNestedInput;
|
|
5899
|
+
passwordResets?: Prisma.PasswordResetUpdateManyWithoutUserNestedInput;
|
|
5900
|
+
suspensions?: Prisma.UserSuspensionUpdateManyWithoutUserNestedInput;
|
|
5901
|
+
emailPreferences?: Prisma.EmailPreferenceUpdateManyWithoutUserNestedInput;
|
|
5902
|
+
deviceEndpoints?: Prisma.DeviceEndpointUpdateManyWithoutUserNestedInput;
|
|
5903
|
+
socials?: Prisma.SocialUpdateManyWithoutUserNestedInput;
|
|
5904
|
+
properties?: Prisma.PropertyUpdateManyWithoutUserNestedInput;
|
|
5905
|
+
contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
|
|
5906
|
+
soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
|
|
5907
|
+
contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
|
|
5908
|
+
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
5909
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
5910
|
+
uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
5911
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
5912
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
5913
|
+
initiatedTerminations?: Prisma.ContractTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
5914
|
+
reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
|
|
5915
|
+
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
5916
|
+
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
5917
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
5918
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
5919
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUpdateManyWithoutRequestedByNestedInput;
|
|
5920
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
5921
|
+
};
|
|
5922
|
+
export type UserUncheckedUpdateWithoutApprovalRequestsAssignedInput = {
|
|
5923
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5924
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5925
|
+
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5926
|
+
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5927
|
+
firstName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5928
|
+
lastName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5929
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
5930
|
+
isEmailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
5931
|
+
googleId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5932
|
+
avatar?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5933
|
+
tenantId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5934
|
+
walletId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5935
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
5936
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
5937
|
+
emailVerifiedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
5938
|
+
emailVerificationToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5939
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
5940
|
+
userRoles?: Prisma.UserRoleUncheckedUpdateManyWithoutUserNestedInput;
|
|
5941
|
+
refreshTokens?: Prisma.RefreshTokenUncheckedUpdateManyWithoutUserNestedInput;
|
|
5942
|
+
passwordResets?: Prisma.PasswordResetUncheckedUpdateManyWithoutUserNestedInput;
|
|
5943
|
+
suspensions?: Prisma.UserSuspensionUncheckedUpdateManyWithoutUserNestedInput;
|
|
5944
|
+
emailPreferences?: Prisma.EmailPreferenceUncheckedUpdateManyWithoutUserNestedInput;
|
|
5945
|
+
deviceEndpoints?: Prisma.DeviceEndpointUncheckedUpdateManyWithoutUserNestedInput;
|
|
5946
|
+
socials?: Prisma.SocialUncheckedUpdateManyWithoutUserNestedInput;
|
|
5947
|
+
properties?: Prisma.PropertyUncheckedUpdateManyWithoutUserNestedInput;
|
|
5948
|
+
contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
5949
|
+
soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
|
|
5950
|
+
contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
5951
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
5952
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
5953
|
+
uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
5954
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
5955
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5956
|
+
initiatedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
5957
|
+
reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5958
|
+
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
5959
|
+
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
5960
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
5961
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
5962
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
5963
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
5964
|
+
};
|
|
5965
|
+
export type UserUpsertWithoutApprovalRequestsReviewedInput = {
|
|
5966
|
+
update: Prisma.XOR<Prisma.UserUpdateWithoutApprovalRequestsReviewedInput, Prisma.UserUncheckedUpdateWithoutApprovalRequestsReviewedInput>;
|
|
5967
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutApprovalRequestsReviewedInput, Prisma.UserUncheckedCreateWithoutApprovalRequestsReviewedInput>;
|
|
5968
|
+
where?: Prisma.UserWhereInput;
|
|
5969
|
+
};
|
|
5970
|
+
export type UserUpdateToOneWithWhereWithoutApprovalRequestsReviewedInput = {
|
|
5971
|
+
where?: Prisma.UserWhereInput;
|
|
5972
|
+
data: Prisma.XOR<Prisma.UserUpdateWithoutApprovalRequestsReviewedInput, Prisma.UserUncheckedUpdateWithoutApprovalRequestsReviewedInput>;
|
|
5973
|
+
};
|
|
5974
|
+
export type UserUpdateWithoutApprovalRequestsReviewedInput = {
|
|
5975
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5976
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5977
|
+
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5978
|
+
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5979
|
+
firstName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5980
|
+
lastName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5981
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
5982
|
+
isEmailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
5983
|
+
googleId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5984
|
+
avatar?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5985
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
5986
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
5987
|
+
emailVerifiedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
5988
|
+
emailVerificationToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5989
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
5990
|
+
tenant?: Prisma.TenantUpdateOneWithoutUsersNestedInput;
|
|
5991
|
+
userRoles?: Prisma.UserRoleUpdateManyWithoutUserNestedInput;
|
|
5992
|
+
wallet?: Prisma.WalletUpdateOneWithoutUserNestedInput;
|
|
5993
|
+
refreshTokens?: Prisma.RefreshTokenUpdateManyWithoutUserNestedInput;
|
|
5994
|
+
passwordResets?: Prisma.PasswordResetUpdateManyWithoutUserNestedInput;
|
|
5995
|
+
suspensions?: Prisma.UserSuspensionUpdateManyWithoutUserNestedInput;
|
|
5996
|
+
emailPreferences?: Prisma.EmailPreferenceUpdateManyWithoutUserNestedInput;
|
|
5997
|
+
deviceEndpoints?: Prisma.DeviceEndpointUpdateManyWithoutUserNestedInput;
|
|
5998
|
+
socials?: Prisma.SocialUpdateManyWithoutUserNestedInput;
|
|
5999
|
+
properties?: Prisma.PropertyUpdateManyWithoutUserNestedInput;
|
|
6000
|
+
contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
|
|
6001
|
+
soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
|
|
6002
|
+
contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
|
|
6003
|
+
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
6004
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
6005
|
+
uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
6006
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
6007
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
6008
|
+
initiatedTerminations?: Prisma.ContractTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
6009
|
+
reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
|
|
6010
|
+
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
6011
|
+
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
6012
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
6013
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
6014
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUpdateManyWithoutRequestedByNestedInput;
|
|
6015
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUpdateManyWithoutAssigneeNestedInput;
|
|
6016
|
+
};
|
|
6017
|
+
export type UserUncheckedUpdateWithoutApprovalRequestsReviewedInput = {
|
|
6018
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
6019
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
6020
|
+
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6021
|
+
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6022
|
+
firstName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6023
|
+
lastName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6024
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
6025
|
+
isEmailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
6026
|
+
googleId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6027
|
+
avatar?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6028
|
+
tenantId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6029
|
+
walletId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6030
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
6031
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
6032
|
+
emailVerifiedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
6033
|
+
emailVerificationToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6034
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
6035
|
+
userRoles?: Prisma.UserRoleUncheckedUpdateManyWithoutUserNestedInput;
|
|
6036
|
+
refreshTokens?: Prisma.RefreshTokenUncheckedUpdateManyWithoutUserNestedInput;
|
|
6037
|
+
passwordResets?: Prisma.PasswordResetUncheckedUpdateManyWithoutUserNestedInput;
|
|
6038
|
+
suspensions?: Prisma.UserSuspensionUncheckedUpdateManyWithoutUserNestedInput;
|
|
6039
|
+
emailPreferences?: Prisma.EmailPreferenceUncheckedUpdateManyWithoutUserNestedInput;
|
|
6040
|
+
deviceEndpoints?: Prisma.DeviceEndpointUncheckedUpdateManyWithoutUserNestedInput;
|
|
6041
|
+
socials?: Prisma.SocialUncheckedUpdateManyWithoutUserNestedInput;
|
|
6042
|
+
properties?: Prisma.PropertyUncheckedUpdateManyWithoutUserNestedInput;
|
|
6043
|
+
contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
6044
|
+
soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
|
|
6045
|
+
contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
6046
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
6047
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
6048
|
+
uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
6049
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
6050
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
6051
|
+
initiatedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
6052
|
+
reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
6053
|
+
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
6054
|
+
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
6055
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
6056
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
6057
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
6058
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
6059
|
+
};
|
|
6060
|
+
export type UserCreateManyTenantInput = {
|
|
6061
|
+
id?: string;
|
|
6062
|
+
email: string;
|
|
6063
|
+
password?: string | null;
|
|
6064
|
+
phone?: string | null;
|
|
6065
|
+
firstName?: string | null;
|
|
6066
|
+
lastName?: string | null;
|
|
6067
|
+
isActive?: boolean;
|
|
6068
|
+
isEmailVerified?: boolean;
|
|
6069
|
+
googleId?: string | null;
|
|
6070
|
+
avatar?: string | null;
|
|
6071
|
+
walletId?: string | null;
|
|
6072
|
+
createdAt?: Date | string;
|
|
6073
|
+
updatedAt?: Date | string;
|
|
6074
|
+
emailVerifiedAt?: Date | string | null;
|
|
6075
|
+
emailVerificationToken?: string | null;
|
|
6076
|
+
lastLoginAt?: Date | string | null;
|
|
6077
|
+
};
|
|
6078
|
+
export type UserUpdateWithoutTenantInput = {
|
|
6079
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
6080
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
6081
|
+
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6082
|
+
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6083
|
+
firstName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6084
|
+
lastName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6085
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
6086
|
+
isEmailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
6087
|
+
googleId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6088
|
+
avatar?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6089
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
6090
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
6091
|
+
emailVerifiedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
6092
|
+
emailVerificationToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6093
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
6094
|
+
userRoles?: Prisma.UserRoleUpdateManyWithoutUserNestedInput;
|
|
6095
|
+
wallet?: Prisma.WalletUpdateOneWithoutUserNestedInput;
|
|
6096
|
+
refreshTokens?: Prisma.RefreshTokenUpdateManyWithoutUserNestedInput;
|
|
6097
|
+
passwordResets?: Prisma.PasswordResetUpdateManyWithoutUserNestedInput;
|
|
6098
|
+
suspensions?: Prisma.UserSuspensionUpdateManyWithoutUserNestedInput;
|
|
6099
|
+
emailPreferences?: Prisma.EmailPreferenceUpdateManyWithoutUserNestedInput;
|
|
6100
|
+
deviceEndpoints?: Prisma.DeviceEndpointUpdateManyWithoutUserNestedInput;
|
|
6101
|
+
socials?: Prisma.SocialUpdateManyWithoutUserNestedInput;
|
|
6102
|
+
properties?: Prisma.PropertyUpdateManyWithoutUserNestedInput;
|
|
6103
|
+
contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
|
|
6104
|
+
soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
|
|
6105
|
+
contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
|
|
6106
|
+
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
6107
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
6108
|
+
uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
6109
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
6110
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
6111
|
+
initiatedTerminations?: Prisma.ContractTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
6112
|
+
reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
|
|
6113
|
+
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
6114
|
+
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
6115
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
6116
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
6117
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUpdateManyWithoutRequestedByNestedInput;
|
|
6118
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUpdateManyWithoutAssigneeNestedInput;
|
|
6119
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
6120
|
+
};
|
|
6121
|
+
export type UserUncheckedUpdateWithoutTenantInput = {
|
|
6122
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
6123
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
6124
|
+
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6125
|
+
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6126
|
+
firstName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6127
|
+
lastName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6128
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
6129
|
+
isEmailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
6130
|
+
googleId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6131
|
+
avatar?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6132
|
+
walletId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6133
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
6134
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
6135
|
+
emailVerifiedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
6136
|
+
emailVerificationToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6137
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
6138
|
+
userRoles?: Prisma.UserRoleUncheckedUpdateManyWithoutUserNestedInput;
|
|
6139
|
+
refreshTokens?: Prisma.RefreshTokenUncheckedUpdateManyWithoutUserNestedInput;
|
|
6140
|
+
passwordResets?: Prisma.PasswordResetUncheckedUpdateManyWithoutUserNestedInput;
|
|
6141
|
+
suspensions?: Prisma.UserSuspensionUncheckedUpdateManyWithoutUserNestedInput;
|
|
6142
|
+
emailPreferences?: Prisma.EmailPreferenceUncheckedUpdateManyWithoutUserNestedInput;
|
|
6143
|
+
deviceEndpoints?: Prisma.DeviceEndpointUncheckedUpdateManyWithoutUserNestedInput;
|
|
6144
|
+
socials?: Prisma.SocialUncheckedUpdateManyWithoutUserNestedInput;
|
|
6145
|
+
properties?: Prisma.PropertyUncheckedUpdateManyWithoutUserNestedInput;
|
|
6146
|
+
contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
6147
|
+
soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
|
|
6148
|
+
contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
6149
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
6150
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
6151
|
+
uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
6152
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
6153
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
6154
|
+
initiatedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
6155
|
+
reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
6156
|
+
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
6157
|
+
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
6158
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
6159
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
6160
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
6161
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
6162
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
6163
|
+
};
|
|
6164
|
+
export type UserUncheckedUpdateManyWithoutTenantInput = {
|
|
6165
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5262
6166
|
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5263
6167
|
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5264
6168
|
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -5301,6 +6205,9 @@ export type UserCountOutputType = {
|
|
|
5301
6205
|
offerLettersSent: number;
|
|
5302
6206
|
transferRequestsSubmitted: number;
|
|
5303
6207
|
transferRequestsReviewed: number;
|
|
6208
|
+
approvalRequestsSubmitted: number;
|
|
6209
|
+
approvalRequestsAssigned: number;
|
|
6210
|
+
approvalRequestsReviewed: number;
|
|
5304
6211
|
};
|
|
5305
6212
|
export type UserCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
5306
6213
|
userRoles?: boolean | UserCountOutputTypeCountUserRolesArgs;
|
|
@@ -5325,6 +6232,9 @@ export type UserCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.I
|
|
|
5325
6232
|
offerLettersSent?: boolean | UserCountOutputTypeCountOfferLettersSentArgs;
|
|
5326
6233
|
transferRequestsSubmitted?: boolean | UserCountOutputTypeCountTransferRequestsSubmittedArgs;
|
|
5327
6234
|
transferRequestsReviewed?: boolean | UserCountOutputTypeCountTransferRequestsReviewedArgs;
|
|
6235
|
+
approvalRequestsSubmitted?: boolean | UserCountOutputTypeCountApprovalRequestsSubmittedArgs;
|
|
6236
|
+
approvalRequestsAssigned?: boolean | UserCountOutputTypeCountApprovalRequestsAssignedArgs;
|
|
6237
|
+
approvalRequestsReviewed?: boolean | UserCountOutputTypeCountApprovalRequestsReviewedArgs;
|
|
5328
6238
|
};
|
|
5329
6239
|
/**
|
|
5330
6240
|
* UserCountOutputType without action
|
|
@@ -5467,6 +6377,24 @@ export type UserCountOutputTypeCountTransferRequestsSubmittedArgs<ExtArgs extend
|
|
|
5467
6377
|
export type UserCountOutputTypeCountTransferRequestsReviewedArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
5468
6378
|
where?: Prisma.PropertyTransferRequestWhereInput;
|
|
5469
6379
|
};
|
|
6380
|
+
/**
|
|
6381
|
+
* UserCountOutputType without action
|
|
6382
|
+
*/
|
|
6383
|
+
export type UserCountOutputTypeCountApprovalRequestsSubmittedArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
6384
|
+
where?: Prisma.ApprovalRequestWhereInput;
|
|
6385
|
+
};
|
|
6386
|
+
/**
|
|
6387
|
+
* UserCountOutputType without action
|
|
6388
|
+
*/
|
|
6389
|
+
export type UserCountOutputTypeCountApprovalRequestsAssignedArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
6390
|
+
where?: Prisma.ApprovalRequestWhereInput;
|
|
6391
|
+
};
|
|
6392
|
+
/**
|
|
6393
|
+
* UserCountOutputType without action
|
|
6394
|
+
*/
|
|
6395
|
+
export type UserCountOutputTypeCountApprovalRequestsReviewedArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
6396
|
+
where?: Prisma.ApprovalRequestWhereInput;
|
|
6397
|
+
};
|
|
5470
6398
|
export type UserSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
5471
6399
|
id?: boolean;
|
|
5472
6400
|
email?: boolean;
|
|
@@ -5509,6 +6437,9 @@ export type UserSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
5509
6437
|
offerLettersSent?: boolean | Prisma.User$offerLettersSentArgs<ExtArgs>;
|
|
5510
6438
|
transferRequestsSubmitted?: boolean | Prisma.User$transferRequestsSubmittedArgs<ExtArgs>;
|
|
5511
6439
|
transferRequestsReviewed?: boolean | Prisma.User$transferRequestsReviewedArgs<ExtArgs>;
|
|
6440
|
+
approvalRequestsSubmitted?: boolean | Prisma.User$approvalRequestsSubmittedArgs<ExtArgs>;
|
|
6441
|
+
approvalRequestsAssigned?: boolean | Prisma.User$approvalRequestsAssignedArgs<ExtArgs>;
|
|
6442
|
+
approvalRequestsReviewed?: boolean | Prisma.User$approvalRequestsReviewedArgs<ExtArgs>;
|
|
5512
6443
|
_count?: boolean | Prisma.UserCountOutputTypeDefaultArgs<ExtArgs>;
|
|
5513
6444
|
}, ExtArgs["result"]["user"]>;
|
|
5514
6445
|
export type UserSelectScalar = {
|
|
@@ -5556,6 +6487,9 @@ export type UserInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
5556
6487
|
offerLettersSent?: boolean | Prisma.User$offerLettersSentArgs<ExtArgs>;
|
|
5557
6488
|
transferRequestsSubmitted?: boolean | Prisma.User$transferRequestsSubmittedArgs<ExtArgs>;
|
|
5558
6489
|
transferRequestsReviewed?: boolean | Prisma.User$transferRequestsReviewedArgs<ExtArgs>;
|
|
6490
|
+
approvalRequestsSubmitted?: boolean | Prisma.User$approvalRequestsSubmittedArgs<ExtArgs>;
|
|
6491
|
+
approvalRequestsAssigned?: boolean | Prisma.User$approvalRequestsAssignedArgs<ExtArgs>;
|
|
6492
|
+
approvalRequestsReviewed?: boolean | Prisma.User$approvalRequestsReviewedArgs<ExtArgs>;
|
|
5559
6493
|
_count?: boolean | Prisma.UserCountOutputTypeDefaultArgs<ExtArgs>;
|
|
5560
6494
|
};
|
|
5561
6495
|
export type $UserPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
@@ -5585,6 +6519,9 @@ export type $UserPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
5585
6519
|
offerLettersSent: Prisma.$OfferLetterPayload<ExtArgs>[];
|
|
5586
6520
|
transferRequestsSubmitted: Prisma.$PropertyTransferRequestPayload<ExtArgs>[];
|
|
5587
6521
|
transferRequestsReviewed: Prisma.$PropertyTransferRequestPayload<ExtArgs>[];
|
|
6522
|
+
approvalRequestsSubmitted: Prisma.$ApprovalRequestPayload<ExtArgs>[];
|
|
6523
|
+
approvalRequestsAssigned: Prisma.$ApprovalRequestPayload<ExtArgs>[];
|
|
6524
|
+
approvalRequestsReviewed: Prisma.$ApprovalRequestPayload<ExtArgs>[];
|
|
5588
6525
|
};
|
|
5589
6526
|
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
|
5590
6527
|
id: string;
|
|
@@ -5905,6 +6842,9 @@ export interface Prisma__UserClient<T, Null = never, ExtArgs extends runtime.Typ
|
|
|
5905
6842
|
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
6843
|
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
6844
|
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>;
|
|
6845
|
+
approvalRequestsSubmitted<T extends Prisma.User$approvalRequestsSubmittedArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$approvalRequestsSubmittedArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ApprovalRequestPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
6846
|
+
approvalRequestsAssigned<T extends Prisma.User$approvalRequestsAssignedArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$approvalRequestsAssignedArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ApprovalRequestPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
6847
|
+
approvalRequestsReviewed<T extends Prisma.User$approvalRequestsReviewedArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$approvalRequestsReviewedArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ApprovalRequestPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
5908
6848
|
/**
|
|
5909
6849
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
5910
6850
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -6816,6 +7756,75 @@ export type User$transferRequestsReviewedArgs<ExtArgs extends runtime.Types.Exte
|
|
|
6816
7756
|
skip?: number;
|
|
6817
7757
|
distinct?: Prisma.PropertyTransferRequestScalarFieldEnum | Prisma.PropertyTransferRequestScalarFieldEnum[];
|
|
6818
7758
|
};
|
|
7759
|
+
/**
|
|
7760
|
+
* User.approvalRequestsSubmitted
|
|
7761
|
+
*/
|
|
7762
|
+
export type User$approvalRequestsSubmittedArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
7763
|
+
/**
|
|
7764
|
+
* Select specific fields to fetch from the ApprovalRequest
|
|
7765
|
+
*/
|
|
7766
|
+
select?: Prisma.ApprovalRequestSelect<ExtArgs> | null;
|
|
7767
|
+
/**
|
|
7768
|
+
* Omit specific fields from the ApprovalRequest
|
|
7769
|
+
*/
|
|
7770
|
+
omit?: Prisma.ApprovalRequestOmit<ExtArgs> | null;
|
|
7771
|
+
/**
|
|
7772
|
+
* Choose, which related nodes to fetch as well
|
|
7773
|
+
*/
|
|
7774
|
+
include?: Prisma.ApprovalRequestInclude<ExtArgs> | null;
|
|
7775
|
+
where?: Prisma.ApprovalRequestWhereInput;
|
|
7776
|
+
orderBy?: Prisma.ApprovalRequestOrderByWithRelationInput | Prisma.ApprovalRequestOrderByWithRelationInput[];
|
|
7777
|
+
cursor?: Prisma.ApprovalRequestWhereUniqueInput;
|
|
7778
|
+
take?: number;
|
|
7779
|
+
skip?: number;
|
|
7780
|
+
distinct?: Prisma.ApprovalRequestScalarFieldEnum | Prisma.ApprovalRequestScalarFieldEnum[];
|
|
7781
|
+
};
|
|
7782
|
+
/**
|
|
7783
|
+
* User.approvalRequestsAssigned
|
|
7784
|
+
*/
|
|
7785
|
+
export type User$approvalRequestsAssignedArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
7786
|
+
/**
|
|
7787
|
+
* Select specific fields to fetch from the ApprovalRequest
|
|
7788
|
+
*/
|
|
7789
|
+
select?: Prisma.ApprovalRequestSelect<ExtArgs> | null;
|
|
7790
|
+
/**
|
|
7791
|
+
* Omit specific fields from the ApprovalRequest
|
|
7792
|
+
*/
|
|
7793
|
+
omit?: Prisma.ApprovalRequestOmit<ExtArgs> | null;
|
|
7794
|
+
/**
|
|
7795
|
+
* Choose, which related nodes to fetch as well
|
|
7796
|
+
*/
|
|
7797
|
+
include?: Prisma.ApprovalRequestInclude<ExtArgs> | null;
|
|
7798
|
+
where?: Prisma.ApprovalRequestWhereInput;
|
|
7799
|
+
orderBy?: Prisma.ApprovalRequestOrderByWithRelationInput | Prisma.ApprovalRequestOrderByWithRelationInput[];
|
|
7800
|
+
cursor?: Prisma.ApprovalRequestWhereUniqueInput;
|
|
7801
|
+
take?: number;
|
|
7802
|
+
skip?: number;
|
|
7803
|
+
distinct?: Prisma.ApprovalRequestScalarFieldEnum | Prisma.ApprovalRequestScalarFieldEnum[];
|
|
7804
|
+
};
|
|
7805
|
+
/**
|
|
7806
|
+
* User.approvalRequestsReviewed
|
|
7807
|
+
*/
|
|
7808
|
+
export type User$approvalRequestsReviewedArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
7809
|
+
/**
|
|
7810
|
+
* Select specific fields to fetch from the ApprovalRequest
|
|
7811
|
+
*/
|
|
7812
|
+
select?: Prisma.ApprovalRequestSelect<ExtArgs> | null;
|
|
7813
|
+
/**
|
|
7814
|
+
* Omit specific fields from the ApprovalRequest
|
|
7815
|
+
*/
|
|
7816
|
+
omit?: Prisma.ApprovalRequestOmit<ExtArgs> | null;
|
|
7817
|
+
/**
|
|
7818
|
+
* Choose, which related nodes to fetch as well
|
|
7819
|
+
*/
|
|
7820
|
+
include?: Prisma.ApprovalRequestInclude<ExtArgs> | null;
|
|
7821
|
+
where?: Prisma.ApprovalRequestWhereInput;
|
|
7822
|
+
orderBy?: Prisma.ApprovalRequestOrderByWithRelationInput | Prisma.ApprovalRequestOrderByWithRelationInput[];
|
|
7823
|
+
cursor?: Prisma.ApprovalRequestWhereUniqueInput;
|
|
7824
|
+
take?: number;
|
|
7825
|
+
skip?: number;
|
|
7826
|
+
distinct?: Prisma.ApprovalRequestScalarFieldEnum | Prisma.ApprovalRequestScalarFieldEnum[];
|
|
7827
|
+
};
|
|
6819
7828
|
/**
|
|
6820
7829
|
* User without action
|
|
6821
7830
|
*/
|