@valentine-efagene/qshelter-common 2.0.93 → 2.0.95

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.
Files changed (46) hide show
  1. package/dist/generated/client/browser.d.ts +16 -16
  2. package/dist/generated/client/client.d.ts +16 -16
  3. package/dist/generated/client/commonInputTypes.d.ts +72 -72
  4. package/dist/generated/client/enums.d.ts +13 -13
  5. package/dist/generated/client/enums.js +10 -10
  6. package/dist/generated/client/internal/class.d.ts +32 -32
  7. package/dist/generated/client/internal/class.js +2 -2
  8. package/dist/generated/client/internal/prismaNamespace.d.ts +328 -321
  9. package/dist/generated/client/internal/prismaNamespace.js +57 -50
  10. package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +73 -66
  11. package/dist/generated/client/internal/prismaNamespaceBrowser.js +57 -50
  12. package/dist/generated/client/models/Application.d.ts +5439 -0
  13. package/dist/generated/client/models/Application.js +1 -0
  14. package/dist/generated/client/models/ApplicationDocument.d.ts +1409 -0
  15. package/dist/generated/client/models/ApplicationDocument.js +1 -0
  16. package/dist/generated/client/models/ApplicationEvent.d.ts +1254 -0
  17. package/dist/generated/client/models/ApplicationEvent.js +1 -0
  18. package/dist/generated/client/models/ApplicationPayment.d.ts +2030 -0
  19. package/dist/generated/client/models/ApplicationPayment.js +1 -0
  20. package/dist/generated/client/models/ApplicationPhase.d.ts +2243 -0
  21. package/dist/generated/client/models/ApplicationPhase.js +1 -0
  22. package/dist/generated/client/models/ApplicationRefund.d.ts +2560 -0
  23. package/dist/generated/client/models/ApplicationRefund.js +1 -0
  24. package/dist/generated/client/models/ApplicationTermination.d.ts +3446 -0
  25. package/dist/generated/client/models/ApplicationTermination.js +1 -0
  26. package/dist/generated/client/models/DocumentationPhase.d.ts +13 -13
  27. package/dist/generated/client/models/OfferLetter.d.ts +97 -97
  28. package/dist/generated/client/models/PaymentInstallment.d.ts +1660 -0
  29. package/dist/generated/client/models/PaymentInstallment.js +1 -0
  30. package/dist/generated/client/models/PaymentMethodChangeRequest.d.ts +103 -103
  31. package/dist/generated/client/models/PaymentPhase.d.ts +135 -41
  32. package/dist/generated/client/models/PaymentPlan.d.ts +259 -30
  33. package/dist/generated/client/models/PropertyPaymentMethod.d.ts +77 -77
  34. package/dist/generated/client/models/PropertyTransferRequest.d.ts +213 -213
  35. package/dist/generated/client/models/PropertyUnit.d.ts +53 -53
  36. package/dist/generated/client/models/QuestionnairePhase.d.ts +11 -11
  37. package/dist/generated/client/models/Tenant.d.ts +323 -323
  38. package/dist/generated/client/models/User.d.ts +1329 -1329
  39. package/dist/generated/client/models/index.d.ts +8 -8
  40. package/dist/generated/client/models/index.js +8 -8
  41. package/dist/generated/client/models.d.ts +8 -8
  42. package/package.json +1 -1
  43. package/prisma/migrations/20260112041159_add_flexible_term_configuration/migration.sql +11 -0
  44. package/prisma/migrations/20260112080730_rename_contract_to_application/migration.sql +529 -0
  45. package/prisma/schema.prisma +123 -108
  46. package/prisma/schema.prisma.backup +2601 -0
@@ -30,7 +30,7 @@ export type PaymentMethodChangeRequestSumAggregateOutputType = {
30
30
  export type PaymentMethodChangeRequestMinAggregateOutputType = {
31
31
  id: string | null;
32
32
  tenantId: string | null;
33
- contractId: string | null;
33
+ applicationId: string | null;
34
34
  fromPaymentMethodId: string | null;
35
35
  toPaymentMethodId: string | null;
36
36
  requestorId: string | null;
@@ -53,7 +53,7 @@ export type PaymentMethodChangeRequestMinAggregateOutputType = {
53
53
  export type PaymentMethodChangeRequestMaxAggregateOutputType = {
54
54
  id: string | null;
55
55
  tenantId: string | null;
56
- contractId: string | null;
56
+ applicationId: string | null;
57
57
  fromPaymentMethodId: string | null;
58
58
  toPaymentMethodId: string | null;
59
59
  requestorId: string | null;
@@ -76,7 +76,7 @@ export type PaymentMethodChangeRequestMaxAggregateOutputType = {
76
76
  export type PaymentMethodChangeRequestCountAggregateOutputType = {
77
77
  id: number;
78
78
  tenantId: number;
79
- contractId: number;
79
+ applicationId: number;
80
80
  fromPaymentMethodId: number;
81
81
  toPaymentMethodId: number;
82
82
  requestorId: number;
@@ -117,7 +117,7 @@ export type PaymentMethodChangeRequestSumAggregateInputType = {
117
117
  export type PaymentMethodChangeRequestMinAggregateInputType = {
118
118
  id?: true;
119
119
  tenantId?: true;
120
- contractId?: true;
120
+ applicationId?: true;
121
121
  fromPaymentMethodId?: true;
122
122
  toPaymentMethodId?: true;
123
123
  requestorId?: true;
@@ -140,7 +140,7 @@ export type PaymentMethodChangeRequestMinAggregateInputType = {
140
140
  export type PaymentMethodChangeRequestMaxAggregateInputType = {
141
141
  id?: true;
142
142
  tenantId?: true;
143
- contractId?: true;
143
+ applicationId?: true;
144
144
  fromPaymentMethodId?: true;
145
145
  toPaymentMethodId?: true;
146
146
  requestorId?: true;
@@ -163,7 +163,7 @@ export type PaymentMethodChangeRequestMaxAggregateInputType = {
163
163
  export type PaymentMethodChangeRequestCountAggregateInputType = {
164
164
  id?: true;
165
165
  tenantId?: true;
166
- contractId?: true;
166
+ applicationId?: true;
167
167
  fromPaymentMethodId?: true;
168
168
  toPaymentMethodId?: true;
169
169
  requestorId?: true;
@@ -266,7 +266,7 @@ export type PaymentMethodChangeRequestGroupByArgs<ExtArgs extends runtime.Types.
266
266
  export type PaymentMethodChangeRequestGroupByOutputType = {
267
267
  id: string;
268
268
  tenantId: string;
269
- contractId: string;
269
+ applicationId: string;
270
270
  fromPaymentMethodId: string;
271
271
  toPaymentMethodId: string;
272
272
  requestorId: string;
@@ -303,7 +303,7 @@ export type PaymentMethodChangeRequestWhereInput = {
303
303
  NOT?: Prisma.PaymentMethodChangeRequestWhereInput | Prisma.PaymentMethodChangeRequestWhereInput[];
304
304
  id?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
305
305
  tenantId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
306
- contractId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
306
+ applicationId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
307
307
  fromPaymentMethodId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
308
308
  toPaymentMethodId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
309
309
  requestorId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
@@ -326,7 +326,7 @@ export type PaymentMethodChangeRequestWhereInput = {
326
326
  createdAt?: Prisma.DateTimeFilter<"PaymentMethodChangeRequest"> | Date | string;
327
327
  updatedAt?: Prisma.DateTimeFilter<"PaymentMethodChangeRequest"> | Date | string;
328
328
  tenant?: Prisma.XOR<Prisma.TenantScalarRelationFilter, Prisma.TenantWhereInput>;
329
- contract?: Prisma.XOR<Prisma.ContractScalarRelationFilter, Prisma.ContractWhereInput>;
329
+ application?: Prisma.XOR<Prisma.ApplicationScalarRelationFilter, Prisma.ApplicationWhereInput>;
330
330
  fromPaymentMethod?: Prisma.XOR<Prisma.PropertyPaymentMethodScalarRelationFilter, Prisma.PropertyPaymentMethodWhereInput>;
331
331
  toPaymentMethod?: Prisma.XOR<Prisma.PropertyPaymentMethodScalarRelationFilter, Prisma.PropertyPaymentMethodWhereInput>;
332
332
  requestor?: Prisma.XOR<Prisma.UserScalarRelationFilter, Prisma.UserWhereInput>;
@@ -335,7 +335,7 @@ export type PaymentMethodChangeRequestWhereInput = {
335
335
  export type PaymentMethodChangeRequestOrderByWithRelationInput = {
336
336
  id?: Prisma.SortOrder;
337
337
  tenantId?: Prisma.SortOrder;
338
- contractId?: Prisma.SortOrder;
338
+ applicationId?: Prisma.SortOrder;
339
339
  fromPaymentMethodId?: Prisma.SortOrder;
340
340
  toPaymentMethodId?: Prisma.SortOrder;
341
341
  requestorId?: Prisma.SortOrder;
@@ -358,7 +358,7 @@ export type PaymentMethodChangeRequestOrderByWithRelationInput = {
358
358
  createdAt?: Prisma.SortOrder;
359
359
  updatedAt?: Prisma.SortOrder;
360
360
  tenant?: Prisma.TenantOrderByWithRelationInput;
361
- contract?: Prisma.ContractOrderByWithRelationInput;
361
+ application?: Prisma.ApplicationOrderByWithRelationInput;
362
362
  fromPaymentMethod?: Prisma.PropertyPaymentMethodOrderByWithRelationInput;
363
363
  toPaymentMethod?: Prisma.PropertyPaymentMethodOrderByWithRelationInput;
364
364
  requestor?: Prisma.UserOrderByWithRelationInput;
@@ -371,7 +371,7 @@ export type PaymentMethodChangeRequestWhereUniqueInput = Prisma.AtLeast<{
371
371
  OR?: Prisma.PaymentMethodChangeRequestWhereInput[];
372
372
  NOT?: Prisma.PaymentMethodChangeRequestWhereInput | Prisma.PaymentMethodChangeRequestWhereInput[];
373
373
  tenantId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
374
- contractId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
374
+ applicationId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
375
375
  fromPaymentMethodId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
376
376
  toPaymentMethodId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
377
377
  requestorId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
@@ -394,7 +394,7 @@ export type PaymentMethodChangeRequestWhereUniqueInput = Prisma.AtLeast<{
394
394
  createdAt?: Prisma.DateTimeFilter<"PaymentMethodChangeRequest"> | Date | string;
395
395
  updatedAt?: Prisma.DateTimeFilter<"PaymentMethodChangeRequest"> | Date | string;
396
396
  tenant?: Prisma.XOR<Prisma.TenantScalarRelationFilter, Prisma.TenantWhereInput>;
397
- contract?: Prisma.XOR<Prisma.ContractScalarRelationFilter, Prisma.ContractWhereInput>;
397
+ application?: Prisma.XOR<Prisma.ApplicationScalarRelationFilter, Prisma.ApplicationWhereInput>;
398
398
  fromPaymentMethod?: Prisma.XOR<Prisma.PropertyPaymentMethodScalarRelationFilter, Prisma.PropertyPaymentMethodWhereInput>;
399
399
  toPaymentMethod?: Prisma.XOR<Prisma.PropertyPaymentMethodScalarRelationFilter, Prisma.PropertyPaymentMethodWhereInput>;
400
400
  requestor?: Prisma.XOR<Prisma.UserScalarRelationFilter, Prisma.UserWhereInput>;
@@ -403,7 +403,7 @@ export type PaymentMethodChangeRequestWhereUniqueInput = Prisma.AtLeast<{
403
403
  export type PaymentMethodChangeRequestOrderByWithAggregationInput = {
404
404
  id?: Prisma.SortOrder;
405
405
  tenantId?: Prisma.SortOrder;
406
- contractId?: Prisma.SortOrder;
406
+ applicationId?: Prisma.SortOrder;
407
407
  fromPaymentMethodId?: Prisma.SortOrder;
408
408
  toPaymentMethodId?: Prisma.SortOrder;
409
409
  requestorId?: Prisma.SortOrder;
@@ -437,7 +437,7 @@ export type PaymentMethodChangeRequestScalarWhereWithAggregatesInput = {
437
437
  NOT?: Prisma.PaymentMethodChangeRequestScalarWhereWithAggregatesInput | Prisma.PaymentMethodChangeRequestScalarWhereWithAggregatesInput[];
438
438
  id?: Prisma.StringWithAggregatesFilter<"PaymentMethodChangeRequest"> | string;
439
439
  tenantId?: Prisma.StringWithAggregatesFilter<"PaymentMethodChangeRequest"> | string;
440
- contractId?: Prisma.StringWithAggregatesFilter<"PaymentMethodChangeRequest"> | string;
440
+ applicationId?: Prisma.StringWithAggregatesFilter<"PaymentMethodChangeRequest"> | string;
441
441
  fromPaymentMethodId?: Prisma.StringWithAggregatesFilter<"PaymentMethodChangeRequest"> | string;
442
442
  toPaymentMethodId?: Prisma.StringWithAggregatesFilter<"PaymentMethodChangeRequest"> | string;
443
443
  requestorId?: Prisma.StringWithAggregatesFilter<"PaymentMethodChangeRequest"> | string;
@@ -480,7 +480,7 @@ export type PaymentMethodChangeRequestCreateInput = {
480
480
  createdAt?: Date | string;
481
481
  updatedAt?: Date | string;
482
482
  tenant: Prisma.TenantCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
483
- contract: Prisma.ContractCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
483
+ application: Prisma.ApplicationCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
484
484
  fromPaymentMethod: Prisma.PropertyPaymentMethodCreateNestedOneWithoutChangeRequestsFromInput;
485
485
  toPaymentMethod: Prisma.PropertyPaymentMethodCreateNestedOneWithoutChangeRequestsToInput;
486
486
  requestor: Prisma.UserCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
@@ -489,7 +489,7 @@ export type PaymentMethodChangeRequestCreateInput = {
489
489
  export type PaymentMethodChangeRequestUncheckedCreateInput = {
490
490
  id?: string;
491
491
  tenantId: string;
492
- contractId: string;
492
+ applicationId: string;
493
493
  fromPaymentMethodId: string;
494
494
  toPaymentMethodId: string;
495
495
  requestorId: string;
@@ -532,7 +532,7 @@ export type PaymentMethodChangeRequestUpdateInput = {
532
532
  createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
533
533
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
534
534
  tenant?: Prisma.TenantUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
535
- contract?: Prisma.ContractUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
535
+ application?: Prisma.ApplicationUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
536
536
  fromPaymentMethod?: Prisma.PropertyPaymentMethodUpdateOneRequiredWithoutChangeRequestsFromNestedInput;
537
537
  toPaymentMethod?: Prisma.PropertyPaymentMethodUpdateOneRequiredWithoutChangeRequestsToNestedInput;
538
538
  requestor?: Prisma.UserUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
@@ -541,7 +541,7 @@ export type PaymentMethodChangeRequestUpdateInput = {
541
541
  export type PaymentMethodChangeRequestUncheckedUpdateInput = {
542
542
  id?: Prisma.StringFieldUpdateOperationsInput | string;
543
543
  tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
544
- contractId?: Prisma.StringFieldUpdateOperationsInput | string;
544
+ applicationId?: Prisma.StringFieldUpdateOperationsInput | string;
545
545
  fromPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
546
546
  toPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
547
547
  requestorId?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -567,7 +567,7 @@ export type PaymentMethodChangeRequestUncheckedUpdateInput = {
567
567
  export type PaymentMethodChangeRequestCreateManyInput = {
568
568
  id?: string;
569
569
  tenantId: string;
570
- contractId: string;
570
+ applicationId: string;
571
571
  fromPaymentMethodId: string;
572
572
  toPaymentMethodId: string;
573
573
  requestorId: string;
@@ -613,7 +613,7 @@ export type PaymentMethodChangeRequestUpdateManyMutationInput = {
613
613
  export type PaymentMethodChangeRequestUncheckedUpdateManyInput = {
614
614
  id?: Prisma.StringFieldUpdateOperationsInput | string;
615
615
  tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
616
- contractId?: Prisma.StringFieldUpdateOperationsInput | string;
616
+ applicationId?: Prisma.StringFieldUpdateOperationsInput | string;
617
617
  fromPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
618
618
  toPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
619
619
  requestorId?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -652,7 +652,7 @@ export type PaymentMethodChangeRequestOrderByRelevanceInput = {
652
652
  export type PaymentMethodChangeRequestCountOrderByAggregateInput = {
653
653
  id?: Prisma.SortOrder;
654
654
  tenantId?: Prisma.SortOrder;
655
- contractId?: Prisma.SortOrder;
655
+ applicationId?: Prisma.SortOrder;
656
656
  fromPaymentMethodId?: Prisma.SortOrder;
657
657
  toPaymentMethodId?: Prisma.SortOrder;
658
658
  requestorId?: Prisma.SortOrder;
@@ -685,7 +685,7 @@ export type PaymentMethodChangeRequestAvgOrderByAggregateInput = {
685
685
  export type PaymentMethodChangeRequestMaxOrderByAggregateInput = {
686
686
  id?: Prisma.SortOrder;
687
687
  tenantId?: Prisma.SortOrder;
688
- contractId?: Prisma.SortOrder;
688
+ applicationId?: Prisma.SortOrder;
689
689
  fromPaymentMethodId?: Prisma.SortOrder;
690
690
  toPaymentMethodId?: Prisma.SortOrder;
691
691
  requestorId?: Prisma.SortOrder;
@@ -708,7 +708,7 @@ export type PaymentMethodChangeRequestMaxOrderByAggregateInput = {
708
708
  export type PaymentMethodChangeRequestMinOrderByAggregateInput = {
709
709
  id?: Prisma.SortOrder;
710
710
  tenantId?: Prisma.SortOrder;
711
- contractId?: Prisma.SortOrder;
711
+ applicationId?: Prisma.SortOrder;
712
712
  fromPaymentMethodId?: Prisma.SortOrder;
713
713
  toPaymentMethodId?: Prisma.SortOrder;
714
714
  requestorId?: Prisma.SortOrder;
@@ -925,42 +925,42 @@ export type PaymentMethodChangeRequestUncheckedUpdateManyWithoutToPaymentMethodN
925
925
  updateMany?: Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutToPaymentMethodInput | Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutToPaymentMethodInput[];
926
926
  deleteMany?: Prisma.PaymentMethodChangeRequestScalarWhereInput | Prisma.PaymentMethodChangeRequestScalarWhereInput[];
927
927
  };
928
- export type PaymentMethodChangeRequestCreateNestedManyWithoutContractInput = {
929
- create?: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutContractInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutContractInput> | Prisma.PaymentMethodChangeRequestCreateWithoutContractInput[] | Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutContractInput[];
930
- connectOrCreate?: Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutContractInput | Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutContractInput[];
931
- createMany?: Prisma.PaymentMethodChangeRequestCreateManyContractInputEnvelope;
928
+ export type PaymentMethodChangeRequestCreateNestedManyWithoutApplicationInput = {
929
+ create?: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutApplicationInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutApplicationInput> | Prisma.PaymentMethodChangeRequestCreateWithoutApplicationInput[] | Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutApplicationInput[];
930
+ connectOrCreate?: Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutApplicationInput | Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutApplicationInput[];
931
+ createMany?: Prisma.PaymentMethodChangeRequestCreateManyApplicationInputEnvelope;
932
932
  connect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
933
933
  };
934
- export type PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutContractInput = {
935
- create?: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutContractInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutContractInput> | Prisma.PaymentMethodChangeRequestCreateWithoutContractInput[] | Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutContractInput[];
936
- connectOrCreate?: Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutContractInput | Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutContractInput[];
937
- createMany?: Prisma.PaymentMethodChangeRequestCreateManyContractInputEnvelope;
934
+ export type PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutApplicationInput = {
935
+ create?: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutApplicationInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutApplicationInput> | Prisma.PaymentMethodChangeRequestCreateWithoutApplicationInput[] | Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutApplicationInput[];
936
+ connectOrCreate?: Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutApplicationInput | Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutApplicationInput[];
937
+ createMany?: Prisma.PaymentMethodChangeRequestCreateManyApplicationInputEnvelope;
938
938
  connect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
939
939
  };
940
- export type PaymentMethodChangeRequestUpdateManyWithoutContractNestedInput = {
941
- create?: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutContractInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutContractInput> | Prisma.PaymentMethodChangeRequestCreateWithoutContractInput[] | Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutContractInput[];
942
- connectOrCreate?: Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutContractInput | Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutContractInput[];
943
- upsert?: Prisma.PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutContractInput | Prisma.PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutContractInput[];
944
- createMany?: Prisma.PaymentMethodChangeRequestCreateManyContractInputEnvelope;
940
+ export type PaymentMethodChangeRequestUpdateManyWithoutApplicationNestedInput = {
941
+ create?: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutApplicationInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutApplicationInput> | Prisma.PaymentMethodChangeRequestCreateWithoutApplicationInput[] | Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutApplicationInput[];
942
+ connectOrCreate?: Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutApplicationInput | Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutApplicationInput[];
943
+ upsert?: Prisma.PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutApplicationInput | Prisma.PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutApplicationInput[];
944
+ createMany?: Prisma.PaymentMethodChangeRequestCreateManyApplicationInputEnvelope;
945
945
  set?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
946
946
  disconnect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
947
947
  delete?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
948
948
  connect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
949
- update?: Prisma.PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutContractInput | Prisma.PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutContractInput[];
950
- updateMany?: Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutContractInput | Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutContractInput[];
949
+ update?: Prisma.PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutApplicationInput | Prisma.PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutApplicationInput[];
950
+ updateMany?: Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutApplicationInput | Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutApplicationInput[];
951
951
  deleteMany?: Prisma.PaymentMethodChangeRequestScalarWhereInput | Prisma.PaymentMethodChangeRequestScalarWhereInput[];
952
952
  };
953
- export type PaymentMethodChangeRequestUncheckedUpdateManyWithoutContractNestedInput = {
954
- create?: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutContractInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutContractInput> | Prisma.PaymentMethodChangeRequestCreateWithoutContractInput[] | Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutContractInput[];
955
- connectOrCreate?: Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutContractInput | Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutContractInput[];
956
- upsert?: Prisma.PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutContractInput | Prisma.PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutContractInput[];
957
- createMany?: Prisma.PaymentMethodChangeRequestCreateManyContractInputEnvelope;
953
+ export type PaymentMethodChangeRequestUncheckedUpdateManyWithoutApplicationNestedInput = {
954
+ create?: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutApplicationInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutApplicationInput> | Prisma.PaymentMethodChangeRequestCreateWithoutApplicationInput[] | Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutApplicationInput[];
955
+ connectOrCreate?: Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutApplicationInput | Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutApplicationInput[];
956
+ upsert?: Prisma.PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutApplicationInput | Prisma.PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutApplicationInput[];
957
+ createMany?: Prisma.PaymentMethodChangeRequestCreateManyApplicationInputEnvelope;
958
958
  set?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
959
959
  disconnect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
960
960
  delete?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
961
961
  connect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
962
- update?: Prisma.PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutContractInput | Prisma.PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutContractInput[];
963
- updateMany?: Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutContractInput | Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutContractInput[];
962
+ update?: Prisma.PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutApplicationInput | Prisma.PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutApplicationInput[];
963
+ updateMany?: Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutApplicationInput | Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutApplicationInput[];
964
964
  deleteMany?: Prisma.PaymentMethodChangeRequestScalarWhereInput | Prisma.PaymentMethodChangeRequestScalarWhereInput[];
965
965
  };
966
966
  export type EnumPaymentMethodChangeStatusFieldUpdateOperationsInput = {
@@ -986,7 +986,7 @@ export type PaymentMethodChangeRequestCreateWithoutRequestorInput = {
986
986
  createdAt?: Date | string;
987
987
  updatedAt?: Date | string;
988
988
  tenant: Prisma.TenantCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
989
- contract: Prisma.ContractCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
989
+ application: Prisma.ApplicationCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
990
990
  fromPaymentMethod: Prisma.PropertyPaymentMethodCreateNestedOneWithoutChangeRequestsFromInput;
991
991
  toPaymentMethod: Prisma.PropertyPaymentMethodCreateNestedOneWithoutChangeRequestsToInput;
992
992
  reviewer?: Prisma.UserCreateNestedOneWithoutReviewedChangeRequestsInput;
@@ -994,7 +994,7 @@ export type PaymentMethodChangeRequestCreateWithoutRequestorInput = {
994
994
  export type PaymentMethodChangeRequestUncheckedCreateWithoutRequestorInput = {
995
995
  id?: string;
996
996
  tenantId: string;
997
- contractId: string;
997
+ applicationId: string;
998
998
  fromPaymentMethodId: string;
999
999
  toPaymentMethodId: string;
1000
1000
  reason?: string | null;
@@ -1044,7 +1044,7 @@ export type PaymentMethodChangeRequestCreateWithoutReviewerInput = {
1044
1044
  createdAt?: Date | string;
1045
1045
  updatedAt?: Date | string;
1046
1046
  tenant: Prisma.TenantCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
1047
- contract: Prisma.ContractCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
1047
+ application: Prisma.ApplicationCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
1048
1048
  fromPaymentMethod: Prisma.PropertyPaymentMethodCreateNestedOneWithoutChangeRequestsFromInput;
1049
1049
  toPaymentMethod: Prisma.PropertyPaymentMethodCreateNestedOneWithoutChangeRequestsToInput;
1050
1050
  requestor: Prisma.UserCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
@@ -1052,7 +1052,7 @@ export type PaymentMethodChangeRequestCreateWithoutReviewerInput = {
1052
1052
  export type PaymentMethodChangeRequestUncheckedCreateWithoutReviewerInput = {
1053
1053
  id?: string;
1054
1054
  tenantId: string;
1055
- contractId: string;
1055
+ applicationId: string;
1056
1056
  fromPaymentMethodId: string;
1057
1057
  toPaymentMethodId: string;
1058
1058
  requestorId: string;
@@ -1101,7 +1101,7 @@ export type PaymentMethodChangeRequestScalarWhereInput = {
1101
1101
  NOT?: Prisma.PaymentMethodChangeRequestScalarWhereInput | Prisma.PaymentMethodChangeRequestScalarWhereInput[];
1102
1102
  id?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
1103
1103
  tenantId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
1104
- contractId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
1104
+ applicationId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
1105
1105
  fromPaymentMethodId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
1106
1106
  toPaymentMethodId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
1107
1107
  requestorId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
@@ -1156,7 +1156,7 @@ export type PaymentMethodChangeRequestCreateWithoutTenantInput = {
1156
1156
  newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
1157
1157
  createdAt?: Date | string;
1158
1158
  updatedAt?: Date | string;
1159
- contract: Prisma.ContractCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
1159
+ application: Prisma.ApplicationCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
1160
1160
  fromPaymentMethod: Prisma.PropertyPaymentMethodCreateNestedOneWithoutChangeRequestsFromInput;
1161
1161
  toPaymentMethod: Prisma.PropertyPaymentMethodCreateNestedOneWithoutChangeRequestsToInput;
1162
1162
  requestor: Prisma.UserCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
@@ -1164,7 +1164,7 @@ export type PaymentMethodChangeRequestCreateWithoutTenantInput = {
1164
1164
  };
1165
1165
  export type PaymentMethodChangeRequestUncheckedCreateWithoutTenantInput = {
1166
1166
  id?: string;
1167
- contractId: string;
1167
+ applicationId: string;
1168
1168
  fromPaymentMethodId: string;
1169
1169
  toPaymentMethodId: string;
1170
1170
  requestorId: string;
@@ -1228,7 +1228,7 @@ export type PaymentMethodChangeRequestCreateWithoutFromPaymentMethodInput = {
1228
1228
  createdAt?: Date | string;
1229
1229
  updatedAt?: Date | string;
1230
1230
  tenant: Prisma.TenantCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
1231
- contract: Prisma.ContractCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
1231
+ application: Prisma.ApplicationCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
1232
1232
  toPaymentMethod: Prisma.PropertyPaymentMethodCreateNestedOneWithoutChangeRequestsToInput;
1233
1233
  requestor: Prisma.UserCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
1234
1234
  reviewer?: Prisma.UserCreateNestedOneWithoutReviewedChangeRequestsInput;
@@ -1236,7 +1236,7 @@ export type PaymentMethodChangeRequestCreateWithoutFromPaymentMethodInput = {
1236
1236
  export type PaymentMethodChangeRequestUncheckedCreateWithoutFromPaymentMethodInput = {
1237
1237
  id?: string;
1238
1238
  tenantId: string;
1239
- contractId: string;
1239
+ applicationId: string;
1240
1240
  toPaymentMethodId: string;
1241
1241
  requestorId: string;
1242
1242
  reason?: string | null;
@@ -1286,7 +1286,7 @@ export type PaymentMethodChangeRequestCreateWithoutToPaymentMethodInput = {
1286
1286
  createdAt?: Date | string;
1287
1287
  updatedAt?: Date | string;
1288
1288
  tenant: Prisma.TenantCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
1289
- contract: Prisma.ContractCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
1289
+ application: Prisma.ApplicationCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
1290
1290
  fromPaymentMethod: Prisma.PropertyPaymentMethodCreateNestedOneWithoutChangeRequestsFromInput;
1291
1291
  requestor: Prisma.UserCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
1292
1292
  reviewer?: Prisma.UserCreateNestedOneWithoutReviewedChangeRequestsInput;
@@ -1294,7 +1294,7 @@ export type PaymentMethodChangeRequestCreateWithoutToPaymentMethodInput = {
1294
1294
  export type PaymentMethodChangeRequestUncheckedCreateWithoutToPaymentMethodInput = {
1295
1295
  id?: string;
1296
1296
  tenantId: string;
1297
- contractId: string;
1297
+ applicationId: string;
1298
1298
  fromPaymentMethodId: string;
1299
1299
  requestorId: string;
1300
1300
  reason?: string | null;
@@ -1350,7 +1350,7 @@ export type PaymentMethodChangeRequestUpdateManyWithWhereWithoutToPaymentMethodI
1350
1350
  where: Prisma.PaymentMethodChangeRequestScalarWhereInput;
1351
1351
  data: Prisma.XOR<Prisma.PaymentMethodChangeRequestUpdateManyMutationInput, Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutToPaymentMethodInput>;
1352
1352
  };
1353
- export type PaymentMethodChangeRequestCreateWithoutContractInput = {
1353
+ export type PaymentMethodChangeRequestCreateWithoutApplicationInput = {
1354
1354
  id?: string;
1355
1355
  reason?: string | null;
1356
1356
  requiredDocumentTypes?: string | null;
@@ -1375,7 +1375,7 @@ export type PaymentMethodChangeRequestCreateWithoutContractInput = {
1375
1375
  requestor: Prisma.UserCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
1376
1376
  reviewer?: Prisma.UserCreateNestedOneWithoutReviewedChangeRequestsInput;
1377
1377
  };
1378
- export type PaymentMethodChangeRequestUncheckedCreateWithoutContractInput = {
1378
+ export type PaymentMethodChangeRequestUncheckedCreateWithoutApplicationInput = {
1379
1379
  id?: string;
1380
1380
  tenantId: string;
1381
1381
  fromPaymentMethodId: string;
@@ -1400,31 +1400,31 @@ export type PaymentMethodChangeRequestUncheckedCreateWithoutContractInput = {
1400
1400
  createdAt?: Date | string;
1401
1401
  updatedAt?: Date | string;
1402
1402
  };
1403
- export type PaymentMethodChangeRequestCreateOrConnectWithoutContractInput = {
1403
+ export type PaymentMethodChangeRequestCreateOrConnectWithoutApplicationInput = {
1404
1404
  where: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
1405
- create: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutContractInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutContractInput>;
1405
+ create: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutApplicationInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutApplicationInput>;
1406
1406
  };
1407
- export type PaymentMethodChangeRequestCreateManyContractInputEnvelope = {
1408
- data: Prisma.PaymentMethodChangeRequestCreateManyContractInput | Prisma.PaymentMethodChangeRequestCreateManyContractInput[];
1407
+ export type PaymentMethodChangeRequestCreateManyApplicationInputEnvelope = {
1408
+ data: Prisma.PaymentMethodChangeRequestCreateManyApplicationInput | Prisma.PaymentMethodChangeRequestCreateManyApplicationInput[];
1409
1409
  skipDuplicates?: boolean;
1410
1410
  };
1411
- export type PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutContractInput = {
1411
+ export type PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutApplicationInput = {
1412
1412
  where: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
1413
- update: Prisma.XOR<Prisma.PaymentMethodChangeRequestUpdateWithoutContractInput, Prisma.PaymentMethodChangeRequestUncheckedUpdateWithoutContractInput>;
1414
- create: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutContractInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutContractInput>;
1413
+ update: Prisma.XOR<Prisma.PaymentMethodChangeRequestUpdateWithoutApplicationInput, Prisma.PaymentMethodChangeRequestUncheckedUpdateWithoutApplicationInput>;
1414
+ create: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutApplicationInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutApplicationInput>;
1415
1415
  };
1416
- export type PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutContractInput = {
1416
+ export type PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutApplicationInput = {
1417
1417
  where: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
1418
- data: Prisma.XOR<Prisma.PaymentMethodChangeRequestUpdateWithoutContractInput, Prisma.PaymentMethodChangeRequestUncheckedUpdateWithoutContractInput>;
1418
+ data: Prisma.XOR<Prisma.PaymentMethodChangeRequestUpdateWithoutApplicationInput, Prisma.PaymentMethodChangeRequestUncheckedUpdateWithoutApplicationInput>;
1419
1419
  };
1420
- export type PaymentMethodChangeRequestUpdateManyWithWhereWithoutContractInput = {
1420
+ export type PaymentMethodChangeRequestUpdateManyWithWhereWithoutApplicationInput = {
1421
1421
  where: Prisma.PaymentMethodChangeRequestScalarWhereInput;
1422
- data: Prisma.XOR<Prisma.PaymentMethodChangeRequestUpdateManyMutationInput, Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutContractInput>;
1422
+ data: Prisma.XOR<Prisma.PaymentMethodChangeRequestUpdateManyMutationInput, Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutApplicationInput>;
1423
1423
  };
1424
1424
  export type PaymentMethodChangeRequestCreateManyRequestorInput = {
1425
1425
  id?: string;
1426
1426
  tenantId: string;
1427
- contractId: string;
1427
+ applicationId: string;
1428
1428
  fromPaymentMethodId: string;
1429
1429
  toPaymentMethodId: string;
1430
1430
  reason?: string | null;
@@ -1449,7 +1449,7 @@ export type PaymentMethodChangeRequestCreateManyRequestorInput = {
1449
1449
  export type PaymentMethodChangeRequestCreateManyReviewerInput = {
1450
1450
  id?: string;
1451
1451
  tenantId: string;
1452
- contractId: string;
1452
+ applicationId: string;
1453
1453
  fromPaymentMethodId: string;
1454
1454
  toPaymentMethodId: string;
1455
1455
  requestorId: string;
@@ -1491,7 +1491,7 @@ export type PaymentMethodChangeRequestUpdateWithoutRequestorInput = {
1491
1491
  createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
1492
1492
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
1493
1493
  tenant?: Prisma.TenantUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
1494
- contract?: Prisma.ContractUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
1494
+ application?: Prisma.ApplicationUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
1495
1495
  fromPaymentMethod?: Prisma.PropertyPaymentMethodUpdateOneRequiredWithoutChangeRequestsFromNestedInput;
1496
1496
  toPaymentMethod?: Prisma.PropertyPaymentMethodUpdateOneRequiredWithoutChangeRequestsToNestedInput;
1497
1497
  reviewer?: Prisma.UserUpdateOneWithoutReviewedChangeRequestsNestedInput;
@@ -1499,7 +1499,7 @@ export type PaymentMethodChangeRequestUpdateWithoutRequestorInput = {
1499
1499
  export type PaymentMethodChangeRequestUncheckedUpdateWithoutRequestorInput = {
1500
1500
  id?: Prisma.StringFieldUpdateOperationsInput | string;
1501
1501
  tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
1502
- contractId?: Prisma.StringFieldUpdateOperationsInput | string;
1502
+ applicationId?: Prisma.StringFieldUpdateOperationsInput | string;
1503
1503
  fromPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
1504
1504
  toPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
1505
1505
  reason?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
@@ -1524,7 +1524,7 @@ export type PaymentMethodChangeRequestUncheckedUpdateWithoutRequestorInput = {
1524
1524
  export type PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorInput = {
1525
1525
  id?: Prisma.StringFieldUpdateOperationsInput | string;
1526
1526
  tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
1527
- contractId?: Prisma.StringFieldUpdateOperationsInput | string;
1527
+ applicationId?: Prisma.StringFieldUpdateOperationsInput | string;
1528
1528
  fromPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
1529
1529
  toPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
1530
1530
  reason?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
@@ -1566,7 +1566,7 @@ export type PaymentMethodChangeRequestUpdateWithoutReviewerInput = {
1566
1566
  createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
1567
1567
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
1568
1568
  tenant?: Prisma.TenantUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
1569
- contract?: Prisma.ContractUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
1569
+ application?: Prisma.ApplicationUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
1570
1570
  fromPaymentMethod?: Prisma.PropertyPaymentMethodUpdateOneRequiredWithoutChangeRequestsFromNestedInput;
1571
1571
  toPaymentMethod?: Prisma.PropertyPaymentMethodUpdateOneRequiredWithoutChangeRequestsToNestedInput;
1572
1572
  requestor?: Prisma.UserUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
@@ -1574,7 +1574,7 @@ export type PaymentMethodChangeRequestUpdateWithoutReviewerInput = {
1574
1574
  export type PaymentMethodChangeRequestUncheckedUpdateWithoutReviewerInput = {
1575
1575
  id?: Prisma.StringFieldUpdateOperationsInput | string;
1576
1576
  tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
1577
- contractId?: Prisma.StringFieldUpdateOperationsInput | string;
1577
+ applicationId?: Prisma.StringFieldUpdateOperationsInput | string;
1578
1578
  fromPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
1579
1579
  toPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
1580
1580
  requestorId?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1599,7 +1599,7 @@ export type PaymentMethodChangeRequestUncheckedUpdateWithoutReviewerInput = {
1599
1599
  export type PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerInput = {
1600
1600
  id?: Prisma.StringFieldUpdateOperationsInput | string;
1601
1601
  tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
1602
- contractId?: Prisma.StringFieldUpdateOperationsInput | string;
1602
+ applicationId?: Prisma.StringFieldUpdateOperationsInput | string;
1603
1603
  fromPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
1604
1604
  toPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
1605
1605
  requestorId?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1623,7 +1623,7 @@ export type PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerInput =
1623
1623
  };
1624
1624
  export type PaymentMethodChangeRequestCreateManyTenantInput = {
1625
1625
  id?: string;
1626
- contractId: string;
1626
+ applicationId: string;
1627
1627
  fromPaymentMethodId: string;
1628
1628
  toPaymentMethodId: string;
1629
1629
  requestorId: string;
@@ -1665,7 +1665,7 @@ export type PaymentMethodChangeRequestUpdateWithoutTenantInput = {
1665
1665
  newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
1666
1666
  createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
1667
1667
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
1668
- contract?: Prisma.ContractUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
1668
+ application?: Prisma.ApplicationUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
1669
1669
  fromPaymentMethod?: Prisma.PropertyPaymentMethodUpdateOneRequiredWithoutChangeRequestsFromNestedInput;
1670
1670
  toPaymentMethod?: Prisma.PropertyPaymentMethodUpdateOneRequiredWithoutChangeRequestsToNestedInput;
1671
1671
  requestor?: Prisma.UserUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
@@ -1673,7 +1673,7 @@ export type PaymentMethodChangeRequestUpdateWithoutTenantInput = {
1673
1673
  };
1674
1674
  export type PaymentMethodChangeRequestUncheckedUpdateWithoutTenantInput = {
1675
1675
  id?: Prisma.StringFieldUpdateOperationsInput | string;
1676
- contractId?: Prisma.StringFieldUpdateOperationsInput | string;
1676
+ applicationId?: Prisma.StringFieldUpdateOperationsInput | string;
1677
1677
  fromPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
1678
1678
  toPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
1679
1679
  requestorId?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1698,7 +1698,7 @@ export type PaymentMethodChangeRequestUncheckedUpdateWithoutTenantInput = {
1698
1698
  };
1699
1699
  export type PaymentMethodChangeRequestUncheckedUpdateManyWithoutTenantInput = {
1700
1700
  id?: Prisma.StringFieldUpdateOperationsInput | string;
1701
- contractId?: Prisma.StringFieldUpdateOperationsInput | string;
1701
+ applicationId?: Prisma.StringFieldUpdateOperationsInput | string;
1702
1702
  fromPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
1703
1703
  toPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
1704
1704
  requestorId?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1724,7 +1724,7 @@ export type PaymentMethodChangeRequestUncheckedUpdateManyWithoutTenantInput = {
1724
1724
  export type PaymentMethodChangeRequestCreateManyFromPaymentMethodInput = {
1725
1725
  id?: string;
1726
1726
  tenantId: string;
1727
- contractId: string;
1727
+ applicationId: string;
1728
1728
  toPaymentMethodId: string;
1729
1729
  requestorId: string;
1730
1730
  reason?: string | null;
@@ -1749,7 +1749,7 @@ export type PaymentMethodChangeRequestCreateManyFromPaymentMethodInput = {
1749
1749
  export type PaymentMethodChangeRequestCreateManyToPaymentMethodInput = {
1750
1750
  id?: string;
1751
1751
  tenantId: string;
1752
- contractId: string;
1752
+ applicationId: string;
1753
1753
  fromPaymentMethodId: string;
1754
1754
  requestorId: string;
1755
1755
  reason?: string | null;
@@ -1791,7 +1791,7 @@ export type PaymentMethodChangeRequestUpdateWithoutFromPaymentMethodInput = {
1791
1791
  createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
1792
1792
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
1793
1793
  tenant?: Prisma.TenantUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
1794
- contract?: Prisma.ContractUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
1794
+ application?: Prisma.ApplicationUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
1795
1795
  toPaymentMethod?: Prisma.PropertyPaymentMethodUpdateOneRequiredWithoutChangeRequestsToNestedInput;
1796
1796
  requestor?: Prisma.UserUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
1797
1797
  reviewer?: Prisma.UserUpdateOneWithoutReviewedChangeRequestsNestedInput;
@@ -1799,7 +1799,7 @@ export type PaymentMethodChangeRequestUpdateWithoutFromPaymentMethodInput = {
1799
1799
  export type PaymentMethodChangeRequestUncheckedUpdateWithoutFromPaymentMethodInput = {
1800
1800
  id?: Prisma.StringFieldUpdateOperationsInput | string;
1801
1801
  tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
1802
- contractId?: Prisma.StringFieldUpdateOperationsInput | string;
1802
+ applicationId?: Prisma.StringFieldUpdateOperationsInput | string;
1803
1803
  toPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
1804
1804
  requestorId?: Prisma.StringFieldUpdateOperationsInput | string;
1805
1805
  reason?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
@@ -1824,7 +1824,7 @@ export type PaymentMethodChangeRequestUncheckedUpdateWithoutFromPaymentMethodInp
1824
1824
  export type PaymentMethodChangeRequestUncheckedUpdateManyWithoutFromPaymentMethodInput = {
1825
1825
  id?: Prisma.StringFieldUpdateOperationsInput | string;
1826
1826
  tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
1827
- contractId?: Prisma.StringFieldUpdateOperationsInput | string;
1827
+ applicationId?: Prisma.StringFieldUpdateOperationsInput | string;
1828
1828
  toPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
1829
1829
  requestorId?: Prisma.StringFieldUpdateOperationsInput | string;
1830
1830
  reason?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
@@ -1866,7 +1866,7 @@ export type PaymentMethodChangeRequestUpdateWithoutToPaymentMethodInput = {
1866
1866
  createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
1867
1867
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
1868
1868
  tenant?: Prisma.TenantUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
1869
- contract?: Prisma.ContractUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
1869
+ application?: Prisma.ApplicationUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
1870
1870
  fromPaymentMethod?: Prisma.PropertyPaymentMethodUpdateOneRequiredWithoutChangeRequestsFromNestedInput;
1871
1871
  requestor?: Prisma.UserUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
1872
1872
  reviewer?: Prisma.UserUpdateOneWithoutReviewedChangeRequestsNestedInput;
@@ -1874,7 +1874,7 @@ export type PaymentMethodChangeRequestUpdateWithoutToPaymentMethodInput = {
1874
1874
  export type PaymentMethodChangeRequestUncheckedUpdateWithoutToPaymentMethodInput = {
1875
1875
  id?: Prisma.StringFieldUpdateOperationsInput | string;
1876
1876
  tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
1877
- contractId?: Prisma.StringFieldUpdateOperationsInput | string;
1877
+ applicationId?: Prisma.StringFieldUpdateOperationsInput | string;
1878
1878
  fromPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
1879
1879
  requestorId?: Prisma.StringFieldUpdateOperationsInput | string;
1880
1880
  reason?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
@@ -1899,7 +1899,7 @@ export type PaymentMethodChangeRequestUncheckedUpdateWithoutToPaymentMethodInput
1899
1899
  export type PaymentMethodChangeRequestUncheckedUpdateManyWithoutToPaymentMethodInput = {
1900
1900
  id?: Prisma.StringFieldUpdateOperationsInput | string;
1901
1901
  tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
1902
- contractId?: Prisma.StringFieldUpdateOperationsInput | string;
1902
+ applicationId?: Prisma.StringFieldUpdateOperationsInput | string;
1903
1903
  fromPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
1904
1904
  requestorId?: Prisma.StringFieldUpdateOperationsInput | string;
1905
1905
  reason?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
@@ -1921,7 +1921,7 @@ export type PaymentMethodChangeRequestUncheckedUpdateManyWithoutToPaymentMethodI
1921
1921
  createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
1922
1922
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
1923
1923
  };
1924
- export type PaymentMethodChangeRequestCreateManyContractInput = {
1924
+ export type PaymentMethodChangeRequestCreateManyApplicationInput = {
1925
1925
  id?: string;
1926
1926
  tenantId: string;
1927
1927
  fromPaymentMethodId: string;
@@ -1946,7 +1946,7 @@ export type PaymentMethodChangeRequestCreateManyContractInput = {
1946
1946
  createdAt?: Date | string;
1947
1947
  updatedAt?: Date | string;
1948
1948
  };
1949
- export type PaymentMethodChangeRequestUpdateWithoutContractInput = {
1949
+ export type PaymentMethodChangeRequestUpdateWithoutApplicationInput = {
1950
1950
  id?: Prisma.StringFieldUpdateOperationsInput | string;
1951
1951
  reason?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
1952
1952
  requiredDocumentTypes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
@@ -1971,7 +1971,7 @@ export type PaymentMethodChangeRequestUpdateWithoutContractInput = {
1971
1971
  requestor?: Prisma.UserUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
1972
1972
  reviewer?: Prisma.UserUpdateOneWithoutReviewedChangeRequestsNestedInput;
1973
1973
  };
1974
- export type PaymentMethodChangeRequestUncheckedUpdateWithoutContractInput = {
1974
+ export type PaymentMethodChangeRequestUncheckedUpdateWithoutApplicationInput = {
1975
1975
  id?: Prisma.StringFieldUpdateOperationsInput | string;
1976
1976
  tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
1977
1977
  fromPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1996,7 +1996,7 @@ export type PaymentMethodChangeRequestUncheckedUpdateWithoutContractInput = {
1996
1996
  createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
1997
1997
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
1998
1998
  };
1999
- export type PaymentMethodChangeRequestUncheckedUpdateManyWithoutContractInput = {
1999
+ export type PaymentMethodChangeRequestUncheckedUpdateManyWithoutApplicationInput = {
2000
2000
  id?: Prisma.StringFieldUpdateOperationsInput | string;
2001
2001
  tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
2002
2002
  fromPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -2024,7 +2024,7 @@ export type PaymentMethodChangeRequestUncheckedUpdateManyWithoutContractInput =
2024
2024
  export type PaymentMethodChangeRequestSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
2025
2025
  id?: boolean;
2026
2026
  tenantId?: boolean;
2027
- contractId?: boolean;
2027
+ applicationId?: boolean;
2028
2028
  fromPaymentMethodId?: boolean;
2029
2029
  toPaymentMethodId?: boolean;
2030
2030
  requestorId?: boolean;
@@ -2047,7 +2047,7 @@ export type PaymentMethodChangeRequestSelect<ExtArgs extends runtime.Types.Exten
2047
2047
  createdAt?: boolean;
2048
2048
  updatedAt?: boolean;
2049
2049
  tenant?: boolean | Prisma.TenantDefaultArgs<ExtArgs>;
2050
- contract?: boolean | Prisma.ContractDefaultArgs<ExtArgs>;
2050
+ application?: boolean | Prisma.ApplicationDefaultArgs<ExtArgs>;
2051
2051
  fromPaymentMethod?: boolean | Prisma.PropertyPaymentMethodDefaultArgs<ExtArgs>;
2052
2052
  toPaymentMethod?: boolean | Prisma.PropertyPaymentMethodDefaultArgs<ExtArgs>;
2053
2053
  requestor?: boolean | Prisma.UserDefaultArgs<ExtArgs>;
@@ -2056,7 +2056,7 @@ export type PaymentMethodChangeRequestSelect<ExtArgs extends runtime.Types.Exten
2056
2056
  export type PaymentMethodChangeRequestSelectScalar = {
2057
2057
  id?: boolean;
2058
2058
  tenantId?: boolean;
2059
- contractId?: boolean;
2059
+ applicationId?: boolean;
2060
2060
  fromPaymentMethodId?: boolean;
2061
2061
  toPaymentMethodId?: boolean;
2062
2062
  requestorId?: boolean;
@@ -2079,10 +2079,10 @@ export type PaymentMethodChangeRequestSelectScalar = {
2079
2079
  createdAt?: boolean;
2080
2080
  updatedAt?: boolean;
2081
2081
  };
2082
- export type PaymentMethodChangeRequestOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "tenantId" | "contractId" | "fromPaymentMethodId" | "toPaymentMethodId" | "requestorId" | "reason" | "requiredDocumentTypes" | "submittedDocuments" | "currentOutstanding" | "newTermMonths" | "newInterestRate" | "newMonthlyPayment" | "penaltyAmount" | "financialImpactNotes" | "status" | "reviewerId" | "reviewNotes" | "reviewedAt" | "executedAt" | "previousPhaseData" | "newPhaseData" | "createdAt" | "updatedAt", ExtArgs["result"]["paymentMethodChangeRequest"]>;
2082
+ export type PaymentMethodChangeRequestOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "tenantId" | "applicationId" | "fromPaymentMethodId" | "toPaymentMethodId" | "requestorId" | "reason" | "requiredDocumentTypes" | "submittedDocuments" | "currentOutstanding" | "newTermMonths" | "newInterestRate" | "newMonthlyPayment" | "penaltyAmount" | "financialImpactNotes" | "status" | "reviewerId" | "reviewNotes" | "reviewedAt" | "executedAt" | "previousPhaseData" | "newPhaseData" | "createdAt" | "updatedAt", ExtArgs["result"]["paymentMethodChangeRequest"]>;
2083
2083
  export type PaymentMethodChangeRequestInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
2084
2084
  tenant?: boolean | Prisma.TenantDefaultArgs<ExtArgs>;
2085
- contract?: boolean | Prisma.ContractDefaultArgs<ExtArgs>;
2085
+ application?: boolean | Prisma.ApplicationDefaultArgs<ExtArgs>;
2086
2086
  fromPaymentMethod?: boolean | Prisma.PropertyPaymentMethodDefaultArgs<ExtArgs>;
2087
2087
  toPaymentMethod?: boolean | Prisma.PropertyPaymentMethodDefaultArgs<ExtArgs>;
2088
2088
  requestor?: boolean | Prisma.UserDefaultArgs<ExtArgs>;
@@ -2092,7 +2092,7 @@ export type $PaymentMethodChangeRequestPayload<ExtArgs extends runtime.Types.Ext
2092
2092
  name: "PaymentMethodChangeRequest";
2093
2093
  objects: {
2094
2094
  tenant: Prisma.$TenantPayload<ExtArgs>;
2095
- contract: Prisma.$ContractPayload<ExtArgs>;
2095
+ application: Prisma.$ApplicationPayload<ExtArgs>;
2096
2096
  fromPaymentMethod: Prisma.$PropertyPaymentMethodPayload<ExtArgs>;
2097
2097
  toPaymentMethod: Prisma.$PropertyPaymentMethodPayload<ExtArgs>;
2098
2098
  requestor: Prisma.$UserPayload<ExtArgs>;
@@ -2101,7 +2101,7 @@ export type $PaymentMethodChangeRequestPayload<ExtArgs extends runtime.Types.Ext
2101
2101
  scalars: runtime.Types.Extensions.GetPayloadResult<{
2102
2102
  id: string;
2103
2103
  tenantId: string;
2104
- contractId: string;
2104
+ applicationId: string;
2105
2105
  fromPaymentMethodId: string;
2106
2106
  toPaymentMethodId: string;
2107
2107
  requestorId: string;
@@ -2401,7 +2401,7 @@ export interface PaymentMethodChangeRequestDelegate<ExtArgs extends runtime.Type
2401
2401
  export interface Prisma__PaymentMethodChangeRequestClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
2402
2402
  readonly [Symbol.toStringTag]: "PrismaPromise";
2403
2403
  tenant<T extends Prisma.TenantDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.TenantDefaultArgs<ExtArgs>>): Prisma.Prisma__TenantClient<runtime.Types.Result.GetResult<Prisma.$TenantPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>;
2404
- contract<T extends Prisma.ContractDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.ContractDefaultArgs<ExtArgs>>): Prisma.Prisma__ContractClient<runtime.Types.Result.GetResult<Prisma.$ContractPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>;
2404
+ application<T extends Prisma.ApplicationDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.ApplicationDefaultArgs<ExtArgs>>): Prisma.Prisma__ApplicationClient<runtime.Types.Result.GetResult<Prisma.$ApplicationPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>;
2405
2405
  fromPaymentMethod<T extends Prisma.PropertyPaymentMethodDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.PropertyPaymentMethodDefaultArgs<ExtArgs>>): Prisma.Prisma__PropertyPaymentMethodClient<runtime.Types.Result.GetResult<Prisma.$PropertyPaymentMethodPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>;
2406
2406
  toPaymentMethod<T extends Prisma.PropertyPaymentMethodDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.PropertyPaymentMethodDefaultArgs<ExtArgs>>): Prisma.Prisma__PropertyPaymentMethodClient<runtime.Types.Result.GetResult<Prisma.$PropertyPaymentMethodPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>;
2407
2407
  requestor<T extends Prisma.UserDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.UserDefaultArgs<ExtArgs>>): Prisma.Prisma__UserClient<runtime.Types.Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>;
@@ -2433,7 +2433,7 @@ export interface Prisma__PaymentMethodChangeRequestClient<T, Null = never, ExtAr
2433
2433
  export interface PaymentMethodChangeRequestFieldRefs {
2434
2434
  readonly id: Prisma.FieldRef<"PaymentMethodChangeRequest", 'String'>;
2435
2435
  readonly tenantId: Prisma.FieldRef<"PaymentMethodChangeRequest", 'String'>;
2436
- readonly contractId: Prisma.FieldRef<"PaymentMethodChangeRequest", 'String'>;
2436
+ readonly applicationId: Prisma.FieldRef<"PaymentMethodChangeRequest", 'String'>;
2437
2437
  readonly fromPaymentMethodId: Prisma.FieldRef<"PaymentMethodChangeRequest", 'String'>;
2438
2438
  readonly toPaymentMethodId: Prisma.FieldRef<"PaymentMethodChangeRequest", 'String'>;
2439
2439
  readonly requestorId: Prisma.FieldRef<"PaymentMethodChangeRequest", 'String'>;