@valentine-efagene/qshelter-common 2.0.125 → 2.0.127
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 +60 -0
- package/dist/generated/client/enums.d.ts +22 -0
- package/dist/generated/client/enums.js +21 -1
- 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 +41 -1
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +42 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +41 -1
- package/dist/generated/client/models/ApplicationDocument.d.ts +632 -1
- package/dist/generated/client/models/DocumentReview.d.ts +2231 -0
- package/dist/generated/client/models/DocumentReview.js +1 -0
- package/dist/generated/client/models/DocumentationPlanStep.d.ts +61 -1
- package/dist/generated/client/models/DocumentationStep.d.ts +121 -1
- package/dist/generated/client/models/Organization.d.ts +38 -1
- package/dist/generated/client/models/Tenant.d.ts +563 -0
- package/dist/generated/client/models/User.d.ts +401 -0
- package/dist/generated/client/models/index.d.ts +3 -0
- package/dist/generated/client/models/index.js +3 -0
- package/dist/generated/client/models.d.ts +1 -0
- package/package.json +1 -1
- package/prisma/migrations/20260116152051_add_multi_party_document_review/migration.sql +59 -0
- package/prisma/schema.prisma +123 -1
|
@@ -266,6 +266,7 @@ export type UserWhereInput = {
|
|
|
266
266
|
requestedRefunds?: Prisma.ApplicationRefundListRelationFilter;
|
|
267
267
|
approvedRefunds?: Prisma.ApplicationRefundListRelationFilter;
|
|
268
268
|
processedRefunds?: Prisma.ApplicationRefundListRelationFilter;
|
|
269
|
+
documentReviews?: Prisma.DocumentReviewListRelationFilter;
|
|
269
270
|
organizationMemberships?: Prisma.OrganizationMemberListRelationFilter;
|
|
270
271
|
};
|
|
271
272
|
export type UserOrderByWithRelationInput = {
|
|
@@ -318,6 +319,7 @@ export type UserOrderByWithRelationInput = {
|
|
|
318
319
|
requestedRefunds?: Prisma.ApplicationRefundOrderByRelationAggregateInput;
|
|
319
320
|
approvedRefunds?: Prisma.ApplicationRefundOrderByRelationAggregateInput;
|
|
320
321
|
processedRefunds?: Prisma.ApplicationRefundOrderByRelationAggregateInput;
|
|
322
|
+
documentReviews?: Prisma.DocumentReviewOrderByRelationAggregateInput;
|
|
321
323
|
organizationMemberships?: Prisma.OrganizationMemberOrderByRelationAggregateInput;
|
|
322
324
|
_relevance?: Prisma.UserOrderByRelevanceInput;
|
|
323
325
|
};
|
|
@@ -374,6 +376,7 @@ export type UserWhereUniqueInput = Prisma.AtLeast<{
|
|
|
374
376
|
requestedRefunds?: Prisma.ApplicationRefundListRelationFilter;
|
|
375
377
|
approvedRefunds?: Prisma.ApplicationRefundListRelationFilter;
|
|
376
378
|
processedRefunds?: Prisma.ApplicationRefundListRelationFilter;
|
|
379
|
+
documentReviews?: Prisma.DocumentReviewListRelationFilter;
|
|
377
380
|
organizationMemberships?: Prisma.OrganizationMemberListRelationFilter;
|
|
378
381
|
}, "id" | "email" | "phone" | "walletId">;
|
|
379
382
|
export type UserOrderByWithAggregationInput = {
|
|
@@ -468,6 +471,7 @@ export type UserCreateInput = {
|
|
|
468
471
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
469
472
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
470
473
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
474
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
471
475
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
472
476
|
};
|
|
473
477
|
export type UserUncheckedCreateInput = {
|
|
@@ -518,6 +522,7 @@ export type UserUncheckedCreateInput = {
|
|
|
518
522
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
519
523
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
520
524
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
525
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
521
526
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
522
527
|
};
|
|
523
528
|
export type UserUpdateInput = {
|
|
@@ -568,6 +573,7 @@ export type UserUpdateInput = {
|
|
|
568
573
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
569
574
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
570
575
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
576
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
571
577
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
572
578
|
};
|
|
573
579
|
export type UserUncheckedUpdateInput = {
|
|
@@ -618,6 +624,7 @@ export type UserUncheckedUpdateInput = {
|
|
|
618
624
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
619
625
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
620
626
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
627
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
621
628
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
622
629
|
};
|
|
623
630
|
export type UserCreateManyInput = {
|
|
@@ -1090,6 +1097,20 @@ export type UserUpdateOneWithoutUploadedDocsNestedInput = {
|
|
|
1090
1097
|
connect?: Prisma.UserWhereUniqueInput;
|
|
1091
1098
|
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutUploadedDocsInput, Prisma.UserUpdateWithoutUploadedDocsInput>, Prisma.UserUncheckedUpdateWithoutUploadedDocsInput>;
|
|
1092
1099
|
};
|
|
1100
|
+
export type UserCreateNestedOneWithoutDocumentReviewsInput = {
|
|
1101
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutDocumentReviewsInput, Prisma.UserUncheckedCreateWithoutDocumentReviewsInput>;
|
|
1102
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutDocumentReviewsInput;
|
|
1103
|
+
connect?: Prisma.UserWhereUniqueInput;
|
|
1104
|
+
};
|
|
1105
|
+
export type UserUpdateOneWithoutDocumentReviewsNestedInput = {
|
|
1106
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutDocumentReviewsInput, Prisma.UserUncheckedCreateWithoutDocumentReviewsInput>;
|
|
1107
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutDocumentReviewsInput;
|
|
1108
|
+
upsert?: Prisma.UserUpsertWithoutDocumentReviewsInput;
|
|
1109
|
+
disconnect?: Prisma.UserWhereInput | boolean;
|
|
1110
|
+
delete?: Prisma.UserWhereInput | boolean;
|
|
1111
|
+
connect?: Prisma.UserWhereUniqueInput;
|
|
1112
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutDocumentReviewsInput, Prisma.UserUpdateWithoutDocumentReviewsInput>, Prisma.UserUncheckedUpdateWithoutDocumentReviewsInput>;
|
|
1113
|
+
};
|
|
1093
1114
|
export type UserCreateNestedOneWithoutOfferLettersGeneratedInput = {
|
|
1094
1115
|
create?: Prisma.XOR<Prisma.UserCreateWithoutOfferLettersGeneratedInput, Prisma.UserUncheckedCreateWithoutOfferLettersGeneratedInput>;
|
|
1095
1116
|
connectOrCreate?: Prisma.UserCreateOrConnectWithoutOfferLettersGeneratedInput;
|
|
@@ -1285,6 +1306,7 @@ export type UserCreateWithoutUserRolesInput = {
|
|
|
1285
1306
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
1286
1307
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
1287
1308
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
1309
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
1288
1310
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
1289
1311
|
};
|
|
1290
1312
|
export type UserUncheckedCreateWithoutUserRolesInput = {
|
|
@@ -1334,6 +1356,7 @@ export type UserUncheckedCreateWithoutUserRolesInput = {
|
|
|
1334
1356
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
1335
1357
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
1336
1358
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
1359
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
1337
1360
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
1338
1361
|
};
|
|
1339
1362
|
export type UserCreateOrConnectWithoutUserRolesInput = {
|
|
@@ -1396,6 +1419,7 @@ export type UserUpdateWithoutUserRolesInput = {
|
|
|
1396
1419
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
1397
1420
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
1398
1421
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
1422
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
1399
1423
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
1400
1424
|
};
|
|
1401
1425
|
export type UserUncheckedUpdateWithoutUserRolesInput = {
|
|
@@ -1445,6 +1469,7 @@ export type UserUncheckedUpdateWithoutUserRolesInput = {
|
|
|
1445
1469
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
1446
1470
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
1447
1471
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
1472
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
1448
1473
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
1449
1474
|
};
|
|
1450
1475
|
export type UserCreateWithoutTenantMembershipsInput = {
|
|
@@ -1494,6 +1519,7 @@ export type UserCreateWithoutTenantMembershipsInput = {
|
|
|
1494
1519
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
1495
1520
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
1496
1521
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
1522
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
1497
1523
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
1498
1524
|
};
|
|
1499
1525
|
export type UserUncheckedCreateWithoutTenantMembershipsInput = {
|
|
@@ -1543,6 +1569,7 @@ export type UserUncheckedCreateWithoutTenantMembershipsInput = {
|
|
|
1543
1569
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
1544
1570
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
1545
1571
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
1572
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
1546
1573
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
1547
1574
|
};
|
|
1548
1575
|
export type UserCreateOrConnectWithoutTenantMembershipsInput = {
|
|
@@ -1605,6 +1632,7 @@ export type UserUpdateWithoutTenantMembershipsInput = {
|
|
|
1605
1632
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
1606
1633
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
1607
1634
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
1635
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
1608
1636
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
1609
1637
|
};
|
|
1610
1638
|
export type UserUncheckedUpdateWithoutTenantMembershipsInput = {
|
|
@@ -1654,6 +1682,7 @@ export type UserUncheckedUpdateWithoutTenantMembershipsInput = {
|
|
|
1654
1682
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
1655
1683
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
1656
1684
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
1685
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
1657
1686
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
1658
1687
|
};
|
|
1659
1688
|
export type UserCreateWithoutOrganizationMembershipsInput = {
|
|
@@ -1704,6 +1733,7 @@ export type UserCreateWithoutOrganizationMembershipsInput = {
|
|
|
1704
1733
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
1705
1734
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
1706
1735
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
1736
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
1707
1737
|
};
|
|
1708
1738
|
export type UserUncheckedCreateWithoutOrganizationMembershipsInput = {
|
|
1709
1739
|
id?: string;
|
|
@@ -1753,6 +1783,7 @@ export type UserUncheckedCreateWithoutOrganizationMembershipsInput = {
|
|
|
1753
1783
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
1754
1784
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
1755
1785
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
1786
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
1756
1787
|
};
|
|
1757
1788
|
export type UserCreateOrConnectWithoutOrganizationMembershipsInput = {
|
|
1758
1789
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -1815,6 +1846,7 @@ export type UserUpdateWithoutOrganizationMembershipsInput = {
|
|
|
1815
1846
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
1816
1847
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
1817
1848
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
1849
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
1818
1850
|
};
|
|
1819
1851
|
export type UserUncheckedUpdateWithoutOrganizationMembershipsInput = {
|
|
1820
1852
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -1864,6 +1896,7 @@ export type UserUncheckedUpdateWithoutOrganizationMembershipsInput = {
|
|
|
1864
1896
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
1865
1897
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
1866
1898
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
1899
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
1867
1900
|
};
|
|
1868
1901
|
export type UserCreateWithoutTenantInput = {
|
|
1869
1902
|
id?: string;
|
|
@@ -1912,6 +1945,7 @@ export type UserCreateWithoutTenantInput = {
|
|
|
1912
1945
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
1913
1946
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
1914
1947
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
1948
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
1915
1949
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
1916
1950
|
};
|
|
1917
1951
|
export type UserUncheckedCreateWithoutTenantInput = {
|
|
@@ -1961,6 +1995,7 @@ export type UserUncheckedCreateWithoutTenantInput = {
|
|
|
1961
1995
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
1962
1996
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
1963
1997
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
1998
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
1964
1999
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
1965
2000
|
};
|
|
1966
2001
|
export type UserCreateOrConnectWithoutTenantInput = {
|
|
@@ -2053,6 +2088,7 @@ export type UserCreateWithoutRefreshTokensInput = {
|
|
|
2053
2088
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
2054
2089
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
2055
2090
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
2091
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
2056
2092
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
2057
2093
|
};
|
|
2058
2094
|
export type UserUncheckedCreateWithoutRefreshTokensInput = {
|
|
@@ -2102,6 +2138,7 @@ export type UserUncheckedCreateWithoutRefreshTokensInput = {
|
|
|
2102
2138
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
2103
2139
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
2104
2140
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
2141
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
2105
2142
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
2106
2143
|
};
|
|
2107
2144
|
export type UserCreateOrConnectWithoutRefreshTokensInput = {
|
|
@@ -2164,6 +2201,7 @@ export type UserUpdateWithoutRefreshTokensInput = {
|
|
|
2164
2201
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
2165
2202
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
2166
2203
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
2204
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
2167
2205
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
2168
2206
|
};
|
|
2169
2207
|
export type UserUncheckedUpdateWithoutRefreshTokensInput = {
|
|
@@ -2213,6 +2251,7 @@ export type UserUncheckedUpdateWithoutRefreshTokensInput = {
|
|
|
2213
2251
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
2214
2252
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
2215
2253
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
2254
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
2216
2255
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
2217
2256
|
};
|
|
2218
2257
|
export type UserCreateWithoutPasswordResetsInput = {
|
|
@@ -2262,6 +2301,7 @@ export type UserCreateWithoutPasswordResetsInput = {
|
|
|
2262
2301
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
2263
2302
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
2264
2303
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
2304
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
2265
2305
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
2266
2306
|
};
|
|
2267
2307
|
export type UserUncheckedCreateWithoutPasswordResetsInput = {
|
|
@@ -2311,6 +2351,7 @@ export type UserUncheckedCreateWithoutPasswordResetsInput = {
|
|
|
2311
2351
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
2312
2352
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
2313
2353
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
2354
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
2314
2355
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
2315
2356
|
};
|
|
2316
2357
|
export type UserCreateOrConnectWithoutPasswordResetsInput = {
|
|
@@ -2373,6 +2414,7 @@ export type UserUpdateWithoutPasswordResetsInput = {
|
|
|
2373
2414
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
2374
2415
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
2375
2416
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
2417
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
2376
2418
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
2377
2419
|
};
|
|
2378
2420
|
export type UserUncheckedUpdateWithoutPasswordResetsInput = {
|
|
@@ -2422,6 +2464,7 @@ export type UserUncheckedUpdateWithoutPasswordResetsInput = {
|
|
|
2422
2464
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
2423
2465
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
2424
2466
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
2467
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
2425
2468
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
2426
2469
|
};
|
|
2427
2470
|
export type UserCreateWithoutSuspensionsInput = {
|
|
@@ -2471,6 +2514,7 @@ export type UserCreateWithoutSuspensionsInput = {
|
|
|
2471
2514
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
2472
2515
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
2473
2516
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
2517
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
2474
2518
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
2475
2519
|
};
|
|
2476
2520
|
export type UserUncheckedCreateWithoutSuspensionsInput = {
|
|
@@ -2520,6 +2564,7 @@ export type UserUncheckedCreateWithoutSuspensionsInput = {
|
|
|
2520
2564
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
2521
2565
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
2522
2566
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
2567
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
2523
2568
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
2524
2569
|
};
|
|
2525
2570
|
export type UserCreateOrConnectWithoutSuspensionsInput = {
|
|
@@ -2582,6 +2627,7 @@ export type UserUpdateWithoutSuspensionsInput = {
|
|
|
2582
2627
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
2583
2628
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
2584
2629
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
2630
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
2585
2631
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
2586
2632
|
};
|
|
2587
2633
|
export type UserUncheckedUpdateWithoutSuspensionsInput = {
|
|
@@ -2631,6 +2677,7 @@ export type UserUncheckedUpdateWithoutSuspensionsInput = {
|
|
|
2631
2677
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
2632
2678
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
2633
2679
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
2680
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
2634
2681
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
2635
2682
|
};
|
|
2636
2683
|
export type UserCreateWithoutEmailPreferencesInput = {
|
|
@@ -2680,6 +2727,7 @@ export type UserCreateWithoutEmailPreferencesInput = {
|
|
|
2680
2727
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
2681
2728
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
2682
2729
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
2730
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
2683
2731
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
2684
2732
|
};
|
|
2685
2733
|
export type UserUncheckedCreateWithoutEmailPreferencesInput = {
|
|
@@ -2729,6 +2777,7 @@ export type UserUncheckedCreateWithoutEmailPreferencesInput = {
|
|
|
2729
2777
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
2730
2778
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
2731
2779
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
2780
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
2732
2781
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
2733
2782
|
};
|
|
2734
2783
|
export type UserCreateOrConnectWithoutEmailPreferencesInput = {
|
|
@@ -2791,6 +2840,7 @@ export type UserUpdateWithoutEmailPreferencesInput = {
|
|
|
2791
2840
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
2792
2841
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
2793
2842
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
2843
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
2794
2844
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
2795
2845
|
};
|
|
2796
2846
|
export type UserUncheckedUpdateWithoutEmailPreferencesInput = {
|
|
@@ -2840,6 +2890,7 @@ export type UserUncheckedUpdateWithoutEmailPreferencesInput = {
|
|
|
2840
2890
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
2841
2891
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
2842
2892
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
2893
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
2843
2894
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
2844
2895
|
};
|
|
2845
2896
|
export type UserCreateWithoutDeviceEndpointsInput = {
|
|
@@ -2889,6 +2940,7 @@ export type UserCreateWithoutDeviceEndpointsInput = {
|
|
|
2889
2940
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
2890
2941
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
2891
2942
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
2943
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
2892
2944
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
2893
2945
|
};
|
|
2894
2946
|
export type UserUncheckedCreateWithoutDeviceEndpointsInput = {
|
|
@@ -2938,6 +2990,7 @@ export type UserUncheckedCreateWithoutDeviceEndpointsInput = {
|
|
|
2938
2990
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
2939
2991
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
2940
2992
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
2993
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
2941
2994
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
2942
2995
|
};
|
|
2943
2996
|
export type UserCreateOrConnectWithoutDeviceEndpointsInput = {
|
|
@@ -3000,6 +3053,7 @@ export type UserUpdateWithoutDeviceEndpointsInput = {
|
|
|
3000
3053
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
3001
3054
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
3002
3055
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
3056
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
3003
3057
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
3004
3058
|
};
|
|
3005
3059
|
export type UserUncheckedUpdateWithoutDeviceEndpointsInput = {
|
|
@@ -3049,6 +3103,7 @@ export type UserUncheckedUpdateWithoutDeviceEndpointsInput = {
|
|
|
3049
3103
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
3050
3104
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
3051
3105
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
3106
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
3052
3107
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
3053
3108
|
};
|
|
3054
3109
|
export type UserCreateWithoutSocialsInput = {
|
|
@@ -3098,6 +3153,7 @@ export type UserCreateWithoutSocialsInput = {
|
|
|
3098
3153
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
3099
3154
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
3100
3155
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
3156
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
3101
3157
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
3102
3158
|
};
|
|
3103
3159
|
export type UserUncheckedCreateWithoutSocialsInput = {
|
|
@@ -3147,6 +3203,7 @@ export type UserUncheckedCreateWithoutSocialsInput = {
|
|
|
3147
3203
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
3148
3204
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
3149
3205
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
3206
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
3150
3207
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
3151
3208
|
};
|
|
3152
3209
|
export type UserCreateOrConnectWithoutSocialsInput = {
|
|
@@ -3209,6 +3266,7 @@ export type UserUpdateWithoutSocialsInput = {
|
|
|
3209
3266
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
3210
3267
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
3211
3268
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
3269
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
3212
3270
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
3213
3271
|
};
|
|
3214
3272
|
export type UserUncheckedUpdateWithoutSocialsInput = {
|
|
@@ -3258,6 +3316,7 @@ export type UserUncheckedUpdateWithoutSocialsInput = {
|
|
|
3258
3316
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
3259
3317
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
3260
3318
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
3319
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
3261
3320
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
3262
3321
|
};
|
|
3263
3322
|
export type UserCreateWithoutWalletInput = {
|
|
@@ -3307,6 +3366,7 @@ export type UserCreateWithoutWalletInput = {
|
|
|
3307
3366
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
3308
3367
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
3309
3368
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
3369
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
3310
3370
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
3311
3371
|
};
|
|
3312
3372
|
export type UserUncheckedCreateWithoutWalletInput = {
|
|
@@ -3356,6 +3416,7 @@ export type UserUncheckedCreateWithoutWalletInput = {
|
|
|
3356
3416
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
3357
3417
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
3358
3418
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
3419
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
3359
3420
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
3360
3421
|
};
|
|
3361
3422
|
export type UserCreateOrConnectWithoutWalletInput = {
|
|
@@ -3418,6 +3479,7 @@ export type UserUpdateWithoutWalletInput = {
|
|
|
3418
3479
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
3419
3480
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
3420
3481
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
3482
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
3421
3483
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
3422
3484
|
};
|
|
3423
3485
|
export type UserUncheckedUpdateWithoutWalletInput = {
|
|
@@ -3467,6 +3529,7 @@ export type UserUncheckedUpdateWithoutWalletInput = {
|
|
|
3467
3529
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
3468
3530
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
3469
3531
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
3532
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
3470
3533
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
3471
3534
|
};
|
|
3472
3535
|
export type UserCreateWithoutPropertiesInput = {
|
|
@@ -3516,6 +3579,7 @@ export type UserCreateWithoutPropertiesInput = {
|
|
|
3516
3579
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
3517
3580
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
3518
3581
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
3582
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
3519
3583
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
3520
3584
|
};
|
|
3521
3585
|
export type UserUncheckedCreateWithoutPropertiesInput = {
|
|
@@ -3565,6 +3629,7 @@ export type UserUncheckedCreateWithoutPropertiesInput = {
|
|
|
3565
3629
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
3566
3630
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
3567
3631
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
3632
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
3568
3633
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
3569
3634
|
};
|
|
3570
3635
|
export type UserCreateOrConnectWithoutPropertiesInput = {
|
|
@@ -3627,6 +3692,7 @@ export type UserUpdateWithoutPropertiesInput = {
|
|
|
3627
3692
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
3628
3693
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
3629
3694
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
3695
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
3630
3696
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
3631
3697
|
};
|
|
3632
3698
|
export type UserUncheckedUpdateWithoutPropertiesInput = {
|
|
@@ -3676,6 +3742,7 @@ export type UserUncheckedUpdateWithoutPropertiesInput = {
|
|
|
3676
3742
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
3677
3743
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
3678
3744
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
3745
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
3679
3746
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
3680
3747
|
};
|
|
3681
3748
|
export type UserCreateWithoutApplicationsInput = {
|
|
@@ -3725,6 +3792,7 @@ export type UserCreateWithoutApplicationsInput = {
|
|
|
3725
3792
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
3726
3793
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
3727
3794
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
3795
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
3728
3796
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
3729
3797
|
};
|
|
3730
3798
|
export type UserUncheckedCreateWithoutApplicationsInput = {
|
|
@@ -3774,6 +3842,7 @@ export type UserUncheckedCreateWithoutApplicationsInput = {
|
|
|
3774
3842
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
3775
3843
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
3776
3844
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
3845
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
3777
3846
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
3778
3847
|
};
|
|
3779
3848
|
export type UserCreateOrConnectWithoutApplicationsInput = {
|
|
@@ -3827,6 +3896,7 @@ export type UserCreateWithoutSoldApplicationsInput = {
|
|
|
3827
3896
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
3828
3897
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
3829
3898
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
3899
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
3830
3900
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
3831
3901
|
};
|
|
3832
3902
|
export type UserUncheckedCreateWithoutSoldApplicationsInput = {
|
|
@@ -3876,6 +3946,7 @@ export type UserUncheckedCreateWithoutSoldApplicationsInput = {
|
|
|
3876
3946
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
3877
3947
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
3878
3948
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
3949
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
3879
3950
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
3880
3951
|
};
|
|
3881
3952
|
export type UserCreateOrConnectWithoutSoldApplicationsInput = {
|
|
@@ -3938,6 +4009,7 @@ export type UserUpdateWithoutApplicationsInput = {
|
|
|
3938
4009
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
3939
4010
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
3940
4011
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
4012
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
3941
4013
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
3942
4014
|
};
|
|
3943
4015
|
export type UserUncheckedUpdateWithoutApplicationsInput = {
|
|
@@ -3987,6 +4059,7 @@ export type UserUncheckedUpdateWithoutApplicationsInput = {
|
|
|
3987
4059
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
3988
4060
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
3989
4061
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
4062
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
3990
4063
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
3991
4064
|
};
|
|
3992
4065
|
export type UserUpsertWithoutSoldApplicationsInput = {
|
|
@@ -4045,6 +4118,7 @@ export type UserUpdateWithoutSoldApplicationsInput = {
|
|
|
4045
4118
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
4046
4119
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
4047
4120
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
4121
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
4048
4122
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
4049
4123
|
};
|
|
4050
4124
|
export type UserUncheckedUpdateWithoutSoldApplicationsInput = {
|
|
@@ -4094,6 +4168,7 @@ export type UserUncheckedUpdateWithoutSoldApplicationsInput = {
|
|
|
4094
4168
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
4095
4169
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
4096
4170
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
4171
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
4097
4172
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
4098
4173
|
};
|
|
4099
4174
|
export type UserCreateWithoutRequestedRefundsInput = {
|
|
@@ -4143,6 +4218,7 @@ export type UserCreateWithoutRequestedRefundsInput = {
|
|
|
4143
4218
|
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
4144
4219
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
4145
4220
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
4221
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
4146
4222
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
4147
4223
|
};
|
|
4148
4224
|
export type UserUncheckedCreateWithoutRequestedRefundsInput = {
|
|
@@ -4192,6 +4268,7 @@ export type UserUncheckedCreateWithoutRequestedRefundsInput = {
|
|
|
4192
4268
|
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
4193
4269
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
4194
4270
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
4271
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4195
4272
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
4196
4273
|
};
|
|
4197
4274
|
export type UserCreateOrConnectWithoutRequestedRefundsInput = {
|
|
@@ -4245,6 +4322,7 @@ export type UserCreateWithoutApprovedRefundsInput = {
|
|
|
4245
4322
|
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
4246
4323
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
4247
4324
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
4325
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
4248
4326
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
4249
4327
|
};
|
|
4250
4328
|
export type UserUncheckedCreateWithoutApprovedRefundsInput = {
|
|
@@ -4294,6 +4372,7 @@ export type UserUncheckedCreateWithoutApprovedRefundsInput = {
|
|
|
4294
4372
|
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
4295
4373
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4296
4374
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
4375
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4297
4376
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
4298
4377
|
};
|
|
4299
4378
|
export type UserCreateOrConnectWithoutApprovedRefundsInput = {
|
|
@@ -4347,6 +4426,7 @@ export type UserCreateWithoutProcessedRefundsInput = {
|
|
|
4347
4426
|
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
4348
4427
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
4349
4428
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
4429
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
4350
4430
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
4351
4431
|
};
|
|
4352
4432
|
export type UserUncheckedCreateWithoutProcessedRefundsInput = {
|
|
@@ -4396,6 +4476,7 @@ export type UserUncheckedCreateWithoutProcessedRefundsInput = {
|
|
|
4396
4476
|
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
4397
4477
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4398
4478
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
4479
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4399
4480
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
4400
4481
|
};
|
|
4401
4482
|
export type UserCreateOrConnectWithoutProcessedRefundsInput = {
|
|
@@ -4458,6 +4539,7 @@ export type UserUpdateWithoutRequestedRefundsInput = {
|
|
|
4458
4539
|
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
4459
4540
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
4460
4541
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
4542
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
4461
4543
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
4462
4544
|
};
|
|
4463
4545
|
export type UserUncheckedUpdateWithoutRequestedRefundsInput = {
|
|
@@ -4507,6 +4589,7 @@ export type UserUncheckedUpdateWithoutRequestedRefundsInput = {
|
|
|
4507
4589
|
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
4508
4590
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
4509
4591
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
4592
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
4510
4593
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
4511
4594
|
};
|
|
4512
4595
|
export type UserUpsertWithoutApprovedRefundsInput = {
|
|
@@ -4565,6 +4648,7 @@ export type UserUpdateWithoutApprovedRefundsInput = {
|
|
|
4565
4648
|
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
4566
4649
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
4567
4650
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
4651
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
4568
4652
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
4569
4653
|
};
|
|
4570
4654
|
export type UserUncheckedUpdateWithoutApprovedRefundsInput = {
|
|
@@ -4614,6 +4698,7 @@ export type UserUncheckedUpdateWithoutApprovedRefundsInput = {
|
|
|
4614
4698
|
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
4615
4699
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
4616
4700
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
4701
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
4617
4702
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
4618
4703
|
};
|
|
4619
4704
|
export type UserUpsertWithoutProcessedRefundsInput = {
|
|
@@ -4672,6 +4757,7 @@ export type UserUpdateWithoutProcessedRefundsInput = {
|
|
|
4672
4757
|
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
4673
4758
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
4674
4759
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
4760
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
4675
4761
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
4676
4762
|
};
|
|
4677
4763
|
export type UserUncheckedUpdateWithoutProcessedRefundsInput = {
|
|
@@ -4721,6 +4807,7 @@ export type UserUncheckedUpdateWithoutProcessedRefundsInput = {
|
|
|
4721
4807
|
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
4722
4808
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
4723
4809
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
4810
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
4724
4811
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
4725
4812
|
};
|
|
4726
4813
|
export type UserCreateWithoutAssignedStepsInput = {
|
|
@@ -4770,6 +4857,7 @@ export type UserCreateWithoutAssignedStepsInput = {
|
|
|
4770
4857
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
4771
4858
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
4772
4859
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
4860
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
4773
4861
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
4774
4862
|
};
|
|
4775
4863
|
export type UserUncheckedCreateWithoutAssignedStepsInput = {
|
|
@@ -4819,6 +4907,7 @@ export type UserUncheckedCreateWithoutAssignedStepsInput = {
|
|
|
4819
4907
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4820
4908
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
4821
4909
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
4910
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4822
4911
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
4823
4912
|
};
|
|
4824
4913
|
export type UserCreateOrConnectWithoutAssignedStepsInput = {
|
|
@@ -4872,6 +4961,7 @@ export type UserCreateWithoutGateActedStepsInput = {
|
|
|
4872
4961
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
4873
4962
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
4874
4963
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
4964
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
4875
4965
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
4876
4966
|
};
|
|
4877
4967
|
export type UserUncheckedCreateWithoutGateActedStepsInput = {
|
|
@@ -4921,6 +5011,7 @@ export type UserUncheckedCreateWithoutGateActedStepsInput = {
|
|
|
4921
5011
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4922
5012
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
4923
5013
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
5014
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4924
5015
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
4925
5016
|
};
|
|
4926
5017
|
export type UserCreateOrConnectWithoutGateActedStepsInput = {
|
|
@@ -4983,6 +5074,7 @@ export type UserUpdateWithoutAssignedStepsInput = {
|
|
|
4983
5074
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
4984
5075
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
4985
5076
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
5077
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
4986
5078
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
4987
5079
|
};
|
|
4988
5080
|
export type UserUncheckedUpdateWithoutAssignedStepsInput = {
|
|
@@ -5032,6 +5124,7 @@ export type UserUncheckedUpdateWithoutAssignedStepsInput = {
|
|
|
5032
5124
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
5033
5125
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
5034
5126
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
5127
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5035
5128
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
5036
5129
|
};
|
|
5037
5130
|
export type UserUpsertWithoutGateActedStepsInput = {
|
|
@@ -5090,6 +5183,7 @@ export type UserUpdateWithoutGateActedStepsInput = {
|
|
|
5090
5183
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
5091
5184
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
5092
5185
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
5186
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
5093
5187
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
5094
5188
|
};
|
|
5095
5189
|
export type UserUncheckedUpdateWithoutGateActedStepsInput = {
|
|
@@ -5139,6 +5233,7 @@ export type UserUncheckedUpdateWithoutGateActedStepsInput = {
|
|
|
5139
5233
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
5140
5234
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
5141
5235
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
5236
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5142
5237
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
5143
5238
|
};
|
|
5144
5239
|
export type UserCreateWithoutStepApprovalsInput = {
|
|
@@ -5188,6 +5283,7 @@ export type UserCreateWithoutStepApprovalsInput = {
|
|
|
5188
5283
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
5189
5284
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
5190
5285
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
5286
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
5191
5287
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
5192
5288
|
};
|
|
5193
5289
|
export type UserUncheckedCreateWithoutStepApprovalsInput = {
|
|
@@ -5237,6 +5333,7 @@ export type UserUncheckedCreateWithoutStepApprovalsInput = {
|
|
|
5237
5333
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
5238
5334
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
5239
5335
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
5336
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5240
5337
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
5241
5338
|
};
|
|
5242
5339
|
export type UserCreateOrConnectWithoutStepApprovalsInput = {
|
|
@@ -5299,6 +5396,7 @@ export type UserUpdateWithoutStepApprovalsInput = {
|
|
|
5299
5396
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
5300
5397
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
5301
5398
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
5399
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
5302
5400
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
5303
5401
|
};
|
|
5304
5402
|
export type UserUncheckedUpdateWithoutStepApprovalsInput = {
|
|
@@ -5348,6 +5446,7 @@ export type UserUncheckedUpdateWithoutStepApprovalsInput = {
|
|
|
5348
5446
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
5349
5447
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
5350
5448
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
5449
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5351
5450
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
5352
5451
|
};
|
|
5353
5452
|
export type UserCreateWithoutApplicationPaymentsInput = {
|
|
@@ -5397,6 +5496,7 @@ export type UserCreateWithoutApplicationPaymentsInput = {
|
|
|
5397
5496
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
5398
5497
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
5399
5498
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
5499
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
5400
5500
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
5401
5501
|
};
|
|
5402
5502
|
export type UserUncheckedCreateWithoutApplicationPaymentsInput = {
|
|
@@ -5446,6 +5546,7 @@ export type UserUncheckedCreateWithoutApplicationPaymentsInput = {
|
|
|
5446
5546
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
5447
5547
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
5448
5548
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
5549
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5449
5550
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
5450
5551
|
};
|
|
5451
5552
|
export type UserCreateOrConnectWithoutApplicationPaymentsInput = {
|
|
@@ -5508,6 +5609,7 @@ export type UserUpdateWithoutApplicationPaymentsInput = {
|
|
|
5508
5609
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
5509
5610
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
5510
5611
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
5612
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
5511
5613
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
5512
5614
|
};
|
|
5513
5615
|
export type UserUncheckedUpdateWithoutApplicationPaymentsInput = {
|
|
@@ -5557,6 +5659,7 @@ export type UserUncheckedUpdateWithoutApplicationPaymentsInput = {
|
|
|
5557
5659
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
5558
5660
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
5559
5661
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
5662
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5560
5663
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
5561
5664
|
};
|
|
5562
5665
|
export type UserCreateWithoutUploadedDocsInput = {
|
|
@@ -5606,6 +5709,7 @@ export type UserCreateWithoutUploadedDocsInput = {
|
|
|
5606
5709
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
5607
5710
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
5608
5711
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
5712
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
5609
5713
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
5610
5714
|
};
|
|
5611
5715
|
export type UserUncheckedCreateWithoutUploadedDocsInput = {
|
|
@@ -5655,6 +5759,7 @@ export type UserUncheckedCreateWithoutUploadedDocsInput = {
|
|
|
5655
5759
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
5656
5760
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
5657
5761
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
5762
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5658
5763
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
5659
5764
|
};
|
|
5660
5765
|
export type UserCreateOrConnectWithoutUploadedDocsInput = {
|
|
@@ -5717,6 +5822,7 @@ export type UserUpdateWithoutUploadedDocsInput = {
|
|
|
5717
5822
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
5718
5823
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
5719
5824
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
5825
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
5720
5826
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
5721
5827
|
};
|
|
5722
5828
|
export type UserUncheckedUpdateWithoutUploadedDocsInput = {
|
|
@@ -5766,6 +5872,220 @@ export type UserUncheckedUpdateWithoutUploadedDocsInput = {
|
|
|
5766
5872
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
5767
5873
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
5768
5874
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
5875
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5876
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
5877
|
+
};
|
|
5878
|
+
export type UserCreateWithoutDocumentReviewsInput = {
|
|
5879
|
+
id?: string;
|
|
5880
|
+
email: string;
|
|
5881
|
+
password?: string | null;
|
|
5882
|
+
phone?: string | null;
|
|
5883
|
+
firstName?: string | null;
|
|
5884
|
+
lastName?: string | null;
|
|
5885
|
+
isActive?: boolean;
|
|
5886
|
+
isEmailVerified?: boolean;
|
|
5887
|
+
googleId?: string | null;
|
|
5888
|
+
avatar?: string | null;
|
|
5889
|
+
createdAt?: Date | string;
|
|
5890
|
+
updatedAt?: Date | string;
|
|
5891
|
+
emailVerifiedAt?: Date | string | null;
|
|
5892
|
+
emailVerificationToken?: string | null;
|
|
5893
|
+
lastLoginAt?: Date | string | null;
|
|
5894
|
+
tenant?: Prisma.TenantCreateNestedOneWithoutUsersInput;
|
|
5895
|
+
tenantMemberships?: Prisma.TenantMembershipCreateNestedManyWithoutUserInput;
|
|
5896
|
+
userRoles?: Prisma.UserRoleCreateNestedManyWithoutUserInput;
|
|
5897
|
+
wallet?: Prisma.WalletCreateNestedOneWithoutUserInput;
|
|
5898
|
+
refreshTokens?: Prisma.RefreshTokenCreateNestedManyWithoutUserInput;
|
|
5899
|
+
passwordResets?: Prisma.PasswordResetCreateNestedManyWithoutUserInput;
|
|
5900
|
+
suspensions?: Prisma.UserSuspensionCreateNestedManyWithoutUserInput;
|
|
5901
|
+
emailPreferences?: Prisma.EmailPreferenceCreateNestedManyWithoutUserInput;
|
|
5902
|
+
deviceEndpoints?: Prisma.DeviceEndpointCreateNestedManyWithoutUserInput;
|
|
5903
|
+
socials?: Prisma.SocialCreateNestedManyWithoutUserInput;
|
|
5904
|
+
properties?: Prisma.PropertyCreateNestedManyWithoutUserInput;
|
|
5905
|
+
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
5906
|
+
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
5907
|
+
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
5908
|
+
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
5909
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
5910
|
+
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
5911
|
+
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
5912
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
5913
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
5914
|
+
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
5915
|
+
reviewedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutReviewerInput;
|
|
5916
|
+
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
5917
|
+
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
5918
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
5919
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
5920
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestCreateNestedManyWithoutRequestedByInput;
|
|
5921
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestCreateNestedManyWithoutAssigneeInput;
|
|
5922
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
5923
|
+
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
5924
|
+
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
5925
|
+
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
5926
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
5927
|
+
};
|
|
5928
|
+
export type UserUncheckedCreateWithoutDocumentReviewsInput = {
|
|
5929
|
+
id?: string;
|
|
5930
|
+
email: string;
|
|
5931
|
+
password?: string | null;
|
|
5932
|
+
phone?: string | null;
|
|
5933
|
+
firstName?: string | null;
|
|
5934
|
+
lastName?: string | null;
|
|
5935
|
+
isActive?: boolean;
|
|
5936
|
+
isEmailVerified?: boolean;
|
|
5937
|
+
googleId?: string | null;
|
|
5938
|
+
avatar?: string | null;
|
|
5939
|
+
tenantId?: string | null;
|
|
5940
|
+
walletId?: string | null;
|
|
5941
|
+
createdAt?: Date | string;
|
|
5942
|
+
updatedAt?: Date | string;
|
|
5943
|
+
emailVerifiedAt?: Date | string | null;
|
|
5944
|
+
emailVerificationToken?: string | null;
|
|
5945
|
+
lastLoginAt?: Date | string | null;
|
|
5946
|
+
tenantMemberships?: Prisma.TenantMembershipUncheckedCreateNestedManyWithoutUserInput;
|
|
5947
|
+
userRoles?: Prisma.UserRoleUncheckedCreateNestedManyWithoutUserInput;
|
|
5948
|
+
refreshTokens?: Prisma.RefreshTokenUncheckedCreateNestedManyWithoutUserInput;
|
|
5949
|
+
passwordResets?: Prisma.PasswordResetUncheckedCreateNestedManyWithoutUserInput;
|
|
5950
|
+
suspensions?: Prisma.UserSuspensionUncheckedCreateNestedManyWithoutUserInput;
|
|
5951
|
+
emailPreferences?: Prisma.EmailPreferenceUncheckedCreateNestedManyWithoutUserInput;
|
|
5952
|
+
deviceEndpoints?: Prisma.DeviceEndpointUncheckedCreateNestedManyWithoutUserInput;
|
|
5953
|
+
socials?: Prisma.SocialUncheckedCreateNestedManyWithoutUserInput;
|
|
5954
|
+
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutUserInput;
|
|
5955
|
+
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
5956
|
+
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
5957
|
+
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
5958
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
5959
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
5960
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
5961
|
+
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
5962
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
5963
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5964
|
+
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
5965
|
+
reviewedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5966
|
+
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
5967
|
+
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
5968
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
5969
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
5970
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
5971
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
5972
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
5973
|
+
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
5974
|
+
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
5975
|
+
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
5976
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
5977
|
+
};
|
|
5978
|
+
export type UserCreateOrConnectWithoutDocumentReviewsInput = {
|
|
5979
|
+
where: Prisma.UserWhereUniqueInput;
|
|
5980
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutDocumentReviewsInput, Prisma.UserUncheckedCreateWithoutDocumentReviewsInput>;
|
|
5981
|
+
};
|
|
5982
|
+
export type UserUpsertWithoutDocumentReviewsInput = {
|
|
5983
|
+
update: Prisma.XOR<Prisma.UserUpdateWithoutDocumentReviewsInput, Prisma.UserUncheckedUpdateWithoutDocumentReviewsInput>;
|
|
5984
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutDocumentReviewsInput, Prisma.UserUncheckedCreateWithoutDocumentReviewsInput>;
|
|
5985
|
+
where?: Prisma.UserWhereInput;
|
|
5986
|
+
};
|
|
5987
|
+
export type UserUpdateToOneWithWhereWithoutDocumentReviewsInput = {
|
|
5988
|
+
where?: Prisma.UserWhereInput;
|
|
5989
|
+
data: Prisma.XOR<Prisma.UserUpdateWithoutDocumentReviewsInput, Prisma.UserUncheckedUpdateWithoutDocumentReviewsInput>;
|
|
5990
|
+
};
|
|
5991
|
+
export type UserUpdateWithoutDocumentReviewsInput = {
|
|
5992
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5993
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5994
|
+
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5995
|
+
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5996
|
+
firstName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5997
|
+
lastName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5998
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
5999
|
+
isEmailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
6000
|
+
googleId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6001
|
+
avatar?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6002
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
6003
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
6004
|
+
emailVerifiedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
6005
|
+
emailVerificationToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6006
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
6007
|
+
tenant?: Prisma.TenantUpdateOneWithoutUsersNestedInput;
|
|
6008
|
+
tenantMemberships?: Prisma.TenantMembershipUpdateManyWithoutUserNestedInput;
|
|
6009
|
+
userRoles?: Prisma.UserRoleUpdateManyWithoutUserNestedInput;
|
|
6010
|
+
wallet?: Prisma.WalletUpdateOneWithoutUserNestedInput;
|
|
6011
|
+
refreshTokens?: Prisma.RefreshTokenUpdateManyWithoutUserNestedInput;
|
|
6012
|
+
passwordResets?: Prisma.PasswordResetUpdateManyWithoutUserNestedInput;
|
|
6013
|
+
suspensions?: Prisma.UserSuspensionUpdateManyWithoutUserNestedInput;
|
|
6014
|
+
emailPreferences?: Prisma.EmailPreferenceUpdateManyWithoutUserNestedInput;
|
|
6015
|
+
deviceEndpoints?: Prisma.DeviceEndpointUpdateManyWithoutUserNestedInput;
|
|
6016
|
+
socials?: Prisma.SocialUpdateManyWithoutUserNestedInput;
|
|
6017
|
+
properties?: Prisma.PropertyUpdateManyWithoutUserNestedInput;
|
|
6018
|
+
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
6019
|
+
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
6020
|
+
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
6021
|
+
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
6022
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
6023
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
6024
|
+
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
6025
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
6026
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
6027
|
+
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
6028
|
+
reviewedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutReviewerNestedInput;
|
|
6029
|
+
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
6030
|
+
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
6031
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
6032
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
6033
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUpdateManyWithoutRequestedByNestedInput;
|
|
6034
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUpdateManyWithoutAssigneeNestedInput;
|
|
6035
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
6036
|
+
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
6037
|
+
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
6038
|
+
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
6039
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
6040
|
+
};
|
|
6041
|
+
export type UserUncheckedUpdateWithoutDocumentReviewsInput = {
|
|
6042
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
6043
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
6044
|
+
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6045
|
+
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6046
|
+
firstName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6047
|
+
lastName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6048
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
6049
|
+
isEmailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
6050
|
+
googleId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6051
|
+
avatar?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6052
|
+
tenantId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6053
|
+
walletId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6054
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
6055
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
6056
|
+
emailVerifiedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
6057
|
+
emailVerificationToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
6058
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
6059
|
+
tenantMemberships?: Prisma.TenantMembershipUncheckedUpdateManyWithoutUserNestedInput;
|
|
6060
|
+
userRoles?: Prisma.UserRoleUncheckedUpdateManyWithoutUserNestedInput;
|
|
6061
|
+
refreshTokens?: Prisma.RefreshTokenUncheckedUpdateManyWithoutUserNestedInput;
|
|
6062
|
+
passwordResets?: Prisma.PasswordResetUncheckedUpdateManyWithoutUserNestedInput;
|
|
6063
|
+
suspensions?: Prisma.UserSuspensionUncheckedUpdateManyWithoutUserNestedInput;
|
|
6064
|
+
emailPreferences?: Prisma.EmailPreferenceUncheckedUpdateManyWithoutUserNestedInput;
|
|
6065
|
+
deviceEndpoints?: Prisma.DeviceEndpointUncheckedUpdateManyWithoutUserNestedInput;
|
|
6066
|
+
socials?: Prisma.SocialUncheckedUpdateManyWithoutUserNestedInput;
|
|
6067
|
+
properties?: Prisma.PropertyUncheckedUpdateManyWithoutUserNestedInput;
|
|
6068
|
+
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
6069
|
+
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
6070
|
+
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
6071
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
6072
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
6073
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
6074
|
+
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
6075
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
6076
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
6077
|
+
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
6078
|
+
reviewedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
6079
|
+
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
6080
|
+
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
6081
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
6082
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
6083
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
6084
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
6085
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
6086
|
+
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
6087
|
+
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
6088
|
+
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
5769
6089
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
5770
6090
|
};
|
|
5771
6091
|
export type UserCreateWithoutOfferLettersGeneratedInput = {
|
|
@@ -5815,6 +6135,7 @@ export type UserCreateWithoutOfferLettersGeneratedInput = {
|
|
|
5815
6135
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
5816
6136
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
5817
6137
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
6138
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
5818
6139
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
5819
6140
|
};
|
|
5820
6141
|
export type UserUncheckedCreateWithoutOfferLettersGeneratedInput = {
|
|
@@ -5864,6 +6185,7 @@ export type UserUncheckedCreateWithoutOfferLettersGeneratedInput = {
|
|
|
5864
6185
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
5865
6186
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
5866
6187
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
6188
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5867
6189
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
5868
6190
|
};
|
|
5869
6191
|
export type UserCreateOrConnectWithoutOfferLettersGeneratedInput = {
|
|
@@ -5917,6 +6239,7 @@ export type UserCreateWithoutOfferLettersSentInput = {
|
|
|
5917
6239
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
5918
6240
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
5919
6241
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
6242
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
5920
6243
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
5921
6244
|
};
|
|
5922
6245
|
export type UserUncheckedCreateWithoutOfferLettersSentInput = {
|
|
@@ -5966,6 +6289,7 @@ export type UserUncheckedCreateWithoutOfferLettersSentInput = {
|
|
|
5966
6289
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
5967
6290
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
5968
6291
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
6292
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5969
6293
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
5970
6294
|
};
|
|
5971
6295
|
export type UserCreateOrConnectWithoutOfferLettersSentInput = {
|
|
@@ -6028,6 +6352,7 @@ export type UserUpdateWithoutOfferLettersGeneratedInput = {
|
|
|
6028
6352
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
6029
6353
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
6030
6354
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
6355
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
6031
6356
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
6032
6357
|
};
|
|
6033
6358
|
export type UserUncheckedUpdateWithoutOfferLettersGeneratedInput = {
|
|
@@ -6077,6 +6402,7 @@ export type UserUncheckedUpdateWithoutOfferLettersGeneratedInput = {
|
|
|
6077
6402
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
6078
6403
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
6079
6404
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
6405
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
6080
6406
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
6081
6407
|
};
|
|
6082
6408
|
export type UserUpsertWithoutOfferLettersSentInput = {
|
|
@@ -6135,6 +6461,7 @@ export type UserUpdateWithoutOfferLettersSentInput = {
|
|
|
6135
6461
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
6136
6462
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
6137
6463
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
6464
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
6138
6465
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
6139
6466
|
};
|
|
6140
6467
|
export type UserUncheckedUpdateWithoutOfferLettersSentInput = {
|
|
@@ -6184,6 +6511,7 @@ export type UserUncheckedUpdateWithoutOfferLettersSentInput = {
|
|
|
6184
6511
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
6185
6512
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
6186
6513
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
6514
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
6187
6515
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
6188
6516
|
};
|
|
6189
6517
|
export type UserCreateWithoutInitiatedTerminationsInput = {
|
|
@@ -6233,6 +6561,7 @@ export type UserCreateWithoutInitiatedTerminationsInput = {
|
|
|
6233
6561
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
6234
6562
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
6235
6563
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
6564
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
6236
6565
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
6237
6566
|
};
|
|
6238
6567
|
export type UserUncheckedCreateWithoutInitiatedTerminationsInput = {
|
|
@@ -6282,6 +6611,7 @@ export type UserUncheckedCreateWithoutInitiatedTerminationsInput = {
|
|
|
6282
6611
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
6283
6612
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
6284
6613
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
6614
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
6285
6615
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
6286
6616
|
};
|
|
6287
6617
|
export type UserCreateOrConnectWithoutInitiatedTerminationsInput = {
|
|
@@ -6335,6 +6665,7 @@ export type UserCreateWithoutReviewedTerminationsInput = {
|
|
|
6335
6665
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
6336
6666
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
6337
6667
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
6668
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
6338
6669
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
6339
6670
|
};
|
|
6340
6671
|
export type UserUncheckedCreateWithoutReviewedTerminationsInput = {
|
|
@@ -6384,6 +6715,7 @@ export type UserUncheckedCreateWithoutReviewedTerminationsInput = {
|
|
|
6384
6715
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
6385
6716
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
6386
6717
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
6718
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
6387
6719
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
6388
6720
|
};
|
|
6389
6721
|
export type UserCreateOrConnectWithoutReviewedTerminationsInput = {
|
|
@@ -6446,6 +6778,7 @@ export type UserUpdateWithoutInitiatedTerminationsInput = {
|
|
|
6446
6778
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
6447
6779
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
6448
6780
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
6781
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
6449
6782
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
6450
6783
|
};
|
|
6451
6784
|
export type UserUncheckedUpdateWithoutInitiatedTerminationsInput = {
|
|
@@ -6495,6 +6828,7 @@ export type UserUncheckedUpdateWithoutInitiatedTerminationsInput = {
|
|
|
6495
6828
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
6496
6829
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
6497
6830
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
6831
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
6498
6832
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
6499
6833
|
};
|
|
6500
6834
|
export type UserUpsertWithoutReviewedTerminationsInput = {
|
|
@@ -6553,6 +6887,7 @@ export type UserUpdateWithoutReviewedTerminationsInput = {
|
|
|
6553
6887
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
6554
6888
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
6555
6889
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
6890
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
6556
6891
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
6557
6892
|
};
|
|
6558
6893
|
export type UserUncheckedUpdateWithoutReviewedTerminationsInput = {
|
|
@@ -6602,6 +6937,7 @@ export type UserUncheckedUpdateWithoutReviewedTerminationsInput = {
|
|
|
6602
6937
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
6603
6938
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
6604
6939
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
6940
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
6605
6941
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
6606
6942
|
};
|
|
6607
6943
|
export type UserCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
@@ -6651,6 +6987,7 @@ export type UserCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
6651
6987
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
6652
6988
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
6653
6989
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
6990
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
6654
6991
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
6655
6992
|
};
|
|
6656
6993
|
export type UserUncheckedCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
@@ -6700,6 +7037,7 @@ export type UserUncheckedCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
6700
7037
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
6701
7038
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
6702
7039
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
7040
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
6703
7041
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
6704
7042
|
};
|
|
6705
7043
|
export type UserCreateOrConnectWithoutPaymentMethodChangeRequestsInput = {
|
|
@@ -6753,6 +7091,7 @@ export type UserCreateWithoutReviewedChangeRequestsInput = {
|
|
|
6753
7091
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
6754
7092
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
6755
7093
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
7094
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
6756
7095
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
6757
7096
|
};
|
|
6758
7097
|
export type UserUncheckedCreateWithoutReviewedChangeRequestsInput = {
|
|
@@ -6802,6 +7141,7 @@ export type UserUncheckedCreateWithoutReviewedChangeRequestsInput = {
|
|
|
6802
7141
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
6803
7142
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
6804
7143
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
7144
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
6805
7145
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
6806
7146
|
};
|
|
6807
7147
|
export type UserCreateOrConnectWithoutReviewedChangeRequestsInput = {
|
|
@@ -6864,6 +7204,7 @@ export type UserUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
6864
7204
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
6865
7205
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
6866
7206
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
7207
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
6867
7208
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
6868
7209
|
};
|
|
6869
7210
|
export type UserUncheckedUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
@@ -6913,6 +7254,7 @@ export type UserUncheckedUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
6913
7254
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
6914
7255
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
6915
7256
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
7257
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
6916
7258
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
6917
7259
|
};
|
|
6918
7260
|
export type UserUpsertWithoutReviewedChangeRequestsInput = {
|
|
@@ -6971,6 +7313,7 @@ export type UserUpdateWithoutReviewedChangeRequestsInput = {
|
|
|
6971
7313
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
6972
7314
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
6973
7315
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
7316
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
6974
7317
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
6975
7318
|
};
|
|
6976
7319
|
export type UserUncheckedUpdateWithoutReviewedChangeRequestsInput = {
|
|
@@ -7020,6 +7363,7 @@ export type UserUncheckedUpdateWithoutReviewedChangeRequestsInput = {
|
|
|
7020
7363
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
7021
7364
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
7022
7365
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
7366
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
7023
7367
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
7024
7368
|
};
|
|
7025
7369
|
export type UserCreateWithoutTransferRequestsSubmittedInput = {
|
|
@@ -7069,6 +7413,7 @@ export type UserCreateWithoutTransferRequestsSubmittedInput = {
|
|
|
7069
7413
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
7070
7414
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
7071
7415
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
7416
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
7072
7417
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
7073
7418
|
};
|
|
7074
7419
|
export type UserUncheckedCreateWithoutTransferRequestsSubmittedInput = {
|
|
@@ -7118,6 +7463,7 @@ export type UserUncheckedCreateWithoutTransferRequestsSubmittedInput = {
|
|
|
7118
7463
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
7119
7464
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
7120
7465
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
7466
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
7121
7467
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
7122
7468
|
};
|
|
7123
7469
|
export type UserCreateOrConnectWithoutTransferRequestsSubmittedInput = {
|
|
@@ -7171,6 +7517,7 @@ export type UserCreateWithoutTransferRequestsReviewedInput = {
|
|
|
7171
7517
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
7172
7518
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
7173
7519
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
7520
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
7174
7521
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
7175
7522
|
};
|
|
7176
7523
|
export type UserUncheckedCreateWithoutTransferRequestsReviewedInput = {
|
|
@@ -7220,6 +7567,7 @@ export type UserUncheckedCreateWithoutTransferRequestsReviewedInput = {
|
|
|
7220
7567
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
7221
7568
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
7222
7569
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
7570
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
7223
7571
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
7224
7572
|
};
|
|
7225
7573
|
export type UserCreateOrConnectWithoutTransferRequestsReviewedInput = {
|
|
@@ -7282,6 +7630,7 @@ export type UserUpdateWithoutTransferRequestsSubmittedInput = {
|
|
|
7282
7630
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
7283
7631
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
7284
7632
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
7633
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
7285
7634
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
7286
7635
|
};
|
|
7287
7636
|
export type UserUncheckedUpdateWithoutTransferRequestsSubmittedInput = {
|
|
@@ -7331,6 +7680,7 @@ export type UserUncheckedUpdateWithoutTransferRequestsSubmittedInput = {
|
|
|
7331
7680
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
7332
7681
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
7333
7682
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
7683
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
7334
7684
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
7335
7685
|
};
|
|
7336
7686
|
export type UserUpsertWithoutTransferRequestsReviewedInput = {
|
|
@@ -7389,6 +7739,7 @@ export type UserUpdateWithoutTransferRequestsReviewedInput = {
|
|
|
7389
7739
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
7390
7740
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
7391
7741
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
7742
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
7392
7743
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
7393
7744
|
};
|
|
7394
7745
|
export type UserUncheckedUpdateWithoutTransferRequestsReviewedInput = {
|
|
@@ -7438,6 +7789,7 @@ export type UserUncheckedUpdateWithoutTransferRequestsReviewedInput = {
|
|
|
7438
7789
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
7439
7790
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
7440
7791
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
7792
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
7441
7793
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
7442
7794
|
};
|
|
7443
7795
|
export type UserCreateWithoutApprovalRequestsSubmittedInput = {
|
|
@@ -7487,6 +7839,7 @@ export type UserCreateWithoutApprovalRequestsSubmittedInput = {
|
|
|
7487
7839
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
7488
7840
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
7489
7841
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
7842
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
7490
7843
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
7491
7844
|
};
|
|
7492
7845
|
export type UserUncheckedCreateWithoutApprovalRequestsSubmittedInput = {
|
|
@@ -7536,6 +7889,7 @@ export type UserUncheckedCreateWithoutApprovalRequestsSubmittedInput = {
|
|
|
7536
7889
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
7537
7890
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
7538
7891
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
7892
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
7539
7893
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
7540
7894
|
};
|
|
7541
7895
|
export type UserCreateOrConnectWithoutApprovalRequestsSubmittedInput = {
|
|
@@ -7589,6 +7943,7 @@ export type UserCreateWithoutApprovalRequestsAssignedInput = {
|
|
|
7589
7943
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
7590
7944
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
7591
7945
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
7946
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
7592
7947
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
7593
7948
|
};
|
|
7594
7949
|
export type UserUncheckedCreateWithoutApprovalRequestsAssignedInput = {
|
|
@@ -7638,6 +7993,7 @@ export type UserUncheckedCreateWithoutApprovalRequestsAssignedInput = {
|
|
|
7638
7993
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
7639
7994
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
7640
7995
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
7996
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
7641
7997
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
7642
7998
|
};
|
|
7643
7999
|
export type UserCreateOrConnectWithoutApprovalRequestsAssignedInput = {
|
|
@@ -7691,6 +8047,7 @@ export type UserCreateWithoutApprovalRequestsReviewedInput = {
|
|
|
7691
8047
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
7692
8048
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
7693
8049
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
8050
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
7694
8051
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
7695
8052
|
};
|
|
7696
8053
|
export type UserUncheckedCreateWithoutApprovalRequestsReviewedInput = {
|
|
@@ -7740,6 +8097,7 @@ export type UserUncheckedCreateWithoutApprovalRequestsReviewedInput = {
|
|
|
7740
8097
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
7741
8098
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
7742
8099
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
8100
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
7743
8101
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
7744
8102
|
};
|
|
7745
8103
|
export type UserCreateOrConnectWithoutApprovalRequestsReviewedInput = {
|
|
@@ -7802,6 +8160,7 @@ export type UserUpdateWithoutApprovalRequestsSubmittedInput = {
|
|
|
7802
8160
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
7803
8161
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
7804
8162
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
8163
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
7805
8164
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
7806
8165
|
};
|
|
7807
8166
|
export type UserUncheckedUpdateWithoutApprovalRequestsSubmittedInput = {
|
|
@@ -7851,6 +8210,7 @@ export type UserUncheckedUpdateWithoutApprovalRequestsSubmittedInput = {
|
|
|
7851
8210
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
7852
8211
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
7853
8212
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
8213
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
7854
8214
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
7855
8215
|
};
|
|
7856
8216
|
export type UserUpsertWithoutApprovalRequestsAssignedInput = {
|
|
@@ -7909,6 +8269,7 @@ export type UserUpdateWithoutApprovalRequestsAssignedInput = {
|
|
|
7909
8269
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
7910
8270
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
7911
8271
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
8272
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
7912
8273
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
7913
8274
|
};
|
|
7914
8275
|
export type UserUncheckedUpdateWithoutApprovalRequestsAssignedInput = {
|
|
@@ -7958,6 +8319,7 @@ export type UserUncheckedUpdateWithoutApprovalRequestsAssignedInput = {
|
|
|
7958
8319
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
7959
8320
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
7960
8321
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
8322
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
7961
8323
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
7962
8324
|
};
|
|
7963
8325
|
export type UserUpsertWithoutApprovalRequestsReviewedInput = {
|
|
@@ -8016,6 +8378,7 @@ export type UserUpdateWithoutApprovalRequestsReviewedInput = {
|
|
|
8016
8378
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
8017
8379
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
8018
8380
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
8381
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
8019
8382
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
8020
8383
|
};
|
|
8021
8384
|
export type UserUncheckedUpdateWithoutApprovalRequestsReviewedInput = {
|
|
@@ -8065,6 +8428,7 @@ export type UserUncheckedUpdateWithoutApprovalRequestsReviewedInput = {
|
|
|
8065
8428
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
8066
8429
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
8067
8430
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
8431
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
8068
8432
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
8069
8433
|
};
|
|
8070
8434
|
export type UserCreateManyTenantInput = {
|
|
@@ -8132,6 +8496,7 @@ export type UserUpdateWithoutTenantInput = {
|
|
|
8132
8496
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
8133
8497
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
8134
8498
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
8499
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
8135
8500
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
8136
8501
|
};
|
|
8137
8502
|
export type UserUncheckedUpdateWithoutTenantInput = {
|
|
@@ -8181,6 +8546,7 @@ export type UserUncheckedUpdateWithoutTenantInput = {
|
|
|
8181
8546
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
8182
8547
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
8183
8548
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
8549
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
8184
8550
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
8185
8551
|
};
|
|
8186
8552
|
export type UserUncheckedUpdateManyWithoutTenantInput = {
|
|
@@ -8235,6 +8601,7 @@ export type UserCountOutputType = {
|
|
|
8235
8601
|
requestedRefunds: number;
|
|
8236
8602
|
approvedRefunds: number;
|
|
8237
8603
|
processedRefunds: number;
|
|
8604
|
+
documentReviews: number;
|
|
8238
8605
|
organizationMemberships: number;
|
|
8239
8606
|
};
|
|
8240
8607
|
export type UserCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
@@ -8268,6 +8635,7 @@ export type UserCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.I
|
|
|
8268
8635
|
requestedRefunds?: boolean | UserCountOutputTypeCountRequestedRefundsArgs;
|
|
8269
8636
|
approvedRefunds?: boolean | UserCountOutputTypeCountApprovedRefundsArgs;
|
|
8270
8637
|
processedRefunds?: boolean | UserCountOutputTypeCountProcessedRefundsArgs;
|
|
8638
|
+
documentReviews?: boolean | UserCountOutputTypeCountDocumentReviewsArgs;
|
|
8271
8639
|
organizationMemberships?: boolean | UserCountOutputTypeCountOrganizationMembershipsArgs;
|
|
8272
8640
|
};
|
|
8273
8641
|
/**
|
|
@@ -8459,6 +8827,12 @@ export type UserCountOutputTypeCountApprovedRefundsArgs<ExtArgs extends runtime.
|
|
|
8459
8827
|
export type UserCountOutputTypeCountProcessedRefundsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
8460
8828
|
where?: Prisma.ApplicationRefundWhereInput;
|
|
8461
8829
|
};
|
|
8830
|
+
/**
|
|
8831
|
+
* UserCountOutputType without action
|
|
8832
|
+
*/
|
|
8833
|
+
export type UserCountOutputTypeCountDocumentReviewsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
8834
|
+
where?: Prisma.DocumentReviewWhereInput;
|
|
8835
|
+
};
|
|
8462
8836
|
/**
|
|
8463
8837
|
* UserCountOutputType without action
|
|
8464
8838
|
*/
|
|
@@ -8515,6 +8889,7 @@ export type UserSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
8515
8889
|
requestedRefunds?: boolean | Prisma.User$requestedRefundsArgs<ExtArgs>;
|
|
8516
8890
|
approvedRefunds?: boolean | Prisma.User$approvedRefundsArgs<ExtArgs>;
|
|
8517
8891
|
processedRefunds?: boolean | Prisma.User$processedRefundsArgs<ExtArgs>;
|
|
8892
|
+
documentReviews?: boolean | Prisma.User$documentReviewsArgs<ExtArgs>;
|
|
8518
8893
|
organizationMemberships?: boolean | Prisma.User$organizationMembershipsArgs<ExtArgs>;
|
|
8519
8894
|
_count?: boolean | Prisma.UserCountOutputTypeDefaultArgs<ExtArgs>;
|
|
8520
8895
|
}, ExtArgs["result"]["user"]>;
|
|
@@ -8571,6 +8946,7 @@ export type UserInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
8571
8946
|
requestedRefunds?: boolean | Prisma.User$requestedRefundsArgs<ExtArgs>;
|
|
8572
8947
|
approvedRefunds?: boolean | Prisma.User$approvedRefundsArgs<ExtArgs>;
|
|
8573
8948
|
processedRefunds?: boolean | Prisma.User$processedRefundsArgs<ExtArgs>;
|
|
8949
|
+
documentReviews?: boolean | Prisma.User$documentReviewsArgs<ExtArgs>;
|
|
8574
8950
|
organizationMemberships?: boolean | Prisma.User$organizationMembershipsArgs<ExtArgs>;
|
|
8575
8951
|
_count?: boolean | Prisma.UserCountOutputTypeDefaultArgs<ExtArgs>;
|
|
8576
8952
|
};
|
|
@@ -8609,6 +8985,7 @@ export type $UserPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
8609
8985
|
requestedRefunds: Prisma.$ApplicationRefundPayload<ExtArgs>[];
|
|
8610
8986
|
approvedRefunds: Prisma.$ApplicationRefundPayload<ExtArgs>[];
|
|
8611
8987
|
processedRefunds: Prisma.$ApplicationRefundPayload<ExtArgs>[];
|
|
8988
|
+
documentReviews: Prisma.$DocumentReviewPayload<ExtArgs>[];
|
|
8612
8989
|
organizationMemberships: Prisma.$OrganizationMemberPayload<ExtArgs>[];
|
|
8613
8990
|
};
|
|
8614
8991
|
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
|
@@ -8938,6 +9315,7 @@ export interface Prisma__UserClient<T, Null = never, ExtArgs extends runtime.Typ
|
|
|
8938
9315
|
requestedRefunds<T extends Prisma.User$requestedRefundsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$requestedRefundsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ApplicationRefundPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
8939
9316
|
approvedRefunds<T extends Prisma.User$approvedRefundsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$approvedRefundsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ApplicationRefundPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
8940
9317
|
processedRefunds<T extends Prisma.User$processedRefundsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$processedRefundsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ApplicationRefundPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
9318
|
+
documentReviews<T extends Prisma.User$documentReviewsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$documentReviewsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$DocumentReviewPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
8941
9319
|
organizationMemberships<T extends Prisma.User$organizationMembershipsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$organizationMembershipsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$OrganizationMemberPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
8942
9320
|
/**
|
|
8943
9321
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
@@ -10034,6 +10412,29 @@ export type User$processedRefundsArgs<ExtArgs extends runtime.Types.Extensions.I
|
|
|
10034
10412
|
skip?: number;
|
|
10035
10413
|
distinct?: Prisma.ApplicationRefundScalarFieldEnum | Prisma.ApplicationRefundScalarFieldEnum[];
|
|
10036
10414
|
};
|
|
10415
|
+
/**
|
|
10416
|
+
* User.documentReviews
|
|
10417
|
+
*/
|
|
10418
|
+
export type User$documentReviewsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
10419
|
+
/**
|
|
10420
|
+
* Select specific fields to fetch from the DocumentReview
|
|
10421
|
+
*/
|
|
10422
|
+
select?: Prisma.DocumentReviewSelect<ExtArgs> | null;
|
|
10423
|
+
/**
|
|
10424
|
+
* Omit specific fields from the DocumentReview
|
|
10425
|
+
*/
|
|
10426
|
+
omit?: Prisma.DocumentReviewOmit<ExtArgs> | null;
|
|
10427
|
+
/**
|
|
10428
|
+
* Choose, which related nodes to fetch as well
|
|
10429
|
+
*/
|
|
10430
|
+
include?: Prisma.DocumentReviewInclude<ExtArgs> | null;
|
|
10431
|
+
where?: Prisma.DocumentReviewWhereInput;
|
|
10432
|
+
orderBy?: Prisma.DocumentReviewOrderByWithRelationInput | Prisma.DocumentReviewOrderByWithRelationInput[];
|
|
10433
|
+
cursor?: Prisma.DocumentReviewWhereUniqueInput;
|
|
10434
|
+
take?: number;
|
|
10435
|
+
skip?: number;
|
|
10436
|
+
distinct?: Prisma.DocumentReviewScalarFieldEnum | Prisma.DocumentReviewScalarFieldEnum[];
|
|
10437
|
+
};
|
|
10037
10438
|
/**
|
|
10038
10439
|
* User.organizationMemberships
|
|
10039
10440
|
*/
|