@valentine-efagene/qshelter-common 2.0.119 → 2.0.121
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/client/browser.d.ts +11 -0
- package/dist/generated/client/client.d.ts +11 -0
- package/dist/generated/client/commonInputTypes.d.ts +260 -0
- package/dist/generated/client/enums.d.ts +79 -0
- package/dist/generated/client/enums.js +71 -1
- package/dist/generated/client/internal/class.d.ts +22 -0
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +277 -2
- package/dist/generated/client/internal/prismaNamespace.js +109 -4
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +110 -1
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +109 -4
- package/dist/generated/client/models/DocumentationPhase.d.ts +243 -1
- package/dist/generated/client/models/DocumentationPlanStep.d.ts +241 -1
- package/dist/generated/client/models/DocumentationStep.d.ts +1017 -1
- package/dist/generated/client/models/Organization.d.ts +1930 -0
- package/dist/generated/client/models/Organization.js +1 -0
- package/dist/generated/client/models/OrganizationMember.d.ts +1598 -0
- package/dist/generated/client/models/OrganizationMember.js +1 -0
- package/dist/generated/client/models/QuestionnairePhase.d.ts +165 -0
- package/dist/generated/client/models/QuestionnairePlanQuestion.d.ts +25 -22
- package/dist/generated/client/models/Tenant.d.ts +555 -0
- package/dist/generated/client/models/User.d.ts +776 -0
- package/dist/generated/client/models.d.ts +2 -0
- package/dist/src/middleware/auth-context.d.ts +30 -1
- package/dist/src/middleware/auth-context.js +34 -1
- package/dist/src/prisma/tenant.js +2 -0
- package/dist/src/utils/condition-operators.d.ts +5 -23
- package/dist/src/utils/condition-operators.js +6 -19
- package/dist/src/utils/documentation-enums.d.ts +6 -0
- package/dist/src/utils/documentation-enums.js +6 -0
- package/package.json +1 -1
- package/prisma/migrations/20260115123703_add_organizations/migration.sql +69 -0
- package/prisma/migrations/20260115125519_add_requires_manual_review_to_step/migration.sql +2 -0
- package/prisma/migrations/20260115134106_add_conditional_step_support/migration.sql +11 -0
- package/prisma/schema.prisma +191 -1
|
@@ -249,6 +249,7 @@ export type UserWhereInput = {
|
|
|
249
249
|
soldApplications?: Prisma.ApplicationListRelationFilter;
|
|
250
250
|
applicationPayments?: Prisma.ApplicationPaymentListRelationFilter;
|
|
251
251
|
assignedSteps?: Prisma.DocumentationStepListRelationFilter;
|
|
252
|
+
gateActedSteps?: Prisma.DocumentationStepListRelationFilter;
|
|
252
253
|
stepApprovals?: Prisma.DocumentationStepApprovalListRelationFilter;
|
|
253
254
|
uploadedDocs?: Prisma.ApplicationDocumentListRelationFilter;
|
|
254
255
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestListRelationFilter;
|
|
@@ -265,6 +266,7 @@ export type UserWhereInput = {
|
|
|
265
266
|
requestedRefunds?: Prisma.ApplicationRefundListRelationFilter;
|
|
266
267
|
approvedRefunds?: Prisma.ApplicationRefundListRelationFilter;
|
|
267
268
|
processedRefunds?: Prisma.ApplicationRefundListRelationFilter;
|
|
269
|
+
organizationMemberships?: Prisma.OrganizationMemberListRelationFilter;
|
|
268
270
|
};
|
|
269
271
|
export type UserOrderByWithRelationInput = {
|
|
270
272
|
id?: Prisma.SortOrder;
|
|
@@ -299,6 +301,7 @@ export type UserOrderByWithRelationInput = {
|
|
|
299
301
|
soldApplications?: Prisma.ApplicationOrderByRelationAggregateInput;
|
|
300
302
|
applicationPayments?: Prisma.ApplicationPaymentOrderByRelationAggregateInput;
|
|
301
303
|
assignedSteps?: Prisma.DocumentationStepOrderByRelationAggregateInput;
|
|
304
|
+
gateActedSteps?: Prisma.DocumentationStepOrderByRelationAggregateInput;
|
|
302
305
|
stepApprovals?: Prisma.DocumentationStepApprovalOrderByRelationAggregateInput;
|
|
303
306
|
uploadedDocs?: Prisma.ApplicationDocumentOrderByRelationAggregateInput;
|
|
304
307
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestOrderByRelationAggregateInput;
|
|
@@ -315,6 +318,7 @@ export type UserOrderByWithRelationInput = {
|
|
|
315
318
|
requestedRefunds?: Prisma.ApplicationRefundOrderByRelationAggregateInput;
|
|
316
319
|
approvedRefunds?: Prisma.ApplicationRefundOrderByRelationAggregateInput;
|
|
317
320
|
processedRefunds?: Prisma.ApplicationRefundOrderByRelationAggregateInput;
|
|
321
|
+
organizationMemberships?: Prisma.OrganizationMemberOrderByRelationAggregateInput;
|
|
318
322
|
_relevance?: Prisma.UserOrderByRelevanceInput;
|
|
319
323
|
};
|
|
320
324
|
export type UserWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -353,6 +357,7 @@ export type UserWhereUniqueInput = Prisma.AtLeast<{
|
|
|
353
357
|
soldApplications?: Prisma.ApplicationListRelationFilter;
|
|
354
358
|
applicationPayments?: Prisma.ApplicationPaymentListRelationFilter;
|
|
355
359
|
assignedSteps?: Prisma.DocumentationStepListRelationFilter;
|
|
360
|
+
gateActedSteps?: Prisma.DocumentationStepListRelationFilter;
|
|
356
361
|
stepApprovals?: Prisma.DocumentationStepApprovalListRelationFilter;
|
|
357
362
|
uploadedDocs?: Prisma.ApplicationDocumentListRelationFilter;
|
|
358
363
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestListRelationFilter;
|
|
@@ -369,6 +374,7 @@ export type UserWhereUniqueInput = Prisma.AtLeast<{
|
|
|
369
374
|
requestedRefunds?: Prisma.ApplicationRefundListRelationFilter;
|
|
370
375
|
approvedRefunds?: Prisma.ApplicationRefundListRelationFilter;
|
|
371
376
|
processedRefunds?: Prisma.ApplicationRefundListRelationFilter;
|
|
377
|
+
organizationMemberships?: Prisma.OrganizationMemberListRelationFilter;
|
|
372
378
|
}, "id" | "email" | "phone" | "walletId">;
|
|
373
379
|
export type UserOrderByWithAggregationInput = {
|
|
374
380
|
id?: Prisma.SortOrder;
|
|
@@ -445,6 +451,7 @@ export type UserCreateInput = {
|
|
|
445
451
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
446
452
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
447
453
|
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
454
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
448
455
|
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
449
456
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
450
457
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -461,6 +468,7 @@ export type UserCreateInput = {
|
|
|
461
468
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
462
469
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
463
470
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
471
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
464
472
|
};
|
|
465
473
|
export type UserUncheckedCreateInput = {
|
|
466
474
|
id?: string;
|
|
@@ -493,6 +501,7 @@ export type UserUncheckedCreateInput = {
|
|
|
493
501
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
494
502
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
495
503
|
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
504
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
496
505
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
497
506
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
498
507
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -509,6 +518,7 @@ export type UserUncheckedCreateInput = {
|
|
|
509
518
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
510
519
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
511
520
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
521
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
512
522
|
};
|
|
513
523
|
export type UserUpdateInput = {
|
|
514
524
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -541,6 +551,7 @@ export type UserUpdateInput = {
|
|
|
541
551
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
542
552
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
543
553
|
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
554
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
544
555
|
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
545
556
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
546
557
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -557,6 +568,7 @@ export type UserUpdateInput = {
|
|
|
557
568
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
558
569
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
559
570
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
571
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
560
572
|
};
|
|
561
573
|
export type UserUncheckedUpdateInput = {
|
|
562
574
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -589,6 +601,7 @@ export type UserUncheckedUpdateInput = {
|
|
|
589
601
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
590
602
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
591
603
|
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
604
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
592
605
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
593
606
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
594
607
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -605,6 +618,7 @@ export type UserUncheckedUpdateInput = {
|
|
|
605
618
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
606
619
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
607
620
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
621
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
608
622
|
};
|
|
609
623
|
export type UserCreateManyInput = {
|
|
610
624
|
id?: string;
|
|
@@ -778,6 +792,18 @@ export type UserUpdateOneRequiredWithoutTenantMembershipsNestedInput = {
|
|
|
778
792
|
connect?: Prisma.UserWhereUniqueInput;
|
|
779
793
|
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutTenantMembershipsInput, Prisma.UserUpdateWithoutTenantMembershipsInput>, Prisma.UserUncheckedUpdateWithoutTenantMembershipsInput>;
|
|
780
794
|
};
|
|
795
|
+
export type UserCreateNestedOneWithoutOrganizationMembershipsInput = {
|
|
796
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutOrganizationMembershipsInput, Prisma.UserUncheckedCreateWithoutOrganizationMembershipsInput>;
|
|
797
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutOrganizationMembershipsInput;
|
|
798
|
+
connect?: Prisma.UserWhereUniqueInput;
|
|
799
|
+
};
|
|
800
|
+
export type UserUpdateOneRequiredWithoutOrganizationMembershipsNestedInput = {
|
|
801
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutOrganizationMembershipsInput, Prisma.UserUncheckedCreateWithoutOrganizationMembershipsInput>;
|
|
802
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutOrganizationMembershipsInput;
|
|
803
|
+
upsert?: Prisma.UserUpsertWithoutOrganizationMembershipsInput;
|
|
804
|
+
connect?: Prisma.UserWhereUniqueInput;
|
|
805
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutOrganizationMembershipsInput, Prisma.UserUpdateWithoutOrganizationMembershipsInput>, Prisma.UserUncheckedUpdateWithoutOrganizationMembershipsInput>;
|
|
806
|
+
};
|
|
781
807
|
export type UserCreateNestedManyWithoutTenantInput = {
|
|
782
808
|
create?: Prisma.XOR<Prisma.UserCreateWithoutTenantInput, Prisma.UserUncheckedCreateWithoutTenantInput> | Prisma.UserCreateWithoutTenantInput[] | Prisma.UserUncheckedCreateWithoutTenantInput[];
|
|
783
809
|
connectOrCreate?: Prisma.UserCreateOrConnectWithoutTenantInput | Prisma.UserCreateOrConnectWithoutTenantInput[];
|
|
@@ -999,6 +1025,11 @@ export type UserCreateNestedOneWithoutAssignedStepsInput = {
|
|
|
999
1025
|
connectOrCreate?: Prisma.UserCreateOrConnectWithoutAssignedStepsInput;
|
|
1000
1026
|
connect?: Prisma.UserWhereUniqueInput;
|
|
1001
1027
|
};
|
|
1028
|
+
export type UserCreateNestedOneWithoutGateActedStepsInput = {
|
|
1029
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutGateActedStepsInput, Prisma.UserUncheckedCreateWithoutGateActedStepsInput>;
|
|
1030
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutGateActedStepsInput;
|
|
1031
|
+
connect?: Prisma.UserWhereUniqueInput;
|
|
1032
|
+
};
|
|
1002
1033
|
export type UserUpdateOneWithoutAssignedStepsNestedInput = {
|
|
1003
1034
|
create?: Prisma.XOR<Prisma.UserCreateWithoutAssignedStepsInput, Prisma.UserUncheckedCreateWithoutAssignedStepsInput>;
|
|
1004
1035
|
connectOrCreate?: Prisma.UserCreateOrConnectWithoutAssignedStepsInput;
|
|
@@ -1008,6 +1039,15 @@ export type UserUpdateOneWithoutAssignedStepsNestedInput = {
|
|
|
1008
1039
|
connect?: Prisma.UserWhereUniqueInput;
|
|
1009
1040
|
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutAssignedStepsInput, Prisma.UserUpdateWithoutAssignedStepsInput>, Prisma.UserUncheckedUpdateWithoutAssignedStepsInput>;
|
|
1010
1041
|
};
|
|
1042
|
+
export type UserUpdateOneWithoutGateActedStepsNestedInput = {
|
|
1043
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutGateActedStepsInput, Prisma.UserUncheckedCreateWithoutGateActedStepsInput>;
|
|
1044
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutGateActedStepsInput;
|
|
1045
|
+
upsert?: Prisma.UserUpsertWithoutGateActedStepsInput;
|
|
1046
|
+
disconnect?: Prisma.UserWhereInput | boolean;
|
|
1047
|
+
delete?: Prisma.UserWhereInput | boolean;
|
|
1048
|
+
connect?: Prisma.UserWhereUniqueInput;
|
|
1049
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutGateActedStepsInput, Prisma.UserUpdateWithoutGateActedStepsInput>, Prisma.UserUncheckedUpdateWithoutGateActedStepsInput>;
|
|
1050
|
+
};
|
|
1011
1051
|
export type UserCreateNestedOneWithoutStepApprovalsInput = {
|
|
1012
1052
|
create?: Prisma.XOR<Prisma.UserCreateWithoutStepApprovalsInput, Prisma.UserUncheckedCreateWithoutStepApprovalsInput>;
|
|
1013
1053
|
connectOrCreate?: Prisma.UserCreateOrConnectWithoutStepApprovalsInput;
|
|
@@ -1228,6 +1268,7 @@ export type UserCreateWithoutUserRolesInput = {
|
|
|
1228
1268
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
1229
1269
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
1230
1270
|
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
1271
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
1231
1272
|
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
1232
1273
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
1233
1274
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -1244,6 +1285,7 @@ export type UserCreateWithoutUserRolesInput = {
|
|
|
1244
1285
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
1245
1286
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
1246
1287
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
1288
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
1247
1289
|
};
|
|
1248
1290
|
export type UserUncheckedCreateWithoutUserRolesInput = {
|
|
1249
1291
|
id?: string;
|
|
@@ -1275,6 +1317,7 @@ export type UserUncheckedCreateWithoutUserRolesInput = {
|
|
|
1275
1317
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
1276
1318
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
1277
1319
|
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
1320
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
1278
1321
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
1279
1322
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
1280
1323
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -1291,6 +1334,7 @@ export type UserUncheckedCreateWithoutUserRolesInput = {
|
|
|
1291
1334
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
1292
1335
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
1293
1336
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
1337
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
1294
1338
|
};
|
|
1295
1339
|
export type UserCreateOrConnectWithoutUserRolesInput = {
|
|
1296
1340
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -1335,6 +1379,7 @@ export type UserUpdateWithoutUserRolesInput = {
|
|
|
1335
1379
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
1336
1380
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
1337
1381
|
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
1382
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
1338
1383
|
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
1339
1384
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
1340
1385
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -1351,6 +1396,7 @@ export type UserUpdateWithoutUserRolesInput = {
|
|
|
1351
1396
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
1352
1397
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
1353
1398
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
1399
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
1354
1400
|
};
|
|
1355
1401
|
export type UserUncheckedUpdateWithoutUserRolesInput = {
|
|
1356
1402
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -1382,6 +1428,7 @@ export type UserUncheckedUpdateWithoutUserRolesInput = {
|
|
|
1382
1428
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
1383
1429
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
1384
1430
|
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
1431
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
1385
1432
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
1386
1433
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
1387
1434
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -1398,6 +1445,7 @@ export type UserUncheckedUpdateWithoutUserRolesInput = {
|
|
|
1398
1445
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
1399
1446
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
1400
1447
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
1448
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
1401
1449
|
};
|
|
1402
1450
|
export type UserCreateWithoutTenantMembershipsInput = {
|
|
1403
1451
|
id?: string;
|
|
@@ -1429,6 +1477,7 @@ export type UserCreateWithoutTenantMembershipsInput = {
|
|
|
1429
1477
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
1430
1478
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
1431
1479
|
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
1480
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
1432
1481
|
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
1433
1482
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
1434
1483
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -1445,6 +1494,7 @@ export type UserCreateWithoutTenantMembershipsInput = {
|
|
|
1445
1494
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
1446
1495
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
1447
1496
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
1497
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
1448
1498
|
};
|
|
1449
1499
|
export type UserUncheckedCreateWithoutTenantMembershipsInput = {
|
|
1450
1500
|
id?: string;
|
|
@@ -1476,6 +1526,7 @@ export type UserUncheckedCreateWithoutTenantMembershipsInput = {
|
|
|
1476
1526
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
1477
1527
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
1478
1528
|
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
1529
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
1479
1530
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
1480
1531
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
1481
1532
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -1492,6 +1543,7 @@ export type UserUncheckedCreateWithoutTenantMembershipsInput = {
|
|
|
1492
1543
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
1493
1544
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
1494
1545
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
1546
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
1495
1547
|
};
|
|
1496
1548
|
export type UserCreateOrConnectWithoutTenantMembershipsInput = {
|
|
1497
1549
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -1536,6 +1588,7 @@ export type UserUpdateWithoutTenantMembershipsInput = {
|
|
|
1536
1588
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
1537
1589
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
1538
1590
|
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
1591
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
1539
1592
|
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
1540
1593
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
1541
1594
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -1552,6 +1605,7 @@ export type UserUpdateWithoutTenantMembershipsInput = {
|
|
|
1552
1605
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
1553
1606
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
1554
1607
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
1608
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
1555
1609
|
};
|
|
1556
1610
|
export type UserUncheckedUpdateWithoutTenantMembershipsInput = {
|
|
1557
1611
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -1583,6 +1637,217 @@ export type UserUncheckedUpdateWithoutTenantMembershipsInput = {
|
|
|
1583
1637
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
1584
1638
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
1585
1639
|
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
1640
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
1641
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
1642
|
+
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
1643
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
1644
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
1645
|
+
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
1646
|
+
reviewedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
1647
|
+
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
1648
|
+
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
1649
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
1650
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
1651
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
1652
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
1653
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
1654
|
+
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
1655
|
+
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
1656
|
+
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
1657
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
1658
|
+
};
|
|
1659
|
+
export type UserCreateWithoutOrganizationMembershipsInput = {
|
|
1660
|
+
id?: string;
|
|
1661
|
+
email: string;
|
|
1662
|
+
password?: string | null;
|
|
1663
|
+
phone?: string | null;
|
|
1664
|
+
firstName?: string | null;
|
|
1665
|
+
lastName?: string | null;
|
|
1666
|
+
isActive?: boolean;
|
|
1667
|
+
isEmailVerified?: boolean;
|
|
1668
|
+
googleId?: string | null;
|
|
1669
|
+
avatar?: string | null;
|
|
1670
|
+
createdAt?: Date | string;
|
|
1671
|
+
updatedAt?: Date | string;
|
|
1672
|
+
emailVerifiedAt?: Date | string | null;
|
|
1673
|
+
emailVerificationToken?: string | null;
|
|
1674
|
+
lastLoginAt?: Date | string | null;
|
|
1675
|
+
tenant?: Prisma.TenantCreateNestedOneWithoutUsersInput;
|
|
1676
|
+
tenantMemberships?: Prisma.TenantMembershipCreateNestedManyWithoutUserInput;
|
|
1677
|
+
userRoles?: Prisma.UserRoleCreateNestedManyWithoutUserInput;
|
|
1678
|
+
wallet?: Prisma.WalletCreateNestedOneWithoutUserInput;
|
|
1679
|
+
refreshTokens?: Prisma.RefreshTokenCreateNestedManyWithoutUserInput;
|
|
1680
|
+
passwordResets?: Prisma.PasswordResetCreateNestedManyWithoutUserInput;
|
|
1681
|
+
suspensions?: Prisma.UserSuspensionCreateNestedManyWithoutUserInput;
|
|
1682
|
+
emailPreferences?: Prisma.EmailPreferenceCreateNestedManyWithoutUserInput;
|
|
1683
|
+
deviceEndpoints?: Prisma.DeviceEndpointCreateNestedManyWithoutUserInput;
|
|
1684
|
+
socials?: Prisma.SocialCreateNestedManyWithoutUserInput;
|
|
1685
|
+
properties?: Prisma.PropertyCreateNestedManyWithoutUserInput;
|
|
1686
|
+
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
1687
|
+
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
1688
|
+
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
1689
|
+
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
1690
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
1691
|
+
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
1692
|
+
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
1693
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
1694
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
1695
|
+
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
1696
|
+
reviewedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutReviewerInput;
|
|
1697
|
+
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
1698
|
+
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
1699
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
1700
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
1701
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestCreateNestedManyWithoutRequestedByInput;
|
|
1702
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestCreateNestedManyWithoutAssigneeInput;
|
|
1703
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
1704
|
+
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
1705
|
+
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
1706
|
+
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
1707
|
+
};
|
|
1708
|
+
export type UserUncheckedCreateWithoutOrganizationMembershipsInput = {
|
|
1709
|
+
id?: string;
|
|
1710
|
+
email: string;
|
|
1711
|
+
password?: string | null;
|
|
1712
|
+
phone?: string | null;
|
|
1713
|
+
firstName?: string | null;
|
|
1714
|
+
lastName?: string | null;
|
|
1715
|
+
isActive?: boolean;
|
|
1716
|
+
isEmailVerified?: boolean;
|
|
1717
|
+
googleId?: string | null;
|
|
1718
|
+
avatar?: string | null;
|
|
1719
|
+
tenantId?: string | null;
|
|
1720
|
+
walletId?: string | null;
|
|
1721
|
+
createdAt?: Date | string;
|
|
1722
|
+
updatedAt?: Date | string;
|
|
1723
|
+
emailVerifiedAt?: Date | string | null;
|
|
1724
|
+
emailVerificationToken?: string | null;
|
|
1725
|
+
lastLoginAt?: Date | string | null;
|
|
1726
|
+
tenantMemberships?: Prisma.TenantMembershipUncheckedCreateNestedManyWithoutUserInput;
|
|
1727
|
+
userRoles?: Prisma.UserRoleUncheckedCreateNestedManyWithoutUserInput;
|
|
1728
|
+
refreshTokens?: Prisma.RefreshTokenUncheckedCreateNestedManyWithoutUserInput;
|
|
1729
|
+
passwordResets?: Prisma.PasswordResetUncheckedCreateNestedManyWithoutUserInput;
|
|
1730
|
+
suspensions?: Prisma.UserSuspensionUncheckedCreateNestedManyWithoutUserInput;
|
|
1731
|
+
emailPreferences?: Prisma.EmailPreferenceUncheckedCreateNestedManyWithoutUserInput;
|
|
1732
|
+
deviceEndpoints?: Prisma.DeviceEndpointUncheckedCreateNestedManyWithoutUserInput;
|
|
1733
|
+
socials?: Prisma.SocialUncheckedCreateNestedManyWithoutUserInput;
|
|
1734
|
+
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutUserInput;
|
|
1735
|
+
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
1736
|
+
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
1737
|
+
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
1738
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
1739
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
1740
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
1741
|
+
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
1742
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
1743
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
1744
|
+
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
1745
|
+
reviewedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
1746
|
+
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
1747
|
+
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
1748
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
1749
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
1750
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
1751
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
1752
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
1753
|
+
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
1754
|
+
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
1755
|
+
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
1756
|
+
};
|
|
1757
|
+
export type UserCreateOrConnectWithoutOrganizationMembershipsInput = {
|
|
1758
|
+
where: Prisma.UserWhereUniqueInput;
|
|
1759
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutOrganizationMembershipsInput, Prisma.UserUncheckedCreateWithoutOrganizationMembershipsInput>;
|
|
1760
|
+
};
|
|
1761
|
+
export type UserUpsertWithoutOrganizationMembershipsInput = {
|
|
1762
|
+
update: Prisma.XOR<Prisma.UserUpdateWithoutOrganizationMembershipsInput, Prisma.UserUncheckedUpdateWithoutOrganizationMembershipsInput>;
|
|
1763
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutOrganizationMembershipsInput, Prisma.UserUncheckedCreateWithoutOrganizationMembershipsInput>;
|
|
1764
|
+
where?: Prisma.UserWhereInput;
|
|
1765
|
+
};
|
|
1766
|
+
export type UserUpdateToOneWithWhereWithoutOrganizationMembershipsInput = {
|
|
1767
|
+
where?: Prisma.UserWhereInput;
|
|
1768
|
+
data: Prisma.XOR<Prisma.UserUpdateWithoutOrganizationMembershipsInput, Prisma.UserUncheckedUpdateWithoutOrganizationMembershipsInput>;
|
|
1769
|
+
};
|
|
1770
|
+
export type UserUpdateWithoutOrganizationMembershipsInput = {
|
|
1771
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1772
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1773
|
+
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1774
|
+
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1775
|
+
firstName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1776
|
+
lastName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1777
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1778
|
+
isEmailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1779
|
+
googleId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1780
|
+
avatar?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1781
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1782
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1783
|
+
emailVerifiedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1784
|
+
emailVerificationToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1785
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1786
|
+
tenant?: Prisma.TenantUpdateOneWithoutUsersNestedInput;
|
|
1787
|
+
tenantMemberships?: Prisma.TenantMembershipUpdateManyWithoutUserNestedInput;
|
|
1788
|
+
userRoles?: Prisma.UserRoleUpdateManyWithoutUserNestedInput;
|
|
1789
|
+
wallet?: Prisma.WalletUpdateOneWithoutUserNestedInput;
|
|
1790
|
+
refreshTokens?: Prisma.RefreshTokenUpdateManyWithoutUserNestedInput;
|
|
1791
|
+
passwordResets?: Prisma.PasswordResetUpdateManyWithoutUserNestedInput;
|
|
1792
|
+
suspensions?: Prisma.UserSuspensionUpdateManyWithoutUserNestedInput;
|
|
1793
|
+
emailPreferences?: Prisma.EmailPreferenceUpdateManyWithoutUserNestedInput;
|
|
1794
|
+
deviceEndpoints?: Prisma.DeviceEndpointUpdateManyWithoutUserNestedInput;
|
|
1795
|
+
socials?: Prisma.SocialUpdateManyWithoutUserNestedInput;
|
|
1796
|
+
properties?: Prisma.PropertyUpdateManyWithoutUserNestedInput;
|
|
1797
|
+
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
1798
|
+
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
1799
|
+
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
1800
|
+
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
1801
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
1802
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
1803
|
+
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
1804
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
1805
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
1806
|
+
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
1807
|
+
reviewedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutReviewerNestedInput;
|
|
1808
|
+
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
1809
|
+
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
1810
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
1811
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
1812
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUpdateManyWithoutRequestedByNestedInput;
|
|
1813
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUpdateManyWithoutAssigneeNestedInput;
|
|
1814
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
1815
|
+
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
1816
|
+
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
1817
|
+
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
1818
|
+
};
|
|
1819
|
+
export type UserUncheckedUpdateWithoutOrganizationMembershipsInput = {
|
|
1820
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1821
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1822
|
+
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1823
|
+
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1824
|
+
firstName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1825
|
+
lastName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1826
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1827
|
+
isEmailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1828
|
+
googleId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1829
|
+
avatar?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1830
|
+
tenantId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1831
|
+
walletId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1832
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1833
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1834
|
+
emailVerifiedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1835
|
+
emailVerificationToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1836
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1837
|
+
tenantMemberships?: Prisma.TenantMembershipUncheckedUpdateManyWithoutUserNestedInput;
|
|
1838
|
+
userRoles?: Prisma.UserRoleUncheckedUpdateManyWithoutUserNestedInput;
|
|
1839
|
+
refreshTokens?: Prisma.RefreshTokenUncheckedUpdateManyWithoutUserNestedInput;
|
|
1840
|
+
passwordResets?: Prisma.PasswordResetUncheckedUpdateManyWithoutUserNestedInput;
|
|
1841
|
+
suspensions?: Prisma.UserSuspensionUncheckedUpdateManyWithoutUserNestedInput;
|
|
1842
|
+
emailPreferences?: Prisma.EmailPreferenceUncheckedUpdateManyWithoutUserNestedInput;
|
|
1843
|
+
deviceEndpoints?: Prisma.DeviceEndpointUncheckedUpdateManyWithoutUserNestedInput;
|
|
1844
|
+
socials?: Prisma.SocialUncheckedUpdateManyWithoutUserNestedInput;
|
|
1845
|
+
properties?: Prisma.PropertyUncheckedUpdateManyWithoutUserNestedInput;
|
|
1846
|
+
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
1847
|
+
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
1848
|
+
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
1849
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
1850
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
1586
1851
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
1587
1852
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
1588
1853
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -1630,6 +1895,7 @@ export type UserCreateWithoutTenantInput = {
|
|
|
1630
1895
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
1631
1896
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
1632
1897
|
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
1898
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
1633
1899
|
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
1634
1900
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
1635
1901
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -1646,6 +1912,7 @@ export type UserCreateWithoutTenantInput = {
|
|
|
1646
1912
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
1647
1913
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
1648
1914
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
1915
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
1649
1916
|
};
|
|
1650
1917
|
export type UserUncheckedCreateWithoutTenantInput = {
|
|
1651
1918
|
id?: string;
|
|
@@ -1677,6 +1944,7 @@ export type UserUncheckedCreateWithoutTenantInput = {
|
|
|
1677
1944
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
1678
1945
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
1679
1946
|
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
1947
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
1680
1948
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
1681
1949
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
1682
1950
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -1693,6 +1961,7 @@ export type UserUncheckedCreateWithoutTenantInput = {
|
|
|
1693
1961
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
1694
1962
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
1695
1963
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
1964
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
1696
1965
|
};
|
|
1697
1966
|
export type UserCreateOrConnectWithoutTenantInput = {
|
|
1698
1967
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -1767,6 +2036,7 @@ export type UserCreateWithoutRefreshTokensInput = {
|
|
|
1767
2036
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
1768
2037
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
1769
2038
|
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
2039
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
1770
2040
|
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
1771
2041
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
1772
2042
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -1783,6 +2053,7 @@ export type UserCreateWithoutRefreshTokensInput = {
|
|
|
1783
2053
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
1784
2054
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
1785
2055
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
2056
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
1786
2057
|
};
|
|
1787
2058
|
export type UserUncheckedCreateWithoutRefreshTokensInput = {
|
|
1788
2059
|
id?: string;
|
|
@@ -1814,6 +2085,7 @@ export type UserUncheckedCreateWithoutRefreshTokensInput = {
|
|
|
1814
2085
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
1815
2086
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
1816
2087
|
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
2088
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
1817
2089
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
1818
2090
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
1819
2091
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -1830,6 +2102,7 @@ export type UserUncheckedCreateWithoutRefreshTokensInput = {
|
|
|
1830
2102
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
1831
2103
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
1832
2104
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
2105
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
1833
2106
|
};
|
|
1834
2107
|
export type UserCreateOrConnectWithoutRefreshTokensInput = {
|
|
1835
2108
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -1874,6 +2147,7 @@ export type UserUpdateWithoutRefreshTokensInput = {
|
|
|
1874
2147
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
1875
2148
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
1876
2149
|
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
2150
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
1877
2151
|
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
1878
2152
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
1879
2153
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -1890,6 +2164,7 @@ export type UserUpdateWithoutRefreshTokensInput = {
|
|
|
1890
2164
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
1891
2165
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
1892
2166
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
2167
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
1893
2168
|
};
|
|
1894
2169
|
export type UserUncheckedUpdateWithoutRefreshTokensInput = {
|
|
1895
2170
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -1921,6 +2196,7 @@ export type UserUncheckedUpdateWithoutRefreshTokensInput = {
|
|
|
1921
2196
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
1922
2197
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
1923
2198
|
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
2199
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
1924
2200
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
1925
2201
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
1926
2202
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -1937,6 +2213,7 @@ export type UserUncheckedUpdateWithoutRefreshTokensInput = {
|
|
|
1937
2213
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
1938
2214
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
1939
2215
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
2216
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
1940
2217
|
};
|
|
1941
2218
|
export type UserCreateWithoutPasswordResetsInput = {
|
|
1942
2219
|
id?: string;
|
|
@@ -1968,6 +2245,7 @@ export type UserCreateWithoutPasswordResetsInput = {
|
|
|
1968
2245
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
1969
2246
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
1970
2247
|
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
2248
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
1971
2249
|
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
1972
2250
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
1973
2251
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -1984,6 +2262,7 @@ export type UserCreateWithoutPasswordResetsInput = {
|
|
|
1984
2262
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
1985
2263
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
1986
2264
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
2265
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
1987
2266
|
};
|
|
1988
2267
|
export type UserUncheckedCreateWithoutPasswordResetsInput = {
|
|
1989
2268
|
id?: string;
|
|
@@ -2015,6 +2294,7 @@ export type UserUncheckedCreateWithoutPasswordResetsInput = {
|
|
|
2015
2294
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
2016
2295
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
2017
2296
|
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
2297
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
2018
2298
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
2019
2299
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
2020
2300
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -2031,6 +2311,7 @@ export type UserUncheckedCreateWithoutPasswordResetsInput = {
|
|
|
2031
2311
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
2032
2312
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
2033
2313
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
2314
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
2034
2315
|
};
|
|
2035
2316
|
export type UserCreateOrConnectWithoutPasswordResetsInput = {
|
|
2036
2317
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -2075,6 +2356,7 @@ export type UserUpdateWithoutPasswordResetsInput = {
|
|
|
2075
2356
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
2076
2357
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
2077
2358
|
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
2359
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
2078
2360
|
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
2079
2361
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
2080
2362
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -2091,6 +2373,7 @@ export type UserUpdateWithoutPasswordResetsInput = {
|
|
|
2091
2373
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
2092
2374
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
2093
2375
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
2376
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
2094
2377
|
};
|
|
2095
2378
|
export type UserUncheckedUpdateWithoutPasswordResetsInput = {
|
|
2096
2379
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -2122,6 +2405,7 @@ export type UserUncheckedUpdateWithoutPasswordResetsInput = {
|
|
|
2122
2405
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
2123
2406
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
2124
2407
|
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
2408
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
2125
2409
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
2126
2410
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
2127
2411
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -2138,6 +2422,7 @@ export type UserUncheckedUpdateWithoutPasswordResetsInput = {
|
|
|
2138
2422
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
2139
2423
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
2140
2424
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
2425
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
2141
2426
|
};
|
|
2142
2427
|
export type UserCreateWithoutSuspensionsInput = {
|
|
2143
2428
|
id?: string;
|
|
@@ -2169,6 +2454,7 @@ export type UserCreateWithoutSuspensionsInput = {
|
|
|
2169
2454
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
2170
2455
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
2171
2456
|
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
2457
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
2172
2458
|
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
2173
2459
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
2174
2460
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -2185,6 +2471,7 @@ export type UserCreateWithoutSuspensionsInput = {
|
|
|
2185
2471
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
2186
2472
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
2187
2473
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
2474
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
2188
2475
|
};
|
|
2189
2476
|
export type UserUncheckedCreateWithoutSuspensionsInput = {
|
|
2190
2477
|
id?: string;
|
|
@@ -2216,6 +2503,7 @@ export type UserUncheckedCreateWithoutSuspensionsInput = {
|
|
|
2216
2503
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
2217
2504
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
2218
2505
|
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
2506
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
2219
2507
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
2220
2508
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
2221
2509
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -2232,6 +2520,7 @@ export type UserUncheckedCreateWithoutSuspensionsInput = {
|
|
|
2232
2520
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
2233
2521
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
2234
2522
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
2523
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
2235
2524
|
};
|
|
2236
2525
|
export type UserCreateOrConnectWithoutSuspensionsInput = {
|
|
2237
2526
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -2276,6 +2565,7 @@ export type UserUpdateWithoutSuspensionsInput = {
|
|
|
2276
2565
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
2277
2566
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
2278
2567
|
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
2568
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
2279
2569
|
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
2280
2570
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
2281
2571
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -2292,6 +2582,7 @@ export type UserUpdateWithoutSuspensionsInput = {
|
|
|
2292
2582
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
2293
2583
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
2294
2584
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
2585
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
2295
2586
|
};
|
|
2296
2587
|
export type UserUncheckedUpdateWithoutSuspensionsInput = {
|
|
2297
2588
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -2323,6 +2614,7 @@ export type UserUncheckedUpdateWithoutSuspensionsInput = {
|
|
|
2323
2614
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
2324
2615
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
2325
2616
|
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
2617
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
2326
2618
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
2327
2619
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
2328
2620
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -2339,6 +2631,7 @@ export type UserUncheckedUpdateWithoutSuspensionsInput = {
|
|
|
2339
2631
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
2340
2632
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
2341
2633
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
2634
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
2342
2635
|
};
|
|
2343
2636
|
export type UserCreateWithoutEmailPreferencesInput = {
|
|
2344
2637
|
id?: string;
|
|
@@ -2370,6 +2663,7 @@ export type UserCreateWithoutEmailPreferencesInput = {
|
|
|
2370
2663
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
2371
2664
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
2372
2665
|
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
2666
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
2373
2667
|
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
2374
2668
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
2375
2669
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -2386,6 +2680,7 @@ export type UserCreateWithoutEmailPreferencesInput = {
|
|
|
2386
2680
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
2387
2681
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
2388
2682
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
2683
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
2389
2684
|
};
|
|
2390
2685
|
export type UserUncheckedCreateWithoutEmailPreferencesInput = {
|
|
2391
2686
|
id?: string;
|
|
@@ -2417,6 +2712,7 @@ export type UserUncheckedCreateWithoutEmailPreferencesInput = {
|
|
|
2417
2712
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
2418
2713
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
2419
2714
|
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
2715
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
2420
2716
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
2421
2717
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
2422
2718
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -2433,6 +2729,7 @@ export type UserUncheckedCreateWithoutEmailPreferencesInput = {
|
|
|
2433
2729
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
2434
2730
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
2435
2731
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
2732
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
2436
2733
|
};
|
|
2437
2734
|
export type UserCreateOrConnectWithoutEmailPreferencesInput = {
|
|
2438
2735
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -2477,6 +2774,7 @@ export type UserUpdateWithoutEmailPreferencesInput = {
|
|
|
2477
2774
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
2478
2775
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
2479
2776
|
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
2777
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
2480
2778
|
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
2481
2779
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
2482
2780
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -2493,6 +2791,7 @@ export type UserUpdateWithoutEmailPreferencesInput = {
|
|
|
2493
2791
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
2494
2792
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
2495
2793
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
2794
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
2496
2795
|
};
|
|
2497
2796
|
export type UserUncheckedUpdateWithoutEmailPreferencesInput = {
|
|
2498
2797
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -2524,6 +2823,7 @@ export type UserUncheckedUpdateWithoutEmailPreferencesInput = {
|
|
|
2524
2823
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
2525
2824
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
2526
2825
|
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
2826
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
2527
2827
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
2528
2828
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
2529
2829
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -2540,6 +2840,7 @@ export type UserUncheckedUpdateWithoutEmailPreferencesInput = {
|
|
|
2540
2840
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
2541
2841
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
2542
2842
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
2843
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
2543
2844
|
};
|
|
2544
2845
|
export type UserCreateWithoutDeviceEndpointsInput = {
|
|
2545
2846
|
id?: string;
|
|
@@ -2571,6 +2872,7 @@ export type UserCreateWithoutDeviceEndpointsInput = {
|
|
|
2571
2872
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
2572
2873
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
2573
2874
|
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
2875
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
2574
2876
|
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
2575
2877
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
2576
2878
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -2587,6 +2889,7 @@ export type UserCreateWithoutDeviceEndpointsInput = {
|
|
|
2587
2889
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
2588
2890
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
2589
2891
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
2892
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
2590
2893
|
};
|
|
2591
2894
|
export type UserUncheckedCreateWithoutDeviceEndpointsInput = {
|
|
2592
2895
|
id?: string;
|
|
@@ -2618,6 +2921,7 @@ export type UserUncheckedCreateWithoutDeviceEndpointsInput = {
|
|
|
2618
2921
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
2619
2922
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
2620
2923
|
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
2924
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
2621
2925
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
2622
2926
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
2623
2927
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -2634,6 +2938,7 @@ export type UserUncheckedCreateWithoutDeviceEndpointsInput = {
|
|
|
2634
2938
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
2635
2939
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
2636
2940
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
2941
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
2637
2942
|
};
|
|
2638
2943
|
export type UserCreateOrConnectWithoutDeviceEndpointsInput = {
|
|
2639
2944
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -2678,6 +2983,7 @@ export type UserUpdateWithoutDeviceEndpointsInput = {
|
|
|
2678
2983
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
2679
2984
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
2680
2985
|
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
2986
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
2681
2987
|
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
2682
2988
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
2683
2989
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -2694,6 +3000,7 @@ export type UserUpdateWithoutDeviceEndpointsInput = {
|
|
|
2694
3000
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
2695
3001
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
2696
3002
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
3003
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
2697
3004
|
};
|
|
2698
3005
|
export type UserUncheckedUpdateWithoutDeviceEndpointsInput = {
|
|
2699
3006
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -2725,6 +3032,7 @@ export type UserUncheckedUpdateWithoutDeviceEndpointsInput = {
|
|
|
2725
3032
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
2726
3033
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
2727
3034
|
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
3035
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
2728
3036
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
2729
3037
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
2730
3038
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -2741,6 +3049,7 @@ export type UserUncheckedUpdateWithoutDeviceEndpointsInput = {
|
|
|
2741
3049
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
2742
3050
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
2743
3051
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
3052
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
2744
3053
|
};
|
|
2745
3054
|
export type UserCreateWithoutSocialsInput = {
|
|
2746
3055
|
id?: string;
|
|
@@ -2772,6 +3081,7 @@ export type UserCreateWithoutSocialsInput = {
|
|
|
2772
3081
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
2773
3082
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
2774
3083
|
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
3084
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
2775
3085
|
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
2776
3086
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
2777
3087
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -2788,6 +3098,7 @@ export type UserCreateWithoutSocialsInput = {
|
|
|
2788
3098
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
2789
3099
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
2790
3100
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
3101
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
2791
3102
|
};
|
|
2792
3103
|
export type UserUncheckedCreateWithoutSocialsInput = {
|
|
2793
3104
|
id?: string;
|
|
@@ -2819,6 +3130,7 @@ export type UserUncheckedCreateWithoutSocialsInput = {
|
|
|
2819
3130
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
2820
3131
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
2821
3132
|
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
3133
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
2822
3134
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
2823
3135
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
2824
3136
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -2835,6 +3147,7 @@ export type UserUncheckedCreateWithoutSocialsInput = {
|
|
|
2835
3147
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
2836
3148
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
2837
3149
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
3150
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
2838
3151
|
};
|
|
2839
3152
|
export type UserCreateOrConnectWithoutSocialsInput = {
|
|
2840
3153
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -2879,6 +3192,7 @@ export type UserUpdateWithoutSocialsInput = {
|
|
|
2879
3192
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
2880
3193
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
2881
3194
|
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
3195
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
2882
3196
|
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
2883
3197
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
2884
3198
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -2895,6 +3209,7 @@ export type UserUpdateWithoutSocialsInput = {
|
|
|
2895
3209
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
2896
3210
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
2897
3211
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
3212
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
2898
3213
|
};
|
|
2899
3214
|
export type UserUncheckedUpdateWithoutSocialsInput = {
|
|
2900
3215
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -2926,6 +3241,7 @@ export type UserUncheckedUpdateWithoutSocialsInput = {
|
|
|
2926
3241
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
2927
3242
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
2928
3243
|
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
3244
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
2929
3245
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
2930
3246
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
2931
3247
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -2942,6 +3258,7 @@ export type UserUncheckedUpdateWithoutSocialsInput = {
|
|
|
2942
3258
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
2943
3259
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
2944
3260
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
3261
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
2945
3262
|
};
|
|
2946
3263
|
export type UserCreateWithoutWalletInput = {
|
|
2947
3264
|
id?: string;
|
|
@@ -2973,6 +3290,7 @@ export type UserCreateWithoutWalletInput = {
|
|
|
2973
3290
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
2974
3291
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
2975
3292
|
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
3293
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
2976
3294
|
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
2977
3295
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
2978
3296
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -2989,6 +3307,7 @@ export type UserCreateWithoutWalletInput = {
|
|
|
2989
3307
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
2990
3308
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
2991
3309
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
3310
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
2992
3311
|
};
|
|
2993
3312
|
export type UserUncheckedCreateWithoutWalletInput = {
|
|
2994
3313
|
id?: string;
|
|
@@ -3020,6 +3339,7 @@ export type UserUncheckedCreateWithoutWalletInput = {
|
|
|
3020
3339
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
3021
3340
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
3022
3341
|
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
3342
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
3023
3343
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
3024
3344
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
3025
3345
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -3036,6 +3356,7 @@ export type UserUncheckedCreateWithoutWalletInput = {
|
|
|
3036
3356
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
3037
3357
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
3038
3358
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
3359
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
3039
3360
|
};
|
|
3040
3361
|
export type UserCreateOrConnectWithoutWalletInput = {
|
|
3041
3362
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -3080,6 +3401,7 @@ export type UserUpdateWithoutWalletInput = {
|
|
|
3080
3401
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
3081
3402
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
3082
3403
|
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
3404
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
3083
3405
|
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
3084
3406
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
3085
3407
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -3096,6 +3418,7 @@ export type UserUpdateWithoutWalletInput = {
|
|
|
3096
3418
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
3097
3419
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
3098
3420
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
3421
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
3099
3422
|
};
|
|
3100
3423
|
export type UserUncheckedUpdateWithoutWalletInput = {
|
|
3101
3424
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -3127,6 +3450,7 @@ export type UserUncheckedUpdateWithoutWalletInput = {
|
|
|
3127
3450
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
3128
3451
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
3129
3452
|
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
3453
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
3130
3454
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
3131
3455
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
3132
3456
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -3143,6 +3467,7 @@ export type UserUncheckedUpdateWithoutWalletInput = {
|
|
|
3143
3467
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
3144
3468
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
3145
3469
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
3470
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
3146
3471
|
};
|
|
3147
3472
|
export type UserCreateWithoutPropertiesInput = {
|
|
3148
3473
|
id?: string;
|
|
@@ -3174,6 +3499,7 @@ export type UserCreateWithoutPropertiesInput = {
|
|
|
3174
3499
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
3175
3500
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
3176
3501
|
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
3502
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
3177
3503
|
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
3178
3504
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
3179
3505
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -3190,6 +3516,7 @@ export type UserCreateWithoutPropertiesInput = {
|
|
|
3190
3516
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
3191
3517
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
3192
3518
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
3519
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
3193
3520
|
};
|
|
3194
3521
|
export type UserUncheckedCreateWithoutPropertiesInput = {
|
|
3195
3522
|
id?: string;
|
|
@@ -3221,6 +3548,7 @@ export type UserUncheckedCreateWithoutPropertiesInput = {
|
|
|
3221
3548
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
3222
3549
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
3223
3550
|
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
3551
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
3224
3552
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
3225
3553
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
3226
3554
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -3237,6 +3565,7 @@ export type UserUncheckedCreateWithoutPropertiesInput = {
|
|
|
3237
3565
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
3238
3566
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
3239
3567
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
3568
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
3240
3569
|
};
|
|
3241
3570
|
export type UserCreateOrConnectWithoutPropertiesInput = {
|
|
3242
3571
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -3281,6 +3610,7 @@ export type UserUpdateWithoutPropertiesInput = {
|
|
|
3281
3610
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
3282
3611
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
3283
3612
|
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
3613
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
3284
3614
|
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
3285
3615
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
3286
3616
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -3297,6 +3627,7 @@ export type UserUpdateWithoutPropertiesInput = {
|
|
|
3297
3627
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
3298
3628
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
3299
3629
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
3630
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
3300
3631
|
};
|
|
3301
3632
|
export type UserUncheckedUpdateWithoutPropertiesInput = {
|
|
3302
3633
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -3328,6 +3659,7 @@ export type UserUncheckedUpdateWithoutPropertiesInput = {
|
|
|
3328
3659
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
3329
3660
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
3330
3661
|
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
3662
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
3331
3663
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
3332
3664
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
3333
3665
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -3344,6 +3676,7 @@ export type UserUncheckedUpdateWithoutPropertiesInput = {
|
|
|
3344
3676
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
3345
3677
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
3346
3678
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
3679
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
3347
3680
|
};
|
|
3348
3681
|
export type UserCreateWithoutApplicationsInput = {
|
|
3349
3682
|
id?: string;
|
|
@@ -3375,6 +3708,7 @@ export type UserCreateWithoutApplicationsInput = {
|
|
|
3375
3708
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
3376
3709
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
3377
3710
|
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
3711
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
3378
3712
|
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
3379
3713
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
3380
3714
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -3391,6 +3725,7 @@ export type UserCreateWithoutApplicationsInput = {
|
|
|
3391
3725
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
3392
3726
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
3393
3727
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
3728
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
3394
3729
|
};
|
|
3395
3730
|
export type UserUncheckedCreateWithoutApplicationsInput = {
|
|
3396
3731
|
id?: string;
|
|
@@ -3422,6 +3757,7 @@ export type UserUncheckedCreateWithoutApplicationsInput = {
|
|
|
3422
3757
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
3423
3758
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
3424
3759
|
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
3760
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
3425
3761
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
3426
3762
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
3427
3763
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -3438,6 +3774,7 @@ export type UserUncheckedCreateWithoutApplicationsInput = {
|
|
|
3438
3774
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
3439
3775
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
3440
3776
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
3777
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
3441
3778
|
};
|
|
3442
3779
|
export type UserCreateOrConnectWithoutApplicationsInput = {
|
|
3443
3780
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -3473,6 +3810,7 @@ export type UserCreateWithoutSoldApplicationsInput = {
|
|
|
3473
3810
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
3474
3811
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
3475
3812
|
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
3813
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
3476
3814
|
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
3477
3815
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
3478
3816
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -3489,6 +3827,7 @@ export type UserCreateWithoutSoldApplicationsInput = {
|
|
|
3489
3827
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
3490
3828
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
3491
3829
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
3830
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
3492
3831
|
};
|
|
3493
3832
|
export type UserUncheckedCreateWithoutSoldApplicationsInput = {
|
|
3494
3833
|
id?: string;
|
|
@@ -3520,6 +3859,7 @@ export type UserUncheckedCreateWithoutSoldApplicationsInput = {
|
|
|
3520
3859
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
3521
3860
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
3522
3861
|
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
3862
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
3523
3863
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
3524
3864
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
3525
3865
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -3536,6 +3876,7 @@ export type UserUncheckedCreateWithoutSoldApplicationsInput = {
|
|
|
3536
3876
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
3537
3877
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
3538
3878
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
3879
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
3539
3880
|
};
|
|
3540
3881
|
export type UserCreateOrConnectWithoutSoldApplicationsInput = {
|
|
3541
3882
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -3580,6 +3921,7 @@ export type UserUpdateWithoutApplicationsInput = {
|
|
|
3580
3921
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
3581
3922
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
3582
3923
|
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
3924
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
3583
3925
|
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
3584
3926
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
3585
3927
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -3596,6 +3938,7 @@ export type UserUpdateWithoutApplicationsInput = {
|
|
|
3596
3938
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
3597
3939
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
3598
3940
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
3941
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
3599
3942
|
};
|
|
3600
3943
|
export type UserUncheckedUpdateWithoutApplicationsInput = {
|
|
3601
3944
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -3627,6 +3970,7 @@ export type UserUncheckedUpdateWithoutApplicationsInput = {
|
|
|
3627
3970
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
3628
3971
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
3629
3972
|
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
3973
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
3630
3974
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
3631
3975
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
3632
3976
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -3643,6 +3987,7 @@ export type UserUncheckedUpdateWithoutApplicationsInput = {
|
|
|
3643
3987
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
3644
3988
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
3645
3989
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
3990
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
3646
3991
|
};
|
|
3647
3992
|
export type UserUpsertWithoutSoldApplicationsInput = {
|
|
3648
3993
|
update: Prisma.XOR<Prisma.UserUpdateWithoutSoldApplicationsInput, Prisma.UserUncheckedUpdateWithoutSoldApplicationsInput>;
|
|
@@ -3683,6 +4028,7 @@ export type UserUpdateWithoutSoldApplicationsInput = {
|
|
|
3683
4028
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
3684
4029
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
3685
4030
|
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
4031
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
3686
4032
|
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
3687
4033
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
3688
4034
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -3699,6 +4045,7 @@ export type UserUpdateWithoutSoldApplicationsInput = {
|
|
|
3699
4045
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
3700
4046
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
3701
4047
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
4048
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
3702
4049
|
};
|
|
3703
4050
|
export type UserUncheckedUpdateWithoutSoldApplicationsInput = {
|
|
3704
4051
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -3730,6 +4077,7 @@ export type UserUncheckedUpdateWithoutSoldApplicationsInput = {
|
|
|
3730
4077
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
3731
4078
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
3732
4079
|
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
4080
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
3733
4081
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
3734
4082
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
3735
4083
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -3746,6 +4094,7 @@ export type UserUncheckedUpdateWithoutSoldApplicationsInput = {
|
|
|
3746
4094
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
3747
4095
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
3748
4096
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
4097
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
3749
4098
|
};
|
|
3750
4099
|
export type UserCreateWithoutRequestedRefundsInput = {
|
|
3751
4100
|
id?: string;
|
|
@@ -3778,6 +4127,7 @@ export type UserCreateWithoutRequestedRefundsInput = {
|
|
|
3778
4127
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
3779
4128
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
3780
4129
|
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
4130
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
3781
4131
|
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
3782
4132
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
3783
4133
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -3793,6 +4143,7 @@ export type UserCreateWithoutRequestedRefundsInput = {
|
|
|
3793
4143
|
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
3794
4144
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
3795
4145
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
4146
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
3796
4147
|
};
|
|
3797
4148
|
export type UserUncheckedCreateWithoutRequestedRefundsInput = {
|
|
3798
4149
|
id?: string;
|
|
@@ -3825,6 +4176,7 @@ export type UserUncheckedCreateWithoutRequestedRefundsInput = {
|
|
|
3825
4176
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
3826
4177
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
3827
4178
|
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
4179
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
3828
4180
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
3829
4181
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
3830
4182
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -3840,6 +4192,7 @@ export type UserUncheckedCreateWithoutRequestedRefundsInput = {
|
|
|
3840
4192
|
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
3841
4193
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
3842
4194
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
4195
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
3843
4196
|
};
|
|
3844
4197
|
export type UserCreateOrConnectWithoutRequestedRefundsInput = {
|
|
3845
4198
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -3876,6 +4229,7 @@ export type UserCreateWithoutApprovedRefundsInput = {
|
|
|
3876
4229
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
3877
4230
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
3878
4231
|
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
4232
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
3879
4233
|
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
3880
4234
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
3881
4235
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -3891,6 +4245,7 @@ export type UserCreateWithoutApprovedRefundsInput = {
|
|
|
3891
4245
|
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
3892
4246
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
3893
4247
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
4248
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
3894
4249
|
};
|
|
3895
4250
|
export type UserUncheckedCreateWithoutApprovedRefundsInput = {
|
|
3896
4251
|
id?: string;
|
|
@@ -3923,6 +4278,7 @@ export type UserUncheckedCreateWithoutApprovedRefundsInput = {
|
|
|
3923
4278
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
3924
4279
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
3925
4280
|
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
4281
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
3926
4282
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
3927
4283
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
3928
4284
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -3938,6 +4294,7 @@ export type UserUncheckedCreateWithoutApprovedRefundsInput = {
|
|
|
3938
4294
|
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
3939
4295
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
3940
4296
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
4297
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
3941
4298
|
};
|
|
3942
4299
|
export type UserCreateOrConnectWithoutApprovedRefundsInput = {
|
|
3943
4300
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -3974,6 +4331,7 @@ export type UserCreateWithoutProcessedRefundsInput = {
|
|
|
3974
4331
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
3975
4332
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
3976
4333
|
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
4334
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
3977
4335
|
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
3978
4336
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
3979
4337
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -3989,6 +4347,7 @@ export type UserCreateWithoutProcessedRefundsInput = {
|
|
|
3989
4347
|
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
3990
4348
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
3991
4349
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
4350
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
3992
4351
|
};
|
|
3993
4352
|
export type UserUncheckedCreateWithoutProcessedRefundsInput = {
|
|
3994
4353
|
id?: string;
|
|
@@ -4021,6 +4380,7 @@ export type UserUncheckedCreateWithoutProcessedRefundsInput = {
|
|
|
4021
4380
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
4022
4381
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
4023
4382
|
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
4383
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
4024
4384
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
4025
4385
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
4026
4386
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -4036,6 +4396,7 @@ export type UserUncheckedCreateWithoutProcessedRefundsInput = {
|
|
|
4036
4396
|
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
4037
4397
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4038
4398
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
4399
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
4039
4400
|
};
|
|
4040
4401
|
export type UserCreateOrConnectWithoutProcessedRefundsInput = {
|
|
4041
4402
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -4081,6 +4442,7 @@ export type UserUpdateWithoutRequestedRefundsInput = {
|
|
|
4081
4442
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
4082
4443
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
4083
4444
|
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
4445
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
4084
4446
|
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
4085
4447
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
4086
4448
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -4096,6 +4458,7 @@ export type UserUpdateWithoutRequestedRefundsInput = {
|
|
|
4096
4458
|
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
4097
4459
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
4098
4460
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
4461
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
4099
4462
|
};
|
|
4100
4463
|
export type UserUncheckedUpdateWithoutRequestedRefundsInput = {
|
|
4101
4464
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -4128,6 +4491,7 @@ export type UserUncheckedUpdateWithoutRequestedRefundsInput = {
|
|
|
4128
4491
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
4129
4492
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
4130
4493
|
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
4494
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
4131
4495
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
4132
4496
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
4133
4497
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -4143,6 +4507,7 @@ export type UserUncheckedUpdateWithoutRequestedRefundsInput = {
|
|
|
4143
4507
|
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
4144
4508
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
4145
4509
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
4510
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
4146
4511
|
};
|
|
4147
4512
|
export type UserUpsertWithoutApprovedRefundsInput = {
|
|
4148
4513
|
update: Prisma.XOR<Prisma.UserUpdateWithoutApprovedRefundsInput, Prisma.UserUncheckedUpdateWithoutApprovedRefundsInput>;
|
|
@@ -4184,6 +4549,7 @@ export type UserUpdateWithoutApprovedRefundsInput = {
|
|
|
4184
4549
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
4185
4550
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
4186
4551
|
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
4552
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
4187
4553
|
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
4188
4554
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
4189
4555
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -4199,6 +4565,7 @@ export type UserUpdateWithoutApprovedRefundsInput = {
|
|
|
4199
4565
|
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
4200
4566
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
4201
4567
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
4568
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
4202
4569
|
};
|
|
4203
4570
|
export type UserUncheckedUpdateWithoutApprovedRefundsInput = {
|
|
4204
4571
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -4231,6 +4598,7 @@ export type UserUncheckedUpdateWithoutApprovedRefundsInput = {
|
|
|
4231
4598
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
4232
4599
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
4233
4600
|
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
4601
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
4234
4602
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
4235
4603
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
4236
4604
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -4246,6 +4614,7 @@ export type UserUncheckedUpdateWithoutApprovedRefundsInput = {
|
|
|
4246
4614
|
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
4247
4615
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
4248
4616
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
4617
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
4249
4618
|
};
|
|
4250
4619
|
export type UserUpsertWithoutProcessedRefundsInput = {
|
|
4251
4620
|
update: Prisma.XOR<Prisma.UserUpdateWithoutProcessedRefundsInput, Prisma.UserUncheckedUpdateWithoutProcessedRefundsInput>;
|
|
@@ -4287,6 +4656,7 @@ export type UserUpdateWithoutProcessedRefundsInput = {
|
|
|
4287
4656
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
4288
4657
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
4289
4658
|
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
4659
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
4290
4660
|
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
4291
4661
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
4292
4662
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -4302,6 +4672,7 @@ export type UserUpdateWithoutProcessedRefundsInput = {
|
|
|
4302
4672
|
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
4303
4673
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
4304
4674
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
4675
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
4305
4676
|
};
|
|
4306
4677
|
export type UserUncheckedUpdateWithoutProcessedRefundsInput = {
|
|
4307
4678
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -4334,6 +4705,7 @@ export type UserUncheckedUpdateWithoutProcessedRefundsInput = {
|
|
|
4334
4705
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
4335
4706
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
4336
4707
|
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
4708
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
4337
4709
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
4338
4710
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
4339
4711
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -4349,6 +4721,7 @@ export type UserUncheckedUpdateWithoutProcessedRefundsInput = {
|
|
|
4349
4721
|
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
4350
4722
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
4351
4723
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
4724
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
4352
4725
|
};
|
|
4353
4726
|
export type UserCreateWithoutAssignedStepsInput = {
|
|
4354
4727
|
id?: string;
|
|
@@ -4380,6 +4753,7 @@ export type UserCreateWithoutAssignedStepsInput = {
|
|
|
4380
4753
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
4381
4754
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
4382
4755
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
4756
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
4383
4757
|
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
4384
4758
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
4385
4759
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -4396,6 +4770,7 @@ export type UserCreateWithoutAssignedStepsInput = {
|
|
|
4396
4770
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
4397
4771
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
4398
4772
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
4773
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
4399
4774
|
};
|
|
4400
4775
|
export type UserUncheckedCreateWithoutAssignedStepsInput = {
|
|
4401
4776
|
id?: string;
|
|
@@ -4427,6 +4802,7 @@ export type UserUncheckedCreateWithoutAssignedStepsInput = {
|
|
|
4427
4802
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
4428
4803
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
4429
4804
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
4805
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
4430
4806
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
4431
4807
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
4432
4808
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -4443,11 +4819,114 @@ export type UserUncheckedCreateWithoutAssignedStepsInput = {
|
|
|
4443
4819
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4444
4820
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
4445
4821
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
4822
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
4446
4823
|
};
|
|
4447
4824
|
export type UserCreateOrConnectWithoutAssignedStepsInput = {
|
|
4448
4825
|
where: Prisma.UserWhereUniqueInput;
|
|
4449
4826
|
create: Prisma.XOR<Prisma.UserCreateWithoutAssignedStepsInput, Prisma.UserUncheckedCreateWithoutAssignedStepsInput>;
|
|
4450
4827
|
};
|
|
4828
|
+
export type UserCreateWithoutGateActedStepsInput = {
|
|
4829
|
+
id?: string;
|
|
4830
|
+
email: string;
|
|
4831
|
+
password?: string | null;
|
|
4832
|
+
phone?: string | null;
|
|
4833
|
+
firstName?: string | null;
|
|
4834
|
+
lastName?: string | null;
|
|
4835
|
+
isActive?: boolean;
|
|
4836
|
+
isEmailVerified?: boolean;
|
|
4837
|
+
googleId?: string | null;
|
|
4838
|
+
avatar?: string | null;
|
|
4839
|
+
createdAt?: Date | string;
|
|
4840
|
+
updatedAt?: Date | string;
|
|
4841
|
+
emailVerifiedAt?: Date | string | null;
|
|
4842
|
+
emailVerificationToken?: string | null;
|
|
4843
|
+
lastLoginAt?: Date | string | null;
|
|
4844
|
+
tenant?: Prisma.TenantCreateNestedOneWithoutUsersInput;
|
|
4845
|
+
tenantMemberships?: Prisma.TenantMembershipCreateNestedManyWithoutUserInput;
|
|
4846
|
+
userRoles?: Prisma.UserRoleCreateNestedManyWithoutUserInput;
|
|
4847
|
+
wallet?: Prisma.WalletCreateNestedOneWithoutUserInput;
|
|
4848
|
+
refreshTokens?: Prisma.RefreshTokenCreateNestedManyWithoutUserInput;
|
|
4849
|
+
passwordResets?: Prisma.PasswordResetCreateNestedManyWithoutUserInput;
|
|
4850
|
+
suspensions?: Prisma.UserSuspensionCreateNestedManyWithoutUserInput;
|
|
4851
|
+
emailPreferences?: Prisma.EmailPreferenceCreateNestedManyWithoutUserInput;
|
|
4852
|
+
deviceEndpoints?: Prisma.DeviceEndpointCreateNestedManyWithoutUserInput;
|
|
4853
|
+
socials?: Prisma.SocialCreateNestedManyWithoutUserInput;
|
|
4854
|
+
properties?: Prisma.PropertyCreateNestedManyWithoutUserInput;
|
|
4855
|
+
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
4856
|
+
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
4857
|
+
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
4858
|
+
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
4859
|
+
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
4860
|
+
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
4861
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
4862
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
4863
|
+
initiatedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutInitiatorInput;
|
|
4864
|
+
reviewedTerminations?: Prisma.ApplicationTerminationCreateNestedManyWithoutReviewerInput;
|
|
4865
|
+
offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
|
|
4866
|
+
offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
|
|
4867
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestCreateNestedManyWithoutRequestedByInput;
|
|
4868
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestCreateNestedManyWithoutReviewedByInput;
|
|
4869
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestCreateNestedManyWithoutRequestedByInput;
|
|
4870
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestCreateNestedManyWithoutAssigneeInput;
|
|
4871
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestCreateNestedManyWithoutReviewedByInput;
|
|
4872
|
+
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
4873
|
+
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
4874
|
+
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
4875
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
4876
|
+
};
|
|
4877
|
+
export type UserUncheckedCreateWithoutGateActedStepsInput = {
|
|
4878
|
+
id?: string;
|
|
4879
|
+
email: string;
|
|
4880
|
+
password?: string | null;
|
|
4881
|
+
phone?: string | null;
|
|
4882
|
+
firstName?: string | null;
|
|
4883
|
+
lastName?: string | null;
|
|
4884
|
+
isActive?: boolean;
|
|
4885
|
+
isEmailVerified?: boolean;
|
|
4886
|
+
googleId?: string | null;
|
|
4887
|
+
avatar?: string | null;
|
|
4888
|
+
tenantId?: string | null;
|
|
4889
|
+
walletId?: string | null;
|
|
4890
|
+
createdAt?: Date | string;
|
|
4891
|
+
updatedAt?: Date | string;
|
|
4892
|
+
emailVerifiedAt?: Date | string | null;
|
|
4893
|
+
emailVerificationToken?: string | null;
|
|
4894
|
+
lastLoginAt?: Date | string | null;
|
|
4895
|
+
tenantMemberships?: Prisma.TenantMembershipUncheckedCreateNestedManyWithoutUserInput;
|
|
4896
|
+
userRoles?: Prisma.UserRoleUncheckedCreateNestedManyWithoutUserInput;
|
|
4897
|
+
refreshTokens?: Prisma.RefreshTokenUncheckedCreateNestedManyWithoutUserInput;
|
|
4898
|
+
passwordResets?: Prisma.PasswordResetUncheckedCreateNestedManyWithoutUserInput;
|
|
4899
|
+
suspensions?: Prisma.UserSuspensionUncheckedCreateNestedManyWithoutUserInput;
|
|
4900
|
+
emailPreferences?: Prisma.EmailPreferenceUncheckedCreateNestedManyWithoutUserInput;
|
|
4901
|
+
deviceEndpoints?: Prisma.DeviceEndpointUncheckedCreateNestedManyWithoutUserInput;
|
|
4902
|
+
socials?: Prisma.SocialUncheckedCreateNestedManyWithoutUserInput;
|
|
4903
|
+
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutUserInput;
|
|
4904
|
+
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
4905
|
+
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
4906
|
+
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
4907
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
4908
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
4909
|
+
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
4910
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
4911
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4912
|
+
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
|
|
4913
|
+
reviewedTerminations?: Prisma.ApplicationTerminationUncheckedCreateNestedManyWithoutReviewerInput;
|
|
4914
|
+
offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
|
|
4915
|
+
offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
|
|
4916
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4917
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
4918
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4919
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
4920
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedCreateNestedManyWithoutReviewedByInput;
|
|
4921
|
+
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4922
|
+
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
4923
|
+
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
4924
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
4925
|
+
};
|
|
4926
|
+
export type UserCreateOrConnectWithoutGateActedStepsInput = {
|
|
4927
|
+
where: Prisma.UserWhereUniqueInput;
|
|
4928
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutGateActedStepsInput, Prisma.UserUncheckedCreateWithoutGateActedStepsInput>;
|
|
4929
|
+
};
|
|
4451
4930
|
export type UserUpsertWithoutAssignedStepsInput = {
|
|
4452
4931
|
update: Prisma.XOR<Prisma.UserUpdateWithoutAssignedStepsInput, Prisma.UserUncheckedUpdateWithoutAssignedStepsInput>;
|
|
4453
4932
|
create: Prisma.XOR<Prisma.UserCreateWithoutAssignedStepsInput, Prisma.UserUncheckedCreateWithoutAssignedStepsInput>;
|
|
@@ -4487,6 +4966,7 @@ export type UserUpdateWithoutAssignedStepsInput = {
|
|
|
4487
4966
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
4488
4967
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
4489
4968
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
4969
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
4490
4970
|
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
4491
4971
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
4492
4972
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -4503,6 +4983,7 @@ export type UserUpdateWithoutAssignedStepsInput = {
|
|
|
4503
4983
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
4504
4984
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
4505
4985
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
4986
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
4506
4987
|
};
|
|
4507
4988
|
export type UserUncheckedUpdateWithoutAssignedStepsInput = {
|
|
4508
4989
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -4534,6 +5015,114 @@ export type UserUncheckedUpdateWithoutAssignedStepsInput = {
|
|
|
4534
5015
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
4535
5016
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
4536
5017
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
5018
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
5019
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
5020
|
+
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
5021
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
5022
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5023
|
+
initiatedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
|
|
5024
|
+
reviewedTerminations?: Prisma.ApplicationTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
5025
|
+
offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
|
|
5026
|
+
offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
|
|
5027
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
5028
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
5029
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
5030
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
5031
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUncheckedUpdateManyWithoutReviewedByNestedInput;
|
|
5032
|
+
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
5033
|
+
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
5034
|
+
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
5035
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
5036
|
+
};
|
|
5037
|
+
export type UserUpsertWithoutGateActedStepsInput = {
|
|
5038
|
+
update: Prisma.XOR<Prisma.UserUpdateWithoutGateActedStepsInput, Prisma.UserUncheckedUpdateWithoutGateActedStepsInput>;
|
|
5039
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutGateActedStepsInput, Prisma.UserUncheckedCreateWithoutGateActedStepsInput>;
|
|
5040
|
+
where?: Prisma.UserWhereInput;
|
|
5041
|
+
};
|
|
5042
|
+
export type UserUpdateToOneWithWhereWithoutGateActedStepsInput = {
|
|
5043
|
+
where?: Prisma.UserWhereInput;
|
|
5044
|
+
data: Prisma.XOR<Prisma.UserUpdateWithoutGateActedStepsInput, Prisma.UserUncheckedUpdateWithoutGateActedStepsInput>;
|
|
5045
|
+
};
|
|
5046
|
+
export type UserUpdateWithoutGateActedStepsInput = {
|
|
5047
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5048
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5049
|
+
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5050
|
+
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5051
|
+
firstName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5052
|
+
lastName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5053
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
5054
|
+
isEmailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
5055
|
+
googleId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5056
|
+
avatar?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5057
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
5058
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
5059
|
+
emailVerifiedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
5060
|
+
emailVerificationToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5061
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
5062
|
+
tenant?: Prisma.TenantUpdateOneWithoutUsersNestedInput;
|
|
5063
|
+
tenantMemberships?: Prisma.TenantMembershipUpdateManyWithoutUserNestedInput;
|
|
5064
|
+
userRoles?: Prisma.UserRoleUpdateManyWithoutUserNestedInput;
|
|
5065
|
+
wallet?: Prisma.WalletUpdateOneWithoutUserNestedInput;
|
|
5066
|
+
refreshTokens?: Prisma.RefreshTokenUpdateManyWithoutUserNestedInput;
|
|
5067
|
+
passwordResets?: Prisma.PasswordResetUpdateManyWithoutUserNestedInput;
|
|
5068
|
+
suspensions?: Prisma.UserSuspensionUpdateManyWithoutUserNestedInput;
|
|
5069
|
+
emailPreferences?: Prisma.EmailPreferenceUpdateManyWithoutUserNestedInput;
|
|
5070
|
+
deviceEndpoints?: Prisma.DeviceEndpointUpdateManyWithoutUserNestedInput;
|
|
5071
|
+
socials?: Prisma.SocialUpdateManyWithoutUserNestedInput;
|
|
5072
|
+
properties?: Prisma.PropertyUpdateManyWithoutUserNestedInput;
|
|
5073
|
+
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
5074
|
+
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
5075
|
+
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
5076
|
+
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
5077
|
+
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
5078
|
+
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
5079
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
5080
|
+
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
5081
|
+
initiatedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutInitiatorNestedInput;
|
|
5082
|
+
reviewedTerminations?: Prisma.ApplicationTerminationUpdateManyWithoutReviewerNestedInput;
|
|
5083
|
+
offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
|
|
5084
|
+
offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
|
|
5085
|
+
transferRequestsSubmitted?: Prisma.PropertyTransferRequestUpdateManyWithoutRequestedByNestedInput;
|
|
5086
|
+
transferRequestsReviewed?: Prisma.PropertyTransferRequestUpdateManyWithoutReviewedByNestedInput;
|
|
5087
|
+
approvalRequestsSubmitted?: Prisma.ApprovalRequestUpdateManyWithoutRequestedByNestedInput;
|
|
5088
|
+
approvalRequestsAssigned?: Prisma.ApprovalRequestUpdateManyWithoutAssigneeNestedInput;
|
|
5089
|
+
approvalRequestsReviewed?: Prisma.ApprovalRequestUpdateManyWithoutReviewedByNestedInput;
|
|
5090
|
+
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
5091
|
+
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
5092
|
+
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
5093
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
5094
|
+
};
|
|
5095
|
+
export type UserUncheckedUpdateWithoutGateActedStepsInput = {
|
|
5096
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5097
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
5098
|
+
password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5099
|
+
phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5100
|
+
firstName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5101
|
+
lastName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5102
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
5103
|
+
isEmailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
5104
|
+
googleId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5105
|
+
avatar?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5106
|
+
tenantId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5107
|
+
walletId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5108
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
5109
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
5110
|
+
emailVerifiedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
5111
|
+
emailVerificationToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
5112
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
5113
|
+
tenantMemberships?: Prisma.TenantMembershipUncheckedUpdateManyWithoutUserNestedInput;
|
|
5114
|
+
userRoles?: Prisma.UserRoleUncheckedUpdateManyWithoutUserNestedInput;
|
|
5115
|
+
refreshTokens?: Prisma.RefreshTokenUncheckedUpdateManyWithoutUserNestedInput;
|
|
5116
|
+
passwordResets?: Prisma.PasswordResetUncheckedUpdateManyWithoutUserNestedInput;
|
|
5117
|
+
suspensions?: Prisma.UserSuspensionUncheckedUpdateManyWithoutUserNestedInput;
|
|
5118
|
+
emailPreferences?: Prisma.EmailPreferenceUncheckedUpdateManyWithoutUserNestedInput;
|
|
5119
|
+
deviceEndpoints?: Prisma.DeviceEndpointUncheckedUpdateManyWithoutUserNestedInput;
|
|
5120
|
+
socials?: Prisma.SocialUncheckedUpdateManyWithoutUserNestedInput;
|
|
5121
|
+
properties?: Prisma.PropertyUncheckedUpdateManyWithoutUserNestedInput;
|
|
5122
|
+
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
5123
|
+
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
5124
|
+
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
5125
|
+
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
4537
5126
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
4538
5127
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
4539
5128
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -4550,6 +5139,7 @@ export type UserUncheckedUpdateWithoutAssignedStepsInput = {
|
|
|
4550
5139
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
4551
5140
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
4552
5141
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
5142
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
4553
5143
|
};
|
|
4554
5144
|
export type UserCreateWithoutStepApprovalsInput = {
|
|
4555
5145
|
id?: string;
|
|
@@ -4582,6 +5172,7 @@ export type UserCreateWithoutStepApprovalsInput = {
|
|
|
4582
5172
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
4583
5173
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
4584
5174
|
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
5175
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
4585
5176
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
4586
5177
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
4587
5178
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
@@ -4597,6 +5188,7 @@ export type UserCreateWithoutStepApprovalsInput = {
|
|
|
4597
5188
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
4598
5189
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
4599
5190
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
5191
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
4600
5192
|
};
|
|
4601
5193
|
export type UserUncheckedCreateWithoutStepApprovalsInput = {
|
|
4602
5194
|
id?: string;
|
|
@@ -4629,6 +5221,7 @@ export type UserUncheckedCreateWithoutStepApprovalsInput = {
|
|
|
4629
5221
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
4630
5222
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
4631
5223
|
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
5224
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
4632
5225
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
4633
5226
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
4634
5227
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
@@ -4644,6 +5237,7 @@ export type UserUncheckedCreateWithoutStepApprovalsInput = {
|
|
|
4644
5237
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4645
5238
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
4646
5239
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
5240
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
4647
5241
|
};
|
|
4648
5242
|
export type UserCreateOrConnectWithoutStepApprovalsInput = {
|
|
4649
5243
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -4689,6 +5283,7 @@ export type UserUpdateWithoutStepApprovalsInput = {
|
|
|
4689
5283
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
4690
5284
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
4691
5285
|
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
5286
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
4692
5287
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
4693
5288
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
4694
5289
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
@@ -4704,6 +5299,7 @@ export type UserUpdateWithoutStepApprovalsInput = {
|
|
|
4704
5299
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
4705
5300
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
4706
5301
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
5302
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
4707
5303
|
};
|
|
4708
5304
|
export type UserUncheckedUpdateWithoutStepApprovalsInput = {
|
|
4709
5305
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -4736,6 +5332,7 @@ export type UserUncheckedUpdateWithoutStepApprovalsInput = {
|
|
|
4736
5332
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
4737
5333
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
4738
5334
|
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
5335
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
4739
5336
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
4740
5337
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
4741
5338
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
@@ -4751,6 +5348,7 @@ export type UserUncheckedUpdateWithoutStepApprovalsInput = {
|
|
|
4751
5348
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
4752
5349
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
4753
5350
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
5351
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
4754
5352
|
};
|
|
4755
5353
|
export type UserCreateWithoutApplicationPaymentsInput = {
|
|
4756
5354
|
id?: string;
|
|
@@ -4782,6 +5380,7 @@ export type UserCreateWithoutApplicationPaymentsInput = {
|
|
|
4782
5380
|
applications?: Prisma.ApplicationCreateNestedManyWithoutBuyerInput;
|
|
4783
5381
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
4784
5382
|
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
5383
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
4785
5384
|
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
4786
5385
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
4787
5386
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -4798,6 +5397,7 @@ export type UserCreateWithoutApplicationPaymentsInput = {
|
|
|
4798
5397
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
4799
5398
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
4800
5399
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
5400
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
4801
5401
|
};
|
|
4802
5402
|
export type UserUncheckedCreateWithoutApplicationPaymentsInput = {
|
|
4803
5403
|
id?: string;
|
|
@@ -4829,6 +5429,7 @@ export type UserUncheckedCreateWithoutApplicationPaymentsInput = {
|
|
|
4829
5429
|
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutBuyerInput;
|
|
4830
5430
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
4831
5431
|
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
5432
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
4832
5433
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
4833
5434
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
4834
5435
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -4845,6 +5446,7 @@ export type UserUncheckedCreateWithoutApplicationPaymentsInput = {
|
|
|
4845
5446
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
4846
5447
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
4847
5448
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
5449
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
4848
5450
|
};
|
|
4849
5451
|
export type UserCreateOrConnectWithoutApplicationPaymentsInput = {
|
|
4850
5452
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -4889,6 +5491,7 @@ export type UserUpdateWithoutApplicationPaymentsInput = {
|
|
|
4889
5491
|
applications?: Prisma.ApplicationUpdateManyWithoutBuyerNestedInput;
|
|
4890
5492
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
4891
5493
|
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
5494
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
4892
5495
|
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
4893
5496
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
4894
5497
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -4905,6 +5508,7 @@ export type UserUpdateWithoutApplicationPaymentsInput = {
|
|
|
4905
5508
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
4906
5509
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
4907
5510
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
5511
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
4908
5512
|
};
|
|
4909
5513
|
export type UserUncheckedUpdateWithoutApplicationPaymentsInput = {
|
|
4910
5514
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -4936,6 +5540,7 @@ export type UserUncheckedUpdateWithoutApplicationPaymentsInput = {
|
|
|
4936
5540
|
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutBuyerNestedInput;
|
|
4937
5541
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
4938
5542
|
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
5543
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
4939
5544
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
4940
5545
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
4941
5546
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -4952,6 +5557,7 @@ export type UserUncheckedUpdateWithoutApplicationPaymentsInput = {
|
|
|
4952
5557
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
4953
5558
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
4954
5559
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
5560
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
4955
5561
|
};
|
|
4956
5562
|
export type UserCreateWithoutUploadedDocsInput = {
|
|
4957
5563
|
id?: string;
|
|
@@ -4984,6 +5590,7 @@ export type UserCreateWithoutUploadedDocsInput = {
|
|
|
4984
5590
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
4985
5591
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
4986
5592
|
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
5593
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
4987
5594
|
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
4988
5595
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
4989
5596
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
@@ -4999,6 +5606,7 @@ export type UserCreateWithoutUploadedDocsInput = {
|
|
|
4999
5606
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
5000
5607
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
5001
5608
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
5609
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
5002
5610
|
};
|
|
5003
5611
|
export type UserUncheckedCreateWithoutUploadedDocsInput = {
|
|
5004
5612
|
id?: string;
|
|
@@ -5031,6 +5639,7 @@ export type UserUncheckedCreateWithoutUploadedDocsInput = {
|
|
|
5031
5639
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
5032
5640
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
5033
5641
|
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
5642
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
5034
5643
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
5035
5644
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
5036
5645
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
@@ -5046,6 +5655,7 @@ export type UserUncheckedCreateWithoutUploadedDocsInput = {
|
|
|
5046
5655
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
5047
5656
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
5048
5657
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
5658
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
5049
5659
|
};
|
|
5050
5660
|
export type UserCreateOrConnectWithoutUploadedDocsInput = {
|
|
5051
5661
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -5091,6 +5701,7 @@ export type UserUpdateWithoutUploadedDocsInput = {
|
|
|
5091
5701
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
5092
5702
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
5093
5703
|
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
5704
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
5094
5705
|
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
5095
5706
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
5096
5707
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
@@ -5106,6 +5717,7 @@ export type UserUpdateWithoutUploadedDocsInput = {
|
|
|
5106
5717
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
5107
5718
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
5108
5719
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
5720
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
5109
5721
|
};
|
|
5110
5722
|
export type UserUncheckedUpdateWithoutUploadedDocsInput = {
|
|
5111
5723
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -5138,6 +5750,7 @@ export type UserUncheckedUpdateWithoutUploadedDocsInput = {
|
|
|
5138
5750
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
5139
5751
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
5140
5752
|
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
5753
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
5141
5754
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
5142
5755
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
5143
5756
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
@@ -5153,6 +5766,7 @@ export type UserUncheckedUpdateWithoutUploadedDocsInput = {
|
|
|
5153
5766
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
5154
5767
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
5155
5768
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
5769
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
5156
5770
|
};
|
|
5157
5771
|
export type UserCreateWithoutOfferLettersGeneratedInput = {
|
|
5158
5772
|
id?: string;
|
|
@@ -5185,6 +5799,7 @@ export type UserCreateWithoutOfferLettersGeneratedInput = {
|
|
|
5185
5799
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
5186
5800
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
5187
5801
|
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
5802
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
5188
5803
|
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
5189
5804
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
5190
5805
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -5200,6 +5815,7 @@ export type UserCreateWithoutOfferLettersGeneratedInput = {
|
|
|
5200
5815
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
5201
5816
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
5202
5817
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
5818
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
5203
5819
|
};
|
|
5204
5820
|
export type UserUncheckedCreateWithoutOfferLettersGeneratedInput = {
|
|
5205
5821
|
id?: string;
|
|
@@ -5232,6 +5848,7 @@ export type UserUncheckedCreateWithoutOfferLettersGeneratedInput = {
|
|
|
5232
5848
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
5233
5849
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
5234
5850
|
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
5851
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
5235
5852
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
5236
5853
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
5237
5854
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -5247,6 +5864,7 @@ export type UserUncheckedCreateWithoutOfferLettersGeneratedInput = {
|
|
|
5247
5864
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
5248
5865
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
5249
5866
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
5867
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
5250
5868
|
};
|
|
5251
5869
|
export type UserCreateOrConnectWithoutOfferLettersGeneratedInput = {
|
|
5252
5870
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -5283,6 +5901,7 @@ export type UserCreateWithoutOfferLettersSentInput = {
|
|
|
5283
5901
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
5284
5902
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
5285
5903
|
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
5904
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
5286
5905
|
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
5287
5906
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
5288
5907
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -5298,6 +5917,7 @@ export type UserCreateWithoutOfferLettersSentInput = {
|
|
|
5298
5917
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
5299
5918
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
5300
5919
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
5920
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
5301
5921
|
};
|
|
5302
5922
|
export type UserUncheckedCreateWithoutOfferLettersSentInput = {
|
|
5303
5923
|
id?: string;
|
|
@@ -5330,6 +5950,7 @@ export type UserUncheckedCreateWithoutOfferLettersSentInput = {
|
|
|
5330
5950
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
5331
5951
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
5332
5952
|
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
5953
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
5333
5954
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
5334
5955
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
5335
5956
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -5345,6 +5966,7 @@ export type UserUncheckedCreateWithoutOfferLettersSentInput = {
|
|
|
5345
5966
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
5346
5967
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
5347
5968
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
5969
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
5348
5970
|
};
|
|
5349
5971
|
export type UserCreateOrConnectWithoutOfferLettersSentInput = {
|
|
5350
5972
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -5390,6 +6012,7 @@ export type UserUpdateWithoutOfferLettersGeneratedInput = {
|
|
|
5390
6012
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
5391
6013
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
5392
6014
|
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
6015
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
5393
6016
|
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
5394
6017
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
5395
6018
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -5405,6 +6028,7 @@ export type UserUpdateWithoutOfferLettersGeneratedInput = {
|
|
|
5405
6028
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
5406
6029
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
5407
6030
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
6031
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
5408
6032
|
};
|
|
5409
6033
|
export type UserUncheckedUpdateWithoutOfferLettersGeneratedInput = {
|
|
5410
6034
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -5437,6 +6061,7 @@ export type UserUncheckedUpdateWithoutOfferLettersGeneratedInput = {
|
|
|
5437
6061
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
5438
6062
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
5439
6063
|
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
6064
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
5440
6065
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
5441
6066
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
5442
6067
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -5452,6 +6077,7 @@ export type UserUncheckedUpdateWithoutOfferLettersGeneratedInput = {
|
|
|
5452
6077
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
5453
6078
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
5454
6079
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
6080
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
5455
6081
|
};
|
|
5456
6082
|
export type UserUpsertWithoutOfferLettersSentInput = {
|
|
5457
6083
|
update: Prisma.XOR<Prisma.UserUpdateWithoutOfferLettersSentInput, Prisma.UserUncheckedUpdateWithoutOfferLettersSentInput>;
|
|
@@ -5493,6 +6119,7 @@ export type UserUpdateWithoutOfferLettersSentInput = {
|
|
|
5493
6119
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
5494
6120
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
5495
6121
|
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
6122
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
5496
6123
|
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
5497
6124
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
5498
6125
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -5508,6 +6135,7 @@ export type UserUpdateWithoutOfferLettersSentInput = {
|
|
|
5508
6135
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
5509
6136
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
5510
6137
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
6138
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
5511
6139
|
};
|
|
5512
6140
|
export type UserUncheckedUpdateWithoutOfferLettersSentInput = {
|
|
5513
6141
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -5540,6 +6168,7 @@ export type UserUncheckedUpdateWithoutOfferLettersSentInput = {
|
|
|
5540
6168
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
5541
6169
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
5542
6170
|
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
6171
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
5543
6172
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
5544
6173
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
5545
6174
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -5555,6 +6184,7 @@ export type UserUncheckedUpdateWithoutOfferLettersSentInput = {
|
|
|
5555
6184
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
5556
6185
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
5557
6186
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
6187
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
5558
6188
|
};
|
|
5559
6189
|
export type UserCreateWithoutInitiatedTerminationsInput = {
|
|
5560
6190
|
id?: string;
|
|
@@ -5587,6 +6217,7 @@ export type UserCreateWithoutInitiatedTerminationsInput = {
|
|
|
5587
6217
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
5588
6218
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
5589
6219
|
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
6220
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
5590
6221
|
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
5591
6222
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
5592
6223
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -5602,6 +6233,7 @@ export type UserCreateWithoutInitiatedTerminationsInput = {
|
|
|
5602
6233
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
5603
6234
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
5604
6235
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
6236
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
5605
6237
|
};
|
|
5606
6238
|
export type UserUncheckedCreateWithoutInitiatedTerminationsInput = {
|
|
5607
6239
|
id?: string;
|
|
@@ -5634,6 +6266,7 @@ export type UserUncheckedCreateWithoutInitiatedTerminationsInput = {
|
|
|
5634
6266
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
5635
6267
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
5636
6268
|
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
6269
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
5637
6270
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
5638
6271
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
5639
6272
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -5649,6 +6282,7 @@ export type UserUncheckedCreateWithoutInitiatedTerminationsInput = {
|
|
|
5649
6282
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
5650
6283
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
5651
6284
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
6285
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
5652
6286
|
};
|
|
5653
6287
|
export type UserCreateOrConnectWithoutInitiatedTerminationsInput = {
|
|
5654
6288
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -5685,6 +6319,7 @@ export type UserCreateWithoutReviewedTerminationsInput = {
|
|
|
5685
6319
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
5686
6320
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
5687
6321
|
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
6322
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
5688
6323
|
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
5689
6324
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
5690
6325
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -5700,6 +6335,7 @@ export type UserCreateWithoutReviewedTerminationsInput = {
|
|
|
5700
6335
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
5701
6336
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
5702
6337
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
6338
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
5703
6339
|
};
|
|
5704
6340
|
export type UserUncheckedCreateWithoutReviewedTerminationsInput = {
|
|
5705
6341
|
id?: string;
|
|
@@ -5732,6 +6368,7 @@ export type UserUncheckedCreateWithoutReviewedTerminationsInput = {
|
|
|
5732
6368
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
5733
6369
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
5734
6370
|
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
6371
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
5735
6372
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
5736
6373
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
5737
6374
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -5747,6 +6384,7 @@ export type UserUncheckedCreateWithoutReviewedTerminationsInput = {
|
|
|
5747
6384
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
5748
6385
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
5749
6386
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
6387
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
5750
6388
|
};
|
|
5751
6389
|
export type UserCreateOrConnectWithoutReviewedTerminationsInput = {
|
|
5752
6390
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -5792,6 +6430,7 @@ export type UserUpdateWithoutInitiatedTerminationsInput = {
|
|
|
5792
6430
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
5793
6431
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
5794
6432
|
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
6433
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
5795
6434
|
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
5796
6435
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
5797
6436
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -5807,6 +6446,7 @@ export type UserUpdateWithoutInitiatedTerminationsInput = {
|
|
|
5807
6446
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
5808
6447
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
5809
6448
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
6449
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
5810
6450
|
};
|
|
5811
6451
|
export type UserUncheckedUpdateWithoutInitiatedTerminationsInput = {
|
|
5812
6452
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -5839,6 +6479,7 @@ export type UserUncheckedUpdateWithoutInitiatedTerminationsInput = {
|
|
|
5839
6479
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
5840
6480
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
5841
6481
|
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
6482
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
5842
6483
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
5843
6484
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
5844
6485
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -5854,6 +6495,7 @@ export type UserUncheckedUpdateWithoutInitiatedTerminationsInput = {
|
|
|
5854
6495
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
5855
6496
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
5856
6497
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
6498
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
5857
6499
|
};
|
|
5858
6500
|
export type UserUpsertWithoutReviewedTerminationsInput = {
|
|
5859
6501
|
update: Prisma.XOR<Prisma.UserUpdateWithoutReviewedTerminationsInput, Prisma.UserUncheckedUpdateWithoutReviewedTerminationsInput>;
|
|
@@ -5895,6 +6537,7 @@ export type UserUpdateWithoutReviewedTerminationsInput = {
|
|
|
5895
6537
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
5896
6538
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
5897
6539
|
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
6540
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
5898
6541
|
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
5899
6542
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
5900
6543
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -5910,6 +6553,7 @@ export type UserUpdateWithoutReviewedTerminationsInput = {
|
|
|
5910
6553
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
5911
6554
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
5912
6555
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
6556
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
5913
6557
|
};
|
|
5914
6558
|
export type UserUncheckedUpdateWithoutReviewedTerminationsInput = {
|
|
5915
6559
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -5942,6 +6586,7 @@ export type UserUncheckedUpdateWithoutReviewedTerminationsInput = {
|
|
|
5942
6586
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
5943
6587
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
5944
6588
|
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
6589
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
5945
6590
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
5946
6591
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
5947
6592
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -5957,6 +6602,7 @@ export type UserUncheckedUpdateWithoutReviewedTerminationsInput = {
|
|
|
5957
6602
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
5958
6603
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
5959
6604
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
6605
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
5960
6606
|
};
|
|
5961
6607
|
export type UserCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
5962
6608
|
id?: string;
|
|
@@ -5989,6 +6635,7 @@ export type UserCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
5989
6635
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
5990
6636
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
5991
6637
|
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
6638
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
5992
6639
|
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
5993
6640
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
5994
6641
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
|
|
@@ -6004,6 +6651,7 @@ export type UserCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
6004
6651
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
6005
6652
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
6006
6653
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
6654
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
6007
6655
|
};
|
|
6008
6656
|
export type UserUncheckedCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
6009
6657
|
id?: string;
|
|
@@ -6036,6 +6684,7 @@ export type UserUncheckedCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
6036
6684
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
6037
6685
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
6038
6686
|
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
6687
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
6039
6688
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
6040
6689
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
6041
6690
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
|
|
@@ -6051,6 +6700,7 @@ export type UserUncheckedCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
6051
6700
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
6052
6701
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
6053
6702
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
6703
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
6054
6704
|
};
|
|
6055
6705
|
export type UserCreateOrConnectWithoutPaymentMethodChangeRequestsInput = {
|
|
6056
6706
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -6087,6 +6737,7 @@ export type UserCreateWithoutReviewedChangeRequestsInput = {
|
|
|
6087
6737
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
6088
6738
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
6089
6739
|
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
6740
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
6090
6741
|
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
6091
6742
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
6092
6743
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -6102,6 +6753,7 @@ export type UserCreateWithoutReviewedChangeRequestsInput = {
|
|
|
6102
6753
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
6103
6754
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
6104
6755
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
6756
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
6105
6757
|
};
|
|
6106
6758
|
export type UserUncheckedCreateWithoutReviewedChangeRequestsInput = {
|
|
6107
6759
|
id?: string;
|
|
@@ -6134,6 +6786,7 @@ export type UserUncheckedCreateWithoutReviewedChangeRequestsInput = {
|
|
|
6134
6786
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
6135
6787
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
6136
6788
|
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
6789
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
6137
6790
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
6138
6791
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
6139
6792
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -6149,6 +6802,7 @@ export type UserUncheckedCreateWithoutReviewedChangeRequestsInput = {
|
|
|
6149
6802
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
6150
6803
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
6151
6804
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
6805
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
6152
6806
|
};
|
|
6153
6807
|
export type UserCreateOrConnectWithoutReviewedChangeRequestsInput = {
|
|
6154
6808
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -6194,6 +6848,7 @@ export type UserUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
6194
6848
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
6195
6849
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
6196
6850
|
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
6851
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
6197
6852
|
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
6198
6853
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
6199
6854
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
|
|
@@ -6209,6 +6864,7 @@ export type UserUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
6209
6864
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
6210
6865
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
6211
6866
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
6867
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
6212
6868
|
};
|
|
6213
6869
|
export type UserUncheckedUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
6214
6870
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -6241,6 +6897,7 @@ export type UserUncheckedUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
6241
6897
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
6242
6898
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
6243
6899
|
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
6900
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
6244
6901
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
6245
6902
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
6246
6903
|
reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
|
|
@@ -6256,6 +6913,7 @@ export type UserUncheckedUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
6256
6913
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
6257
6914
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
6258
6915
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
6916
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
6259
6917
|
};
|
|
6260
6918
|
export type UserUpsertWithoutReviewedChangeRequestsInput = {
|
|
6261
6919
|
update: Prisma.XOR<Prisma.UserUpdateWithoutReviewedChangeRequestsInput, Prisma.UserUncheckedUpdateWithoutReviewedChangeRequestsInput>;
|
|
@@ -6297,6 +6955,7 @@ export type UserUpdateWithoutReviewedChangeRequestsInput = {
|
|
|
6297
6955
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
6298
6956
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
6299
6957
|
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
6958
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
6300
6959
|
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
6301
6960
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
6302
6961
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -6312,6 +6971,7 @@ export type UserUpdateWithoutReviewedChangeRequestsInput = {
|
|
|
6312
6971
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
6313
6972
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
6314
6973
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
6974
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
6315
6975
|
};
|
|
6316
6976
|
export type UserUncheckedUpdateWithoutReviewedChangeRequestsInput = {
|
|
6317
6977
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -6344,6 +7004,7 @@ export type UserUncheckedUpdateWithoutReviewedChangeRequestsInput = {
|
|
|
6344
7004
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
6345
7005
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
6346
7006
|
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
7007
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
6347
7008
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
6348
7009
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
6349
7010
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -6359,6 +7020,7 @@ export type UserUncheckedUpdateWithoutReviewedChangeRequestsInput = {
|
|
|
6359
7020
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
6360
7021
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
6361
7022
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
7023
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
6362
7024
|
};
|
|
6363
7025
|
export type UserCreateWithoutTransferRequestsSubmittedInput = {
|
|
6364
7026
|
id?: string;
|
|
@@ -6391,6 +7053,7 @@ export type UserCreateWithoutTransferRequestsSubmittedInput = {
|
|
|
6391
7053
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
6392
7054
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
6393
7055
|
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
7056
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
6394
7057
|
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
6395
7058
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
6396
7059
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -6406,6 +7069,7 @@ export type UserCreateWithoutTransferRequestsSubmittedInput = {
|
|
|
6406
7069
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
6407
7070
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
6408
7071
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
7072
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
6409
7073
|
};
|
|
6410
7074
|
export type UserUncheckedCreateWithoutTransferRequestsSubmittedInput = {
|
|
6411
7075
|
id?: string;
|
|
@@ -6438,6 +7102,7 @@ export type UserUncheckedCreateWithoutTransferRequestsSubmittedInput = {
|
|
|
6438
7102
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
6439
7103
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
6440
7104
|
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
7105
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
6441
7106
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
6442
7107
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
6443
7108
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -6453,6 +7118,7 @@ export type UserUncheckedCreateWithoutTransferRequestsSubmittedInput = {
|
|
|
6453
7118
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
6454
7119
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
6455
7120
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
7121
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
6456
7122
|
};
|
|
6457
7123
|
export type UserCreateOrConnectWithoutTransferRequestsSubmittedInput = {
|
|
6458
7124
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -6489,6 +7155,7 @@ export type UserCreateWithoutTransferRequestsReviewedInput = {
|
|
|
6489
7155
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
6490
7156
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
6491
7157
|
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
7158
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
6492
7159
|
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
6493
7160
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
6494
7161
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -6504,6 +7171,7 @@ export type UserCreateWithoutTransferRequestsReviewedInput = {
|
|
|
6504
7171
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
6505
7172
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
6506
7173
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
7174
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
6507
7175
|
};
|
|
6508
7176
|
export type UserUncheckedCreateWithoutTransferRequestsReviewedInput = {
|
|
6509
7177
|
id?: string;
|
|
@@ -6536,6 +7204,7 @@ export type UserUncheckedCreateWithoutTransferRequestsReviewedInput = {
|
|
|
6536
7204
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
6537
7205
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
6538
7206
|
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
7207
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
6539
7208
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
6540
7209
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
6541
7210
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -6551,6 +7220,7 @@ export type UserUncheckedCreateWithoutTransferRequestsReviewedInput = {
|
|
|
6551
7220
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
6552
7221
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
6553
7222
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
7223
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
6554
7224
|
};
|
|
6555
7225
|
export type UserCreateOrConnectWithoutTransferRequestsReviewedInput = {
|
|
6556
7226
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -6596,6 +7266,7 @@ export type UserUpdateWithoutTransferRequestsSubmittedInput = {
|
|
|
6596
7266
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
6597
7267
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
6598
7268
|
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
7269
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
6599
7270
|
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
6600
7271
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
6601
7272
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -6611,6 +7282,7 @@ export type UserUpdateWithoutTransferRequestsSubmittedInput = {
|
|
|
6611
7282
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
6612
7283
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
6613
7284
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
7285
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
6614
7286
|
};
|
|
6615
7287
|
export type UserUncheckedUpdateWithoutTransferRequestsSubmittedInput = {
|
|
6616
7288
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -6643,6 +7315,7 @@ export type UserUncheckedUpdateWithoutTransferRequestsSubmittedInput = {
|
|
|
6643
7315
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
6644
7316
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
6645
7317
|
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
7318
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
6646
7319
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
6647
7320
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
6648
7321
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -6658,6 +7331,7 @@ export type UserUncheckedUpdateWithoutTransferRequestsSubmittedInput = {
|
|
|
6658
7331
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
6659
7332
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
6660
7333
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
7334
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
6661
7335
|
};
|
|
6662
7336
|
export type UserUpsertWithoutTransferRequestsReviewedInput = {
|
|
6663
7337
|
update: Prisma.XOR<Prisma.UserUpdateWithoutTransferRequestsReviewedInput, Prisma.UserUncheckedUpdateWithoutTransferRequestsReviewedInput>;
|
|
@@ -6699,6 +7373,7 @@ export type UserUpdateWithoutTransferRequestsReviewedInput = {
|
|
|
6699
7373
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
6700
7374
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
6701
7375
|
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
7376
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
6702
7377
|
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
6703
7378
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
6704
7379
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -6714,6 +7389,7 @@ export type UserUpdateWithoutTransferRequestsReviewedInput = {
|
|
|
6714
7389
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
6715
7390
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
6716
7391
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
7392
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
6717
7393
|
};
|
|
6718
7394
|
export type UserUncheckedUpdateWithoutTransferRequestsReviewedInput = {
|
|
6719
7395
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -6746,6 +7422,7 @@ export type UserUncheckedUpdateWithoutTransferRequestsReviewedInput = {
|
|
|
6746
7422
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
6747
7423
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
6748
7424
|
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
7425
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
6749
7426
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
6750
7427
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
6751
7428
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -6761,6 +7438,7 @@ export type UserUncheckedUpdateWithoutTransferRequestsReviewedInput = {
|
|
|
6761
7438
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
6762
7439
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
6763
7440
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
7441
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
6764
7442
|
};
|
|
6765
7443
|
export type UserCreateWithoutApprovalRequestsSubmittedInput = {
|
|
6766
7444
|
id?: string;
|
|
@@ -6793,6 +7471,7 @@ export type UserCreateWithoutApprovalRequestsSubmittedInput = {
|
|
|
6793
7471
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
6794
7472
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
6795
7473
|
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
7474
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
6796
7475
|
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
6797
7476
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
6798
7477
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -6808,6 +7487,7 @@ export type UserCreateWithoutApprovalRequestsSubmittedInput = {
|
|
|
6808
7487
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
6809
7488
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
6810
7489
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
7490
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
6811
7491
|
};
|
|
6812
7492
|
export type UserUncheckedCreateWithoutApprovalRequestsSubmittedInput = {
|
|
6813
7493
|
id?: string;
|
|
@@ -6840,6 +7520,7 @@ export type UserUncheckedCreateWithoutApprovalRequestsSubmittedInput = {
|
|
|
6840
7520
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
6841
7521
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
6842
7522
|
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
7523
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
6843
7524
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
6844
7525
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
6845
7526
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -6855,6 +7536,7 @@ export type UserUncheckedCreateWithoutApprovalRequestsSubmittedInput = {
|
|
|
6855
7536
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
6856
7537
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
6857
7538
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
7539
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
6858
7540
|
};
|
|
6859
7541
|
export type UserCreateOrConnectWithoutApprovalRequestsSubmittedInput = {
|
|
6860
7542
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -6891,6 +7573,7 @@ export type UserCreateWithoutApprovalRequestsAssignedInput = {
|
|
|
6891
7573
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
6892
7574
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
6893
7575
|
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
7576
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
6894
7577
|
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
6895
7578
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
6896
7579
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -6906,6 +7589,7 @@ export type UserCreateWithoutApprovalRequestsAssignedInput = {
|
|
|
6906
7589
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
6907
7590
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
6908
7591
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
7592
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
6909
7593
|
};
|
|
6910
7594
|
export type UserUncheckedCreateWithoutApprovalRequestsAssignedInput = {
|
|
6911
7595
|
id?: string;
|
|
@@ -6938,6 +7622,7 @@ export type UserUncheckedCreateWithoutApprovalRequestsAssignedInput = {
|
|
|
6938
7622
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
6939
7623
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
6940
7624
|
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
7625
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
6941
7626
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
6942
7627
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
6943
7628
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -6953,6 +7638,7 @@ export type UserUncheckedCreateWithoutApprovalRequestsAssignedInput = {
|
|
|
6953
7638
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
6954
7639
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
6955
7640
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
7641
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
6956
7642
|
};
|
|
6957
7643
|
export type UserCreateOrConnectWithoutApprovalRequestsAssignedInput = {
|
|
6958
7644
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -6989,6 +7675,7 @@ export type UserCreateWithoutApprovalRequestsReviewedInput = {
|
|
|
6989
7675
|
soldApplications?: Prisma.ApplicationCreateNestedManyWithoutSellerInput;
|
|
6990
7676
|
applicationPayments?: Prisma.ApplicationPaymentCreateNestedManyWithoutPayerInput;
|
|
6991
7677
|
assignedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutAssigneeInput;
|
|
7678
|
+
gateActedSteps?: Prisma.DocumentationStepCreateNestedManyWithoutGateActedByInput;
|
|
6992
7679
|
stepApprovals?: Prisma.DocumentationStepApprovalCreateNestedManyWithoutApproverInput;
|
|
6993
7680
|
uploadedDocs?: Prisma.ApplicationDocumentCreateNestedManyWithoutUploadedByInput;
|
|
6994
7681
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
|
|
@@ -7004,6 +7691,7 @@ export type UserCreateWithoutApprovalRequestsReviewedInput = {
|
|
|
7004
7691
|
requestedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutRequestedByInput;
|
|
7005
7692
|
approvedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutApprovedByInput;
|
|
7006
7693
|
processedRefunds?: Prisma.ApplicationRefundCreateNestedManyWithoutProcessedByInput;
|
|
7694
|
+
organizationMemberships?: Prisma.OrganizationMemberCreateNestedManyWithoutUserInput;
|
|
7007
7695
|
};
|
|
7008
7696
|
export type UserUncheckedCreateWithoutApprovalRequestsReviewedInput = {
|
|
7009
7697
|
id?: string;
|
|
@@ -7036,6 +7724,7 @@ export type UserUncheckedCreateWithoutApprovalRequestsReviewedInput = {
|
|
|
7036
7724
|
soldApplications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutSellerInput;
|
|
7037
7725
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedCreateNestedManyWithoutPayerInput;
|
|
7038
7726
|
assignedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutAssigneeInput;
|
|
7727
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedCreateNestedManyWithoutGateActedByInput;
|
|
7039
7728
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
|
|
7040
7729
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
|
|
7041
7730
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
|
|
@@ -7051,6 +7740,7 @@ export type UserUncheckedCreateWithoutApprovalRequestsReviewedInput = {
|
|
|
7051
7740
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutRequestedByInput;
|
|
7052
7741
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutApprovedByInput;
|
|
7053
7742
|
processedRefunds?: Prisma.ApplicationRefundUncheckedCreateNestedManyWithoutProcessedByInput;
|
|
7743
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedCreateNestedManyWithoutUserInput;
|
|
7054
7744
|
};
|
|
7055
7745
|
export type UserCreateOrConnectWithoutApprovalRequestsReviewedInput = {
|
|
7056
7746
|
where: Prisma.UserWhereUniqueInput;
|
|
@@ -7096,6 +7786,7 @@ export type UserUpdateWithoutApprovalRequestsSubmittedInput = {
|
|
|
7096
7786
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
7097
7787
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
7098
7788
|
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
7789
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
7099
7790
|
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
7100
7791
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
7101
7792
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -7111,6 +7802,7 @@ export type UserUpdateWithoutApprovalRequestsSubmittedInput = {
|
|
|
7111
7802
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
7112
7803
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
7113
7804
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
7805
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
7114
7806
|
};
|
|
7115
7807
|
export type UserUncheckedUpdateWithoutApprovalRequestsSubmittedInput = {
|
|
7116
7808
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -7143,6 +7835,7 @@ export type UserUncheckedUpdateWithoutApprovalRequestsSubmittedInput = {
|
|
|
7143
7835
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
7144
7836
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
7145
7837
|
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
7838
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
7146
7839
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
7147
7840
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
7148
7841
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -7158,6 +7851,7 @@ export type UserUncheckedUpdateWithoutApprovalRequestsSubmittedInput = {
|
|
|
7158
7851
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
7159
7852
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
7160
7853
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
7854
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
7161
7855
|
};
|
|
7162
7856
|
export type UserUpsertWithoutApprovalRequestsAssignedInput = {
|
|
7163
7857
|
update: Prisma.XOR<Prisma.UserUpdateWithoutApprovalRequestsAssignedInput, Prisma.UserUncheckedUpdateWithoutApprovalRequestsAssignedInput>;
|
|
@@ -7199,6 +7893,7 @@ export type UserUpdateWithoutApprovalRequestsAssignedInput = {
|
|
|
7199
7893
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
7200
7894
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
7201
7895
|
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
7896
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
7202
7897
|
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
7203
7898
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
7204
7899
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -7214,6 +7909,7 @@ export type UserUpdateWithoutApprovalRequestsAssignedInput = {
|
|
|
7214
7909
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
7215
7910
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
7216
7911
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
7912
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
7217
7913
|
};
|
|
7218
7914
|
export type UserUncheckedUpdateWithoutApprovalRequestsAssignedInput = {
|
|
7219
7915
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -7246,6 +7942,7 @@ export type UserUncheckedUpdateWithoutApprovalRequestsAssignedInput = {
|
|
|
7246
7942
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
7247
7943
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
7248
7944
|
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
7945
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
7249
7946
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
7250
7947
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
7251
7948
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -7261,6 +7958,7 @@ export type UserUncheckedUpdateWithoutApprovalRequestsAssignedInput = {
|
|
|
7261
7958
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
7262
7959
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
7263
7960
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
7961
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
7264
7962
|
};
|
|
7265
7963
|
export type UserUpsertWithoutApprovalRequestsReviewedInput = {
|
|
7266
7964
|
update: Prisma.XOR<Prisma.UserUpdateWithoutApprovalRequestsReviewedInput, Prisma.UserUncheckedUpdateWithoutApprovalRequestsReviewedInput>;
|
|
@@ -7302,6 +8000,7 @@ export type UserUpdateWithoutApprovalRequestsReviewedInput = {
|
|
|
7302
8000
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
7303
8001
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
7304
8002
|
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
8003
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
7305
8004
|
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
7306
8005
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
7307
8006
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -7317,6 +8016,7 @@ export type UserUpdateWithoutApprovalRequestsReviewedInput = {
|
|
|
7317
8016
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
7318
8017
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
7319
8018
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
8019
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
7320
8020
|
};
|
|
7321
8021
|
export type UserUncheckedUpdateWithoutApprovalRequestsReviewedInput = {
|
|
7322
8022
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -7349,6 +8049,7 @@ export type UserUncheckedUpdateWithoutApprovalRequestsReviewedInput = {
|
|
|
7349
8049
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
7350
8050
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
7351
8051
|
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
8052
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
7352
8053
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
7353
8054
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
7354
8055
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -7364,6 +8065,7 @@ export type UserUncheckedUpdateWithoutApprovalRequestsReviewedInput = {
|
|
|
7364
8065
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
7365
8066
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
7366
8067
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
8068
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
7367
8069
|
};
|
|
7368
8070
|
export type UserCreateManyTenantInput = {
|
|
7369
8071
|
id?: string;
|
|
@@ -7413,6 +8115,7 @@ export type UserUpdateWithoutTenantInput = {
|
|
|
7413
8115
|
soldApplications?: Prisma.ApplicationUpdateManyWithoutSellerNestedInput;
|
|
7414
8116
|
applicationPayments?: Prisma.ApplicationPaymentUpdateManyWithoutPayerNestedInput;
|
|
7415
8117
|
assignedSteps?: Prisma.DocumentationStepUpdateManyWithoutAssigneeNestedInput;
|
|
8118
|
+
gateActedSteps?: Prisma.DocumentationStepUpdateManyWithoutGateActedByNestedInput;
|
|
7416
8119
|
stepApprovals?: Prisma.DocumentationStepApprovalUpdateManyWithoutApproverNestedInput;
|
|
7417
8120
|
uploadedDocs?: Prisma.ApplicationDocumentUpdateManyWithoutUploadedByNestedInput;
|
|
7418
8121
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
|
|
@@ -7429,6 +8132,7 @@ export type UserUpdateWithoutTenantInput = {
|
|
|
7429
8132
|
requestedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutRequestedByNestedInput;
|
|
7430
8133
|
approvedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutApprovedByNestedInput;
|
|
7431
8134
|
processedRefunds?: Prisma.ApplicationRefundUpdateManyWithoutProcessedByNestedInput;
|
|
8135
|
+
organizationMemberships?: Prisma.OrganizationMemberUpdateManyWithoutUserNestedInput;
|
|
7432
8136
|
};
|
|
7433
8137
|
export type UserUncheckedUpdateWithoutTenantInput = {
|
|
7434
8138
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -7460,6 +8164,7 @@ export type UserUncheckedUpdateWithoutTenantInput = {
|
|
|
7460
8164
|
soldApplications?: Prisma.ApplicationUncheckedUpdateManyWithoutSellerNestedInput;
|
|
7461
8165
|
applicationPayments?: Prisma.ApplicationPaymentUncheckedUpdateManyWithoutPayerNestedInput;
|
|
7462
8166
|
assignedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutAssigneeNestedInput;
|
|
8167
|
+
gateActedSteps?: Prisma.DocumentationStepUncheckedUpdateManyWithoutGateActedByNestedInput;
|
|
7463
8168
|
stepApprovals?: Prisma.DocumentationStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
|
|
7464
8169
|
uploadedDocs?: Prisma.ApplicationDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
|
|
7465
8170
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
|
|
@@ -7476,6 +8181,7 @@ export type UserUncheckedUpdateWithoutTenantInput = {
|
|
|
7476
8181
|
requestedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutRequestedByNestedInput;
|
|
7477
8182
|
approvedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutApprovedByNestedInput;
|
|
7478
8183
|
processedRefunds?: Prisma.ApplicationRefundUncheckedUpdateManyWithoutProcessedByNestedInput;
|
|
8184
|
+
organizationMemberships?: Prisma.OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput;
|
|
7479
8185
|
};
|
|
7480
8186
|
export type UserUncheckedUpdateManyWithoutTenantInput = {
|
|
7481
8187
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -7512,6 +8218,7 @@ export type UserCountOutputType = {
|
|
|
7512
8218
|
soldApplications: number;
|
|
7513
8219
|
applicationPayments: number;
|
|
7514
8220
|
assignedSteps: number;
|
|
8221
|
+
gateActedSteps: number;
|
|
7515
8222
|
stepApprovals: number;
|
|
7516
8223
|
uploadedDocs: number;
|
|
7517
8224
|
paymentMethodChangeRequests: number;
|
|
@@ -7528,6 +8235,7 @@ export type UserCountOutputType = {
|
|
|
7528
8235
|
requestedRefunds: number;
|
|
7529
8236
|
approvedRefunds: number;
|
|
7530
8237
|
processedRefunds: number;
|
|
8238
|
+
organizationMemberships: number;
|
|
7531
8239
|
};
|
|
7532
8240
|
export type UserCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
7533
8241
|
tenantMemberships?: boolean | UserCountOutputTypeCountTenantMembershipsArgs;
|
|
@@ -7543,6 +8251,7 @@ export type UserCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.I
|
|
|
7543
8251
|
soldApplications?: boolean | UserCountOutputTypeCountSoldApplicationsArgs;
|
|
7544
8252
|
applicationPayments?: boolean | UserCountOutputTypeCountApplicationPaymentsArgs;
|
|
7545
8253
|
assignedSteps?: boolean | UserCountOutputTypeCountAssignedStepsArgs;
|
|
8254
|
+
gateActedSteps?: boolean | UserCountOutputTypeCountGateActedStepsArgs;
|
|
7546
8255
|
stepApprovals?: boolean | UserCountOutputTypeCountStepApprovalsArgs;
|
|
7547
8256
|
uploadedDocs?: boolean | UserCountOutputTypeCountUploadedDocsArgs;
|
|
7548
8257
|
paymentMethodChangeRequests?: boolean | UserCountOutputTypeCountPaymentMethodChangeRequestsArgs;
|
|
@@ -7559,6 +8268,7 @@ export type UserCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.I
|
|
|
7559
8268
|
requestedRefunds?: boolean | UserCountOutputTypeCountRequestedRefundsArgs;
|
|
7560
8269
|
approvedRefunds?: boolean | UserCountOutputTypeCountApprovedRefundsArgs;
|
|
7561
8270
|
processedRefunds?: boolean | UserCountOutputTypeCountProcessedRefundsArgs;
|
|
8271
|
+
organizationMemberships?: boolean | UserCountOutputTypeCountOrganizationMembershipsArgs;
|
|
7562
8272
|
};
|
|
7563
8273
|
/**
|
|
7564
8274
|
* UserCountOutputType without action
|
|
@@ -7647,6 +8357,12 @@ export type UserCountOutputTypeCountApplicationPaymentsArgs<ExtArgs extends runt
|
|
|
7647
8357
|
export type UserCountOutputTypeCountAssignedStepsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
7648
8358
|
where?: Prisma.DocumentationStepWhereInput;
|
|
7649
8359
|
};
|
|
8360
|
+
/**
|
|
8361
|
+
* UserCountOutputType without action
|
|
8362
|
+
*/
|
|
8363
|
+
export type UserCountOutputTypeCountGateActedStepsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
8364
|
+
where?: Prisma.DocumentationStepWhereInput;
|
|
8365
|
+
};
|
|
7650
8366
|
/**
|
|
7651
8367
|
* UserCountOutputType without action
|
|
7652
8368
|
*/
|
|
@@ -7743,6 +8459,12 @@ export type UserCountOutputTypeCountApprovedRefundsArgs<ExtArgs extends runtime.
|
|
|
7743
8459
|
export type UserCountOutputTypeCountProcessedRefundsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
7744
8460
|
where?: Prisma.ApplicationRefundWhereInput;
|
|
7745
8461
|
};
|
|
8462
|
+
/**
|
|
8463
|
+
* UserCountOutputType without action
|
|
8464
|
+
*/
|
|
8465
|
+
export type UserCountOutputTypeCountOrganizationMembershipsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
8466
|
+
where?: Prisma.OrganizationMemberWhereInput;
|
|
8467
|
+
};
|
|
7746
8468
|
export type UserSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
7747
8469
|
id?: boolean;
|
|
7748
8470
|
email?: boolean;
|
|
@@ -7776,6 +8498,7 @@ export type UserSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
7776
8498
|
soldApplications?: boolean | Prisma.User$soldApplicationsArgs<ExtArgs>;
|
|
7777
8499
|
applicationPayments?: boolean | Prisma.User$applicationPaymentsArgs<ExtArgs>;
|
|
7778
8500
|
assignedSteps?: boolean | Prisma.User$assignedStepsArgs<ExtArgs>;
|
|
8501
|
+
gateActedSteps?: boolean | Prisma.User$gateActedStepsArgs<ExtArgs>;
|
|
7779
8502
|
stepApprovals?: boolean | Prisma.User$stepApprovalsArgs<ExtArgs>;
|
|
7780
8503
|
uploadedDocs?: boolean | Prisma.User$uploadedDocsArgs<ExtArgs>;
|
|
7781
8504
|
paymentMethodChangeRequests?: boolean | Prisma.User$paymentMethodChangeRequestsArgs<ExtArgs>;
|
|
@@ -7792,6 +8515,7 @@ export type UserSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
7792
8515
|
requestedRefunds?: boolean | Prisma.User$requestedRefundsArgs<ExtArgs>;
|
|
7793
8516
|
approvedRefunds?: boolean | Prisma.User$approvedRefundsArgs<ExtArgs>;
|
|
7794
8517
|
processedRefunds?: boolean | Prisma.User$processedRefundsArgs<ExtArgs>;
|
|
8518
|
+
organizationMemberships?: boolean | Prisma.User$organizationMembershipsArgs<ExtArgs>;
|
|
7795
8519
|
_count?: boolean | Prisma.UserCountOutputTypeDefaultArgs<ExtArgs>;
|
|
7796
8520
|
}, ExtArgs["result"]["user"]>;
|
|
7797
8521
|
export type UserSelectScalar = {
|
|
@@ -7830,6 +8554,7 @@ export type UserInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
7830
8554
|
soldApplications?: boolean | Prisma.User$soldApplicationsArgs<ExtArgs>;
|
|
7831
8555
|
applicationPayments?: boolean | Prisma.User$applicationPaymentsArgs<ExtArgs>;
|
|
7832
8556
|
assignedSteps?: boolean | Prisma.User$assignedStepsArgs<ExtArgs>;
|
|
8557
|
+
gateActedSteps?: boolean | Prisma.User$gateActedStepsArgs<ExtArgs>;
|
|
7833
8558
|
stepApprovals?: boolean | Prisma.User$stepApprovalsArgs<ExtArgs>;
|
|
7834
8559
|
uploadedDocs?: boolean | Prisma.User$uploadedDocsArgs<ExtArgs>;
|
|
7835
8560
|
paymentMethodChangeRequests?: boolean | Prisma.User$paymentMethodChangeRequestsArgs<ExtArgs>;
|
|
@@ -7846,6 +8571,7 @@ export type UserInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
7846
8571
|
requestedRefunds?: boolean | Prisma.User$requestedRefundsArgs<ExtArgs>;
|
|
7847
8572
|
approvedRefunds?: boolean | Prisma.User$approvedRefundsArgs<ExtArgs>;
|
|
7848
8573
|
processedRefunds?: boolean | Prisma.User$processedRefundsArgs<ExtArgs>;
|
|
8574
|
+
organizationMemberships?: boolean | Prisma.User$organizationMembershipsArgs<ExtArgs>;
|
|
7849
8575
|
_count?: boolean | Prisma.UserCountOutputTypeDefaultArgs<ExtArgs>;
|
|
7850
8576
|
};
|
|
7851
8577
|
export type $UserPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
@@ -7866,6 +8592,7 @@ export type $UserPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
7866
8592
|
soldApplications: Prisma.$ApplicationPayload<ExtArgs>[];
|
|
7867
8593
|
applicationPayments: Prisma.$ApplicationPaymentPayload<ExtArgs>[];
|
|
7868
8594
|
assignedSteps: Prisma.$DocumentationStepPayload<ExtArgs>[];
|
|
8595
|
+
gateActedSteps: Prisma.$DocumentationStepPayload<ExtArgs>[];
|
|
7869
8596
|
stepApprovals: Prisma.$DocumentationStepApprovalPayload<ExtArgs>[];
|
|
7870
8597
|
uploadedDocs: Prisma.$ApplicationDocumentPayload<ExtArgs>[];
|
|
7871
8598
|
paymentMethodChangeRequests: Prisma.$PaymentMethodChangeRequestPayload<ExtArgs>[];
|
|
@@ -7882,6 +8609,7 @@ export type $UserPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
7882
8609
|
requestedRefunds: Prisma.$ApplicationRefundPayload<ExtArgs>[];
|
|
7883
8610
|
approvedRefunds: Prisma.$ApplicationRefundPayload<ExtArgs>[];
|
|
7884
8611
|
processedRefunds: Prisma.$ApplicationRefundPayload<ExtArgs>[];
|
|
8612
|
+
organizationMemberships: Prisma.$OrganizationMemberPayload<ExtArgs>[];
|
|
7885
8613
|
};
|
|
7886
8614
|
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
|
7887
8615
|
id: string;
|
|
@@ -8193,6 +8921,7 @@ export interface Prisma__UserClient<T, Null = never, ExtArgs extends runtime.Typ
|
|
|
8193
8921
|
soldApplications<T extends Prisma.User$soldApplicationsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$soldApplicationsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ApplicationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
8194
8922
|
applicationPayments<T extends Prisma.User$applicationPaymentsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$applicationPaymentsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ApplicationPaymentPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
8195
8923
|
assignedSteps<T extends Prisma.User$assignedStepsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$assignedStepsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$DocumentationStepPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
8924
|
+
gateActedSteps<T extends Prisma.User$gateActedStepsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$gateActedStepsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$DocumentationStepPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
8196
8925
|
stepApprovals<T extends Prisma.User$stepApprovalsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$stepApprovalsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$DocumentationStepApprovalPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
8197
8926
|
uploadedDocs<T extends Prisma.User$uploadedDocsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$uploadedDocsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ApplicationDocumentPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
8198
8927
|
paymentMethodChangeRequests<T extends Prisma.User$paymentMethodChangeRequestsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$paymentMethodChangeRequestsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PaymentMethodChangeRequestPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
@@ -8209,6 +8938,7 @@ export interface Prisma__UserClient<T, Null = never, ExtArgs extends runtime.Typ
|
|
|
8209
8938
|
requestedRefunds<T extends Prisma.User$requestedRefundsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$requestedRefundsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ApplicationRefundPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
8210
8939
|
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>;
|
|
8211
8940
|
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>;
|
|
8941
|
+
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>;
|
|
8212
8942
|
/**
|
|
8213
8943
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
8214
8944
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -8913,6 +9643,29 @@ export type User$assignedStepsArgs<ExtArgs extends runtime.Types.Extensions.Inte
|
|
|
8913
9643
|
skip?: number;
|
|
8914
9644
|
distinct?: Prisma.DocumentationStepScalarFieldEnum | Prisma.DocumentationStepScalarFieldEnum[];
|
|
8915
9645
|
};
|
|
9646
|
+
/**
|
|
9647
|
+
* User.gateActedSteps
|
|
9648
|
+
*/
|
|
9649
|
+
export type User$gateActedStepsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
9650
|
+
/**
|
|
9651
|
+
* Select specific fields to fetch from the DocumentationStep
|
|
9652
|
+
*/
|
|
9653
|
+
select?: Prisma.DocumentationStepSelect<ExtArgs> | null;
|
|
9654
|
+
/**
|
|
9655
|
+
* Omit specific fields from the DocumentationStep
|
|
9656
|
+
*/
|
|
9657
|
+
omit?: Prisma.DocumentationStepOmit<ExtArgs> | null;
|
|
9658
|
+
/**
|
|
9659
|
+
* Choose, which related nodes to fetch as well
|
|
9660
|
+
*/
|
|
9661
|
+
include?: Prisma.DocumentationStepInclude<ExtArgs> | null;
|
|
9662
|
+
where?: Prisma.DocumentationStepWhereInput;
|
|
9663
|
+
orderBy?: Prisma.DocumentationStepOrderByWithRelationInput | Prisma.DocumentationStepOrderByWithRelationInput[];
|
|
9664
|
+
cursor?: Prisma.DocumentationStepWhereUniqueInput;
|
|
9665
|
+
take?: number;
|
|
9666
|
+
skip?: number;
|
|
9667
|
+
distinct?: Prisma.DocumentationStepScalarFieldEnum | Prisma.DocumentationStepScalarFieldEnum[];
|
|
9668
|
+
};
|
|
8916
9669
|
/**
|
|
8917
9670
|
* User.stepApprovals
|
|
8918
9671
|
*/
|
|
@@ -9281,6 +10034,29 @@ export type User$processedRefundsArgs<ExtArgs extends runtime.Types.Extensions.I
|
|
|
9281
10034
|
skip?: number;
|
|
9282
10035
|
distinct?: Prisma.ApplicationRefundScalarFieldEnum | Prisma.ApplicationRefundScalarFieldEnum[];
|
|
9283
10036
|
};
|
|
10037
|
+
/**
|
|
10038
|
+
* User.organizationMemberships
|
|
10039
|
+
*/
|
|
10040
|
+
export type User$organizationMembershipsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
10041
|
+
/**
|
|
10042
|
+
* Select specific fields to fetch from the OrganizationMember
|
|
10043
|
+
*/
|
|
10044
|
+
select?: Prisma.OrganizationMemberSelect<ExtArgs> | null;
|
|
10045
|
+
/**
|
|
10046
|
+
* Omit specific fields from the OrganizationMember
|
|
10047
|
+
*/
|
|
10048
|
+
omit?: Prisma.OrganizationMemberOmit<ExtArgs> | null;
|
|
10049
|
+
/**
|
|
10050
|
+
* Choose, which related nodes to fetch as well
|
|
10051
|
+
*/
|
|
10052
|
+
include?: Prisma.OrganizationMemberInclude<ExtArgs> | null;
|
|
10053
|
+
where?: Prisma.OrganizationMemberWhereInput;
|
|
10054
|
+
orderBy?: Prisma.OrganizationMemberOrderByWithRelationInput | Prisma.OrganizationMemberOrderByWithRelationInput[];
|
|
10055
|
+
cursor?: Prisma.OrganizationMemberWhereUniqueInput;
|
|
10056
|
+
take?: number;
|
|
10057
|
+
skip?: number;
|
|
10058
|
+
distinct?: Prisma.OrganizationMemberScalarFieldEnum | Prisma.OrganizationMemberScalarFieldEnum[];
|
|
10059
|
+
};
|
|
9284
10060
|
/**
|
|
9285
10061
|
* User without action
|
|
9286
10062
|
*/
|