@valentine-efagene/qshelter-common 2.0.141 → 2.0.143
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 +30 -30
- 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 +93 -5
- package/dist/generated/client/internal/prismaNamespace.js +19 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +21 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +19 -0
- package/dist/generated/client/models/DocumentReview.d.ts +0 -3
- package/dist/generated/client/models/QuestionnairePhase.d.ts +171 -0
- package/dist/generated/client/models/QuestionnairePhaseReview.d.ts +1476 -0
- package/dist/generated/client/models/QuestionnairePhaseReview.js +1 -0
- package/dist/generated/client/models/Tenant.d.ts +563 -0
- package/dist/generated/client/models/User.d.ts +399 -0
- package/dist/generated/client/models/index.d.ts +1 -0
- package/dist/generated/client/models/index.js +1 -0
- package/dist/generated/client/models.d.ts +1 -0
- package/package.json +1 -1
- package/prisma/migrations/20260120024650_add_questionnaire_phase_review/migration.sql +102 -0
- package/prisma/schema.prisma +46 -6
|
@@ -266,6 +266,7 @@ export type UserWhereInput = {
|
|
|
266
266
|
approvedRefunds?: Prisma.ApplicationRefundListRelationFilter;
|
|
267
267
|
processedRefunds?: Prisma.ApplicationRefundListRelationFilter;
|
|
268
268
|
documentReviews?: Prisma.DocumentReviewListRelationFilter;
|
|
269
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewListRelationFilter;
|
|
269
270
|
organizationMemberships?: Prisma.OrganizationMemberListRelationFilter;
|
|
270
271
|
};
|
|
271
272
|
export type UserOrderByWithRelationInput = {
|
|
@@ -318,6 +319,7 @@ export type UserOrderByWithRelationInput = {
|
|
|
318
319
|
approvedRefunds?: Prisma.ApplicationRefundOrderByRelationAggregateInput;
|
|
319
320
|
processedRefunds?: Prisma.ApplicationRefundOrderByRelationAggregateInput;
|
|
320
321
|
documentReviews?: Prisma.DocumentReviewOrderByRelationAggregateInput;
|
|
322
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewOrderByRelationAggregateInput;
|
|
321
323
|
organizationMemberships?: Prisma.OrganizationMemberOrderByRelationAggregateInput;
|
|
322
324
|
_relevance?: Prisma.UserOrderByRelevanceInput;
|
|
323
325
|
};
|
|
@@ -374,6 +376,7 @@ export type UserWhereUniqueInput = Prisma.AtLeast<{
|
|
|
374
376
|
approvedRefunds?: Prisma.ApplicationRefundListRelationFilter;
|
|
375
377
|
processedRefunds?: Prisma.ApplicationRefundListRelationFilter;
|
|
376
378
|
documentReviews?: Prisma.DocumentReviewListRelationFilter;
|
|
379
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewListRelationFilter;
|
|
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
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
469
472
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
470
473
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
474
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
471
475
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
472
476
|
};
|
|
473
477
|
export type UserUncheckedCreateInput = {
|
|
@@ -518,6 +522,7 @@ export type UserUncheckedCreateInput = {
|
|
|
518
522
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
519
523
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
520
524
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
525
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
521
526
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
522
527
|
};
|
|
523
528
|
export type UserUpdateInput = {
|
|
@@ -568,6 +573,7 @@ export type UserUpdateInput = {
|
|
|
568
573
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
569
574
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
570
575
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
576
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
571
577
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
572
578
|
};
|
|
573
579
|
export type UserUncheckedUpdateInput = {
|
|
@@ -618,6 +624,7 @@ export type UserUncheckedUpdateInput = {
|
|
|
618
624
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
619
625
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
620
626
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
627
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
621
628
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
622
629
|
};
|
|
623
630
|
export type UserCreateManyInput = {
|
|
@@ -1020,6 +1027,18 @@ export type UserUpdateOneWithoutProcessedRefundsNestedInput = {
|
|
|
1020
1027
|
connect?: Prisma.UserWhereUniqueInput;
|
|
1021
1028
|
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutProcessedRefundsInput, Prisma.UserUpdateWithoutProcessedRefundsInput>, Prisma.UserUncheckedUpdateWithoutProcessedRefundsInput>;
|
|
1022
1029
|
};
|
|
1030
|
+
export type UserCreateNestedOneWithoutQuestionnaireReviewsInput = {
|
|
1031
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutQuestionnaireReviewsInput, Prisma.UserUncheckedCreateWithoutQuestionnaireReviewsInput>;
|
|
1032
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutQuestionnaireReviewsInput;
|
|
1033
|
+
connect?: Prisma.UserWhereUniqueInput;
|
|
1034
|
+
};
|
|
1035
|
+
export type UserUpdateOneRequiredWithoutQuestionnaireReviewsNestedInput = {
|
|
1036
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutQuestionnaireReviewsInput, Prisma.UserUncheckedCreateWithoutQuestionnaireReviewsInput>;
|
|
1037
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutQuestionnaireReviewsInput;
|
|
1038
|
+
upsert?: Prisma.UserUpsertWithoutQuestionnaireReviewsInput;
|
|
1039
|
+
connect?: Prisma.UserWhereUniqueInput;
|
|
1040
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutQuestionnaireReviewsInput, Prisma.UserUpdateWithoutQuestionnaireReviewsInput>, Prisma.UserUncheckedUpdateWithoutQuestionnaireReviewsInput>;
|
|
1041
|
+
};
|
|
1023
1042
|
export type UserCreateNestedOneWithoutApplicationPaymentsInput = {
|
|
1024
1043
|
create?: Prisma.XOR<Prisma.UserCreateWithoutApplicationPaymentsInput, Prisma.UserUncheckedCreateWithoutApplicationPaymentsInput>;
|
|
1025
1044
|
connectOrCreate?: Prisma.UserCreateOrConnectWithoutApplicationPaymentsInput;
|
|
@@ -1283,6 +1302,7 @@ export type UserCreateWithoutUserRolesInput = {
|
|
|
1283
1302
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
1284
1303
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
1285
1304
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
1305
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
1286
1306
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
1287
1307
|
};
|
|
1288
1308
|
export type UserUncheckedCreateWithoutUserRolesInput = {
|
|
@@ -1332,6 +1352,7 @@ export type UserUncheckedCreateWithoutUserRolesInput = {
|
|
|
1332
1352
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
1333
1353
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
1334
1354
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
1355
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
1335
1356
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
1336
1357
|
};
|
|
1337
1358
|
export type UserCreateOrConnectWithoutUserRolesInput = {
|
|
@@ -1394,6 +1415,7 @@ export type UserUpdateWithoutUserRolesInput = {
|
|
|
1394
1415
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
1395
1416
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
1396
1417
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
1418
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
1397
1419
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
1398
1420
|
};
|
|
1399
1421
|
export type UserUncheckedUpdateWithoutUserRolesInput = {
|
|
@@ -1443,6 +1465,7 @@ export type UserUncheckedUpdateWithoutUserRolesInput = {
|
|
|
1443
1465
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
1444
1466
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
1445
1467
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
1468
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
1446
1469
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
1447
1470
|
};
|
|
1448
1471
|
export type UserCreateWithoutTenantMembershipsInput = {
|
|
@@ -1492,6 +1515,7 @@ export type UserCreateWithoutTenantMembershipsInput = {
|
|
|
1492
1515
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
1493
1516
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
1494
1517
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
1518
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
1495
1519
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
1496
1520
|
};
|
|
1497
1521
|
export type UserUncheckedCreateWithoutTenantMembershipsInput = {
|
|
@@ -1541,6 +1565,7 @@ export type UserUncheckedCreateWithoutTenantMembershipsInput = {
|
|
|
1541
1565
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
1542
1566
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
1543
1567
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
1568
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
1544
1569
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
1545
1570
|
};
|
|
1546
1571
|
export type UserCreateOrConnectWithoutTenantMembershipsInput = {
|
|
@@ -1603,6 +1628,7 @@ export type UserUpdateWithoutTenantMembershipsInput = {
|
|
|
1603
1628
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
1604
1629
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
1605
1630
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
1631
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
1606
1632
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
1607
1633
|
};
|
|
1608
1634
|
export type UserUncheckedUpdateWithoutTenantMembershipsInput = {
|
|
@@ -1652,6 +1678,7 @@ export type UserUncheckedUpdateWithoutTenantMembershipsInput = {
|
|
|
1652
1678
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
1653
1679
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
1654
1680
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
1681
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
1655
1682
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
1656
1683
|
};
|
|
1657
1684
|
export type UserCreateWithoutOrganizationMembershipsInput = {
|
|
@@ -1702,6 +1729,7 @@ export type UserCreateWithoutOrganizationMembershipsInput = {
|
|
|
1702
1729
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
1703
1730
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
1704
1731
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
1732
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
1705
1733
|
};
|
|
1706
1734
|
export type UserUncheckedCreateWithoutOrganizationMembershipsInput = {
|
|
1707
1735
|
id?: string;
|
|
@@ -1751,6 +1779,7 @@ export type UserUncheckedCreateWithoutOrganizationMembershipsInput = {
|
|
|
1751
1779
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
1752
1780
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
1753
1781
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
1782
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
1754
1783
|
};
|
|
1755
1784
|
export type UserCreateOrConnectWithoutOrganizationMembershipsInput = {
|
|
1756
1785
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -1813,6 +1842,7 @@ export type UserUpdateWithoutOrganizationMembershipsInput = {
|
|
|
1813
1842
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
1814
1843
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
1815
1844
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
1845
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
1816
1846
|
};
|
|
1817
1847
|
export type UserUncheckedUpdateWithoutOrganizationMembershipsInput = {
|
|
1818
1848
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -1862,6 +1892,7 @@ export type UserUncheckedUpdateWithoutOrganizationMembershipsInput = {
|
|
|
1862
1892
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
1863
1893
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
1864
1894
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
1895
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
1865
1896
|
};
|
|
1866
1897
|
export type UserCreateWithoutTenantInput = {
|
|
1867
1898
|
id?: string;
|
|
@@ -1910,6 +1941,7 @@ export type UserCreateWithoutTenantInput = {
|
|
|
1910
1941
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
1911
1942
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
1912
1943
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
1944
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
1913
1945
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
1914
1946
|
};
|
|
1915
1947
|
export type UserUncheckedCreateWithoutTenantInput = {
|
|
@@ -1959,6 +1991,7 @@ export type UserUncheckedCreateWithoutTenantInput = {
|
|
|
1959
1991
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
1960
1992
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
1961
1993
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
1994
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
1962
1995
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
1963
1996
|
};
|
|
1964
1997
|
export type UserCreateOrConnectWithoutTenantInput = {
|
|
@@ -2051,6 +2084,7 @@ export type UserCreateWithoutRefreshTokensInput = {
|
|
|
2051
2084
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
2052
2085
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
2053
2086
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
2087
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
2054
2088
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
2055
2089
|
};
|
|
2056
2090
|
export type UserUncheckedCreateWithoutRefreshTokensInput = {
|
|
@@ -2100,6 +2134,7 @@ export type UserUncheckedCreateWithoutRefreshTokensInput = {
|
|
|
2100
2134
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
2101
2135
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
2102
2136
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
2137
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
2103
2138
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
2104
2139
|
};
|
|
2105
2140
|
export type UserCreateOrConnectWithoutRefreshTokensInput = {
|
|
@@ -2162,6 +2197,7 @@ export type UserUpdateWithoutRefreshTokensInput = {
|
|
|
2162
2197
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
2163
2198
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
2164
2199
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
2200
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
2165
2201
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
2166
2202
|
};
|
|
2167
2203
|
export type UserUncheckedUpdateWithoutRefreshTokensInput = {
|
|
@@ -2211,6 +2247,7 @@ export type UserUncheckedUpdateWithoutRefreshTokensInput = {
|
|
|
2211
2247
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
2212
2248
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
2213
2249
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
2250
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
2214
2251
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
2215
2252
|
};
|
|
2216
2253
|
export type UserCreateWithoutPasswordResetsInput = {
|
|
@@ -2260,6 +2297,7 @@ export type UserCreateWithoutPasswordResetsInput = {
|
|
|
2260
2297
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
2261
2298
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
2262
2299
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
2300
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
2263
2301
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
2264
2302
|
};
|
|
2265
2303
|
export type UserUncheckedCreateWithoutPasswordResetsInput = {
|
|
@@ -2309,6 +2347,7 @@ export type UserUncheckedCreateWithoutPasswordResetsInput = {
|
|
|
2309
2347
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
2310
2348
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
2311
2349
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
2350
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
2312
2351
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
2313
2352
|
};
|
|
2314
2353
|
export type UserCreateOrConnectWithoutPasswordResetsInput = {
|
|
@@ -2371,6 +2410,7 @@ export type UserUpdateWithoutPasswordResetsInput = {
|
|
|
2371
2410
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
2372
2411
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
2373
2412
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
2413
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
2374
2414
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
2375
2415
|
};
|
|
2376
2416
|
export type UserUncheckedUpdateWithoutPasswordResetsInput = {
|
|
@@ -2420,6 +2460,7 @@ export type UserUncheckedUpdateWithoutPasswordResetsInput = {
|
|
|
2420
2460
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
2421
2461
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
2422
2462
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
2463
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
2423
2464
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
2424
2465
|
};
|
|
2425
2466
|
export type UserCreateWithoutSuspensionsInput = {
|
|
@@ -2469,6 +2510,7 @@ export type UserCreateWithoutSuspensionsInput = {
|
|
|
2469
2510
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
2470
2511
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
2471
2512
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
2513
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
2472
2514
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
2473
2515
|
};
|
|
2474
2516
|
export type UserUncheckedCreateWithoutSuspensionsInput = {
|
|
@@ -2518,6 +2560,7 @@ export type UserUncheckedCreateWithoutSuspensionsInput = {
|
|
|
2518
2560
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
2519
2561
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
2520
2562
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
2563
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
2521
2564
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
2522
2565
|
};
|
|
2523
2566
|
export type UserCreateOrConnectWithoutSuspensionsInput = {
|
|
@@ -2580,6 +2623,7 @@ export type UserUpdateWithoutSuspensionsInput = {
|
|
|
2580
2623
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
2581
2624
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
2582
2625
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
2626
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
2583
2627
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
2584
2628
|
};
|
|
2585
2629
|
export type UserUncheckedUpdateWithoutSuspensionsInput = {
|
|
@@ -2629,6 +2673,7 @@ export type UserUncheckedUpdateWithoutSuspensionsInput = {
|
|
|
2629
2673
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
2630
2674
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
2631
2675
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
2676
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
2632
2677
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
2633
2678
|
};
|
|
2634
2679
|
export type UserCreateWithoutEmailPreferencesInput = {
|
|
@@ -2678,6 +2723,7 @@ export type UserCreateWithoutEmailPreferencesInput = {
|
|
|
2678
2723
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
2679
2724
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
2680
2725
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
2726
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
2681
2727
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
2682
2728
|
};
|
|
2683
2729
|
export type UserUncheckedCreateWithoutEmailPreferencesInput = {
|
|
@@ -2727,6 +2773,7 @@ export type UserUncheckedCreateWithoutEmailPreferencesInput = {
|
|
|
2727
2773
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
2728
2774
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
2729
2775
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
2776
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
2730
2777
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
2731
2778
|
};
|
|
2732
2779
|
export type UserCreateOrConnectWithoutEmailPreferencesInput = {
|
|
@@ -2789,6 +2836,7 @@ export type UserUpdateWithoutEmailPreferencesInput = {
|
|
|
2789
2836
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
2790
2837
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
2791
2838
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
2839
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
2792
2840
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
2793
2841
|
};
|
|
2794
2842
|
export type UserUncheckedUpdateWithoutEmailPreferencesInput = {
|
|
@@ -2838,6 +2886,7 @@ export type UserUncheckedUpdateWithoutEmailPreferencesInput = {
|
|
|
2838
2886
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
2839
2887
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
2840
2888
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
2889
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
2841
2890
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
2842
2891
|
};
|
|
2843
2892
|
export type UserCreateWithoutDeviceEndpointsInput = {
|
|
@@ -2887,6 +2936,7 @@ export type UserCreateWithoutDeviceEndpointsInput = {
|
|
|
2887
2936
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
2888
2937
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
2889
2938
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
2939
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
2890
2940
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
2891
2941
|
};
|
|
2892
2942
|
export type UserUncheckedCreateWithoutDeviceEndpointsInput = {
|
|
@@ -2936,6 +2986,7 @@ export type UserUncheckedCreateWithoutDeviceEndpointsInput = {
|
|
|
2936
2986
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
2937
2987
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
2938
2988
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
2989
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
2939
2990
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
2940
2991
|
};
|
|
2941
2992
|
export type UserCreateOrConnectWithoutDeviceEndpointsInput = {
|
|
@@ -2998,6 +3049,7 @@ export type UserUpdateWithoutDeviceEndpointsInput = {
|
|
|
2998
3049
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
2999
3050
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
3000
3051
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
3052
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
3001
3053
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
3002
3054
|
};
|
|
3003
3055
|
export type UserUncheckedUpdateWithoutDeviceEndpointsInput = {
|
|
@@ -3047,6 +3099,7 @@ export type UserUncheckedUpdateWithoutDeviceEndpointsInput = {
|
|
|
3047
3099
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
3048
3100
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
3049
3101
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
3102
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
3050
3103
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
3051
3104
|
};
|
|
3052
3105
|
export type UserCreateWithoutSocialsInput = {
|
|
@@ -3096,6 +3149,7 @@ export type UserCreateWithoutSocialsInput = {
|
|
|
3096
3149
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
3097
3150
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
3098
3151
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
3152
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
3099
3153
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
3100
3154
|
};
|
|
3101
3155
|
export type UserUncheckedCreateWithoutSocialsInput = {
|
|
@@ -3145,6 +3199,7 @@ export type UserUncheckedCreateWithoutSocialsInput = {
|
|
|
3145
3199
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
3146
3200
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
3147
3201
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
3202
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
3148
3203
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
3149
3204
|
};
|
|
3150
3205
|
export type UserCreateOrConnectWithoutSocialsInput = {
|
|
@@ -3207,6 +3262,7 @@ export type UserUpdateWithoutSocialsInput = {
|
|
|
3207
3262
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
3208
3263
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
3209
3264
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
3265
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
3210
3266
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
3211
3267
|
};
|
|
3212
3268
|
export type UserUncheckedUpdateWithoutSocialsInput = {
|
|
@@ -3256,6 +3312,7 @@ export type UserUncheckedUpdateWithoutSocialsInput = {
|
|
|
3256
3312
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
3257
3313
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
3258
3314
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
3315
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
3259
3316
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
3260
3317
|
};
|
|
3261
3318
|
export type UserCreateWithoutWalletInput = {
|
|
@@ -3305,6 +3362,7 @@ export type UserCreateWithoutWalletInput = {
|
|
|
3305
3362
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
3306
3363
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
3307
3364
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
3365
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
3308
3366
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
3309
3367
|
};
|
|
3310
3368
|
export type UserUncheckedCreateWithoutWalletInput = {
|
|
@@ -3354,6 +3412,7 @@ export type UserUncheckedCreateWithoutWalletInput = {
|
|
|
3354
3412
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
3355
3413
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
3356
3414
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
3415
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
3357
3416
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
3358
3417
|
};
|
|
3359
3418
|
export type UserCreateOrConnectWithoutWalletInput = {
|
|
@@ -3416,6 +3475,7 @@ export type UserUpdateWithoutWalletInput = {
|
|
|
3416
3475
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
3417
3476
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
3418
3477
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
3478
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
3419
3479
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
3420
3480
|
};
|
|
3421
3481
|
export type UserUncheckedUpdateWithoutWalletInput = {
|
|
@@ -3465,6 +3525,7 @@ export type UserUncheckedUpdateWithoutWalletInput = {
|
|
|
3465
3525
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
3466
3526
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
3467
3527
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
3528
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
3468
3529
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
3469
3530
|
};
|
|
3470
3531
|
export type UserCreateWithoutPropertiesInput = {
|
|
@@ -3514,6 +3575,7 @@ export type UserCreateWithoutPropertiesInput = {
|
|
|
3514
3575
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
3515
3576
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
3516
3577
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
3578
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
3517
3579
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
3518
3580
|
};
|
|
3519
3581
|
export type UserUncheckedCreateWithoutPropertiesInput = {
|
|
@@ -3563,6 +3625,7 @@ export type UserUncheckedCreateWithoutPropertiesInput = {
|
|
|
3563
3625
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
3564
3626
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
3565
3627
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
3628
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
3566
3629
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
3567
3630
|
};
|
|
3568
3631
|
export type UserCreateOrConnectWithoutPropertiesInput = {
|
|
@@ -3625,6 +3688,7 @@ export type UserUpdateWithoutPropertiesInput = {
|
|
|
3625
3688
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
3626
3689
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
3627
3690
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
3691
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
3628
3692
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
3629
3693
|
};
|
|
3630
3694
|
export type UserUncheckedUpdateWithoutPropertiesInput = {
|
|
@@ -3674,6 +3738,7 @@ export type UserUncheckedUpdateWithoutPropertiesInput = {
|
|
|
3674
3738
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
3675
3739
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
3676
3740
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
3741
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
3677
3742
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
3678
3743
|
};
|
|
3679
3744
|
export type UserCreateWithoutApplicationsInput = {
|
|
@@ -3723,6 +3788,7 @@ export type UserCreateWithoutApplicationsInput = {
|
|
|
3723
3788
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
3724
3789
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
3725
3790
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
3791
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
3726
3792
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
3727
3793
|
};
|
|
3728
3794
|
export type UserUncheckedCreateWithoutApplicationsInput = {
|
|
@@ -3772,6 +3838,7 @@ export type UserUncheckedCreateWithoutApplicationsInput = {
|
|
|
3772
3838
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
3773
3839
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
3774
3840
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
3841
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
3775
3842
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
3776
3843
|
};
|
|
3777
3844
|
export type UserCreateOrConnectWithoutApplicationsInput = {
|
|
@@ -3825,6 +3892,7 @@ export type UserCreateWithoutSoldApplicationsInput = {
|
|
|
3825
3892
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
3826
3893
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
3827
3894
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
3895
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
3828
3896
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
3829
3897
|
};
|
|
3830
3898
|
export type UserUncheckedCreateWithoutSoldApplicationsInput = {
|
|
@@ -3874,6 +3942,7 @@ export type UserUncheckedCreateWithoutSoldApplicationsInput = {
|
|
|
3874
3942
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
3875
3943
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
3876
3944
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
3945
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
3877
3946
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
3878
3947
|
};
|
|
3879
3948
|
export type UserCreateOrConnectWithoutSoldApplicationsInput = {
|
|
@@ -3936,6 +4005,7 @@ export type UserUpdateWithoutApplicationsInput = {
|
|
|
3936
4005
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
3937
4006
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
3938
4007
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
4008
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
3939
4009
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
3940
4010
|
};
|
|
3941
4011
|
export type UserUncheckedUpdateWithoutApplicationsInput = {
|
|
@@ -3985,6 +4055,7 @@ export type UserUncheckedUpdateWithoutApplicationsInput = {
|
|
|
3985
4055
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
3986
4056
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
3987
4057
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
4058
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
3988
4059
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
3989
4060
|
};
|
|
3990
4061
|
export type UserUpsertWithoutSoldApplicationsInput = {
|
|
@@ -4043,6 +4114,7 @@ export type UserUpdateWithoutSoldApplicationsInput = {
|
|
|
4043
4114
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
4044
4115
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
4045
4116
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
4117
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
4046
4118
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
4047
4119
|
};
|
|
4048
4120
|
export type UserUncheckedUpdateWithoutSoldApplicationsInput = {
|
|
@@ -4092,6 +4164,7 @@ export type UserUncheckedUpdateWithoutSoldApplicationsInput = {
|
|
|
4092
4164
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
4093
4165
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
4094
4166
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
4167
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
4095
4168
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
4096
4169
|
};
|
|
4097
4170
|
export type UserCreateWithoutRequestedRefundsInput = {
|
|
@@ -4141,6 +4214,7 @@ export type UserCreateWithoutRequestedRefundsInput = {
|
|
|
4141
4214
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
4142
4215
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
4143
4216
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
4217
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
4144
4218
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
4145
4219
|
};
|
|
4146
4220
|
export type UserUncheckedCreateWithoutRequestedRefundsInput = {
|
|
@@ -4190,6 +4264,7 @@ export type UserUncheckedCreateWithoutRequestedRefundsInput = {
|
|
|
4190
4264
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
4191
4265
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
4192
4266
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4267
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4193
4268
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
4194
4269
|
};
|
|
4195
4270
|
export type UserCreateOrConnectWithoutRequestedRefundsInput = {
|
|
@@ -4243,6 +4318,7 @@ export type UserCreateWithoutApprovedRefundsInput = {
|
|
|
4243
4318
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
4244
4319
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
4245
4320
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
4321
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
4246
4322
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
4247
4323
|
};
|
|
4248
4324
|
export type UserUncheckedCreateWithoutApprovedRefundsInput = {
|
|
@@ -4292,6 +4368,7 @@ export type UserUncheckedCreateWithoutApprovedRefundsInput = {
|
|
|
4292
4368
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4293
4369
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
4294
4370
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4371
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4295
4372
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
4296
4373
|
};
|
|
4297
4374
|
export type UserCreateOrConnectWithoutApprovedRefundsInput = {
|
|
@@ -4345,6 +4422,7 @@ export type UserCreateWithoutProcessedRefundsInput = {
|
|
|
4345
4422
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
4346
4423
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
4347
4424
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
4425
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
4348
4426
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
4349
4427
|
};
|
|
4350
4428
|
export type UserUncheckedCreateWithoutProcessedRefundsInput = {
|
|
@@ -4394,6 +4472,7 @@ export type UserUncheckedCreateWithoutProcessedRefundsInput = {
|
|
|
4394
4472
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4395
4473
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
4396
4474
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4475
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4397
4476
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
4398
4477
|
};
|
|
4399
4478
|
export type UserCreateOrConnectWithoutProcessedRefundsInput = {
|
|
@@ -4456,6 +4535,7 @@ export type UserUpdateWithoutRequestedRefundsInput = {
|
|
|
4456
4535
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
4457
4536
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
4458
4537
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
4538
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
4459
4539
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
4460
4540
|
};
|
|
4461
4541
|
export type UserUncheckedUpdateWithoutRequestedRefundsInput = {
|
|
@@ -4505,6 +4585,7 @@ export type UserUncheckedUpdateWithoutRequestedRefundsInput = {
|
|
|
4505
4585
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
4506
4586
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
4507
4587
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
4588
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
4508
4589
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
4509
4590
|
};
|
|
4510
4591
|
export type UserUpsertWithoutApprovedRefundsInput = {
|
|
@@ -4563,6 +4644,7 @@ export type UserUpdateWithoutApprovedRefundsInput = {
|
|
|
4563
4644
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
4564
4645
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
4565
4646
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
4647
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
4566
4648
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
4567
4649
|
};
|
|
4568
4650
|
export type UserUncheckedUpdateWithoutApprovedRefundsInput = {
|
|
@@ -4612,6 +4694,7 @@ export type UserUncheckedUpdateWithoutApprovedRefundsInput = {
|
|
|
4612
4694
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
4613
4695
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
4614
4696
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
4697
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
4615
4698
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
4616
4699
|
};
|
|
4617
4700
|
export type UserUpsertWithoutProcessedRefundsInput = {
|
|
@@ -4670,6 +4753,7 @@ export type UserUpdateWithoutProcessedRefundsInput = {
|
|
|
4670
4753
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
4671
4754
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
4672
4755
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
4756
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
4673
4757
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
4674
4758
|
};
|
|
4675
4759
|
export type UserUncheckedUpdateWithoutProcessedRefundsInput = {
|
|
@@ -4719,6 +4803,220 @@ export type UserUncheckedUpdateWithoutProcessedRefundsInput = {
|
|
|
4719
4803
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
4720
4804
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
4721
4805
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
4806
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
4807
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
4808
|
+
};
|
|
4809
|
+
export type UserCreateWithoutQuestionnaireReviewsInput = {
|
|
4810
|
+
id?: string;
|
|
4811
|
+
email: string;
|
|
4812
|
+
password?: string | null;
|
|
4813
|
+
phone?: string | null;
|
|
4814
|
+
firstName?: string | null;
|
|
4815
|
+
lastName?: string | null;
|
|
4816
|
+
isActive?: boolean;
|
|
4817
|
+
isEmailVerified?: boolean;
|
|
4818
|
+
googleId?: string | null;
|
|
4819
|
+
avatar?: string | null;
|
|
4820
|
+
createdAt?: Date | string;
|
|
4821
|
+
updatedAt?: Date | string;
|
|
4822
|
+
emailVerifiedAt?: Date | string | null;
|
|
4823
|
+
emailVerificationToken?: string | null;
|
|
4824
|
+
lastLoginAt?: Date | string | null;
|
|
4825
|
+
tenant?: Prisma.TenantCreateNestedOneWithoutUsersInput;
|
|
4826
|
+
tenantMemberships?: Prisma.TenantMembershipCreateNestedManyWithoutUserInput;
|
|
4827
|
+
userRoles?: Prisma.UserRoleCreateNestedManyWithoutUserInput;
|
|
4828
|
+
wallet?: Prisma.WalletCreateNestedOneWithoutUserInput;
|
|
4829
|
+
refreshTokens?: Prisma.RefreshTokenCreateNestedManyWithoutUserInput;
|
|
4830
|
+
passwordResets?: Prisma.PasswordResetCreateNestedManyWithoutUserInput;
|
|
4831
|
+
suspensions?: Prisma.UserSuspensionCreateNestedManyWithoutUserInput;
|
|
4832
|
+
emailPreferences?: Prisma.EmailPreferenceCreateNestedManyWithoutUserInput;
|
|
4833
|
+
deviceEndpoints?: Prisma.DeviceEndpointCreateNestedManyWithoutUserInput;
|
|
4834
|
+
socials?: Prisma.SocialCreateNestedManyWithoutUserInput;
|
|
4835
|
+
properties?: Prisma.PropertyCreateNestedManyWithoutUserInput;
|
|
4836
|
+
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
4837
|
+
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
4838
|
+
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
4839
|
+
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
4840
|
+
documentApprovals?: Prisma.DocumentApprovalCreateNestedManyWithoutReviewerInput;
|
|
4841
|
+
completedStages?: Prisma.ApprovalStageProgressCreateNestedManyWithoutCompletedByInput;
|
|
4842
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
4843
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
4844
|
+
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
4845
|
+
reviewedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutReviewerInput;
|
|
4846
|
+
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
4847
|
+
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
4848
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
4849
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
4850
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestCreateNestedManyWithoutRequestedByInput;
|
|
4851
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestCreateNestedManyWithoutAssigneeInput;
|
|
4852
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
4853
|
+
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
4854
|
+
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
4855
|
+
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
4856
|
+
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
4857
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
4858
|
+
};
|
|
4859
|
+
export type UserUncheckedCreateWithoutQuestionnaireReviewsInput = {
|
|
4860
|
+
id?: string;
|
|
4861
|
+
email: string;
|
|
4862
|
+
password?: string | null;
|
|
4863
|
+
phone?: string | null;
|
|
4864
|
+
firstName?: string | null;
|
|
4865
|
+
lastName?: string | null;
|
|
4866
|
+
isActive?: boolean;
|
|
4867
|
+
isEmailVerified?: boolean;
|
|
4868
|
+
googleId?: string | null;
|
|
4869
|
+
avatar?: string | null;
|
|
4870
|
+
tenantId?: string | null;
|
|
4871
|
+
walletId?: string | null;
|
|
4872
|
+
createdAt?: Date | string;
|
|
4873
|
+
updatedAt?: Date | string;
|
|
4874
|
+
emailVerifiedAt?: Date | string | null;
|
|
4875
|
+
emailVerificationToken?: string | null;
|
|
4876
|
+
lastLoginAt?: Date | string | null;
|
|
4877
|
+
tenantMemberships?: Prisma.TenantMembershipUncheckedCreateNestedManyWithoutUserInput;
|
|
4878
|
+
userRoles?: Prisma.UserRoleUncheckedCreateNestedManyWithoutUserInput;
|
|
4879
|
+
refreshTokens?: Prisma.RefreshTokenUncheckedCreateNestedManyWithoutUserInput;
|
|
4880
|
+
passwordResets?: Prisma.PasswordResetUncheckedCreateNestedManyWithoutUserInput;
|
|
4881
|
+
suspensions?: Prisma.UserSuspensionUncheckedCreateNestedManyWithoutUserInput;
|
|
4882
|
+
emailPreferences?: Prisma.EmailPreferenceUncheckedCreateNestedManyWithoutUserInput;
|
|
4883
|
+
deviceEndpoints?: Prisma.DeviceEndpointUncheckedCreateNestedManyWithoutUserInput;
|
|
4884
|
+
socials?: Prisma.SocialUncheckedCreateNestedManyWithoutUserInput;
|
|
4885
|
+
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutUserInput;
|
|
4886
|
+
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
4887
|
+
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
4888
|
+
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
4889
|
+
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
4890
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4891
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedCreateNestedManyWithoutCompletedByInput;
|
|
4892
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
4893
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4894
|
+
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
4895
|
+
reviewedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4896
|
+
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
4897
|
+
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
4898
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4899
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
4900
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4901
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
4902
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
4903
|
+
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4904
|
+
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
4905
|
+
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
4906
|
+
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4907
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
4908
|
+
};
|
|
4909
|
+
export type UserCreateOrConnectWithoutQuestionnaireReviewsInput = {
|
|
4910
|
+
where: Prisma.UserWhereUniqueInput;
|
|
4911
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutQuestionnaireReviewsInput, Prisma.UserUncheckedCreateWithoutQuestionnaireReviewsInput>;
|
|
4912
|
+
};
|
|
4913
|
+
export type UserUpsertWithoutQuestionnaireReviewsInput = {
|
|
4914
|
+
update: Prisma.XOR<Prisma.UserUpdateWithoutQuestionnaireReviewsInput, Prisma.UserUncheckedUpdateWithoutQuestionnaireReviewsInput>;
|
|
4915
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutQuestionnaireReviewsInput, Prisma.UserUncheckedCreateWithoutQuestionnaireReviewsInput>;
|
|
4916
|
+
where?: Prisma.UserWhereInput;
|
|
4917
|
+
};
|
|
4918
|
+
export type UserUpdateToOneWithWhereWithoutQuestionnaireReviewsInput = {
|
|
4919
|
+
where?: Prisma.UserWhereInput;
|
|
4920
|
+
data: Prisma.XOR<Prisma.UserUpdateWithoutQuestionnaireReviewsInput, Prisma.UserUncheckedUpdateWithoutQuestionnaireReviewsInput>;
|
|
4921
|
+
};
|
|
4922
|
+
export type UserUpdateWithoutQuestionnaireReviewsInput = {
|
|
4923
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
4924
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
4925
|
+
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
4926
|
+
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
4927
|
+
firstName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
4928
|
+
lastName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
4929
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
4930
|
+
isEmailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
4931
|
+
googleId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
4932
|
+
avatar?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
4933
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
4934
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
4935
|
+
emailVerifiedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
4936
|
+
emailVerificationToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
4937
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
4938
|
+
tenant?: Prisma.TenantUpdateOneWithoutUsersNestedInput;
|
|
4939
|
+
tenantMemberships?: Prisma.TenantMembershipUpdateManyWithoutUserNestedInput;
|
|
4940
|
+
userRoles?: Prisma.UserRoleUpdateManyWithoutUserNestedInput;
|
|
4941
|
+
wallet?: Prisma.WalletUpdateOneWithoutUserNestedInput;
|
|
4942
|
+
refreshTokens?: Prisma.RefreshTokenUpdateManyWithoutUserNestedInput;
|
|
4943
|
+
passwordResets?: Prisma.PasswordResetUpdateManyWithoutUserNestedInput;
|
|
4944
|
+
suspensions?: Prisma.UserSuspensionUpdateManyWithoutUserNestedInput;
|
|
4945
|
+
emailPreferences?: Prisma.EmailPreferenceUpdateManyWithoutUserNestedInput;
|
|
4946
|
+
deviceEndpoints?: Prisma.DeviceEndpointUpdateManyWithoutUserNestedInput;
|
|
4947
|
+
socials?: Prisma.SocialUpdateManyWithoutUserNestedInput;
|
|
4948
|
+
properties?: Prisma.PropertyUpdateManyWithoutUserNestedInput;
|
|
4949
|
+
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
4950
|
+
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
4951
|
+
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
4952
|
+
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
4953
|
+
documentApprovals?: Prisma.DocumentApprovalUpdateManyWithoutReviewerNestedInput;
|
|
4954
|
+
completedStages?: Prisma.ApprovalStageProgressUpdateManyWithoutCompletedByNestedInput;
|
|
4955
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
4956
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
4957
|
+
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
4958
|
+
reviewedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutReviewerNestedInput;
|
|
4959
|
+
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
4960
|
+
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
4961
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
4962
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
4963
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUpdateManyWithoutRequestedByNestedInput;
|
|
4964
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUpdateManyWithoutAssigneeNestedInput;
|
|
4965
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
4966
|
+
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
4967
|
+
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
4968
|
+
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
4969
|
+
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
4970
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
4971
|
+
};
|
|
4972
|
+
export type UserUncheckedUpdateWithoutQuestionnaireReviewsInput = {
|
|
4973
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
4974
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
4975
|
+
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
4976
|
+
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
4977
|
+
firstName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
4978
|
+
lastName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
4979
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
4980
|
+
isEmailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
4981
|
+
googleId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
4982
|
+
avatar?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
4983
|
+
tenantId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
4984
|
+
walletId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
4985
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
4986
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
4987
|
+
emailVerifiedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
4988
|
+
emailVerificationToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
4989
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
4990
|
+
tenantMemberships?: Prisma.TenantMembershipUncheckedUpdateManyWithoutUserNestedInput;
|
|
4991
|
+
userRoles?: Prisma.UserRoleUncheckedUpdateManyWithoutUserNestedInput;
|
|
4992
|
+
refreshTokens?: Prisma.RefreshTokenUncheckedUpdateManyWithoutUserNestedInput;
|
|
4993
|
+
passwordResets?: Prisma.PasswordResetUncheckedUpdateManyWithoutUserNestedInput;
|
|
4994
|
+
suspensions?: Prisma.UserSuspensionUncheckedUpdateManyWithoutUserNestedInput;
|
|
4995
|
+
emailPreferences?: Prisma.EmailPreferenceUncheckedUpdateManyWithoutUserNestedInput;
|
|
4996
|
+
deviceEndpoints?: Prisma.DeviceEndpointUncheckedUpdateManyWithoutUserNestedInput;
|
|
4997
|
+
socials?: Prisma.SocialUncheckedUpdateManyWithoutUserNestedInput;
|
|
4998
|
+
properties?: Prisma.PropertyUncheckedUpdateManyWithoutUserNestedInput;
|
|
4999
|
+
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
5000
|
+
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
5001
|
+
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
5002
|
+
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
5003
|
+
documentApprovals?: Prisma.DocumentApprovalUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5004
|
+
completedStages?: Prisma.ApprovalStageProgressUncheckedUpdateManyWithoutCompletedByNestedInput;
|
|
5005
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
5006
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5007
|
+
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
5008
|
+
reviewedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5009
|
+
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
5010
|
+
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
5011
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
5012
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
5013
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
5014
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
5015
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
5016
|
+
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
5017
|
+
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
5018
|
+
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
5019
|
+
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
4722
5020
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
4723
5021
|
};
|
|
4724
5022
|
export type UserCreateWithoutApplicationPaymentsInput = {
|
|
@@ -4768,6 +5066,7 @@ export type UserCreateWithoutApplicationPaymentsInput = {
|
|
|
4768
5066
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
4769
5067
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
4770
5068
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
5069
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
4771
5070
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
4772
5071
|
};
|
|
4773
5072
|
export type UserUncheckedCreateWithoutApplicationPaymentsInput = {
|
|
@@ -4817,6 +5116,7 @@ export type UserUncheckedCreateWithoutApplicationPaymentsInput = {
|
|
|
4817
5116
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
4818
5117
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
4819
5118
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5119
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4820
5120
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
4821
5121
|
};
|
|
4822
5122
|
export type UserCreateOrConnectWithoutApplicationPaymentsInput = {
|
|
@@ -4879,6 +5179,7 @@ export type UserUpdateWithoutApplicationPaymentsInput = {
|
|
|
4879
5179
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
4880
5180
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
4881
5181
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
5182
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
4882
5183
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
4883
5184
|
};
|
|
4884
5185
|
export type UserUncheckedUpdateWithoutApplicationPaymentsInput = {
|
|
@@ -4928,6 +5229,7 @@ export type UserUncheckedUpdateWithoutApplicationPaymentsInput = {
|
|
|
4928
5229
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
4929
5230
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
4930
5231
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5232
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
4931
5233
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
4932
5234
|
};
|
|
4933
5235
|
export type UserCreateWithoutUploadedDocsInput = {
|
|
@@ -4977,6 +5279,7 @@ export type UserCreateWithoutUploadedDocsInput = {
|
|
|
4977
5279
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
4978
5280
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
4979
5281
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
5282
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
4980
5283
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
4981
5284
|
};
|
|
4982
5285
|
export type UserUncheckedCreateWithoutUploadedDocsInput = {
|
|
@@ -5026,6 +5329,7 @@ export type UserUncheckedCreateWithoutUploadedDocsInput = {
|
|
|
5026
5329
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
5027
5330
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
5028
5331
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5332
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5029
5333
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
5030
5334
|
};
|
|
5031
5335
|
export type UserCreateOrConnectWithoutUploadedDocsInput = {
|
|
@@ -5088,6 +5392,7 @@ export type UserUpdateWithoutUploadedDocsInput = {
|
|
|
5088
5392
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
5089
5393
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
5090
5394
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
5395
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
5091
5396
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
5092
5397
|
};
|
|
5093
5398
|
export type UserUncheckedUpdateWithoutUploadedDocsInput = {
|
|
@@ -5137,6 +5442,7 @@ export type UserUncheckedUpdateWithoutUploadedDocsInput = {
|
|
|
5137
5442
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
5138
5443
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
5139
5444
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5445
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5140
5446
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
5141
5447
|
};
|
|
5142
5448
|
export type UserCreateWithoutDocumentReviewsInput = {
|
|
@@ -5186,6 +5492,7 @@ export type UserCreateWithoutDocumentReviewsInput = {
|
|
|
5186
5492
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
5187
5493
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
5188
5494
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
5495
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
5189
5496
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
5190
5497
|
};
|
|
5191
5498
|
export type UserUncheckedCreateWithoutDocumentReviewsInput = {
|
|
@@ -5235,6 +5542,7 @@ export type UserUncheckedCreateWithoutDocumentReviewsInput = {
|
|
|
5235
5542
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
5236
5543
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
5237
5544
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
5545
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5238
5546
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
5239
5547
|
};
|
|
5240
5548
|
export type UserCreateOrConnectWithoutDocumentReviewsInput = {
|
|
@@ -5297,6 +5605,7 @@ export type UserUpdateWithoutDocumentReviewsInput = {
|
|
|
5297
5605
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
5298
5606
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
5299
5607
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
5608
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
5300
5609
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
5301
5610
|
};
|
|
5302
5611
|
export type UserUncheckedUpdateWithoutDocumentReviewsInput = {
|
|
@@ -5346,6 +5655,7 @@ export type UserUncheckedUpdateWithoutDocumentReviewsInput = {
|
|
|
5346
5655
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
5347
5656
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
5348
5657
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
5658
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5349
5659
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
5350
5660
|
};
|
|
5351
5661
|
export type UserCreateWithoutCompletedStagesInput = {
|
|
@@ -5395,6 +5705,7 @@ export type UserCreateWithoutCompletedStagesInput = {
|
|
|
5395
5705
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
5396
5706
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
5397
5707
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
5708
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
5398
5709
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
5399
5710
|
};
|
|
5400
5711
|
export type UserUncheckedCreateWithoutCompletedStagesInput = {
|
|
@@ -5444,6 +5755,7 @@ export type UserUncheckedCreateWithoutCompletedStagesInput = {
|
|
|
5444
5755
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
5445
5756
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
5446
5757
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5758
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5447
5759
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
5448
5760
|
};
|
|
5449
5761
|
export type UserCreateOrConnectWithoutCompletedStagesInput = {
|
|
@@ -5506,6 +5818,7 @@ export type UserUpdateWithoutCompletedStagesInput = {
|
|
|
5506
5818
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
5507
5819
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
5508
5820
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
5821
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
5509
5822
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
5510
5823
|
};
|
|
5511
5824
|
export type UserUncheckedUpdateWithoutCompletedStagesInput = {
|
|
@@ -5555,6 +5868,7 @@ export type UserUncheckedUpdateWithoutCompletedStagesInput = {
|
|
|
5555
5868
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
5556
5869
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
5557
5870
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5871
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5558
5872
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
5559
5873
|
};
|
|
5560
5874
|
export type UserCreateWithoutDocumentApprovalsInput = {
|
|
@@ -5604,6 +5918,7 @@ export type UserCreateWithoutDocumentApprovalsInput = {
|
|
|
5604
5918
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
5605
5919
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
5606
5920
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
5921
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
5607
5922
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
5608
5923
|
};
|
|
5609
5924
|
export type UserUncheckedCreateWithoutDocumentApprovalsInput = {
|
|
@@ -5653,6 +5968,7 @@ export type UserUncheckedCreateWithoutDocumentApprovalsInput = {
|
|
|
5653
5968
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
5654
5969
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
5655
5970
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5971
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5656
5972
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
5657
5973
|
};
|
|
5658
5974
|
export type UserCreateOrConnectWithoutDocumentApprovalsInput = {
|
|
@@ -5715,6 +6031,7 @@ export type UserUpdateWithoutDocumentApprovalsInput = {
|
|
|
5715
6031
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
5716
6032
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
5717
6033
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
6034
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
5718
6035
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
5719
6036
|
};
|
|
5720
6037
|
export type UserUncheckedUpdateWithoutDocumentApprovalsInput = {
|
|
@@ -5764,6 +6081,7 @@ export type UserUncheckedUpdateWithoutDocumentApprovalsInput = {
|
|
|
5764
6081
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
5765
6082
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
5766
6083
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
6084
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5767
6085
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
5768
6086
|
};
|
|
5769
6087
|
export type UserCreateWithoutOfferLettersGeneratedInput = {
|
|
@@ -5813,6 +6131,7 @@ export type UserCreateWithoutOfferLettersGeneratedInput = {
|
|
|
5813
6131
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
5814
6132
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
5815
6133
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
6134
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
5816
6135
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
5817
6136
|
};
|
|
5818
6137
|
export type UserUncheckedCreateWithoutOfferLettersGeneratedInput = {
|
|
@@ -5862,6 +6181,7 @@ export type UserUncheckedCreateWithoutOfferLettersGeneratedInput = {
|
|
|
5862
6181
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
5863
6182
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
5864
6183
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
6184
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5865
6185
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
5866
6186
|
};
|
|
5867
6187
|
export type UserCreateOrConnectWithoutOfferLettersGeneratedInput = {
|
|
@@ -5915,6 +6235,7 @@ export type UserCreateWithoutOfferLettersSentInput = {
|
|
|
5915
6235
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
5916
6236
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
5917
6237
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
6238
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
5918
6239
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
5919
6240
|
};
|
|
5920
6241
|
export type UserUncheckedCreateWithoutOfferLettersSentInput = {
|
|
@@ -5964,6 +6285,7 @@ export type UserUncheckedCreateWithoutOfferLettersSentInput = {
|
|
|
5964
6285
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
5965
6286
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
5966
6287
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
6288
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
5967
6289
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
5968
6290
|
};
|
|
5969
6291
|
export type UserCreateOrConnectWithoutOfferLettersSentInput = {
|
|
@@ -6026,6 +6348,7 @@ export type UserUpdateWithoutOfferLettersGeneratedInput = {
|
|
|
6026
6348
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
6027
6349
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
6028
6350
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
6351
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
6029
6352
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
6030
6353
|
};
|
|
6031
6354
|
export type UserUncheckedUpdateWithoutOfferLettersGeneratedInput = {
|
|
@@ -6075,6 +6398,7 @@ export type UserUncheckedUpdateWithoutOfferLettersGeneratedInput = {
|
|
|
6075
6398
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
6076
6399
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
6077
6400
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
6401
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
6078
6402
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
6079
6403
|
};
|
|
6080
6404
|
export type UserUpsertWithoutOfferLettersSentInput = {
|
|
@@ -6133,6 +6457,7 @@ export type UserUpdateWithoutOfferLettersSentInput = {
|
|
|
6133
6457
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
6134
6458
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
6135
6459
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
6460
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
6136
6461
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
6137
6462
|
};
|
|
6138
6463
|
export type UserUncheckedUpdateWithoutOfferLettersSentInput = {
|
|
@@ -6182,6 +6507,7 @@ export type UserUncheckedUpdateWithoutOfferLettersSentInput = {
|
|
|
6182
6507
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
6183
6508
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
6184
6509
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
6510
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
6185
6511
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
6186
6512
|
};
|
|
6187
6513
|
export type UserCreateWithoutInitiatedTerminationsInput = {
|
|
@@ -6231,6 +6557,7 @@ export type UserCreateWithoutInitiatedTerminationsInput = {
|
|
|
6231
6557
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
6232
6558
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
6233
6559
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
6560
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
6234
6561
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
6235
6562
|
};
|
|
6236
6563
|
export type UserUncheckedCreateWithoutInitiatedTerminationsInput = {
|
|
@@ -6280,6 +6607,7 @@ export type UserUncheckedCreateWithoutInitiatedTerminationsInput = {
|
|
|
6280
6607
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
6281
6608
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
6282
6609
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
6610
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
6283
6611
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
6284
6612
|
};
|
|
6285
6613
|
export type UserCreateOrConnectWithoutInitiatedTerminationsInput = {
|
|
@@ -6333,6 +6661,7 @@ export type UserCreateWithoutReviewedTerminationsInput = {
|
|
|
6333
6661
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
6334
6662
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
6335
6663
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
6664
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
6336
6665
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
6337
6666
|
};
|
|
6338
6667
|
export type UserUncheckedCreateWithoutReviewedTerminationsInput = {
|
|
@@ -6382,6 +6711,7 @@ export type UserUncheckedCreateWithoutReviewedTerminationsInput = {
|
|
|
6382
6711
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
6383
6712
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
6384
6713
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
6714
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
6385
6715
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
6386
6716
|
};
|
|
6387
6717
|
export type UserCreateOrConnectWithoutReviewedTerminationsInput = {
|
|
@@ -6444,6 +6774,7 @@ export type UserUpdateWithoutInitiatedTerminationsInput = {
|
|
|
6444
6774
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
6445
6775
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
6446
6776
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
6777
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
6447
6778
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
6448
6779
|
};
|
|
6449
6780
|
export type UserUncheckedUpdateWithoutInitiatedTerminationsInput = {
|
|
@@ -6493,6 +6824,7 @@ export type UserUncheckedUpdateWithoutInitiatedTerminationsInput = {
|
|
|
6493
6824
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
6494
6825
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
6495
6826
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
6827
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
6496
6828
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
6497
6829
|
};
|
|
6498
6830
|
export type UserUpsertWithoutReviewedTerminationsInput = {
|
|
@@ -6551,6 +6883,7 @@ export type UserUpdateWithoutReviewedTerminationsInput = {
|
|
|
6551
6883
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
6552
6884
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
6553
6885
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
6886
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
6554
6887
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
6555
6888
|
};
|
|
6556
6889
|
export type UserUncheckedUpdateWithoutReviewedTerminationsInput = {
|
|
@@ -6600,6 +6933,7 @@ export type UserUncheckedUpdateWithoutReviewedTerminationsInput = {
|
|
|
6600
6933
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
6601
6934
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
6602
6935
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
6936
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
6603
6937
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
6604
6938
|
};
|
|
6605
6939
|
export type UserCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
@@ -6649,6 +6983,7 @@ export type UserCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
6649
6983
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
6650
6984
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
6651
6985
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
6986
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
6652
6987
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
6653
6988
|
};
|
|
6654
6989
|
export type UserUncheckedCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
@@ -6698,6 +7033,7 @@ export type UserUncheckedCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
6698
7033
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
6699
7034
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
6700
7035
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
7036
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
6701
7037
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
6702
7038
|
};
|
|
6703
7039
|
export type UserCreateOrConnectWithoutPaymentMethodChangeRequestsInput = {
|
|
@@ -6751,6 +7087,7 @@ export type UserCreateWithoutReviewedChangeRequestsInput = {
|
|
|
6751
7087
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
6752
7088
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
6753
7089
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
7090
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
6754
7091
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
6755
7092
|
};
|
|
6756
7093
|
export type UserUncheckedCreateWithoutReviewedChangeRequestsInput = {
|
|
@@ -6800,6 +7137,7 @@ export type UserUncheckedCreateWithoutReviewedChangeRequestsInput = {
|
|
|
6800
7137
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
6801
7138
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
6802
7139
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
7140
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
6803
7141
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
6804
7142
|
};
|
|
6805
7143
|
export type UserCreateOrConnectWithoutReviewedChangeRequestsInput = {
|
|
@@ -6862,6 +7200,7 @@ export type UserUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
6862
7200
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
6863
7201
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
6864
7202
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
7203
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
6865
7204
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
6866
7205
|
};
|
|
6867
7206
|
export type UserUncheckedUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
@@ -6911,6 +7250,7 @@ export type UserUncheckedUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
6911
7250
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
6912
7251
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
6913
7252
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
7253
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
6914
7254
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
6915
7255
|
};
|
|
6916
7256
|
export type UserUpsertWithoutReviewedChangeRequestsInput = {
|
|
@@ -6969,6 +7309,7 @@ export type UserUpdateWithoutReviewedChangeRequestsInput = {
|
|
|
6969
7309
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
6970
7310
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
6971
7311
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
7312
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
6972
7313
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
6973
7314
|
};
|
|
6974
7315
|
export type UserUncheckedUpdateWithoutReviewedChangeRequestsInput = {
|
|
@@ -7018,6 +7359,7 @@ export type UserUncheckedUpdateWithoutReviewedChangeRequestsInput = {
|
|
|
7018
7359
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
7019
7360
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
7020
7361
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
7362
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
7021
7363
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
7022
7364
|
};
|
|
7023
7365
|
export type UserCreateWithoutTransferRequestsSubmittedInput = {
|
|
@@ -7067,6 +7409,7 @@ export type UserCreateWithoutTransferRequestsSubmittedInput = {
|
|
|
7067
7409
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
7068
7410
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
7069
7411
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
7412
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
7070
7413
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
7071
7414
|
};
|
|
7072
7415
|
export type UserUncheckedCreateWithoutTransferRequestsSubmittedInput = {
|
|
@@ -7116,6 +7459,7 @@ export type UserUncheckedCreateWithoutTransferRequestsSubmittedInput = {
|
|
|
7116
7459
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
7117
7460
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
7118
7461
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
7462
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
7119
7463
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
7120
7464
|
};
|
|
7121
7465
|
export type UserCreateOrConnectWithoutTransferRequestsSubmittedInput = {
|
|
@@ -7169,6 +7513,7 @@ export type UserCreateWithoutTransferRequestsReviewedInput = {
|
|
|
7169
7513
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
7170
7514
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
7171
7515
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
7516
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
7172
7517
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
7173
7518
|
};
|
|
7174
7519
|
export type UserUncheckedCreateWithoutTransferRequestsReviewedInput = {
|
|
@@ -7218,6 +7563,7 @@ export type UserUncheckedCreateWithoutTransferRequestsReviewedInput = {
|
|
|
7218
7563
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
7219
7564
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
7220
7565
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
7566
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
7221
7567
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
7222
7568
|
};
|
|
7223
7569
|
export type UserCreateOrConnectWithoutTransferRequestsReviewedInput = {
|
|
@@ -7280,6 +7626,7 @@ export type UserUpdateWithoutTransferRequestsSubmittedInput = {
|
|
|
7280
7626
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
7281
7627
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
7282
7628
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
7629
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
7283
7630
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
7284
7631
|
};
|
|
7285
7632
|
export type UserUncheckedUpdateWithoutTransferRequestsSubmittedInput = {
|
|
@@ -7329,6 +7676,7 @@ export type UserUncheckedUpdateWithoutTransferRequestsSubmittedInput = {
|
|
|
7329
7676
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
7330
7677
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
7331
7678
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
7679
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
7332
7680
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
7333
7681
|
};
|
|
7334
7682
|
export type UserUpsertWithoutTransferRequestsReviewedInput = {
|
|
@@ -7387,6 +7735,7 @@ export type UserUpdateWithoutTransferRequestsReviewedInput = {
|
|
|
7387
7735
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
7388
7736
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
7389
7737
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
7738
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
7390
7739
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
7391
7740
|
};
|
|
7392
7741
|
export type UserUncheckedUpdateWithoutTransferRequestsReviewedInput = {
|
|
@@ -7436,6 +7785,7 @@ export type UserUncheckedUpdateWithoutTransferRequestsReviewedInput = {
|
|
|
7436
7785
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
7437
7786
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
7438
7787
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
7788
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
7439
7789
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
7440
7790
|
};
|
|
7441
7791
|
export type UserCreateWithoutApprovalRequestsSubmittedInput = {
|
|
@@ -7485,6 +7835,7 @@ export type UserCreateWithoutApprovalRequestsSubmittedInput = {
|
|
|
7485
7835
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
7486
7836
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
7487
7837
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
7838
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
7488
7839
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
7489
7840
|
};
|
|
7490
7841
|
export type UserUncheckedCreateWithoutApprovalRequestsSubmittedInput = {
|
|
@@ -7534,6 +7885,7 @@ export type UserUncheckedCreateWithoutApprovalRequestsSubmittedInput = {
|
|
|
7534
7885
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
7535
7886
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
7536
7887
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
7888
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
7537
7889
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
7538
7890
|
};
|
|
7539
7891
|
export type UserCreateOrConnectWithoutApprovalRequestsSubmittedInput = {
|
|
@@ -7587,6 +7939,7 @@ export type UserCreateWithoutApprovalRequestsAssignedInput = {
|
|
|
7587
7939
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
7588
7940
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
7589
7941
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
7942
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
7590
7943
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
7591
7944
|
};
|
|
7592
7945
|
export type UserUncheckedCreateWithoutApprovalRequestsAssignedInput = {
|
|
@@ -7636,6 +7989,7 @@ export type UserUncheckedCreateWithoutApprovalRequestsAssignedInput = {
|
|
|
7636
7989
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
7637
7990
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
7638
7991
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
7992
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
7639
7993
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
7640
7994
|
};
|
|
7641
7995
|
export type UserCreateOrConnectWithoutApprovalRequestsAssignedInput = {
|
|
@@ -7689,6 +8043,7 @@ export type UserCreateWithoutApprovalRequestsReviewedInput = {
|
|
|
7689
8043
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
7690
8044
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
7691
8045
|
documentReviews?: Prisma.DocumentReviewCreateNestedManyWithoutReviewerInput;
|
|
8046
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewCreateNestedManyWithoutReviewerInput;
|
|
7692
8047
|
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
7693
8048
|
};
|
|
7694
8049
|
export type UserUncheckedCreateWithoutApprovalRequestsReviewedInput = {
|
|
@@ -7738,6 +8093,7 @@ export type UserUncheckedCreateWithoutApprovalRequestsReviewedInput = {
|
|
|
7738
8093
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
7739
8094
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
7740
8095
|
documentReviews?: Prisma.DocumentReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
8096
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedCreateNestedManyWithoutReviewerInput;
|
|
7741
8097
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
7742
8098
|
};
|
|
7743
8099
|
export type UserCreateOrConnectWithoutApprovalRequestsReviewedInput = {
|
|
@@ -7800,6 +8156,7 @@ export type UserUpdateWithoutApprovalRequestsSubmittedInput = {
|
|
|
7800
8156
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
7801
8157
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
7802
8158
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
8159
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
7803
8160
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
7804
8161
|
};
|
|
7805
8162
|
export type UserUncheckedUpdateWithoutApprovalRequestsSubmittedInput = {
|
|
@@ -7849,6 +8206,7 @@ export type UserUncheckedUpdateWithoutApprovalRequestsSubmittedInput = {
|
|
|
7849
8206
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
7850
8207
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
7851
8208
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
8209
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
7852
8210
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
7853
8211
|
};
|
|
7854
8212
|
export type UserUpsertWithoutApprovalRequestsAssignedInput = {
|
|
@@ -7907,6 +8265,7 @@ export type UserUpdateWithoutApprovalRequestsAssignedInput = {
|
|
|
7907
8265
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
7908
8266
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
7909
8267
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
8268
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
7910
8269
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
7911
8270
|
};
|
|
7912
8271
|
export type UserUncheckedUpdateWithoutApprovalRequestsAssignedInput = {
|
|
@@ -7956,6 +8315,7 @@ export type UserUncheckedUpdateWithoutApprovalRequestsAssignedInput = {
|
|
|
7956
8315
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
7957
8316
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
7958
8317
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
8318
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
7959
8319
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
7960
8320
|
};
|
|
7961
8321
|
export type UserUpsertWithoutApprovalRequestsReviewedInput = {
|
|
@@ -8014,6 +8374,7 @@ export type UserUpdateWithoutApprovalRequestsReviewedInput = {
|
|
|
8014
8374
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
8015
8375
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
8016
8376
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
8377
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
8017
8378
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
8018
8379
|
};
|
|
8019
8380
|
export type UserUncheckedUpdateWithoutApprovalRequestsReviewedInput = {
|
|
@@ -8063,6 +8424,7 @@ export type UserUncheckedUpdateWithoutApprovalRequestsReviewedInput = {
|
|
|
8063
8424
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
8064
8425
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
8065
8426
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
8427
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
8066
8428
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
8067
8429
|
};
|
|
8068
8430
|
export type UserCreateManyTenantInput = {
|
|
@@ -8130,6 +8492,7 @@ export type UserUpdateWithoutTenantInput = {
|
|
|
8130
8492
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
8131
8493
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
8132
8494
|
documentReviews?: Prisma.DocumentReviewUpdateManyWithoutReviewerNestedInput;
|
|
8495
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUpdateManyWithoutReviewerNestedInput;
|
|
8133
8496
|
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
8134
8497
|
};
|
|
8135
8498
|
export type UserUncheckedUpdateWithoutTenantInput = {
|
|
@@ -8179,6 +8542,7 @@ export type UserUncheckedUpdateWithoutTenantInput = {
|
|
|
8179
8542
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
8180
8543
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
8181
8544
|
documentReviews?: Prisma.DocumentReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
8545
|
+
questionnaireReviews?: Prisma.QuestionnairePhaseReviewUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
8182
8546
|
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
8183
8547
|
};
|
|
8184
8548
|
export type UserUncheckedUpdateManyWithoutTenantInput = {
|
|
@@ -8233,6 +8597,7 @@ export type UserCountOutputType = {
|
|
|
8233
8597
|
approvedRefunds: number;
|
|
8234
8598
|
processedRefunds: number;
|
|
8235
8599
|
documentReviews: number;
|
|
8600
|
+
questionnaireReviews: number;
|
|
8236
8601
|
organizationMemberships: number;
|
|
8237
8602
|
};
|
|
8238
8603
|
export type UserCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
@@ -8266,6 +8631,7 @@ export type UserCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.I
|
|
|
8266
8631
|
approvedRefunds?: boolean | UserCountOutputTypeCountApprovedRefundsArgs;
|
|
8267
8632
|
processedRefunds?: boolean | UserCountOutputTypeCountProcessedRefundsArgs;
|
|
8268
8633
|
documentReviews?: boolean | UserCountOutputTypeCountDocumentReviewsArgs;
|
|
8634
|
+
questionnaireReviews?: boolean | UserCountOutputTypeCountQuestionnaireReviewsArgs;
|
|
8269
8635
|
organizationMemberships?: boolean | UserCountOutputTypeCountOrganizationMembershipsArgs;
|
|
8270
8636
|
};
|
|
8271
8637
|
/**
|
|
@@ -8457,6 +8823,12 @@ export type UserCountOutputTypeCountProcessedRefundsArgs<ExtArgs extends runtime
|
|
|
8457
8823
|
export type UserCountOutputTypeCountDocumentReviewsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
8458
8824
|
where?: Prisma.DocumentReviewWhereInput;
|
|
8459
8825
|
};
|
|
8826
|
+
/**
|
|
8827
|
+
* UserCountOutputType without action
|
|
8828
|
+
*/
|
|
8829
|
+
export type UserCountOutputTypeCountQuestionnaireReviewsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
8830
|
+
where?: Prisma.QuestionnairePhaseReviewWhereInput;
|
|
8831
|
+
};
|
|
8460
8832
|
/**
|
|
8461
8833
|
* UserCountOutputType without action
|
|
8462
8834
|
*/
|
|
@@ -8513,6 +8885,7 @@ export type UserSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
8513
8885
|
approvedRefunds?: boolean | Prisma.User$approvedRefundsArgs<ExtArgs>;
|
|
8514
8886
|
processedRefunds?: boolean | Prisma.User$processedRefundsArgs<ExtArgs>;
|
|
8515
8887
|
documentReviews?: boolean | Prisma.User$documentReviewsArgs<ExtArgs>;
|
|
8888
|
+
questionnaireReviews?: boolean | Prisma.User$questionnaireReviewsArgs<ExtArgs>;
|
|
8516
8889
|
organizationMemberships?: boolean | Prisma.User$organizationMembershipsArgs<ExtArgs>;
|
|
8517
8890
|
_count?: boolean | Prisma.UserCountOutputTypeDefaultArgs<ExtArgs>;
|
|
8518
8891
|
}, ExtArgs["result"]["user"]>;
|
|
@@ -8569,6 +8942,7 @@ export type UserInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
8569
8942
|
approvedRefunds?: boolean | Prisma.User$approvedRefundsArgs<ExtArgs>;
|
|
8570
8943
|
processedRefunds?: boolean | Prisma.User$processedRefundsArgs<ExtArgs>;
|
|
8571
8944
|
documentReviews?: boolean | Prisma.User$documentReviewsArgs<ExtArgs>;
|
|
8945
|
+
questionnaireReviews?: boolean | Prisma.User$questionnaireReviewsArgs<ExtArgs>;
|
|
8572
8946
|
organizationMemberships?: boolean | Prisma.User$organizationMembershipsArgs<ExtArgs>;
|
|
8573
8947
|
_count?: boolean | Prisma.UserCountOutputTypeDefaultArgs<ExtArgs>;
|
|
8574
8948
|
};
|
|
@@ -8607,6 +8981,7 @@ export type $UserPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
8607
8981
|
approvedRefunds: Prisma.$ApplicationRefundPayload<ExtArgs>[];
|
|
8608
8982
|
processedRefunds: Prisma.$ApplicationRefundPayload<ExtArgs>[];
|
|
8609
8983
|
documentReviews: Prisma.$DocumentReviewPayload<ExtArgs>[];
|
|
8984
|
+
questionnaireReviews: Prisma.$QuestionnairePhaseReviewPayload<ExtArgs>[];
|
|
8610
8985
|
organizationMemberships: Prisma.$OrganizationMemberPayload<ExtArgs>[];
|
|
8611
8986
|
};
|
|
8612
8987
|
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
|
@@ -8936,6 +9311,7 @@ export interface Prisma__UserClient<T, Null = never, ExtArgs extends runtime.Typ
|
|
|
8936
9311
|
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>;
|
|
8937
9312
|
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>;
|
|
8938
9313
|
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>;
|
|
9314
|
+
questionnaireReviews<T extends Prisma.User$questionnaireReviewsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$questionnaireReviewsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$QuestionnairePhaseReviewPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
8939
9315
|
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>;
|
|
8940
9316
|
/**
|
|
8941
9317
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
@@ -10032,6 +10408,29 @@ export type User$documentReviewsArgs<ExtArgs extends runtime.Types.Extensions.In
|
|
|
10032
10408
|
skip?: number;
|
|
10033
10409
|
distinct?: Prisma.DocumentReviewScalarFieldEnum | Prisma.DocumentReviewScalarFieldEnum[];
|
|
10034
10410
|
};
|
|
10411
|
+
/**
|
|
10412
|
+
* User.questionnaireReviews
|
|
10413
|
+
*/
|
|
10414
|
+
export type User$questionnaireReviewsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
10415
|
+
/**
|
|
10416
|
+
* Select specific fields to fetch from the QuestionnairePhaseReview
|
|
10417
|
+
*/
|
|
10418
|
+
select?: Prisma.QuestionnairePhaseReviewSelect<ExtArgs> | null;
|
|
10419
|
+
/**
|
|
10420
|
+
* Omit specific fields from the QuestionnairePhaseReview
|
|
10421
|
+
*/
|
|
10422
|
+
omit?: Prisma.QuestionnairePhaseReviewOmit<ExtArgs> | null;
|
|
10423
|
+
/**
|
|
10424
|
+
* Choose, which related nodes to fetch as well
|
|
10425
|
+
*/
|
|
10426
|
+
include?: Prisma.QuestionnairePhaseReviewInclude<ExtArgs> | null;
|
|
10427
|
+
where?: Prisma.QuestionnairePhaseReviewWhereInput;
|
|
10428
|
+
orderBy?: Prisma.QuestionnairePhaseReviewOrderByWithRelationInput | Prisma.QuestionnairePhaseReviewOrderByWithRelationInput[];
|
|
10429
|
+
cursor?: Prisma.QuestionnairePhaseReviewWhereUniqueInput;
|
|
10430
|
+
take?: number;
|
|
10431
|
+
skip?: number;
|
|
10432
|
+
distinct?: Prisma.QuestionnairePhaseReviewScalarFieldEnum | Prisma.QuestionnairePhaseReviewScalarFieldEnum[];
|
|
10433
|
+
};
|
|
10035
10434
|
/**
|
|
10036
10435
|
* User.organizationMemberships
|
|
10037
10436
|
*/
|