@valentine-efagene/qshelter-common 2.0.24 → 2.0.26
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 +15 -0
- package/dist/generated/client/client.d.ts +15 -0
- package/dist/generated/client/commonInputTypes.d.ts +200 -0
- package/dist/generated/client/enums.d.ts +25 -1
- package/dist/generated/client/enums.js +22 -1
- package/dist/generated/client/internal/class.d.ts +33 -0
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +352 -1
- package/dist/generated/client/internal/prismaNamespace.js +120 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +130 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +120 -0
- package/dist/generated/client/models/Contract.d.ts +511 -0
- package/dist/generated/client/models/DocumentRequirementRule.d.ts +2069 -0
- package/dist/generated/client/models/DocumentRequirementRule.js +1 -0
- package/dist/generated/client/models/PaymentMethodChangeRequest.d.ts +2820 -0
- package/dist/generated/client/models/PaymentMethodChangeRequest.js +1 -0
- package/dist/generated/client/models/Prequalification.d.ts +2339 -0
- package/dist/generated/client/models/Prequalification.js +1 -0
- package/dist/generated/client/models/Property.d.ts +211 -0
- package/dist/generated/client/models/PropertyPaymentMethod.d.ts +1139 -131
- package/dist/generated/client/models/Tenant.d.ts +441 -0
- package/dist/generated/client/models/User.d.ts +815 -0
- package/dist/generated/client/models.d.ts +3 -0
- package/dist/src/middleware/tenant.d.ts +15 -0
- package/dist/src/middleware/tenant.js +5 -2
- package/package.json +1 -1
- package/prisma/migrations/20251230231217_add_prequalification_and_payment_method_change/migration.sql +137 -0
- package/prisma/schema.prisma +225 -5
|
@@ -0,0 +1,2820 @@
|
|
|
1
|
+
import type * as runtime from "@prisma/client/runtime/client";
|
|
2
|
+
import type * as $Enums from "../enums.js";
|
|
3
|
+
import type * as Prisma from "../internal/prismaNamespace.js";
|
|
4
|
+
/**
|
|
5
|
+
* Model PaymentMethodChangeRequest
|
|
6
|
+
*
|
|
7
|
+
*/
|
|
8
|
+
export type PaymentMethodChangeRequestModel = runtime.Types.Result.DefaultSelection<Prisma.$PaymentMethodChangeRequestPayload>;
|
|
9
|
+
export type AggregatePaymentMethodChangeRequest = {
|
|
10
|
+
_count: PaymentMethodChangeRequestCountAggregateOutputType | null;
|
|
11
|
+
_avg: PaymentMethodChangeRequestAvgAggregateOutputType | null;
|
|
12
|
+
_sum: PaymentMethodChangeRequestSumAggregateOutputType | null;
|
|
13
|
+
_min: PaymentMethodChangeRequestMinAggregateOutputType | null;
|
|
14
|
+
_max: PaymentMethodChangeRequestMaxAggregateOutputType | null;
|
|
15
|
+
};
|
|
16
|
+
export type PaymentMethodChangeRequestAvgAggregateOutputType = {
|
|
17
|
+
currentOutstanding: number | null;
|
|
18
|
+
newTermMonths: number | null;
|
|
19
|
+
newInterestRate: number | null;
|
|
20
|
+
newMonthlyPayment: number | null;
|
|
21
|
+
penaltyAmount: number | null;
|
|
22
|
+
};
|
|
23
|
+
export type PaymentMethodChangeRequestSumAggregateOutputType = {
|
|
24
|
+
currentOutstanding: number | null;
|
|
25
|
+
newTermMonths: number | null;
|
|
26
|
+
newInterestRate: number | null;
|
|
27
|
+
newMonthlyPayment: number | null;
|
|
28
|
+
penaltyAmount: number | null;
|
|
29
|
+
};
|
|
30
|
+
export type PaymentMethodChangeRequestMinAggregateOutputType = {
|
|
31
|
+
id: string | null;
|
|
32
|
+
tenantId: string | null;
|
|
33
|
+
contractId: string | null;
|
|
34
|
+
fromPaymentMethodId: string | null;
|
|
35
|
+
toPaymentMethodId: string | null;
|
|
36
|
+
requestorId: string | null;
|
|
37
|
+
reason: string | null;
|
|
38
|
+
requiredDocumentTypes: string | null;
|
|
39
|
+
currentOutstanding: number | null;
|
|
40
|
+
newTermMonths: number | null;
|
|
41
|
+
newInterestRate: number | null;
|
|
42
|
+
newMonthlyPayment: number | null;
|
|
43
|
+
penaltyAmount: number | null;
|
|
44
|
+
financialImpactNotes: string | null;
|
|
45
|
+
status: $Enums.PaymentMethodChangeStatus | null;
|
|
46
|
+
reviewerId: string | null;
|
|
47
|
+
reviewNotes: string | null;
|
|
48
|
+
reviewedAt: Date | null;
|
|
49
|
+
executedAt: Date | null;
|
|
50
|
+
createdAt: Date | null;
|
|
51
|
+
updatedAt: Date | null;
|
|
52
|
+
};
|
|
53
|
+
export type PaymentMethodChangeRequestMaxAggregateOutputType = {
|
|
54
|
+
id: string | null;
|
|
55
|
+
tenantId: string | null;
|
|
56
|
+
contractId: string | null;
|
|
57
|
+
fromPaymentMethodId: string | null;
|
|
58
|
+
toPaymentMethodId: string | null;
|
|
59
|
+
requestorId: string | null;
|
|
60
|
+
reason: string | null;
|
|
61
|
+
requiredDocumentTypes: string | null;
|
|
62
|
+
currentOutstanding: number | null;
|
|
63
|
+
newTermMonths: number | null;
|
|
64
|
+
newInterestRate: number | null;
|
|
65
|
+
newMonthlyPayment: number | null;
|
|
66
|
+
penaltyAmount: number | null;
|
|
67
|
+
financialImpactNotes: string | null;
|
|
68
|
+
status: $Enums.PaymentMethodChangeStatus | null;
|
|
69
|
+
reviewerId: string | null;
|
|
70
|
+
reviewNotes: string | null;
|
|
71
|
+
reviewedAt: Date | null;
|
|
72
|
+
executedAt: Date | null;
|
|
73
|
+
createdAt: Date | null;
|
|
74
|
+
updatedAt: Date | null;
|
|
75
|
+
};
|
|
76
|
+
export type PaymentMethodChangeRequestCountAggregateOutputType = {
|
|
77
|
+
id: number;
|
|
78
|
+
tenantId: number;
|
|
79
|
+
contractId: number;
|
|
80
|
+
fromPaymentMethodId: number;
|
|
81
|
+
toPaymentMethodId: number;
|
|
82
|
+
requestorId: number;
|
|
83
|
+
reason: number;
|
|
84
|
+
requiredDocumentTypes: number;
|
|
85
|
+
submittedDocuments: number;
|
|
86
|
+
currentOutstanding: number;
|
|
87
|
+
newTermMonths: number;
|
|
88
|
+
newInterestRate: number;
|
|
89
|
+
newMonthlyPayment: number;
|
|
90
|
+
penaltyAmount: number;
|
|
91
|
+
financialImpactNotes: number;
|
|
92
|
+
status: number;
|
|
93
|
+
reviewerId: number;
|
|
94
|
+
reviewNotes: number;
|
|
95
|
+
reviewedAt: number;
|
|
96
|
+
executedAt: number;
|
|
97
|
+
previousPhaseData: number;
|
|
98
|
+
newPhaseData: number;
|
|
99
|
+
createdAt: number;
|
|
100
|
+
updatedAt: number;
|
|
101
|
+
_all: number;
|
|
102
|
+
};
|
|
103
|
+
export type PaymentMethodChangeRequestAvgAggregateInputType = {
|
|
104
|
+
currentOutstanding?: true;
|
|
105
|
+
newTermMonths?: true;
|
|
106
|
+
newInterestRate?: true;
|
|
107
|
+
newMonthlyPayment?: true;
|
|
108
|
+
penaltyAmount?: true;
|
|
109
|
+
};
|
|
110
|
+
export type PaymentMethodChangeRequestSumAggregateInputType = {
|
|
111
|
+
currentOutstanding?: true;
|
|
112
|
+
newTermMonths?: true;
|
|
113
|
+
newInterestRate?: true;
|
|
114
|
+
newMonthlyPayment?: true;
|
|
115
|
+
penaltyAmount?: true;
|
|
116
|
+
};
|
|
117
|
+
export type PaymentMethodChangeRequestMinAggregateInputType = {
|
|
118
|
+
id?: true;
|
|
119
|
+
tenantId?: true;
|
|
120
|
+
contractId?: true;
|
|
121
|
+
fromPaymentMethodId?: true;
|
|
122
|
+
toPaymentMethodId?: true;
|
|
123
|
+
requestorId?: true;
|
|
124
|
+
reason?: true;
|
|
125
|
+
requiredDocumentTypes?: true;
|
|
126
|
+
currentOutstanding?: true;
|
|
127
|
+
newTermMonths?: true;
|
|
128
|
+
newInterestRate?: true;
|
|
129
|
+
newMonthlyPayment?: true;
|
|
130
|
+
penaltyAmount?: true;
|
|
131
|
+
financialImpactNotes?: true;
|
|
132
|
+
status?: true;
|
|
133
|
+
reviewerId?: true;
|
|
134
|
+
reviewNotes?: true;
|
|
135
|
+
reviewedAt?: true;
|
|
136
|
+
executedAt?: true;
|
|
137
|
+
createdAt?: true;
|
|
138
|
+
updatedAt?: true;
|
|
139
|
+
};
|
|
140
|
+
export type PaymentMethodChangeRequestMaxAggregateInputType = {
|
|
141
|
+
id?: true;
|
|
142
|
+
tenantId?: true;
|
|
143
|
+
contractId?: true;
|
|
144
|
+
fromPaymentMethodId?: true;
|
|
145
|
+
toPaymentMethodId?: true;
|
|
146
|
+
requestorId?: true;
|
|
147
|
+
reason?: true;
|
|
148
|
+
requiredDocumentTypes?: true;
|
|
149
|
+
currentOutstanding?: true;
|
|
150
|
+
newTermMonths?: true;
|
|
151
|
+
newInterestRate?: true;
|
|
152
|
+
newMonthlyPayment?: true;
|
|
153
|
+
penaltyAmount?: true;
|
|
154
|
+
financialImpactNotes?: true;
|
|
155
|
+
status?: true;
|
|
156
|
+
reviewerId?: true;
|
|
157
|
+
reviewNotes?: true;
|
|
158
|
+
reviewedAt?: true;
|
|
159
|
+
executedAt?: true;
|
|
160
|
+
createdAt?: true;
|
|
161
|
+
updatedAt?: true;
|
|
162
|
+
};
|
|
163
|
+
export type PaymentMethodChangeRequestCountAggregateInputType = {
|
|
164
|
+
id?: true;
|
|
165
|
+
tenantId?: true;
|
|
166
|
+
contractId?: true;
|
|
167
|
+
fromPaymentMethodId?: true;
|
|
168
|
+
toPaymentMethodId?: true;
|
|
169
|
+
requestorId?: true;
|
|
170
|
+
reason?: true;
|
|
171
|
+
requiredDocumentTypes?: true;
|
|
172
|
+
submittedDocuments?: true;
|
|
173
|
+
currentOutstanding?: true;
|
|
174
|
+
newTermMonths?: true;
|
|
175
|
+
newInterestRate?: true;
|
|
176
|
+
newMonthlyPayment?: true;
|
|
177
|
+
penaltyAmount?: true;
|
|
178
|
+
financialImpactNotes?: true;
|
|
179
|
+
status?: true;
|
|
180
|
+
reviewerId?: true;
|
|
181
|
+
reviewNotes?: true;
|
|
182
|
+
reviewedAt?: true;
|
|
183
|
+
executedAt?: true;
|
|
184
|
+
previousPhaseData?: true;
|
|
185
|
+
newPhaseData?: true;
|
|
186
|
+
createdAt?: true;
|
|
187
|
+
updatedAt?: true;
|
|
188
|
+
_all?: true;
|
|
189
|
+
};
|
|
190
|
+
export type PaymentMethodChangeRequestAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
191
|
+
/**
|
|
192
|
+
* Filter which PaymentMethodChangeRequest to aggregate.
|
|
193
|
+
*/
|
|
194
|
+
where?: Prisma.PaymentMethodChangeRequestWhereInput;
|
|
195
|
+
/**
|
|
196
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
197
|
+
*
|
|
198
|
+
* Determine the order of PaymentMethodChangeRequests to fetch.
|
|
199
|
+
*/
|
|
200
|
+
orderBy?: Prisma.PaymentMethodChangeRequestOrderByWithRelationInput | Prisma.PaymentMethodChangeRequestOrderByWithRelationInput[];
|
|
201
|
+
/**
|
|
202
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
203
|
+
*
|
|
204
|
+
* Sets the start position
|
|
205
|
+
*/
|
|
206
|
+
cursor?: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
|
|
207
|
+
/**
|
|
208
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
209
|
+
*
|
|
210
|
+
* Take `±n` PaymentMethodChangeRequests from the position of the cursor.
|
|
211
|
+
*/
|
|
212
|
+
take?: number;
|
|
213
|
+
/**
|
|
214
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
215
|
+
*
|
|
216
|
+
* Skip the first `n` PaymentMethodChangeRequests.
|
|
217
|
+
*/
|
|
218
|
+
skip?: number;
|
|
219
|
+
/**
|
|
220
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
221
|
+
*
|
|
222
|
+
* Count returned PaymentMethodChangeRequests
|
|
223
|
+
**/
|
|
224
|
+
_count?: true | PaymentMethodChangeRequestCountAggregateInputType;
|
|
225
|
+
/**
|
|
226
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
227
|
+
*
|
|
228
|
+
* Select which fields to average
|
|
229
|
+
**/
|
|
230
|
+
_avg?: PaymentMethodChangeRequestAvgAggregateInputType;
|
|
231
|
+
/**
|
|
232
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
233
|
+
*
|
|
234
|
+
* Select which fields to sum
|
|
235
|
+
**/
|
|
236
|
+
_sum?: PaymentMethodChangeRequestSumAggregateInputType;
|
|
237
|
+
/**
|
|
238
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
239
|
+
*
|
|
240
|
+
* Select which fields to find the minimum value
|
|
241
|
+
**/
|
|
242
|
+
_min?: PaymentMethodChangeRequestMinAggregateInputType;
|
|
243
|
+
/**
|
|
244
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
245
|
+
*
|
|
246
|
+
* Select which fields to find the maximum value
|
|
247
|
+
**/
|
|
248
|
+
_max?: PaymentMethodChangeRequestMaxAggregateInputType;
|
|
249
|
+
};
|
|
250
|
+
export type GetPaymentMethodChangeRequestAggregateType<T extends PaymentMethodChangeRequestAggregateArgs> = {
|
|
251
|
+
[P in keyof T & keyof AggregatePaymentMethodChangeRequest]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType<T[P], AggregatePaymentMethodChangeRequest[P]> : Prisma.GetScalarType<T[P], AggregatePaymentMethodChangeRequest[P]>;
|
|
252
|
+
};
|
|
253
|
+
export type PaymentMethodChangeRequestGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
254
|
+
where?: Prisma.PaymentMethodChangeRequestWhereInput;
|
|
255
|
+
orderBy?: Prisma.PaymentMethodChangeRequestOrderByWithAggregationInput | Prisma.PaymentMethodChangeRequestOrderByWithAggregationInput[];
|
|
256
|
+
by: Prisma.PaymentMethodChangeRequestScalarFieldEnum[] | Prisma.PaymentMethodChangeRequestScalarFieldEnum;
|
|
257
|
+
having?: Prisma.PaymentMethodChangeRequestScalarWhereWithAggregatesInput;
|
|
258
|
+
take?: number;
|
|
259
|
+
skip?: number;
|
|
260
|
+
_count?: PaymentMethodChangeRequestCountAggregateInputType | true;
|
|
261
|
+
_avg?: PaymentMethodChangeRequestAvgAggregateInputType;
|
|
262
|
+
_sum?: PaymentMethodChangeRequestSumAggregateInputType;
|
|
263
|
+
_min?: PaymentMethodChangeRequestMinAggregateInputType;
|
|
264
|
+
_max?: PaymentMethodChangeRequestMaxAggregateInputType;
|
|
265
|
+
};
|
|
266
|
+
export type PaymentMethodChangeRequestGroupByOutputType = {
|
|
267
|
+
id: string;
|
|
268
|
+
tenantId: string;
|
|
269
|
+
contractId: string;
|
|
270
|
+
fromPaymentMethodId: string;
|
|
271
|
+
toPaymentMethodId: string;
|
|
272
|
+
requestorId: string;
|
|
273
|
+
reason: string | null;
|
|
274
|
+
requiredDocumentTypes: string | null;
|
|
275
|
+
submittedDocuments: runtime.JsonValue | null;
|
|
276
|
+
currentOutstanding: number | null;
|
|
277
|
+
newTermMonths: number | null;
|
|
278
|
+
newInterestRate: number | null;
|
|
279
|
+
newMonthlyPayment: number | null;
|
|
280
|
+
penaltyAmount: number | null;
|
|
281
|
+
financialImpactNotes: string | null;
|
|
282
|
+
status: $Enums.PaymentMethodChangeStatus;
|
|
283
|
+
reviewerId: string | null;
|
|
284
|
+
reviewNotes: string | null;
|
|
285
|
+
reviewedAt: Date | null;
|
|
286
|
+
executedAt: Date | null;
|
|
287
|
+
previousPhaseData: runtime.JsonValue | null;
|
|
288
|
+
newPhaseData: runtime.JsonValue | null;
|
|
289
|
+
createdAt: Date;
|
|
290
|
+
updatedAt: Date;
|
|
291
|
+
_count: PaymentMethodChangeRequestCountAggregateOutputType | null;
|
|
292
|
+
_avg: PaymentMethodChangeRequestAvgAggregateOutputType | null;
|
|
293
|
+
_sum: PaymentMethodChangeRequestSumAggregateOutputType | null;
|
|
294
|
+
_min: PaymentMethodChangeRequestMinAggregateOutputType | null;
|
|
295
|
+
_max: PaymentMethodChangeRequestMaxAggregateOutputType | null;
|
|
296
|
+
};
|
|
297
|
+
type GetPaymentMethodChangeRequestGroupByPayload<T extends PaymentMethodChangeRequestGroupByArgs> = Prisma.PrismaPromise<Array<Prisma.PickEnumerable<PaymentMethodChangeRequestGroupByOutputType, T['by']> & {
|
|
298
|
+
[P in ((keyof T) & (keyof PaymentMethodChangeRequestGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType<T[P], PaymentMethodChangeRequestGroupByOutputType[P]> : Prisma.GetScalarType<T[P], PaymentMethodChangeRequestGroupByOutputType[P]>;
|
|
299
|
+
}>>;
|
|
300
|
+
export type PaymentMethodChangeRequestWhereInput = {
|
|
301
|
+
AND?: Prisma.PaymentMethodChangeRequestWhereInput | Prisma.PaymentMethodChangeRequestWhereInput[];
|
|
302
|
+
OR?: Prisma.PaymentMethodChangeRequestWhereInput[];
|
|
303
|
+
NOT?: Prisma.PaymentMethodChangeRequestWhereInput | Prisma.PaymentMethodChangeRequestWhereInput[];
|
|
304
|
+
id?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
|
|
305
|
+
tenantId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
|
|
306
|
+
contractId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
|
|
307
|
+
fromPaymentMethodId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
|
|
308
|
+
toPaymentMethodId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
|
|
309
|
+
requestorId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
|
|
310
|
+
reason?: Prisma.StringNullableFilter<"PaymentMethodChangeRequest"> | string | null;
|
|
311
|
+
requiredDocumentTypes?: Prisma.StringNullableFilter<"PaymentMethodChangeRequest"> | string | null;
|
|
312
|
+
submittedDocuments?: Prisma.JsonNullableFilter<"PaymentMethodChangeRequest">;
|
|
313
|
+
currentOutstanding?: Prisma.FloatNullableFilter<"PaymentMethodChangeRequest"> | number | null;
|
|
314
|
+
newTermMonths?: Prisma.IntNullableFilter<"PaymentMethodChangeRequest"> | number | null;
|
|
315
|
+
newInterestRate?: Prisma.FloatNullableFilter<"PaymentMethodChangeRequest"> | number | null;
|
|
316
|
+
newMonthlyPayment?: Prisma.FloatNullableFilter<"PaymentMethodChangeRequest"> | number | null;
|
|
317
|
+
penaltyAmount?: Prisma.FloatNullableFilter<"PaymentMethodChangeRequest"> | number | null;
|
|
318
|
+
financialImpactNotes?: Prisma.StringNullableFilter<"PaymentMethodChangeRequest"> | string | null;
|
|
319
|
+
status?: Prisma.EnumPaymentMethodChangeStatusFilter<"PaymentMethodChangeRequest"> | $Enums.PaymentMethodChangeStatus;
|
|
320
|
+
reviewerId?: Prisma.StringNullableFilter<"PaymentMethodChangeRequest"> | string | null;
|
|
321
|
+
reviewNotes?: Prisma.StringNullableFilter<"PaymentMethodChangeRequest"> | string | null;
|
|
322
|
+
reviewedAt?: Prisma.DateTimeNullableFilter<"PaymentMethodChangeRequest"> | Date | string | null;
|
|
323
|
+
executedAt?: Prisma.DateTimeNullableFilter<"PaymentMethodChangeRequest"> | Date | string | null;
|
|
324
|
+
previousPhaseData?: Prisma.JsonNullableFilter<"PaymentMethodChangeRequest">;
|
|
325
|
+
newPhaseData?: Prisma.JsonNullableFilter<"PaymentMethodChangeRequest">;
|
|
326
|
+
createdAt?: Prisma.DateTimeFilter<"PaymentMethodChangeRequest"> | Date | string;
|
|
327
|
+
updatedAt?: Prisma.DateTimeFilter<"PaymentMethodChangeRequest"> | Date | string;
|
|
328
|
+
tenant?: Prisma.XOR<Prisma.TenantScalarRelationFilter, Prisma.TenantWhereInput>;
|
|
329
|
+
contract?: Prisma.XOR<Prisma.ContractScalarRelationFilter, Prisma.ContractWhereInput>;
|
|
330
|
+
fromPaymentMethod?: Prisma.XOR<Prisma.PropertyPaymentMethodScalarRelationFilter, Prisma.PropertyPaymentMethodWhereInput>;
|
|
331
|
+
toPaymentMethod?: Prisma.XOR<Prisma.PropertyPaymentMethodScalarRelationFilter, Prisma.PropertyPaymentMethodWhereInput>;
|
|
332
|
+
requestor?: Prisma.XOR<Prisma.UserScalarRelationFilter, Prisma.UserWhereInput>;
|
|
333
|
+
reviewer?: Prisma.XOR<Prisma.UserNullableScalarRelationFilter, Prisma.UserWhereInput> | null;
|
|
334
|
+
};
|
|
335
|
+
export type PaymentMethodChangeRequestOrderByWithRelationInput = {
|
|
336
|
+
id?: Prisma.SortOrder;
|
|
337
|
+
tenantId?: Prisma.SortOrder;
|
|
338
|
+
contractId?: Prisma.SortOrder;
|
|
339
|
+
fromPaymentMethodId?: Prisma.SortOrder;
|
|
340
|
+
toPaymentMethodId?: Prisma.SortOrder;
|
|
341
|
+
requestorId?: Prisma.SortOrder;
|
|
342
|
+
reason?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
343
|
+
requiredDocumentTypes?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
344
|
+
submittedDocuments?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
345
|
+
currentOutstanding?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
346
|
+
newTermMonths?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
347
|
+
newInterestRate?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
348
|
+
newMonthlyPayment?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
349
|
+
penaltyAmount?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
350
|
+
financialImpactNotes?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
351
|
+
status?: Prisma.SortOrder;
|
|
352
|
+
reviewerId?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
353
|
+
reviewNotes?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
354
|
+
reviewedAt?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
355
|
+
executedAt?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
356
|
+
previousPhaseData?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
357
|
+
newPhaseData?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
358
|
+
createdAt?: Prisma.SortOrder;
|
|
359
|
+
updatedAt?: Prisma.SortOrder;
|
|
360
|
+
tenant?: Prisma.TenantOrderByWithRelationInput;
|
|
361
|
+
contract?: Prisma.ContractOrderByWithRelationInput;
|
|
362
|
+
fromPaymentMethod?: Prisma.PropertyPaymentMethodOrderByWithRelationInput;
|
|
363
|
+
toPaymentMethod?: Prisma.PropertyPaymentMethodOrderByWithRelationInput;
|
|
364
|
+
requestor?: Prisma.UserOrderByWithRelationInput;
|
|
365
|
+
reviewer?: Prisma.UserOrderByWithRelationInput;
|
|
366
|
+
_relevance?: Prisma.PaymentMethodChangeRequestOrderByRelevanceInput;
|
|
367
|
+
};
|
|
368
|
+
export type PaymentMethodChangeRequestWhereUniqueInput = Prisma.AtLeast<{
|
|
369
|
+
id?: string;
|
|
370
|
+
AND?: Prisma.PaymentMethodChangeRequestWhereInput | Prisma.PaymentMethodChangeRequestWhereInput[];
|
|
371
|
+
OR?: Prisma.PaymentMethodChangeRequestWhereInput[];
|
|
372
|
+
NOT?: Prisma.PaymentMethodChangeRequestWhereInput | Prisma.PaymentMethodChangeRequestWhereInput[];
|
|
373
|
+
tenantId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
|
|
374
|
+
contractId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
|
|
375
|
+
fromPaymentMethodId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
|
|
376
|
+
toPaymentMethodId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
|
|
377
|
+
requestorId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
|
|
378
|
+
reason?: Prisma.StringNullableFilter<"PaymentMethodChangeRequest"> | string | null;
|
|
379
|
+
requiredDocumentTypes?: Prisma.StringNullableFilter<"PaymentMethodChangeRequest"> | string | null;
|
|
380
|
+
submittedDocuments?: Prisma.JsonNullableFilter<"PaymentMethodChangeRequest">;
|
|
381
|
+
currentOutstanding?: Prisma.FloatNullableFilter<"PaymentMethodChangeRequest"> | number | null;
|
|
382
|
+
newTermMonths?: Prisma.IntNullableFilter<"PaymentMethodChangeRequest"> | number | null;
|
|
383
|
+
newInterestRate?: Prisma.FloatNullableFilter<"PaymentMethodChangeRequest"> | number | null;
|
|
384
|
+
newMonthlyPayment?: Prisma.FloatNullableFilter<"PaymentMethodChangeRequest"> | number | null;
|
|
385
|
+
penaltyAmount?: Prisma.FloatNullableFilter<"PaymentMethodChangeRequest"> | number | null;
|
|
386
|
+
financialImpactNotes?: Prisma.StringNullableFilter<"PaymentMethodChangeRequest"> | string | null;
|
|
387
|
+
status?: Prisma.EnumPaymentMethodChangeStatusFilter<"PaymentMethodChangeRequest"> | $Enums.PaymentMethodChangeStatus;
|
|
388
|
+
reviewerId?: Prisma.StringNullableFilter<"PaymentMethodChangeRequest"> | string | null;
|
|
389
|
+
reviewNotes?: Prisma.StringNullableFilter<"PaymentMethodChangeRequest"> | string | null;
|
|
390
|
+
reviewedAt?: Prisma.DateTimeNullableFilter<"PaymentMethodChangeRequest"> | Date | string | null;
|
|
391
|
+
executedAt?: Prisma.DateTimeNullableFilter<"PaymentMethodChangeRequest"> | Date | string | null;
|
|
392
|
+
previousPhaseData?: Prisma.JsonNullableFilter<"PaymentMethodChangeRequest">;
|
|
393
|
+
newPhaseData?: Prisma.JsonNullableFilter<"PaymentMethodChangeRequest">;
|
|
394
|
+
createdAt?: Prisma.DateTimeFilter<"PaymentMethodChangeRequest"> | Date | string;
|
|
395
|
+
updatedAt?: Prisma.DateTimeFilter<"PaymentMethodChangeRequest"> | Date | string;
|
|
396
|
+
tenant?: Prisma.XOR<Prisma.TenantScalarRelationFilter, Prisma.TenantWhereInput>;
|
|
397
|
+
contract?: Prisma.XOR<Prisma.ContractScalarRelationFilter, Prisma.ContractWhereInput>;
|
|
398
|
+
fromPaymentMethod?: Prisma.XOR<Prisma.PropertyPaymentMethodScalarRelationFilter, Prisma.PropertyPaymentMethodWhereInput>;
|
|
399
|
+
toPaymentMethod?: Prisma.XOR<Prisma.PropertyPaymentMethodScalarRelationFilter, Prisma.PropertyPaymentMethodWhereInput>;
|
|
400
|
+
requestor?: Prisma.XOR<Prisma.UserScalarRelationFilter, Prisma.UserWhereInput>;
|
|
401
|
+
reviewer?: Prisma.XOR<Prisma.UserNullableScalarRelationFilter, Prisma.UserWhereInput> | null;
|
|
402
|
+
}, "id">;
|
|
403
|
+
export type PaymentMethodChangeRequestOrderByWithAggregationInput = {
|
|
404
|
+
id?: Prisma.SortOrder;
|
|
405
|
+
tenantId?: Prisma.SortOrder;
|
|
406
|
+
contractId?: Prisma.SortOrder;
|
|
407
|
+
fromPaymentMethodId?: Prisma.SortOrder;
|
|
408
|
+
toPaymentMethodId?: Prisma.SortOrder;
|
|
409
|
+
requestorId?: Prisma.SortOrder;
|
|
410
|
+
reason?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
411
|
+
requiredDocumentTypes?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
412
|
+
submittedDocuments?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
413
|
+
currentOutstanding?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
414
|
+
newTermMonths?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
415
|
+
newInterestRate?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
416
|
+
newMonthlyPayment?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
417
|
+
penaltyAmount?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
418
|
+
financialImpactNotes?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
419
|
+
status?: Prisma.SortOrder;
|
|
420
|
+
reviewerId?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
421
|
+
reviewNotes?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
422
|
+
reviewedAt?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
423
|
+
executedAt?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
424
|
+
previousPhaseData?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
425
|
+
newPhaseData?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
426
|
+
createdAt?: Prisma.SortOrder;
|
|
427
|
+
updatedAt?: Prisma.SortOrder;
|
|
428
|
+
_count?: Prisma.PaymentMethodChangeRequestCountOrderByAggregateInput;
|
|
429
|
+
_avg?: Prisma.PaymentMethodChangeRequestAvgOrderByAggregateInput;
|
|
430
|
+
_max?: Prisma.PaymentMethodChangeRequestMaxOrderByAggregateInput;
|
|
431
|
+
_min?: Prisma.PaymentMethodChangeRequestMinOrderByAggregateInput;
|
|
432
|
+
_sum?: Prisma.PaymentMethodChangeRequestSumOrderByAggregateInput;
|
|
433
|
+
};
|
|
434
|
+
export type PaymentMethodChangeRequestScalarWhereWithAggregatesInput = {
|
|
435
|
+
AND?: Prisma.PaymentMethodChangeRequestScalarWhereWithAggregatesInput | Prisma.PaymentMethodChangeRequestScalarWhereWithAggregatesInput[];
|
|
436
|
+
OR?: Prisma.PaymentMethodChangeRequestScalarWhereWithAggregatesInput[];
|
|
437
|
+
NOT?: Prisma.PaymentMethodChangeRequestScalarWhereWithAggregatesInput | Prisma.PaymentMethodChangeRequestScalarWhereWithAggregatesInput[];
|
|
438
|
+
id?: Prisma.StringWithAggregatesFilter<"PaymentMethodChangeRequest"> | string;
|
|
439
|
+
tenantId?: Prisma.StringWithAggregatesFilter<"PaymentMethodChangeRequest"> | string;
|
|
440
|
+
contractId?: Prisma.StringWithAggregatesFilter<"PaymentMethodChangeRequest"> | string;
|
|
441
|
+
fromPaymentMethodId?: Prisma.StringWithAggregatesFilter<"PaymentMethodChangeRequest"> | string;
|
|
442
|
+
toPaymentMethodId?: Prisma.StringWithAggregatesFilter<"PaymentMethodChangeRequest"> | string;
|
|
443
|
+
requestorId?: Prisma.StringWithAggregatesFilter<"PaymentMethodChangeRequest"> | string;
|
|
444
|
+
reason?: Prisma.StringNullableWithAggregatesFilter<"PaymentMethodChangeRequest"> | string | null;
|
|
445
|
+
requiredDocumentTypes?: Prisma.StringNullableWithAggregatesFilter<"PaymentMethodChangeRequest"> | string | null;
|
|
446
|
+
submittedDocuments?: Prisma.JsonNullableWithAggregatesFilter<"PaymentMethodChangeRequest">;
|
|
447
|
+
currentOutstanding?: Prisma.FloatNullableWithAggregatesFilter<"PaymentMethodChangeRequest"> | number | null;
|
|
448
|
+
newTermMonths?: Prisma.IntNullableWithAggregatesFilter<"PaymentMethodChangeRequest"> | number | null;
|
|
449
|
+
newInterestRate?: Prisma.FloatNullableWithAggregatesFilter<"PaymentMethodChangeRequest"> | number | null;
|
|
450
|
+
newMonthlyPayment?: Prisma.FloatNullableWithAggregatesFilter<"PaymentMethodChangeRequest"> | number | null;
|
|
451
|
+
penaltyAmount?: Prisma.FloatNullableWithAggregatesFilter<"PaymentMethodChangeRequest"> | number | null;
|
|
452
|
+
financialImpactNotes?: Prisma.StringNullableWithAggregatesFilter<"PaymentMethodChangeRequest"> | string | null;
|
|
453
|
+
status?: Prisma.EnumPaymentMethodChangeStatusWithAggregatesFilter<"PaymentMethodChangeRequest"> | $Enums.PaymentMethodChangeStatus;
|
|
454
|
+
reviewerId?: Prisma.StringNullableWithAggregatesFilter<"PaymentMethodChangeRequest"> | string | null;
|
|
455
|
+
reviewNotes?: Prisma.StringNullableWithAggregatesFilter<"PaymentMethodChangeRequest"> | string | null;
|
|
456
|
+
reviewedAt?: Prisma.DateTimeNullableWithAggregatesFilter<"PaymentMethodChangeRequest"> | Date | string | null;
|
|
457
|
+
executedAt?: Prisma.DateTimeNullableWithAggregatesFilter<"PaymentMethodChangeRequest"> | Date | string | null;
|
|
458
|
+
previousPhaseData?: Prisma.JsonNullableWithAggregatesFilter<"PaymentMethodChangeRequest">;
|
|
459
|
+
newPhaseData?: Prisma.JsonNullableWithAggregatesFilter<"PaymentMethodChangeRequest">;
|
|
460
|
+
createdAt?: Prisma.DateTimeWithAggregatesFilter<"PaymentMethodChangeRequest"> | Date | string;
|
|
461
|
+
updatedAt?: Prisma.DateTimeWithAggregatesFilter<"PaymentMethodChangeRequest"> | Date | string;
|
|
462
|
+
};
|
|
463
|
+
export type PaymentMethodChangeRequestCreateInput = {
|
|
464
|
+
id?: string;
|
|
465
|
+
reason?: string | null;
|
|
466
|
+
requiredDocumentTypes?: string | null;
|
|
467
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
468
|
+
currentOutstanding?: number | null;
|
|
469
|
+
newTermMonths?: number | null;
|
|
470
|
+
newInterestRate?: number | null;
|
|
471
|
+
newMonthlyPayment?: number | null;
|
|
472
|
+
penaltyAmount?: number | null;
|
|
473
|
+
financialImpactNotes?: string | null;
|
|
474
|
+
status?: $Enums.PaymentMethodChangeStatus;
|
|
475
|
+
reviewNotes?: string | null;
|
|
476
|
+
reviewedAt?: Date | string | null;
|
|
477
|
+
executedAt?: Date | string | null;
|
|
478
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
479
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
480
|
+
createdAt?: Date | string;
|
|
481
|
+
updatedAt?: Date | string;
|
|
482
|
+
tenant: Prisma.TenantCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
|
|
483
|
+
contract: Prisma.ContractCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
|
|
484
|
+
fromPaymentMethod: Prisma.PropertyPaymentMethodCreateNestedOneWithoutChangeRequestsFromInput;
|
|
485
|
+
toPaymentMethod: Prisma.PropertyPaymentMethodCreateNestedOneWithoutChangeRequestsToInput;
|
|
486
|
+
requestor: Prisma.UserCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
|
|
487
|
+
reviewer?: Prisma.UserCreateNestedOneWithoutReviewedChangeRequestsInput;
|
|
488
|
+
};
|
|
489
|
+
export type PaymentMethodChangeRequestUncheckedCreateInput = {
|
|
490
|
+
id?: string;
|
|
491
|
+
tenantId: string;
|
|
492
|
+
contractId: string;
|
|
493
|
+
fromPaymentMethodId: string;
|
|
494
|
+
toPaymentMethodId: string;
|
|
495
|
+
requestorId: string;
|
|
496
|
+
reason?: string | null;
|
|
497
|
+
requiredDocumentTypes?: string | null;
|
|
498
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
499
|
+
currentOutstanding?: number | null;
|
|
500
|
+
newTermMonths?: number | null;
|
|
501
|
+
newInterestRate?: number | null;
|
|
502
|
+
newMonthlyPayment?: number | null;
|
|
503
|
+
penaltyAmount?: number | null;
|
|
504
|
+
financialImpactNotes?: string | null;
|
|
505
|
+
status?: $Enums.PaymentMethodChangeStatus;
|
|
506
|
+
reviewerId?: string | null;
|
|
507
|
+
reviewNotes?: string | null;
|
|
508
|
+
reviewedAt?: Date | string | null;
|
|
509
|
+
executedAt?: Date | string | null;
|
|
510
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
511
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
512
|
+
createdAt?: Date | string;
|
|
513
|
+
updatedAt?: Date | string;
|
|
514
|
+
};
|
|
515
|
+
export type PaymentMethodChangeRequestUpdateInput = {
|
|
516
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
517
|
+
reason?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
518
|
+
requiredDocumentTypes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
519
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
520
|
+
currentOutstanding?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
521
|
+
newTermMonths?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
522
|
+
newInterestRate?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
523
|
+
newMonthlyPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
524
|
+
penaltyAmount?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
525
|
+
financialImpactNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
526
|
+
status?: Prisma.EnumPaymentMethodChangeStatusFieldUpdateOperationsInput | $Enums.PaymentMethodChangeStatus;
|
|
527
|
+
reviewNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
528
|
+
reviewedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
529
|
+
executedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
530
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
531
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
532
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
533
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
534
|
+
tenant?: Prisma.TenantUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
|
|
535
|
+
contract?: Prisma.ContractUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
|
|
536
|
+
fromPaymentMethod?: Prisma.PropertyPaymentMethodUpdateOneRequiredWithoutChangeRequestsFromNestedInput;
|
|
537
|
+
toPaymentMethod?: Prisma.PropertyPaymentMethodUpdateOneRequiredWithoutChangeRequestsToNestedInput;
|
|
538
|
+
requestor?: Prisma.UserUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
|
|
539
|
+
reviewer?: Prisma.UserUpdateOneWithoutReviewedChangeRequestsNestedInput;
|
|
540
|
+
};
|
|
541
|
+
export type PaymentMethodChangeRequestUncheckedUpdateInput = {
|
|
542
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
543
|
+
tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
544
|
+
contractId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
545
|
+
fromPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
546
|
+
toPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
547
|
+
requestorId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
548
|
+
reason?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
549
|
+
requiredDocumentTypes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
550
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
551
|
+
currentOutstanding?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
552
|
+
newTermMonths?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
553
|
+
newInterestRate?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
554
|
+
newMonthlyPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
555
|
+
penaltyAmount?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
556
|
+
financialImpactNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
557
|
+
status?: Prisma.EnumPaymentMethodChangeStatusFieldUpdateOperationsInput | $Enums.PaymentMethodChangeStatus;
|
|
558
|
+
reviewerId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
559
|
+
reviewNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
560
|
+
reviewedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
561
|
+
executedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
562
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
563
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
564
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
565
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
566
|
+
};
|
|
567
|
+
export type PaymentMethodChangeRequestCreateManyInput = {
|
|
568
|
+
id?: string;
|
|
569
|
+
tenantId: string;
|
|
570
|
+
contractId: string;
|
|
571
|
+
fromPaymentMethodId: string;
|
|
572
|
+
toPaymentMethodId: string;
|
|
573
|
+
requestorId: string;
|
|
574
|
+
reason?: string | null;
|
|
575
|
+
requiredDocumentTypes?: string | null;
|
|
576
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
577
|
+
currentOutstanding?: number | null;
|
|
578
|
+
newTermMonths?: number | null;
|
|
579
|
+
newInterestRate?: number | null;
|
|
580
|
+
newMonthlyPayment?: number | null;
|
|
581
|
+
penaltyAmount?: number | null;
|
|
582
|
+
financialImpactNotes?: string | null;
|
|
583
|
+
status?: $Enums.PaymentMethodChangeStatus;
|
|
584
|
+
reviewerId?: string | null;
|
|
585
|
+
reviewNotes?: string | null;
|
|
586
|
+
reviewedAt?: Date | string | null;
|
|
587
|
+
executedAt?: Date | string | null;
|
|
588
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
589
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
590
|
+
createdAt?: Date | string;
|
|
591
|
+
updatedAt?: Date | string;
|
|
592
|
+
};
|
|
593
|
+
export type PaymentMethodChangeRequestUpdateManyMutationInput = {
|
|
594
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
595
|
+
reason?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
596
|
+
requiredDocumentTypes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
597
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
598
|
+
currentOutstanding?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
599
|
+
newTermMonths?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
600
|
+
newInterestRate?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
601
|
+
newMonthlyPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
602
|
+
penaltyAmount?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
603
|
+
financialImpactNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
604
|
+
status?: Prisma.EnumPaymentMethodChangeStatusFieldUpdateOperationsInput | $Enums.PaymentMethodChangeStatus;
|
|
605
|
+
reviewNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
606
|
+
reviewedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
607
|
+
executedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
608
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
609
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
610
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
611
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
612
|
+
};
|
|
613
|
+
export type PaymentMethodChangeRequestUncheckedUpdateManyInput = {
|
|
614
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
615
|
+
tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
616
|
+
contractId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
617
|
+
fromPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
618
|
+
toPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
619
|
+
requestorId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
620
|
+
reason?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
621
|
+
requiredDocumentTypes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
622
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
623
|
+
currentOutstanding?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
624
|
+
newTermMonths?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
625
|
+
newInterestRate?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
626
|
+
newMonthlyPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
627
|
+
penaltyAmount?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
628
|
+
financialImpactNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
629
|
+
status?: Prisma.EnumPaymentMethodChangeStatusFieldUpdateOperationsInput | $Enums.PaymentMethodChangeStatus;
|
|
630
|
+
reviewerId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
631
|
+
reviewNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
632
|
+
reviewedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
633
|
+
executedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
634
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
635
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
636
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
637
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
638
|
+
};
|
|
639
|
+
export type PaymentMethodChangeRequestListRelationFilter = {
|
|
640
|
+
every?: Prisma.PaymentMethodChangeRequestWhereInput;
|
|
641
|
+
some?: Prisma.PaymentMethodChangeRequestWhereInput;
|
|
642
|
+
none?: Prisma.PaymentMethodChangeRequestWhereInput;
|
|
643
|
+
};
|
|
644
|
+
export type PaymentMethodChangeRequestOrderByRelationAggregateInput = {
|
|
645
|
+
_count?: Prisma.SortOrder;
|
|
646
|
+
};
|
|
647
|
+
export type PaymentMethodChangeRequestOrderByRelevanceInput = {
|
|
648
|
+
fields: Prisma.PaymentMethodChangeRequestOrderByRelevanceFieldEnum | Prisma.PaymentMethodChangeRequestOrderByRelevanceFieldEnum[];
|
|
649
|
+
sort: Prisma.SortOrder;
|
|
650
|
+
search: string;
|
|
651
|
+
};
|
|
652
|
+
export type PaymentMethodChangeRequestCountOrderByAggregateInput = {
|
|
653
|
+
id?: Prisma.SortOrder;
|
|
654
|
+
tenantId?: Prisma.SortOrder;
|
|
655
|
+
contractId?: Prisma.SortOrder;
|
|
656
|
+
fromPaymentMethodId?: Prisma.SortOrder;
|
|
657
|
+
toPaymentMethodId?: Prisma.SortOrder;
|
|
658
|
+
requestorId?: Prisma.SortOrder;
|
|
659
|
+
reason?: Prisma.SortOrder;
|
|
660
|
+
requiredDocumentTypes?: Prisma.SortOrder;
|
|
661
|
+
submittedDocuments?: Prisma.SortOrder;
|
|
662
|
+
currentOutstanding?: Prisma.SortOrder;
|
|
663
|
+
newTermMonths?: Prisma.SortOrder;
|
|
664
|
+
newInterestRate?: Prisma.SortOrder;
|
|
665
|
+
newMonthlyPayment?: Prisma.SortOrder;
|
|
666
|
+
penaltyAmount?: Prisma.SortOrder;
|
|
667
|
+
financialImpactNotes?: Prisma.SortOrder;
|
|
668
|
+
status?: Prisma.SortOrder;
|
|
669
|
+
reviewerId?: Prisma.SortOrder;
|
|
670
|
+
reviewNotes?: Prisma.SortOrder;
|
|
671
|
+
reviewedAt?: Prisma.SortOrder;
|
|
672
|
+
executedAt?: Prisma.SortOrder;
|
|
673
|
+
previousPhaseData?: Prisma.SortOrder;
|
|
674
|
+
newPhaseData?: Prisma.SortOrder;
|
|
675
|
+
createdAt?: Prisma.SortOrder;
|
|
676
|
+
updatedAt?: Prisma.SortOrder;
|
|
677
|
+
};
|
|
678
|
+
export type PaymentMethodChangeRequestAvgOrderByAggregateInput = {
|
|
679
|
+
currentOutstanding?: Prisma.SortOrder;
|
|
680
|
+
newTermMonths?: Prisma.SortOrder;
|
|
681
|
+
newInterestRate?: Prisma.SortOrder;
|
|
682
|
+
newMonthlyPayment?: Prisma.SortOrder;
|
|
683
|
+
penaltyAmount?: Prisma.SortOrder;
|
|
684
|
+
};
|
|
685
|
+
export type PaymentMethodChangeRequestMaxOrderByAggregateInput = {
|
|
686
|
+
id?: Prisma.SortOrder;
|
|
687
|
+
tenantId?: Prisma.SortOrder;
|
|
688
|
+
contractId?: Prisma.SortOrder;
|
|
689
|
+
fromPaymentMethodId?: Prisma.SortOrder;
|
|
690
|
+
toPaymentMethodId?: Prisma.SortOrder;
|
|
691
|
+
requestorId?: Prisma.SortOrder;
|
|
692
|
+
reason?: Prisma.SortOrder;
|
|
693
|
+
requiredDocumentTypes?: Prisma.SortOrder;
|
|
694
|
+
currentOutstanding?: Prisma.SortOrder;
|
|
695
|
+
newTermMonths?: Prisma.SortOrder;
|
|
696
|
+
newInterestRate?: Prisma.SortOrder;
|
|
697
|
+
newMonthlyPayment?: Prisma.SortOrder;
|
|
698
|
+
penaltyAmount?: Prisma.SortOrder;
|
|
699
|
+
financialImpactNotes?: Prisma.SortOrder;
|
|
700
|
+
status?: Prisma.SortOrder;
|
|
701
|
+
reviewerId?: Prisma.SortOrder;
|
|
702
|
+
reviewNotes?: Prisma.SortOrder;
|
|
703
|
+
reviewedAt?: Prisma.SortOrder;
|
|
704
|
+
executedAt?: Prisma.SortOrder;
|
|
705
|
+
createdAt?: Prisma.SortOrder;
|
|
706
|
+
updatedAt?: Prisma.SortOrder;
|
|
707
|
+
};
|
|
708
|
+
export type PaymentMethodChangeRequestMinOrderByAggregateInput = {
|
|
709
|
+
id?: Prisma.SortOrder;
|
|
710
|
+
tenantId?: Prisma.SortOrder;
|
|
711
|
+
contractId?: Prisma.SortOrder;
|
|
712
|
+
fromPaymentMethodId?: Prisma.SortOrder;
|
|
713
|
+
toPaymentMethodId?: Prisma.SortOrder;
|
|
714
|
+
requestorId?: Prisma.SortOrder;
|
|
715
|
+
reason?: Prisma.SortOrder;
|
|
716
|
+
requiredDocumentTypes?: Prisma.SortOrder;
|
|
717
|
+
currentOutstanding?: Prisma.SortOrder;
|
|
718
|
+
newTermMonths?: Prisma.SortOrder;
|
|
719
|
+
newInterestRate?: Prisma.SortOrder;
|
|
720
|
+
newMonthlyPayment?: Prisma.SortOrder;
|
|
721
|
+
penaltyAmount?: Prisma.SortOrder;
|
|
722
|
+
financialImpactNotes?: Prisma.SortOrder;
|
|
723
|
+
status?: Prisma.SortOrder;
|
|
724
|
+
reviewerId?: Prisma.SortOrder;
|
|
725
|
+
reviewNotes?: Prisma.SortOrder;
|
|
726
|
+
reviewedAt?: Prisma.SortOrder;
|
|
727
|
+
executedAt?: Prisma.SortOrder;
|
|
728
|
+
createdAt?: Prisma.SortOrder;
|
|
729
|
+
updatedAt?: Prisma.SortOrder;
|
|
730
|
+
};
|
|
731
|
+
export type PaymentMethodChangeRequestSumOrderByAggregateInput = {
|
|
732
|
+
currentOutstanding?: Prisma.SortOrder;
|
|
733
|
+
newTermMonths?: Prisma.SortOrder;
|
|
734
|
+
newInterestRate?: Prisma.SortOrder;
|
|
735
|
+
newMonthlyPayment?: Prisma.SortOrder;
|
|
736
|
+
penaltyAmount?: Prisma.SortOrder;
|
|
737
|
+
};
|
|
738
|
+
export type PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput = {
|
|
739
|
+
create?: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutRequestorInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutRequestorInput> | Prisma.PaymentMethodChangeRequestCreateWithoutRequestorInput[] | Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutRequestorInput[];
|
|
740
|
+
connectOrCreate?: Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutRequestorInput | Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutRequestorInput[];
|
|
741
|
+
createMany?: Prisma.PaymentMethodChangeRequestCreateManyRequestorInputEnvelope;
|
|
742
|
+
connect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
743
|
+
};
|
|
744
|
+
export type PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput = {
|
|
745
|
+
create?: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutReviewerInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutReviewerInput> | Prisma.PaymentMethodChangeRequestCreateWithoutReviewerInput[] | Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutReviewerInput[];
|
|
746
|
+
connectOrCreate?: Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutReviewerInput | Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutReviewerInput[];
|
|
747
|
+
createMany?: Prisma.PaymentMethodChangeRequestCreateManyReviewerInputEnvelope;
|
|
748
|
+
connect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
749
|
+
};
|
|
750
|
+
export type PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput = {
|
|
751
|
+
create?: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutRequestorInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutRequestorInput> | Prisma.PaymentMethodChangeRequestCreateWithoutRequestorInput[] | Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutRequestorInput[];
|
|
752
|
+
connectOrCreate?: Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutRequestorInput | Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutRequestorInput[];
|
|
753
|
+
createMany?: Prisma.PaymentMethodChangeRequestCreateManyRequestorInputEnvelope;
|
|
754
|
+
connect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
755
|
+
};
|
|
756
|
+
export type PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput = {
|
|
757
|
+
create?: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutReviewerInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutReviewerInput> | Prisma.PaymentMethodChangeRequestCreateWithoutReviewerInput[] | Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutReviewerInput[];
|
|
758
|
+
connectOrCreate?: Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutReviewerInput | Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutReviewerInput[];
|
|
759
|
+
createMany?: Prisma.PaymentMethodChangeRequestCreateManyReviewerInputEnvelope;
|
|
760
|
+
connect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
761
|
+
};
|
|
762
|
+
export type PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput = {
|
|
763
|
+
create?: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutRequestorInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutRequestorInput> | Prisma.PaymentMethodChangeRequestCreateWithoutRequestorInput[] | Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutRequestorInput[];
|
|
764
|
+
connectOrCreate?: Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutRequestorInput | Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutRequestorInput[];
|
|
765
|
+
upsert?: Prisma.PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutRequestorInput | Prisma.PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutRequestorInput[];
|
|
766
|
+
createMany?: Prisma.PaymentMethodChangeRequestCreateManyRequestorInputEnvelope;
|
|
767
|
+
set?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
768
|
+
disconnect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
769
|
+
delete?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
770
|
+
connect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
771
|
+
update?: Prisma.PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutRequestorInput | Prisma.PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutRequestorInput[];
|
|
772
|
+
updateMany?: Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutRequestorInput | Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutRequestorInput[];
|
|
773
|
+
deleteMany?: Prisma.PaymentMethodChangeRequestScalarWhereInput | Prisma.PaymentMethodChangeRequestScalarWhereInput[];
|
|
774
|
+
};
|
|
775
|
+
export type PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput = {
|
|
776
|
+
create?: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutReviewerInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutReviewerInput> | Prisma.PaymentMethodChangeRequestCreateWithoutReviewerInput[] | Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutReviewerInput[];
|
|
777
|
+
connectOrCreate?: Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutReviewerInput | Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutReviewerInput[];
|
|
778
|
+
upsert?: Prisma.PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutReviewerInput | Prisma.PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutReviewerInput[];
|
|
779
|
+
createMany?: Prisma.PaymentMethodChangeRequestCreateManyReviewerInputEnvelope;
|
|
780
|
+
set?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
781
|
+
disconnect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
782
|
+
delete?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
783
|
+
connect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
784
|
+
update?: Prisma.PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutReviewerInput | Prisma.PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutReviewerInput[];
|
|
785
|
+
updateMany?: Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutReviewerInput | Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutReviewerInput[];
|
|
786
|
+
deleteMany?: Prisma.PaymentMethodChangeRequestScalarWhereInput | Prisma.PaymentMethodChangeRequestScalarWhereInput[];
|
|
787
|
+
};
|
|
788
|
+
export type PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput = {
|
|
789
|
+
create?: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutRequestorInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutRequestorInput> | Prisma.PaymentMethodChangeRequestCreateWithoutRequestorInput[] | Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutRequestorInput[];
|
|
790
|
+
connectOrCreate?: Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutRequestorInput | Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutRequestorInput[];
|
|
791
|
+
upsert?: Prisma.PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutRequestorInput | Prisma.PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutRequestorInput[];
|
|
792
|
+
createMany?: Prisma.PaymentMethodChangeRequestCreateManyRequestorInputEnvelope;
|
|
793
|
+
set?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
794
|
+
disconnect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
795
|
+
delete?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
796
|
+
connect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
797
|
+
update?: Prisma.PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutRequestorInput | Prisma.PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutRequestorInput[];
|
|
798
|
+
updateMany?: Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutRequestorInput | Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutRequestorInput[];
|
|
799
|
+
deleteMany?: Prisma.PaymentMethodChangeRequestScalarWhereInput | Prisma.PaymentMethodChangeRequestScalarWhereInput[];
|
|
800
|
+
};
|
|
801
|
+
export type PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput = {
|
|
802
|
+
create?: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutReviewerInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutReviewerInput> | Prisma.PaymentMethodChangeRequestCreateWithoutReviewerInput[] | Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutReviewerInput[];
|
|
803
|
+
connectOrCreate?: Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutReviewerInput | Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutReviewerInput[];
|
|
804
|
+
upsert?: Prisma.PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutReviewerInput | Prisma.PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutReviewerInput[];
|
|
805
|
+
createMany?: Prisma.PaymentMethodChangeRequestCreateManyReviewerInputEnvelope;
|
|
806
|
+
set?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
807
|
+
disconnect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
808
|
+
delete?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
809
|
+
connect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
810
|
+
update?: Prisma.PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutReviewerInput | Prisma.PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutReviewerInput[];
|
|
811
|
+
updateMany?: Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutReviewerInput | Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutReviewerInput[];
|
|
812
|
+
deleteMany?: Prisma.PaymentMethodChangeRequestScalarWhereInput | Prisma.PaymentMethodChangeRequestScalarWhereInput[];
|
|
813
|
+
};
|
|
814
|
+
export type PaymentMethodChangeRequestCreateNestedManyWithoutTenantInput = {
|
|
815
|
+
create?: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutTenantInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutTenantInput> | Prisma.PaymentMethodChangeRequestCreateWithoutTenantInput[] | Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutTenantInput[];
|
|
816
|
+
connectOrCreate?: Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutTenantInput | Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutTenantInput[];
|
|
817
|
+
createMany?: Prisma.PaymentMethodChangeRequestCreateManyTenantInputEnvelope;
|
|
818
|
+
connect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
819
|
+
};
|
|
820
|
+
export type PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutTenantInput = {
|
|
821
|
+
create?: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutTenantInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutTenantInput> | Prisma.PaymentMethodChangeRequestCreateWithoutTenantInput[] | Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutTenantInput[];
|
|
822
|
+
connectOrCreate?: Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutTenantInput | Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutTenantInput[];
|
|
823
|
+
createMany?: Prisma.PaymentMethodChangeRequestCreateManyTenantInputEnvelope;
|
|
824
|
+
connect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
825
|
+
};
|
|
826
|
+
export type PaymentMethodChangeRequestUpdateManyWithoutTenantNestedInput = {
|
|
827
|
+
create?: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutTenantInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutTenantInput> | Prisma.PaymentMethodChangeRequestCreateWithoutTenantInput[] | Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutTenantInput[];
|
|
828
|
+
connectOrCreate?: Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutTenantInput | Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutTenantInput[];
|
|
829
|
+
upsert?: Prisma.PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutTenantInput | Prisma.PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutTenantInput[];
|
|
830
|
+
createMany?: Prisma.PaymentMethodChangeRequestCreateManyTenantInputEnvelope;
|
|
831
|
+
set?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
832
|
+
disconnect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
833
|
+
delete?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
834
|
+
connect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
835
|
+
update?: Prisma.PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutTenantInput | Prisma.PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutTenantInput[];
|
|
836
|
+
updateMany?: Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutTenantInput | Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutTenantInput[];
|
|
837
|
+
deleteMany?: Prisma.PaymentMethodChangeRequestScalarWhereInput | Prisma.PaymentMethodChangeRequestScalarWhereInput[];
|
|
838
|
+
};
|
|
839
|
+
export type PaymentMethodChangeRequestUncheckedUpdateManyWithoutTenantNestedInput = {
|
|
840
|
+
create?: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutTenantInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutTenantInput> | Prisma.PaymentMethodChangeRequestCreateWithoutTenantInput[] | Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutTenantInput[];
|
|
841
|
+
connectOrCreate?: Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutTenantInput | Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutTenantInput[];
|
|
842
|
+
upsert?: Prisma.PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutTenantInput | Prisma.PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutTenantInput[];
|
|
843
|
+
createMany?: Prisma.PaymentMethodChangeRequestCreateManyTenantInputEnvelope;
|
|
844
|
+
set?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
845
|
+
disconnect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
846
|
+
delete?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
847
|
+
connect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
848
|
+
update?: Prisma.PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutTenantInput | Prisma.PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutTenantInput[];
|
|
849
|
+
updateMany?: Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutTenantInput | Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutTenantInput[];
|
|
850
|
+
deleteMany?: Prisma.PaymentMethodChangeRequestScalarWhereInput | Prisma.PaymentMethodChangeRequestScalarWhereInput[];
|
|
851
|
+
};
|
|
852
|
+
export type PaymentMethodChangeRequestCreateNestedManyWithoutFromPaymentMethodInput = {
|
|
853
|
+
create?: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutFromPaymentMethodInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutFromPaymentMethodInput> | Prisma.PaymentMethodChangeRequestCreateWithoutFromPaymentMethodInput[] | Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutFromPaymentMethodInput[];
|
|
854
|
+
connectOrCreate?: Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutFromPaymentMethodInput | Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutFromPaymentMethodInput[];
|
|
855
|
+
createMany?: Prisma.PaymentMethodChangeRequestCreateManyFromPaymentMethodInputEnvelope;
|
|
856
|
+
connect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
857
|
+
};
|
|
858
|
+
export type PaymentMethodChangeRequestCreateNestedManyWithoutToPaymentMethodInput = {
|
|
859
|
+
create?: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutToPaymentMethodInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutToPaymentMethodInput> | Prisma.PaymentMethodChangeRequestCreateWithoutToPaymentMethodInput[] | Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutToPaymentMethodInput[];
|
|
860
|
+
connectOrCreate?: Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutToPaymentMethodInput | Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutToPaymentMethodInput[];
|
|
861
|
+
createMany?: Prisma.PaymentMethodChangeRequestCreateManyToPaymentMethodInputEnvelope;
|
|
862
|
+
connect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
863
|
+
};
|
|
864
|
+
export type PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutFromPaymentMethodInput = {
|
|
865
|
+
create?: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutFromPaymentMethodInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutFromPaymentMethodInput> | Prisma.PaymentMethodChangeRequestCreateWithoutFromPaymentMethodInput[] | Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutFromPaymentMethodInput[];
|
|
866
|
+
connectOrCreate?: Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutFromPaymentMethodInput | Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutFromPaymentMethodInput[];
|
|
867
|
+
createMany?: Prisma.PaymentMethodChangeRequestCreateManyFromPaymentMethodInputEnvelope;
|
|
868
|
+
connect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
869
|
+
};
|
|
870
|
+
export type PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutToPaymentMethodInput = {
|
|
871
|
+
create?: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutToPaymentMethodInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutToPaymentMethodInput> | Prisma.PaymentMethodChangeRequestCreateWithoutToPaymentMethodInput[] | Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutToPaymentMethodInput[];
|
|
872
|
+
connectOrCreate?: Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutToPaymentMethodInput | Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutToPaymentMethodInput[];
|
|
873
|
+
createMany?: Prisma.PaymentMethodChangeRequestCreateManyToPaymentMethodInputEnvelope;
|
|
874
|
+
connect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
875
|
+
};
|
|
876
|
+
export type PaymentMethodChangeRequestUpdateManyWithoutFromPaymentMethodNestedInput = {
|
|
877
|
+
create?: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutFromPaymentMethodInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutFromPaymentMethodInput> | Prisma.PaymentMethodChangeRequestCreateWithoutFromPaymentMethodInput[] | Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutFromPaymentMethodInput[];
|
|
878
|
+
connectOrCreate?: Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutFromPaymentMethodInput | Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutFromPaymentMethodInput[];
|
|
879
|
+
upsert?: Prisma.PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutFromPaymentMethodInput | Prisma.PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutFromPaymentMethodInput[];
|
|
880
|
+
createMany?: Prisma.PaymentMethodChangeRequestCreateManyFromPaymentMethodInputEnvelope;
|
|
881
|
+
set?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
882
|
+
disconnect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
883
|
+
delete?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
884
|
+
connect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
885
|
+
update?: Prisma.PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutFromPaymentMethodInput | Prisma.PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutFromPaymentMethodInput[];
|
|
886
|
+
updateMany?: Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutFromPaymentMethodInput | Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutFromPaymentMethodInput[];
|
|
887
|
+
deleteMany?: Prisma.PaymentMethodChangeRequestScalarWhereInput | Prisma.PaymentMethodChangeRequestScalarWhereInput[];
|
|
888
|
+
};
|
|
889
|
+
export type PaymentMethodChangeRequestUpdateManyWithoutToPaymentMethodNestedInput = {
|
|
890
|
+
create?: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutToPaymentMethodInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutToPaymentMethodInput> | Prisma.PaymentMethodChangeRequestCreateWithoutToPaymentMethodInput[] | Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutToPaymentMethodInput[];
|
|
891
|
+
connectOrCreate?: Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutToPaymentMethodInput | Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutToPaymentMethodInput[];
|
|
892
|
+
upsert?: Prisma.PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutToPaymentMethodInput | Prisma.PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutToPaymentMethodInput[];
|
|
893
|
+
createMany?: Prisma.PaymentMethodChangeRequestCreateManyToPaymentMethodInputEnvelope;
|
|
894
|
+
set?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
895
|
+
disconnect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
896
|
+
delete?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
897
|
+
connect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
898
|
+
update?: Prisma.PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutToPaymentMethodInput | Prisma.PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutToPaymentMethodInput[];
|
|
899
|
+
updateMany?: Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutToPaymentMethodInput | Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutToPaymentMethodInput[];
|
|
900
|
+
deleteMany?: Prisma.PaymentMethodChangeRequestScalarWhereInput | Prisma.PaymentMethodChangeRequestScalarWhereInput[];
|
|
901
|
+
};
|
|
902
|
+
export type PaymentMethodChangeRequestUncheckedUpdateManyWithoutFromPaymentMethodNestedInput = {
|
|
903
|
+
create?: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutFromPaymentMethodInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutFromPaymentMethodInput> | Prisma.PaymentMethodChangeRequestCreateWithoutFromPaymentMethodInput[] | Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutFromPaymentMethodInput[];
|
|
904
|
+
connectOrCreate?: Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutFromPaymentMethodInput | Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutFromPaymentMethodInput[];
|
|
905
|
+
upsert?: Prisma.PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutFromPaymentMethodInput | Prisma.PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutFromPaymentMethodInput[];
|
|
906
|
+
createMany?: Prisma.PaymentMethodChangeRequestCreateManyFromPaymentMethodInputEnvelope;
|
|
907
|
+
set?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
908
|
+
disconnect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
909
|
+
delete?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
910
|
+
connect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
911
|
+
update?: Prisma.PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutFromPaymentMethodInput | Prisma.PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutFromPaymentMethodInput[];
|
|
912
|
+
updateMany?: Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutFromPaymentMethodInput | Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutFromPaymentMethodInput[];
|
|
913
|
+
deleteMany?: Prisma.PaymentMethodChangeRequestScalarWhereInput | Prisma.PaymentMethodChangeRequestScalarWhereInput[];
|
|
914
|
+
};
|
|
915
|
+
export type PaymentMethodChangeRequestUncheckedUpdateManyWithoutToPaymentMethodNestedInput = {
|
|
916
|
+
create?: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutToPaymentMethodInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutToPaymentMethodInput> | Prisma.PaymentMethodChangeRequestCreateWithoutToPaymentMethodInput[] | Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutToPaymentMethodInput[];
|
|
917
|
+
connectOrCreate?: Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutToPaymentMethodInput | Prisma.PaymentMethodChangeRequestCreateOrConnectWithoutToPaymentMethodInput[];
|
|
918
|
+
upsert?: Prisma.PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutToPaymentMethodInput | Prisma.PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutToPaymentMethodInput[];
|
|
919
|
+
createMany?: Prisma.PaymentMethodChangeRequestCreateManyToPaymentMethodInputEnvelope;
|
|
920
|
+
set?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
921
|
+
disconnect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
922
|
+
delete?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
923
|
+
connect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
924
|
+
update?: Prisma.PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutToPaymentMethodInput | Prisma.PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutToPaymentMethodInput[];
|
|
925
|
+
updateMany?: Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutToPaymentMethodInput | Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutToPaymentMethodInput[];
|
|
926
|
+
deleteMany?: Prisma.PaymentMethodChangeRequestScalarWhereInput | Prisma.PaymentMethodChangeRequestScalarWhereInput[];
|
|
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;
|
|
932
|
+
connect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
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;
|
|
938
|
+
connect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
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;
|
|
945
|
+
set?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
946
|
+
disconnect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
947
|
+
delete?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
948
|
+
connect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
949
|
+
update?: Prisma.PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutContractInput | Prisma.PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutContractInput[];
|
|
950
|
+
updateMany?: Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutContractInput | Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutContractInput[];
|
|
951
|
+
deleteMany?: Prisma.PaymentMethodChangeRequestScalarWhereInput | Prisma.PaymentMethodChangeRequestScalarWhereInput[];
|
|
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;
|
|
958
|
+
set?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
959
|
+
disconnect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
960
|
+
delete?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
961
|
+
connect?: Prisma.PaymentMethodChangeRequestWhereUniqueInput | Prisma.PaymentMethodChangeRequestWhereUniqueInput[];
|
|
962
|
+
update?: Prisma.PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutContractInput | Prisma.PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutContractInput[];
|
|
963
|
+
updateMany?: Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutContractInput | Prisma.PaymentMethodChangeRequestUpdateManyWithWhereWithoutContractInput[];
|
|
964
|
+
deleteMany?: Prisma.PaymentMethodChangeRequestScalarWhereInput | Prisma.PaymentMethodChangeRequestScalarWhereInput[];
|
|
965
|
+
};
|
|
966
|
+
export type EnumPaymentMethodChangeStatusFieldUpdateOperationsInput = {
|
|
967
|
+
set?: $Enums.PaymentMethodChangeStatus;
|
|
968
|
+
};
|
|
969
|
+
export type PaymentMethodChangeRequestCreateWithoutRequestorInput = {
|
|
970
|
+
id?: string;
|
|
971
|
+
reason?: string | null;
|
|
972
|
+
requiredDocumentTypes?: string | null;
|
|
973
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
974
|
+
currentOutstanding?: number | null;
|
|
975
|
+
newTermMonths?: number | null;
|
|
976
|
+
newInterestRate?: number | null;
|
|
977
|
+
newMonthlyPayment?: number | null;
|
|
978
|
+
penaltyAmount?: number | null;
|
|
979
|
+
financialImpactNotes?: string | null;
|
|
980
|
+
status?: $Enums.PaymentMethodChangeStatus;
|
|
981
|
+
reviewNotes?: string | null;
|
|
982
|
+
reviewedAt?: Date | string | null;
|
|
983
|
+
executedAt?: Date | string | null;
|
|
984
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
985
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
986
|
+
createdAt?: Date | string;
|
|
987
|
+
updatedAt?: Date | string;
|
|
988
|
+
tenant: Prisma.TenantCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
|
|
989
|
+
contract: Prisma.ContractCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
|
|
990
|
+
fromPaymentMethod: Prisma.PropertyPaymentMethodCreateNestedOneWithoutChangeRequestsFromInput;
|
|
991
|
+
toPaymentMethod: Prisma.PropertyPaymentMethodCreateNestedOneWithoutChangeRequestsToInput;
|
|
992
|
+
reviewer?: Prisma.UserCreateNestedOneWithoutReviewedChangeRequestsInput;
|
|
993
|
+
};
|
|
994
|
+
export type PaymentMethodChangeRequestUncheckedCreateWithoutRequestorInput = {
|
|
995
|
+
id?: string;
|
|
996
|
+
tenantId: string;
|
|
997
|
+
contractId: string;
|
|
998
|
+
fromPaymentMethodId: string;
|
|
999
|
+
toPaymentMethodId: string;
|
|
1000
|
+
reason?: string | null;
|
|
1001
|
+
requiredDocumentTypes?: string | null;
|
|
1002
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1003
|
+
currentOutstanding?: number | null;
|
|
1004
|
+
newTermMonths?: number | null;
|
|
1005
|
+
newInterestRate?: number | null;
|
|
1006
|
+
newMonthlyPayment?: number | null;
|
|
1007
|
+
penaltyAmount?: number | null;
|
|
1008
|
+
financialImpactNotes?: string | null;
|
|
1009
|
+
status?: $Enums.PaymentMethodChangeStatus;
|
|
1010
|
+
reviewerId?: string | null;
|
|
1011
|
+
reviewNotes?: string | null;
|
|
1012
|
+
reviewedAt?: Date | string | null;
|
|
1013
|
+
executedAt?: Date | string | null;
|
|
1014
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1015
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1016
|
+
createdAt?: Date | string;
|
|
1017
|
+
updatedAt?: Date | string;
|
|
1018
|
+
};
|
|
1019
|
+
export type PaymentMethodChangeRequestCreateOrConnectWithoutRequestorInput = {
|
|
1020
|
+
where: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
|
|
1021
|
+
create: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutRequestorInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutRequestorInput>;
|
|
1022
|
+
};
|
|
1023
|
+
export type PaymentMethodChangeRequestCreateManyRequestorInputEnvelope = {
|
|
1024
|
+
data: Prisma.PaymentMethodChangeRequestCreateManyRequestorInput | Prisma.PaymentMethodChangeRequestCreateManyRequestorInput[];
|
|
1025
|
+
skipDuplicates?: boolean;
|
|
1026
|
+
};
|
|
1027
|
+
export type PaymentMethodChangeRequestCreateWithoutReviewerInput = {
|
|
1028
|
+
id?: string;
|
|
1029
|
+
reason?: string | null;
|
|
1030
|
+
requiredDocumentTypes?: string | null;
|
|
1031
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1032
|
+
currentOutstanding?: number | null;
|
|
1033
|
+
newTermMonths?: number | null;
|
|
1034
|
+
newInterestRate?: number | null;
|
|
1035
|
+
newMonthlyPayment?: number | null;
|
|
1036
|
+
penaltyAmount?: number | null;
|
|
1037
|
+
financialImpactNotes?: string | null;
|
|
1038
|
+
status?: $Enums.PaymentMethodChangeStatus;
|
|
1039
|
+
reviewNotes?: string | null;
|
|
1040
|
+
reviewedAt?: Date | string | null;
|
|
1041
|
+
executedAt?: Date | string | null;
|
|
1042
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1043
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1044
|
+
createdAt?: Date | string;
|
|
1045
|
+
updatedAt?: Date | string;
|
|
1046
|
+
tenant: Prisma.TenantCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
|
|
1047
|
+
contract: Prisma.ContractCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
|
|
1048
|
+
fromPaymentMethod: Prisma.PropertyPaymentMethodCreateNestedOneWithoutChangeRequestsFromInput;
|
|
1049
|
+
toPaymentMethod: Prisma.PropertyPaymentMethodCreateNestedOneWithoutChangeRequestsToInput;
|
|
1050
|
+
requestor: Prisma.UserCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
|
|
1051
|
+
};
|
|
1052
|
+
export type PaymentMethodChangeRequestUncheckedCreateWithoutReviewerInput = {
|
|
1053
|
+
id?: string;
|
|
1054
|
+
tenantId: string;
|
|
1055
|
+
contractId: string;
|
|
1056
|
+
fromPaymentMethodId: string;
|
|
1057
|
+
toPaymentMethodId: string;
|
|
1058
|
+
requestorId: string;
|
|
1059
|
+
reason?: string | null;
|
|
1060
|
+
requiredDocumentTypes?: string | null;
|
|
1061
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1062
|
+
currentOutstanding?: number | null;
|
|
1063
|
+
newTermMonths?: number | null;
|
|
1064
|
+
newInterestRate?: number | null;
|
|
1065
|
+
newMonthlyPayment?: number | null;
|
|
1066
|
+
penaltyAmount?: number | null;
|
|
1067
|
+
financialImpactNotes?: string | null;
|
|
1068
|
+
status?: $Enums.PaymentMethodChangeStatus;
|
|
1069
|
+
reviewNotes?: string | null;
|
|
1070
|
+
reviewedAt?: Date | string | null;
|
|
1071
|
+
executedAt?: Date | string | null;
|
|
1072
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1073
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1074
|
+
createdAt?: Date | string;
|
|
1075
|
+
updatedAt?: Date | string;
|
|
1076
|
+
};
|
|
1077
|
+
export type PaymentMethodChangeRequestCreateOrConnectWithoutReviewerInput = {
|
|
1078
|
+
where: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
|
|
1079
|
+
create: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutReviewerInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutReviewerInput>;
|
|
1080
|
+
};
|
|
1081
|
+
export type PaymentMethodChangeRequestCreateManyReviewerInputEnvelope = {
|
|
1082
|
+
data: Prisma.PaymentMethodChangeRequestCreateManyReviewerInput | Prisma.PaymentMethodChangeRequestCreateManyReviewerInput[];
|
|
1083
|
+
skipDuplicates?: boolean;
|
|
1084
|
+
};
|
|
1085
|
+
export type PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutRequestorInput = {
|
|
1086
|
+
where: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
|
|
1087
|
+
update: Prisma.XOR<Prisma.PaymentMethodChangeRequestUpdateWithoutRequestorInput, Prisma.PaymentMethodChangeRequestUncheckedUpdateWithoutRequestorInput>;
|
|
1088
|
+
create: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutRequestorInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutRequestorInput>;
|
|
1089
|
+
};
|
|
1090
|
+
export type PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutRequestorInput = {
|
|
1091
|
+
where: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
|
|
1092
|
+
data: Prisma.XOR<Prisma.PaymentMethodChangeRequestUpdateWithoutRequestorInput, Prisma.PaymentMethodChangeRequestUncheckedUpdateWithoutRequestorInput>;
|
|
1093
|
+
};
|
|
1094
|
+
export type PaymentMethodChangeRequestUpdateManyWithWhereWithoutRequestorInput = {
|
|
1095
|
+
where: Prisma.PaymentMethodChangeRequestScalarWhereInput;
|
|
1096
|
+
data: Prisma.XOR<Prisma.PaymentMethodChangeRequestUpdateManyMutationInput, Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorInput>;
|
|
1097
|
+
};
|
|
1098
|
+
export type PaymentMethodChangeRequestScalarWhereInput = {
|
|
1099
|
+
AND?: Prisma.PaymentMethodChangeRequestScalarWhereInput | Prisma.PaymentMethodChangeRequestScalarWhereInput[];
|
|
1100
|
+
OR?: Prisma.PaymentMethodChangeRequestScalarWhereInput[];
|
|
1101
|
+
NOT?: Prisma.PaymentMethodChangeRequestScalarWhereInput | Prisma.PaymentMethodChangeRequestScalarWhereInput[];
|
|
1102
|
+
id?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
|
|
1103
|
+
tenantId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
|
|
1104
|
+
contractId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
|
|
1105
|
+
fromPaymentMethodId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
|
|
1106
|
+
toPaymentMethodId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
|
|
1107
|
+
requestorId?: Prisma.StringFilter<"PaymentMethodChangeRequest"> | string;
|
|
1108
|
+
reason?: Prisma.StringNullableFilter<"PaymentMethodChangeRequest"> | string | null;
|
|
1109
|
+
requiredDocumentTypes?: Prisma.StringNullableFilter<"PaymentMethodChangeRequest"> | string | null;
|
|
1110
|
+
submittedDocuments?: Prisma.JsonNullableFilter<"PaymentMethodChangeRequest">;
|
|
1111
|
+
currentOutstanding?: Prisma.FloatNullableFilter<"PaymentMethodChangeRequest"> | number | null;
|
|
1112
|
+
newTermMonths?: Prisma.IntNullableFilter<"PaymentMethodChangeRequest"> | number | null;
|
|
1113
|
+
newInterestRate?: Prisma.FloatNullableFilter<"PaymentMethodChangeRequest"> | number | null;
|
|
1114
|
+
newMonthlyPayment?: Prisma.FloatNullableFilter<"PaymentMethodChangeRequest"> | number | null;
|
|
1115
|
+
penaltyAmount?: Prisma.FloatNullableFilter<"PaymentMethodChangeRequest"> | number | null;
|
|
1116
|
+
financialImpactNotes?: Prisma.StringNullableFilter<"PaymentMethodChangeRequest"> | string | null;
|
|
1117
|
+
status?: Prisma.EnumPaymentMethodChangeStatusFilter<"PaymentMethodChangeRequest"> | $Enums.PaymentMethodChangeStatus;
|
|
1118
|
+
reviewerId?: Prisma.StringNullableFilter<"PaymentMethodChangeRequest"> | string | null;
|
|
1119
|
+
reviewNotes?: Prisma.StringNullableFilter<"PaymentMethodChangeRequest"> | string | null;
|
|
1120
|
+
reviewedAt?: Prisma.DateTimeNullableFilter<"PaymentMethodChangeRequest"> | Date | string | null;
|
|
1121
|
+
executedAt?: Prisma.DateTimeNullableFilter<"PaymentMethodChangeRequest"> | Date | string | null;
|
|
1122
|
+
previousPhaseData?: Prisma.JsonNullableFilter<"PaymentMethodChangeRequest">;
|
|
1123
|
+
newPhaseData?: Prisma.JsonNullableFilter<"PaymentMethodChangeRequest">;
|
|
1124
|
+
createdAt?: Prisma.DateTimeFilter<"PaymentMethodChangeRequest"> | Date | string;
|
|
1125
|
+
updatedAt?: Prisma.DateTimeFilter<"PaymentMethodChangeRequest"> | Date | string;
|
|
1126
|
+
};
|
|
1127
|
+
export type PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutReviewerInput = {
|
|
1128
|
+
where: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
|
|
1129
|
+
update: Prisma.XOR<Prisma.PaymentMethodChangeRequestUpdateWithoutReviewerInput, Prisma.PaymentMethodChangeRequestUncheckedUpdateWithoutReviewerInput>;
|
|
1130
|
+
create: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutReviewerInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutReviewerInput>;
|
|
1131
|
+
};
|
|
1132
|
+
export type PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutReviewerInput = {
|
|
1133
|
+
where: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
|
|
1134
|
+
data: Prisma.XOR<Prisma.PaymentMethodChangeRequestUpdateWithoutReviewerInput, Prisma.PaymentMethodChangeRequestUncheckedUpdateWithoutReviewerInput>;
|
|
1135
|
+
};
|
|
1136
|
+
export type PaymentMethodChangeRequestUpdateManyWithWhereWithoutReviewerInput = {
|
|
1137
|
+
where: Prisma.PaymentMethodChangeRequestScalarWhereInput;
|
|
1138
|
+
data: Prisma.XOR<Prisma.PaymentMethodChangeRequestUpdateManyMutationInput, Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerInput>;
|
|
1139
|
+
};
|
|
1140
|
+
export type PaymentMethodChangeRequestCreateWithoutTenantInput = {
|
|
1141
|
+
id?: string;
|
|
1142
|
+
reason?: string | null;
|
|
1143
|
+
requiredDocumentTypes?: string | null;
|
|
1144
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1145
|
+
currentOutstanding?: number | null;
|
|
1146
|
+
newTermMonths?: number | null;
|
|
1147
|
+
newInterestRate?: number | null;
|
|
1148
|
+
newMonthlyPayment?: number | null;
|
|
1149
|
+
penaltyAmount?: number | null;
|
|
1150
|
+
financialImpactNotes?: string | null;
|
|
1151
|
+
status?: $Enums.PaymentMethodChangeStatus;
|
|
1152
|
+
reviewNotes?: string | null;
|
|
1153
|
+
reviewedAt?: Date | string | null;
|
|
1154
|
+
executedAt?: Date | string | null;
|
|
1155
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1156
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1157
|
+
createdAt?: Date | string;
|
|
1158
|
+
updatedAt?: Date | string;
|
|
1159
|
+
contract: Prisma.ContractCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
|
|
1160
|
+
fromPaymentMethod: Prisma.PropertyPaymentMethodCreateNestedOneWithoutChangeRequestsFromInput;
|
|
1161
|
+
toPaymentMethod: Prisma.PropertyPaymentMethodCreateNestedOneWithoutChangeRequestsToInput;
|
|
1162
|
+
requestor: Prisma.UserCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
|
|
1163
|
+
reviewer?: Prisma.UserCreateNestedOneWithoutReviewedChangeRequestsInput;
|
|
1164
|
+
};
|
|
1165
|
+
export type PaymentMethodChangeRequestUncheckedCreateWithoutTenantInput = {
|
|
1166
|
+
id?: string;
|
|
1167
|
+
contractId: string;
|
|
1168
|
+
fromPaymentMethodId: string;
|
|
1169
|
+
toPaymentMethodId: string;
|
|
1170
|
+
requestorId: string;
|
|
1171
|
+
reason?: string | null;
|
|
1172
|
+
requiredDocumentTypes?: string | null;
|
|
1173
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1174
|
+
currentOutstanding?: number | null;
|
|
1175
|
+
newTermMonths?: number | null;
|
|
1176
|
+
newInterestRate?: number | null;
|
|
1177
|
+
newMonthlyPayment?: number | null;
|
|
1178
|
+
penaltyAmount?: number | null;
|
|
1179
|
+
financialImpactNotes?: string | null;
|
|
1180
|
+
status?: $Enums.PaymentMethodChangeStatus;
|
|
1181
|
+
reviewerId?: string | null;
|
|
1182
|
+
reviewNotes?: string | null;
|
|
1183
|
+
reviewedAt?: Date | string | null;
|
|
1184
|
+
executedAt?: Date | string | null;
|
|
1185
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1186
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1187
|
+
createdAt?: Date | string;
|
|
1188
|
+
updatedAt?: Date | string;
|
|
1189
|
+
};
|
|
1190
|
+
export type PaymentMethodChangeRequestCreateOrConnectWithoutTenantInput = {
|
|
1191
|
+
where: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
|
|
1192
|
+
create: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutTenantInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutTenantInput>;
|
|
1193
|
+
};
|
|
1194
|
+
export type PaymentMethodChangeRequestCreateManyTenantInputEnvelope = {
|
|
1195
|
+
data: Prisma.PaymentMethodChangeRequestCreateManyTenantInput | Prisma.PaymentMethodChangeRequestCreateManyTenantInput[];
|
|
1196
|
+
skipDuplicates?: boolean;
|
|
1197
|
+
};
|
|
1198
|
+
export type PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutTenantInput = {
|
|
1199
|
+
where: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
|
|
1200
|
+
update: Prisma.XOR<Prisma.PaymentMethodChangeRequestUpdateWithoutTenantInput, Prisma.PaymentMethodChangeRequestUncheckedUpdateWithoutTenantInput>;
|
|
1201
|
+
create: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutTenantInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutTenantInput>;
|
|
1202
|
+
};
|
|
1203
|
+
export type PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutTenantInput = {
|
|
1204
|
+
where: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
|
|
1205
|
+
data: Prisma.XOR<Prisma.PaymentMethodChangeRequestUpdateWithoutTenantInput, Prisma.PaymentMethodChangeRequestUncheckedUpdateWithoutTenantInput>;
|
|
1206
|
+
};
|
|
1207
|
+
export type PaymentMethodChangeRequestUpdateManyWithWhereWithoutTenantInput = {
|
|
1208
|
+
where: Prisma.PaymentMethodChangeRequestScalarWhereInput;
|
|
1209
|
+
data: Prisma.XOR<Prisma.PaymentMethodChangeRequestUpdateManyMutationInput, Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutTenantInput>;
|
|
1210
|
+
};
|
|
1211
|
+
export type PaymentMethodChangeRequestCreateWithoutFromPaymentMethodInput = {
|
|
1212
|
+
id?: string;
|
|
1213
|
+
reason?: string | null;
|
|
1214
|
+
requiredDocumentTypes?: string | null;
|
|
1215
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1216
|
+
currentOutstanding?: number | null;
|
|
1217
|
+
newTermMonths?: number | null;
|
|
1218
|
+
newInterestRate?: number | null;
|
|
1219
|
+
newMonthlyPayment?: number | null;
|
|
1220
|
+
penaltyAmount?: number | null;
|
|
1221
|
+
financialImpactNotes?: string | null;
|
|
1222
|
+
status?: $Enums.PaymentMethodChangeStatus;
|
|
1223
|
+
reviewNotes?: string | null;
|
|
1224
|
+
reviewedAt?: Date | string | null;
|
|
1225
|
+
executedAt?: Date | string | null;
|
|
1226
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1227
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1228
|
+
createdAt?: Date | string;
|
|
1229
|
+
updatedAt?: Date | string;
|
|
1230
|
+
tenant: Prisma.TenantCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
|
|
1231
|
+
contract: Prisma.ContractCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
|
|
1232
|
+
toPaymentMethod: Prisma.PropertyPaymentMethodCreateNestedOneWithoutChangeRequestsToInput;
|
|
1233
|
+
requestor: Prisma.UserCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
|
|
1234
|
+
reviewer?: Prisma.UserCreateNestedOneWithoutReviewedChangeRequestsInput;
|
|
1235
|
+
};
|
|
1236
|
+
export type PaymentMethodChangeRequestUncheckedCreateWithoutFromPaymentMethodInput = {
|
|
1237
|
+
id?: string;
|
|
1238
|
+
tenantId: string;
|
|
1239
|
+
contractId: string;
|
|
1240
|
+
toPaymentMethodId: string;
|
|
1241
|
+
requestorId: string;
|
|
1242
|
+
reason?: string | null;
|
|
1243
|
+
requiredDocumentTypes?: string | null;
|
|
1244
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1245
|
+
currentOutstanding?: number | null;
|
|
1246
|
+
newTermMonths?: number | null;
|
|
1247
|
+
newInterestRate?: number | null;
|
|
1248
|
+
newMonthlyPayment?: number | null;
|
|
1249
|
+
penaltyAmount?: number | null;
|
|
1250
|
+
financialImpactNotes?: string | null;
|
|
1251
|
+
status?: $Enums.PaymentMethodChangeStatus;
|
|
1252
|
+
reviewerId?: string | null;
|
|
1253
|
+
reviewNotes?: string | null;
|
|
1254
|
+
reviewedAt?: Date | string | null;
|
|
1255
|
+
executedAt?: Date | string | null;
|
|
1256
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1257
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1258
|
+
createdAt?: Date | string;
|
|
1259
|
+
updatedAt?: Date | string;
|
|
1260
|
+
};
|
|
1261
|
+
export type PaymentMethodChangeRequestCreateOrConnectWithoutFromPaymentMethodInput = {
|
|
1262
|
+
where: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
|
|
1263
|
+
create: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutFromPaymentMethodInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutFromPaymentMethodInput>;
|
|
1264
|
+
};
|
|
1265
|
+
export type PaymentMethodChangeRequestCreateManyFromPaymentMethodInputEnvelope = {
|
|
1266
|
+
data: Prisma.PaymentMethodChangeRequestCreateManyFromPaymentMethodInput | Prisma.PaymentMethodChangeRequestCreateManyFromPaymentMethodInput[];
|
|
1267
|
+
skipDuplicates?: boolean;
|
|
1268
|
+
};
|
|
1269
|
+
export type PaymentMethodChangeRequestCreateWithoutToPaymentMethodInput = {
|
|
1270
|
+
id?: string;
|
|
1271
|
+
reason?: string | null;
|
|
1272
|
+
requiredDocumentTypes?: string | null;
|
|
1273
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1274
|
+
currentOutstanding?: number | null;
|
|
1275
|
+
newTermMonths?: number | null;
|
|
1276
|
+
newInterestRate?: number | null;
|
|
1277
|
+
newMonthlyPayment?: number | null;
|
|
1278
|
+
penaltyAmount?: number | null;
|
|
1279
|
+
financialImpactNotes?: string | null;
|
|
1280
|
+
status?: $Enums.PaymentMethodChangeStatus;
|
|
1281
|
+
reviewNotes?: string | null;
|
|
1282
|
+
reviewedAt?: Date | string | null;
|
|
1283
|
+
executedAt?: Date | string | null;
|
|
1284
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1285
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1286
|
+
createdAt?: Date | string;
|
|
1287
|
+
updatedAt?: Date | string;
|
|
1288
|
+
tenant: Prisma.TenantCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
|
|
1289
|
+
contract: Prisma.ContractCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
|
|
1290
|
+
fromPaymentMethod: Prisma.PropertyPaymentMethodCreateNestedOneWithoutChangeRequestsFromInput;
|
|
1291
|
+
requestor: Prisma.UserCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
|
|
1292
|
+
reviewer?: Prisma.UserCreateNestedOneWithoutReviewedChangeRequestsInput;
|
|
1293
|
+
};
|
|
1294
|
+
export type PaymentMethodChangeRequestUncheckedCreateWithoutToPaymentMethodInput = {
|
|
1295
|
+
id?: string;
|
|
1296
|
+
tenantId: string;
|
|
1297
|
+
contractId: string;
|
|
1298
|
+
fromPaymentMethodId: string;
|
|
1299
|
+
requestorId: string;
|
|
1300
|
+
reason?: string | null;
|
|
1301
|
+
requiredDocumentTypes?: string | null;
|
|
1302
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1303
|
+
currentOutstanding?: number | null;
|
|
1304
|
+
newTermMonths?: number | null;
|
|
1305
|
+
newInterestRate?: number | null;
|
|
1306
|
+
newMonthlyPayment?: number | null;
|
|
1307
|
+
penaltyAmount?: number | null;
|
|
1308
|
+
financialImpactNotes?: string | null;
|
|
1309
|
+
status?: $Enums.PaymentMethodChangeStatus;
|
|
1310
|
+
reviewerId?: string | null;
|
|
1311
|
+
reviewNotes?: string | null;
|
|
1312
|
+
reviewedAt?: Date | string | null;
|
|
1313
|
+
executedAt?: Date | string | null;
|
|
1314
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1315
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1316
|
+
createdAt?: Date | string;
|
|
1317
|
+
updatedAt?: Date | string;
|
|
1318
|
+
};
|
|
1319
|
+
export type PaymentMethodChangeRequestCreateOrConnectWithoutToPaymentMethodInput = {
|
|
1320
|
+
where: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
|
|
1321
|
+
create: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutToPaymentMethodInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutToPaymentMethodInput>;
|
|
1322
|
+
};
|
|
1323
|
+
export type PaymentMethodChangeRequestCreateManyToPaymentMethodInputEnvelope = {
|
|
1324
|
+
data: Prisma.PaymentMethodChangeRequestCreateManyToPaymentMethodInput | Prisma.PaymentMethodChangeRequestCreateManyToPaymentMethodInput[];
|
|
1325
|
+
skipDuplicates?: boolean;
|
|
1326
|
+
};
|
|
1327
|
+
export type PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutFromPaymentMethodInput = {
|
|
1328
|
+
where: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
|
|
1329
|
+
update: Prisma.XOR<Prisma.PaymentMethodChangeRequestUpdateWithoutFromPaymentMethodInput, Prisma.PaymentMethodChangeRequestUncheckedUpdateWithoutFromPaymentMethodInput>;
|
|
1330
|
+
create: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutFromPaymentMethodInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutFromPaymentMethodInput>;
|
|
1331
|
+
};
|
|
1332
|
+
export type PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutFromPaymentMethodInput = {
|
|
1333
|
+
where: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
|
|
1334
|
+
data: Prisma.XOR<Prisma.PaymentMethodChangeRequestUpdateWithoutFromPaymentMethodInput, Prisma.PaymentMethodChangeRequestUncheckedUpdateWithoutFromPaymentMethodInput>;
|
|
1335
|
+
};
|
|
1336
|
+
export type PaymentMethodChangeRequestUpdateManyWithWhereWithoutFromPaymentMethodInput = {
|
|
1337
|
+
where: Prisma.PaymentMethodChangeRequestScalarWhereInput;
|
|
1338
|
+
data: Prisma.XOR<Prisma.PaymentMethodChangeRequestUpdateManyMutationInput, Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutFromPaymentMethodInput>;
|
|
1339
|
+
};
|
|
1340
|
+
export type PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutToPaymentMethodInput = {
|
|
1341
|
+
where: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
|
|
1342
|
+
update: Prisma.XOR<Prisma.PaymentMethodChangeRequestUpdateWithoutToPaymentMethodInput, Prisma.PaymentMethodChangeRequestUncheckedUpdateWithoutToPaymentMethodInput>;
|
|
1343
|
+
create: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutToPaymentMethodInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutToPaymentMethodInput>;
|
|
1344
|
+
};
|
|
1345
|
+
export type PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutToPaymentMethodInput = {
|
|
1346
|
+
where: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
|
|
1347
|
+
data: Prisma.XOR<Prisma.PaymentMethodChangeRequestUpdateWithoutToPaymentMethodInput, Prisma.PaymentMethodChangeRequestUncheckedUpdateWithoutToPaymentMethodInput>;
|
|
1348
|
+
};
|
|
1349
|
+
export type PaymentMethodChangeRequestUpdateManyWithWhereWithoutToPaymentMethodInput = {
|
|
1350
|
+
where: Prisma.PaymentMethodChangeRequestScalarWhereInput;
|
|
1351
|
+
data: Prisma.XOR<Prisma.PaymentMethodChangeRequestUpdateManyMutationInput, Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutToPaymentMethodInput>;
|
|
1352
|
+
};
|
|
1353
|
+
export type PaymentMethodChangeRequestCreateWithoutContractInput = {
|
|
1354
|
+
id?: string;
|
|
1355
|
+
reason?: string | null;
|
|
1356
|
+
requiredDocumentTypes?: string | null;
|
|
1357
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1358
|
+
currentOutstanding?: number | null;
|
|
1359
|
+
newTermMonths?: number | null;
|
|
1360
|
+
newInterestRate?: number | null;
|
|
1361
|
+
newMonthlyPayment?: number | null;
|
|
1362
|
+
penaltyAmount?: number | null;
|
|
1363
|
+
financialImpactNotes?: string | null;
|
|
1364
|
+
status?: $Enums.PaymentMethodChangeStatus;
|
|
1365
|
+
reviewNotes?: string | null;
|
|
1366
|
+
reviewedAt?: Date | string | null;
|
|
1367
|
+
executedAt?: Date | string | null;
|
|
1368
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1369
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1370
|
+
createdAt?: Date | string;
|
|
1371
|
+
updatedAt?: Date | string;
|
|
1372
|
+
tenant: Prisma.TenantCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
|
|
1373
|
+
fromPaymentMethod: Prisma.PropertyPaymentMethodCreateNestedOneWithoutChangeRequestsFromInput;
|
|
1374
|
+
toPaymentMethod: Prisma.PropertyPaymentMethodCreateNestedOneWithoutChangeRequestsToInput;
|
|
1375
|
+
requestor: Prisma.UserCreateNestedOneWithoutPaymentMethodChangeRequestsInput;
|
|
1376
|
+
reviewer?: Prisma.UserCreateNestedOneWithoutReviewedChangeRequestsInput;
|
|
1377
|
+
};
|
|
1378
|
+
export type PaymentMethodChangeRequestUncheckedCreateWithoutContractInput = {
|
|
1379
|
+
id?: string;
|
|
1380
|
+
tenantId: string;
|
|
1381
|
+
fromPaymentMethodId: string;
|
|
1382
|
+
toPaymentMethodId: string;
|
|
1383
|
+
requestorId: string;
|
|
1384
|
+
reason?: string | null;
|
|
1385
|
+
requiredDocumentTypes?: string | null;
|
|
1386
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1387
|
+
currentOutstanding?: number | null;
|
|
1388
|
+
newTermMonths?: number | null;
|
|
1389
|
+
newInterestRate?: number | null;
|
|
1390
|
+
newMonthlyPayment?: number | null;
|
|
1391
|
+
penaltyAmount?: number | null;
|
|
1392
|
+
financialImpactNotes?: string | null;
|
|
1393
|
+
status?: $Enums.PaymentMethodChangeStatus;
|
|
1394
|
+
reviewerId?: string | null;
|
|
1395
|
+
reviewNotes?: string | null;
|
|
1396
|
+
reviewedAt?: Date | string | null;
|
|
1397
|
+
executedAt?: Date | string | null;
|
|
1398
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1399
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1400
|
+
createdAt?: Date | string;
|
|
1401
|
+
updatedAt?: Date | string;
|
|
1402
|
+
};
|
|
1403
|
+
export type PaymentMethodChangeRequestCreateOrConnectWithoutContractInput = {
|
|
1404
|
+
where: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
|
|
1405
|
+
create: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutContractInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutContractInput>;
|
|
1406
|
+
};
|
|
1407
|
+
export type PaymentMethodChangeRequestCreateManyContractInputEnvelope = {
|
|
1408
|
+
data: Prisma.PaymentMethodChangeRequestCreateManyContractInput | Prisma.PaymentMethodChangeRequestCreateManyContractInput[];
|
|
1409
|
+
skipDuplicates?: boolean;
|
|
1410
|
+
};
|
|
1411
|
+
export type PaymentMethodChangeRequestUpsertWithWhereUniqueWithoutContractInput = {
|
|
1412
|
+
where: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
|
|
1413
|
+
update: Prisma.XOR<Prisma.PaymentMethodChangeRequestUpdateWithoutContractInput, Prisma.PaymentMethodChangeRequestUncheckedUpdateWithoutContractInput>;
|
|
1414
|
+
create: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateWithoutContractInput, Prisma.PaymentMethodChangeRequestUncheckedCreateWithoutContractInput>;
|
|
1415
|
+
};
|
|
1416
|
+
export type PaymentMethodChangeRequestUpdateWithWhereUniqueWithoutContractInput = {
|
|
1417
|
+
where: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
|
|
1418
|
+
data: Prisma.XOR<Prisma.PaymentMethodChangeRequestUpdateWithoutContractInput, Prisma.PaymentMethodChangeRequestUncheckedUpdateWithoutContractInput>;
|
|
1419
|
+
};
|
|
1420
|
+
export type PaymentMethodChangeRequestUpdateManyWithWhereWithoutContractInput = {
|
|
1421
|
+
where: Prisma.PaymentMethodChangeRequestScalarWhereInput;
|
|
1422
|
+
data: Prisma.XOR<Prisma.PaymentMethodChangeRequestUpdateManyMutationInput, Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutContractInput>;
|
|
1423
|
+
};
|
|
1424
|
+
export type PaymentMethodChangeRequestCreateManyRequestorInput = {
|
|
1425
|
+
id?: string;
|
|
1426
|
+
tenantId: string;
|
|
1427
|
+
contractId: string;
|
|
1428
|
+
fromPaymentMethodId: string;
|
|
1429
|
+
toPaymentMethodId: string;
|
|
1430
|
+
reason?: string | null;
|
|
1431
|
+
requiredDocumentTypes?: string | null;
|
|
1432
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1433
|
+
currentOutstanding?: number | null;
|
|
1434
|
+
newTermMonths?: number | null;
|
|
1435
|
+
newInterestRate?: number | null;
|
|
1436
|
+
newMonthlyPayment?: number | null;
|
|
1437
|
+
penaltyAmount?: number | null;
|
|
1438
|
+
financialImpactNotes?: string | null;
|
|
1439
|
+
status?: $Enums.PaymentMethodChangeStatus;
|
|
1440
|
+
reviewerId?: string | null;
|
|
1441
|
+
reviewNotes?: string | null;
|
|
1442
|
+
reviewedAt?: Date | string | null;
|
|
1443
|
+
executedAt?: Date | string | null;
|
|
1444
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1445
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1446
|
+
createdAt?: Date | string;
|
|
1447
|
+
updatedAt?: Date | string;
|
|
1448
|
+
};
|
|
1449
|
+
export type PaymentMethodChangeRequestCreateManyReviewerInput = {
|
|
1450
|
+
id?: string;
|
|
1451
|
+
tenantId: string;
|
|
1452
|
+
contractId: string;
|
|
1453
|
+
fromPaymentMethodId: string;
|
|
1454
|
+
toPaymentMethodId: string;
|
|
1455
|
+
requestorId: string;
|
|
1456
|
+
reason?: string | null;
|
|
1457
|
+
requiredDocumentTypes?: string | null;
|
|
1458
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1459
|
+
currentOutstanding?: number | null;
|
|
1460
|
+
newTermMonths?: number | null;
|
|
1461
|
+
newInterestRate?: number | null;
|
|
1462
|
+
newMonthlyPayment?: number | null;
|
|
1463
|
+
penaltyAmount?: number | null;
|
|
1464
|
+
financialImpactNotes?: string | null;
|
|
1465
|
+
status?: $Enums.PaymentMethodChangeStatus;
|
|
1466
|
+
reviewNotes?: string | null;
|
|
1467
|
+
reviewedAt?: Date | string | null;
|
|
1468
|
+
executedAt?: Date | string | null;
|
|
1469
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1470
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1471
|
+
createdAt?: Date | string;
|
|
1472
|
+
updatedAt?: Date | string;
|
|
1473
|
+
};
|
|
1474
|
+
export type PaymentMethodChangeRequestUpdateWithoutRequestorInput = {
|
|
1475
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1476
|
+
reason?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1477
|
+
requiredDocumentTypes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1478
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1479
|
+
currentOutstanding?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1480
|
+
newTermMonths?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
1481
|
+
newInterestRate?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1482
|
+
newMonthlyPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1483
|
+
penaltyAmount?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1484
|
+
financialImpactNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1485
|
+
status?: Prisma.EnumPaymentMethodChangeStatusFieldUpdateOperationsInput | $Enums.PaymentMethodChangeStatus;
|
|
1486
|
+
reviewNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1487
|
+
reviewedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1488
|
+
executedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1489
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1490
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1491
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1492
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1493
|
+
tenant?: Prisma.TenantUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
|
|
1494
|
+
contract?: Prisma.ContractUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
|
|
1495
|
+
fromPaymentMethod?: Prisma.PropertyPaymentMethodUpdateOneRequiredWithoutChangeRequestsFromNestedInput;
|
|
1496
|
+
toPaymentMethod?: Prisma.PropertyPaymentMethodUpdateOneRequiredWithoutChangeRequestsToNestedInput;
|
|
1497
|
+
reviewer?: Prisma.UserUpdateOneWithoutReviewedChangeRequestsNestedInput;
|
|
1498
|
+
};
|
|
1499
|
+
export type PaymentMethodChangeRequestUncheckedUpdateWithoutRequestorInput = {
|
|
1500
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1501
|
+
tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1502
|
+
contractId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1503
|
+
fromPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1504
|
+
toPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1505
|
+
reason?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1506
|
+
requiredDocumentTypes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1507
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1508
|
+
currentOutstanding?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1509
|
+
newTermMonths?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
1510
|
+
newInterestRate?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1511
|
+
newMonthlyPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1512
|
+
penaltyAmount?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1513
|
+
financialImpactNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1514
|
+
status?: Prisma.EnumPaymentMethodChangeStatusFieldUpdateOperationsInput | $Enums.PaymentMethodChangeStatus;
|
|
1515
|
+
reviewerId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1516
|
+
reviewNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1517
|
+
reviewedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1518
|
+
executedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1519
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1520
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1521
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1522
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1523
|
+
};
|
|
1524
|
+
export type PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorInput = {
|
|
1525
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1526
|
+
tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1527
|
+
contractId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1528
|
+
fromPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1529
|
+
toPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1530
|
+
reason?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1531
|
+
requiredDocumentTypes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1532
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1533
|
+
currentOutstanding?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1534
|
+
newTermMonths?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
1535
|
+
newInterestRate?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1536
|
+
newMonthlyPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1537
|
+
penaltyAmount?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1538
|
+
financialImpactNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1539
|
+
status?: Prisma.EnumPaymentMethodChangeStatusFieldUpdateOperationsInput | $Enums.PaymentMethodChangeStatus;
|
|
1540
|
+
reviewerId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1541
|
+
reviewNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1542
|
+
reviewedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1543
|
+
executedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1544
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1545
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1546
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1547
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1548
|
+
};
|
|
1549
|
+
export type PaymentMethodChangeRequestUpdateWithoutReviewerInput = {
|
|
1550
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1551
|
+
reason?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1552
|
+
requiredDocumentTypes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1553
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1554
|
+
currentOutstanding?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1555
|
+
newTermMonths?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
1556
|
+
newInterestRate?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1557
|
+
newMonthlyPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1558
|
+
penaltyAmount?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1559
|
+
financialImpactNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1560
|
+
status?: Prisma.EnumPaymentMethodChangeStatusFieldUpdateOperationsInput | $Enums.PaymentMethodChangeStatus;
|
|
1561
|
+
reviewNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1562
|
+
reviewedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1563
|
+
executedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1564
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1565
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1566
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1567
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1568
|
+
tenant?: Prisma.TenantUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
|
|
1569
|
+
contract?: Prisma.ContractUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
|
|
1570
|
+
fromPaymentMethod?: Prisma.PropertyPaymentMethodUpdateOneRequiredWithoutChangeRequestsFromNestedInput;
|
|
1571
|
+
toPaymentMethod?: Prisma.PropertyPaymentMethodUpdateOneRequiredWithoutChangeRequestsToNestedInput;
|
|
1572
|
+
requestor?: Prisma.UserUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
|
|
1573
|
+
};
|
|
1574
|
+
export type PaymentMethodChangeRequestUncheckedUpdateWithoutReviewerInput = {
|
|
1575
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1576
|
+
tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1577
|
+
contractId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1578
|
+
fromPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1579
|
+
toPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1580
|
+
requestorId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1581
|
+
reason?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1582
|
+
requiredDocumentTypes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1583
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1584
|
+
currentOutstanding?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1585
|
+
newTermMonths?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
1586
|
+
newInterestRate?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1587
|
+
newMonthlyPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1588
|
+
penaltyAmount?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1589
|
+
financialImpactNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1590
|
+
status?: Prisma.EnumPaymentMethodChangeStatusFieldUpdateOperationsInput | $Enums.PaymentMethodChangeStatus;
|
|
1591
|
+
reviewNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1592
|
+
reviewedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1593
|
+
executedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1594
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1595
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1596
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1597
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1598
|
+
};
|
|
1599
|
+
export type PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerInput = {
|
|
1600
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1601
|
+
tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1602
|
+
contractId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1603
|
+
fromPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1604
|
+
toPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1605
|
+
requestorId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1606
|
+
reason?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1607
|
+
requiredDocumentTypes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1608
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1609
|
+
currentOutstanding?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1610
|
+
newTermMonths?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
1611
|
+
newInterestRate?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1612
|
+
newMonthlyPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1613
|
+
penaltyAmount?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1614
|
+
financialImpactNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1615
|
+
status?: Prisma.EnumPaymentMethodChangeStatusFieldUpdateOperationsInput | $Enums.PaymentMethodChangeStatus;
|
|
1616
|
+
reviewNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1617
|
+
reviewedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1618
|
+
executedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1619
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1620
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1621
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1622
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1623
|
+
};
|
|
1624
|
+
export type PaymentMethodChangeRequestCreateManyTenantInput = {
|
|
1625
|
+
id?: string;
|
|
1626
|
+
contractId: string;
|
|
1627
|
+
fromPaymentMethodId: string;
|
|
1628
|
+
toPaymentMethodId: string;
|
|
1629
|
+
requestorId: string;
|
|
1630
|
+
reason?: string | null;
|
|
1631
|
+
requiredDocumentTypes?: string | null;
|
|
1632
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1633
|
+
currentOutstanding?: number | null;
|
|
1634
|
+
newTermMonths?: number | null;
|
|
1635
|
+
newInterestRate?: number | null;
|
|
1636
|
+
newMonthlyPayment?: number | null;
|
|
1637
|
+
penaltyAmount?: number | null;
|
|
1638
|
+
financialImpactNotes?: string | null;
|
|
1639
|
+
status?: $Enums.PaymentMethodChangeStatus;
|
|
1640
|
+
reviewerId?: string | null;
|
|
1641
|
+
reviewNotes?: string | null;
|
|
1642
|
+
reviewedAt?: Date | string | null;
|
|
1643
|
+
executedAt?: Date | string | null;
|
|
1644
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1645
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1646
|
+
createdAt?: Date | string;
|
|
1647
|
+
updatedAt?: Date | string;
|
|
1648
|
+
};
|
|
1649
|
+
export type PaymentMethodChangeRequestUpdateWithoutTenantInput = {
|
|
1650
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1651
|
+
reason?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1652
|
+
requiredDocumentTypes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1653
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1654
|
+
currentOutstanding?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1655
|
+
newTermMonths?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
1656
|
+
newInterestRate?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1657
|
+
newMonthlyPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1658
|
+
penaltyAmount?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1659
|
+
financialImpactNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1660
|
+
status?: Prisma.EnumPaymentMethodChangeStatusFieldUpdateOperationsInput | $Enums.PaymentMethodChangeStatus;
|
|
1661
|
+
reviewNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1662
|
+
reviewedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1663
|
+
executedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1664
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1665
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1666
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1667
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1668
|
+
contract?: Prisma.ContractUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
|
|
1669
|
+
fromPaymentMethod?: Prisma.PropertyPaymentMethodUpdateOneRequiredWithoutChangeRequestsFromNestedInput;
|
|
1670
|
+
toPaymentMethod?: Prisma.PropertyPaymentMethodUpdateOneRequiredWithoutChangeRequestsToNestedInput;
|
|
1671
|
+
requestor?: Prisma.UserUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
|
|
1672
|
+
reviewer?: Prisma.UserUpdateOneWithoutReviewedChangeRequestsNestedInput;
|
|
1673
|
+
};
|
|
1674
|
+
export type PaymentMethodChangeRequestUncheckedUpdateWithoutTenantInput = {
|
|
1675
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1676
|
+
contractId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1677
|
+
fromPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1678
|
+
toPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1679
|
+
requestorId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1680
|
+
reason?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1681
|
+
requiredDocumentTypes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1682
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1683
|
+
currentOutstanding?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1684
|
+
newTermMonths?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
1685
|
+
newInterestRate?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1686
|
+
newMonthlyPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1687
|
+
penaltyAmount?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1688
|
+
financialImpactNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1689
|
+
status?: Prisma.EnumPaymentMethodChangeStatusFieldUpdateOperationsInput | $Enums.PaymentMethodChangeStatus;
|
|
1690
|
+
reviewerId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1691
|
+
reviewNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1692
|
+
reviewedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1693
|
+
executedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1694
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1695
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1696
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1697
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1698
|
+
};
|
|
1699
|
+
export type PaymentMethodChangeRequestUncheckedUpdateManyWithoutTenantInput = {
|
|
1700
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1701
|
+
contractId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1702
|
+
fromPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1703
|
+
toPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1704
|
+
requestorId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1705
|
+
reason?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1706
|
+
requiredDocumentTypes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1707
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1708
|
+
currentOutstanding?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1709
|
+
newTermMonths?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
1710
|
+
newInterestRate?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1711
|
+
newMonthlyPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1712
|
+
penaltyAmount?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1713
|
+
financialImpactNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1714
|
+
status?: Prisma.EnumPaymentMethodChangeStatusFieldUpdateOperationsInput | $Enums.PaymentMethodChangeStatus;
|
|
1715
|
+
reviewerId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1716
|
+
reviewNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1717
|
+
reviewedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1718
|
+
executedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1719
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1720
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1721
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1722
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1723
|
+
};
|
|
1724
|
+
export type PaymentMethodChangeRequestCreateManyFromPaymentMethodInput = {
|
|
1725
|
+
id?: string;
|
|
1726
|
+
tenantId: string;
|
|
1727
|
+
contractId: string;
|
|
1728
|
+
toPaymentMethodId: string;
|
|
1729
|
+
requestorId: string;
|
|
1730
|
+
reason?: string | null;
|
|
1731
|
+
requiredDocumentTypes?: string | null;
|
|
1732
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1733
|
+
currentOutstanding?: number | null;
|
|
1734
|
+
newTermMonths?: number | null;
|
|
1735
|
+
newInterestRate?: number | null;
|
|
1736
|
+
newMonthlyPayment?: number | null;
|
|
1737
|
+
penaltyAmount?: number | null;
|
|
1738
|
+
financialImpactNotes?: string | null;
|
|
1739
|
+
status?: $Enums.PaymentMethodChangeStatus;
|
|
1740
|
+
reviewerId?: string | null;
|
|
1741
|
+
reviewNotes?: string | null;
|
|
1742
|
+
reviewedAt?: Date | string | null;
|
|
1743
|
+
executedAt?: Date | string | null;
|
|
1744
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1745
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1746
|
+
createdAt?: Date | string;
|
|
1747
|
+
updatedAt?: Date | string;
|
|
1748
|
+
};
|
|
1749
|
+
export type PaymentMethodChangeRequestCreateManyToPaymentMethodInput = {
|
|
1750
|
+
id?: string;
|
|
1751
|
+
tenantId: string;
|
|
1752
|
+
contractId: string;
|
|
1753
|
+
fromPaymentMethodId: string;
|
|
1754
|
+
requestorId: string;
|
|
1755
|
+
reason?: string | null;
|
|
1756
|
+
requiredDocumentTypes?: string | null;
|
|
1757
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1758
|
+
currentOutstanding?: number | null;
|
|
1759
|
+
newTermMonths?: number | null;
|
|
1760
|
+
newInterestRate?: number | null;
|
|
1761
|
+
newMonthlyPayment?: number | null;
|
|
1762
|
+
penaltyAmount?: number | null;
|
|
1763
|
+
financialImpactNotes?: string | null;
|
|
1764
|
+
status?: $Enums.PaymentMethodChangeStatus;
|
|
1765
|
+
reviewerId?: string | null;
|
|
1766
|
+
reviewNotes?: string | null;
|
|
1767
|
+
reviewedAt?: Date | string | null;
|
|
1768
|
+
executedAt?: Date | string | null;
|
|
1769
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1770
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1771
|
+
createdAt?: Date | string;
|
|
1772
|
+
updatedAt?: Date | string;
|
|
1773
|
+
};
|
|
1774
|
+
export type PaymentMethodChangeRequestUpdateWithoutFromPaymentMethodInput = {
|
|
1775
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1776
|
+
reason?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1777
|
+
requiredDocumentTypes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1778
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1779
|
+
currentOutstanding?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1780
|
+
newTermMonths?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
1781
|
+
newInterestRate?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1782
|
+
newMonthlyPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1783
|
+
penaltyAmount?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1784
|
+
financialImpactNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1785
|
+
status?: Prisma.EnumPaymentMethodChangeStatusFieldUpdateOperationsInput | $Enums.PaymentMethodChangeStatus;
|
|
1786
|
+
reviewNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1787
|
+
reviewedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1788
|
+
executedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1789
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1790
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1791
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1792
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1793
|
+
tenant?: Prisma.TenantUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
|
|
1794
|
+
contract?: Prisma.ContractUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
|
|
1795
|
+
toPaymentMethod?: Prisma.PropertyPaymentMethodUpdateOneRequiredWithoutChangeRequestsToNestedInput;
|
|
1796
|
+
requestor?: Prisma.UserUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
|
|
1797
|
+
reviewer?: Prisma.UserUpdateOneWithoutReviewedChangeRequestsNestedInput;
|
|
1798
|
+
};
|
|
1799
|
+
export type PaymentMethodChangeRequestUncheckedUpdateWithoutFromPaymentMethodInput = {
|
|
1800
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1801
|
+
tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1802
|
+
contractId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1803
|
+
toPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1804
|
+
requestorId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1805
|
+
reason?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1806
|
+
requiredDocumentTypes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1807
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1808
|
+
currentOutstanding?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1809
|
+
newTermMonths?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
1810
|
+
newInterestRate?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1811
|
+
newMonthlyPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1812
|
+
penaltyAmount?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1813
|
+
financialImpactNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1814
|
+
status?: Prisma.EnumPaymentMethodChangeStatusFieldUpdateOperationsInput | $Enums.PaymentMethodChangeStatus;
|
|
1815
|
+
reviewerId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1816
|
+
reviewNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1817
|
+
reviewedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1818
|
+
executedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1819
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1820
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1821
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1822
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1823
|
+
};
|
|
1824
|
+
export type PaymentMethodChangeRequestUncheckedUpdateManyWithoutFromPaymentMethodInput = {
|
|
1825
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1826
|
+
tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1827
|
+
contractId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1828
|
+
toPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1829
|
+
requestorId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1830
|
+
reason?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1831
|
+
requiredDocumentTypes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1832
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1833
|
+
currentOutstanding?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1834
|
+
newTermMonths?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
1835
|
+
newInterestRate?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1836
|
+
newMonthlyPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1837
|
+
penaltyAmount?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1838
|
+
financialImpactNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1839
|
+
status?: Prisma.EnumPaymentMethodChangeStatusFieldUpdateOperationsInput | $Enums.PaymentMethodChangeStatus;
|
|
1840
|
+
reviewerId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1841
|
+
reviewNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1842
|
+
reviewedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1843
|
+
executedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1844
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1845
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1846
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1847
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1848
|
+
};
|
|
1849
|
+
export type PaymentMethodChangeRequestUpdateWithoutToPaymentMethodInput = {
|
|
1850
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1851
|
+
reason?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1852
|
+
requiredDocumentTypes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1853
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1854
|
+
currentOutstanding?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1855
|
+
newTermMonths?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
1856
|
+
newInterestRate?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1857
|
+
newMonthlyPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1858
|
+
penaltyAmount?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1859
|
+
financialImpactNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1860
|
+
status?: Prisma.EnumPaymentMethodChangeStatusFieldUpdateOperationsInput | $Enums.PaymentMethodChangeStatus;
|
|
1861
|
+
reviewNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1862
|
+
reviewedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1863
|
+
executedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1864
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1865
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1866
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1867
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1868
|
+
tenant?: Prisma.TenantUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
|
|
1869
|
+
contract?: Prisma.ContractUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
|
|
1870
|
+
fromPaymentMethod?: Prisma.PropertyPaymentMethodUpdateOneRequiredWithoutChangeRequestsFromNestedInput;
|
|
1871
|
+
requestor?: Prisma.UserUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
|
|
1872
|
+
reviewer?: Prisma.UserUpdateOneWithoutReviewedChangeRequestsNestedInput;
|
|
1873
|
+
};
|
|
1874
|
+
export type PaymentMethodChangeRequestUncheckedUpdateWithoutToPaymentMethodInput = {
|
|
1875
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1876
|
+
tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1877
|
+
contractId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1878
|
+
fromPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1879
|
+
requestorId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1880
|
+
reason?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1881
|
+
requiredDocumentTypes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1882
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1883
|
+
currentOutstanding?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1884
|
+
newTermMonths?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
1885
|
+
newInterestRate?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1886
|
+
newMonthlyPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1887
|
+
penaltyAmount?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1888
|
+
financialImpactNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1889
|
+
status?: Prisma.EnumPaymentMethodChangeStatusFieldUpdateOperationsInput | $Enums.PaymentMethodChangeStatus;
|
|
1890
|
+
reviewerId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1891
|
+
reviewNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1892
|
+
reviewedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1893
|
+
executedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1894
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1895
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1896
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1897
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1898
|
+
};
|
|
1899
|
+
export type PaymentMethodChangeRequestUncheckedUpdateManyWithoutToPaymentMethodInput = {
|
|
1900
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1901
|
+
tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1902
|
+
contractId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1903
|
+
fromPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1904
|
+
requestorId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1905
|
+
reason?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1906
|
+
requiredDocumentTypes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1907
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1908
|
+
currentOutstanding?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1909
|
+
newTermMonths?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
1910
|
+
newInterestRate?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1911
|
+
newMonthlyPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1912
|
+
penaltyAmount?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1913
|
+
financialImpactNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1914
|
+
status?: Prisma.EnumPaymentMethodChangeStatusFieldUpdateOperationsInput | $Enums.PaymentMethodChangeStatus;
|
|
1915
|
+
reviewerId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1916
|
+
reviewNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1917
|
+
reviewedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1918
|
+
executedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1919
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1920
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1921
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1922
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1923
|
+
};
|
|
1924
|
+
export type PaymentMethodChangeRequestCreateManyContractInput = {
|
|
1925
|
+
id?: string;
|
|
1926
|
+
tenantId: string;
|
|
1927
|
+
fromPaymentMethodId: string;
|
|
1928
|
+
toPaymentMethodId: string;
|
|
1929
|
+
requestorId: string;
|
|
1930
|
+
reason?: string | null;
|
|
1931
|
+
requiredDocumentTypes?: string | null;
|
|
1932
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1933
|
+
currentOutstanding?: number | null;
|
|
1934
|
+
newTermMonths?: number | null;
|
|
1935
|
+
newInterestRate?: number | null;
|
|
1936
|
+
newMonthlyPayment?: number | null;
|
|
1937
|
+
penaltyAmount?: number | null;
|
|
1938
|
+
financialImpactNotes?: string | null;
|
|
1939
|
+
status?: $Enums.PaymentMethodChangeStatus;
|
|
1940
|
+
reviewerId?: string | null;
|
|
1941
|
+
reviewNotes?: string | null;
|
|
1942
|
+
reviewedAt?: Date | string | null;
|
|
1943
|
+
executedAt?: Date | string | null;
|
|
1944
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1945
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1946
|
+
createdAt?: Date | string;
|
|
1947
|
+
updatedAt?: Date | string;
|
|
1948
|
+
};
|
|
1949
|
+
export type PaymentMethodChangeRequestUpdateWithoutContractInput = {
|
|
1950
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1951
|
+
reason?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1952
|
+
requiredDocumentTypes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1953
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1954
|
+
currentOutstanding?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1955
|
+
newTermMonths?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
1956
|
+
newInterestRate?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1957
|
+
newMonthlyPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1958
|
+
penaltyAmount?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1959
|
+
financialImpactNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1960
|
+
status?: Prisma.EnumPaymentMethodChangeStatusFieldUpdateOperationsInput | $Enums.PaymentMethodChangeStatus;
|
|
1961
|
+
reviewNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1962
|
+
reviewedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1963
|
+
executedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1964
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1965
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1966
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1967
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1968
|
+
tenant?: Prisma.TenantUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
|
|
1969
|
+
fromPaymentMethod?: Prisma.PropertyPaymentMethodUpdateOneRequiredWithoutChangeRequestsFromNestedInput;
|
|
1970
|
+
toPaymentMethod?: Prisma.PropertyPaymentMethodUpdateOneRequiredWithoutChangeRequestsToNestedInput;
|
|
1971
|
+
requestor?: Prisma.UserUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput;
|
|
1972
|
+
reviewer?: Prisma.UserUpdateOneWithoutReviewedChangeRequestsNestedInput;
|
|
1973
|
+
};
|
|
1974
|
+
export type PaymentMethodChangeRequestUncheckedUpdateWithoutContractInput = {
|
|
1975
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1976
|
+
tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1977
|
+
fromPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1978
|
+
toPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1979
|
+
requestorId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1980
|
+
reason?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1981
|
+
requiredDocumentTypes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1982
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1983
|
+
currentOutstanding?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1984
|
+
newTermMonths?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
1985
|
+
newInterestRate?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1986
|
+
newMonthlyPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1987
|
+
penaltyAmount?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1988
|
+
financialImpactNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1989
|
+
status?: Prisma.EnumPaymentMethodChangeStatusFieldUpdateOperationsInput | $Enums.PaymentMethodChangeStatus;
|
|
1990
|
+
reviewerId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1991
|
+
reviewNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1992
|
+
reviewedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1993
|
+
executedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1994
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1995
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1996
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1997
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1998
|
+
};
|
|
1999
|
+
export type PaymentMethodChangeRequestUncheckedUpdateManyWithoutContractInput = {
|
|
2000
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
2001
|
+
tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
2002
|
+
fromPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
2003
|
+
toPaymentMethodId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
2004
|
+
requestorId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
2005
|
+
reason?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2006
|
+
requiredDocumentTypes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2007
|
+
submittedDocuments?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
2008
|
+
currentOutstanding?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
2009
|
+
newTermMonths?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
2010
|
+
newInterestRate?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
2011
|
+
newMonthlyPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
2012
|
+
penaltyAmount?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
2013
|
+
financialImpactNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2014
|
+
status?: Prisma.EnumPaymentMethodChangeStatusFieldUpdateOperationsInput | $Enums.PaymentMethodChangeStatus;
|
|
2015
|
+
reviewerId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2016
|
+
reviewNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2017
|
+
reviewedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2018
|
+
executedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2019
|
+
previousPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
2020
|
+
newPhaseData?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
2021
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
2022
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
2023
|
+
};
|
|
2024
|
+
export type PaymentMethodChangeRequestSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
2025
|
+
id?: boolean;
|
|
2026
|
+
tenantId?: boolean;
|
|
2027
|
+
contractId?: boolean;
|
|
2028
|
+
fromPaymentMethodId?: boolean;
|
|
2029
|
+
toPaymentMethodId?: boolean;
|
|
2030
|
+
requestorId?: boolean;
|
|
2031
|
+
reason?: boolean;
|
|
2032
|
+
requiredDocumentTypes?: boolean;
|
|
2033
|
+
submittedDocuments?: boolean;
|
|
2034
|
+
currentOutstanding?: boolean;
|
|
2035
|
+
newTermMonths?: boolean;
|
|
2036
|
+
newInterestRate?: boolean;
|
|
2037
|
+
newMonthlyPayment?: boolean;
|
|
2038
|
+
penaltyAmount?: boolean;
|
|
2039
|
+
financialImpactNotes?: boolean;
|
|
2040
|
+
status?: boolean;
|
|
2041
|
+
reviewerId?: boolean;
|
|
2042
|
+
reviewNotes?: boolean;
|
|
2043
|
+
reviewedAt?: boolean;
|
|
2044
|
+
executedAt?: boolean;
|
|
2045
|
+
previousPhaseData?: boolean;
|
|
2046
|
+
newPhaseData?: boolean;
|
|
2047
|
+
createdAt?: boolean;
|
|
2048
|
+
updatedAt?: boolean;
|
|
2049
|
+
tenant?: boolean | Prisma.TenantDefaultArgs<ExtArgs>;
|
|
2050
|
+
contract?: boolean | Prisma.ContractDefaultArgs<ExtArgs>;
|
|
2051
|
+
fromPaymentMethod?: boolean | Prisma.PropertyPaymentMethodDefaultArgs<ExtArgs>;
|
|
2052
|
+
toPaymentMethod?: boolean | Prisma.PropertyPaymentMethodDefaultArgs<ExtArgs>;
|
|
2053
|
+
requestor?: boolean | Prisma.UserDefaultArgs<ExtArgs>;
|
|
2054
|
+
reviewer?: boolean | Prisma.PaymentMethodChangeRequest$reviewerArgs<ExtArgs>;
|
|
2055
|
+
}, ExtArgs["result"]["paymentMethodChangeRequest"]>;
|
|
2056
|
+
export type PaymentMethodChangeRequestSelectScalar = {
|
|
2057
|
+
id?: boolean;
|
|
2058
|
+
tenantId?: boolean;
|
|
2059
|
+
contractId?: boolean;
|
|
2060
|
+
fromPaymentMethodId?: boolean;
|
|
2061
|
+
toPaymentMethodId?: boolean;
|
|
2062
|
+
requestorId?: boolean;
|
|
2063
|
+
reason?: boolean;
|
|
2064
|
+
requiredDocumentTypes?: boolean;
|
|
2065
|
+
submittedDocuments?: boolean;
|
|
2066
|
+
currentOutstanding?: boolean;
|
|
2067
|
+
newTermMonths?: boolean;
|
|
2068
|
+
newInterestRate?: boolean;
|
|
2069
|
+
newMonthlyPayment?: boolean;
|
|
2070
|
+
penaltyAmount?: boolean;
|
|
2071
|
+
financialImpactNotes?: boolean;
|
|
2072
|
+
status?: boolean;
|
|
2073
|
+
reviewerId?: boolean;
|
|
2074
|
+
reviewNotes?: boolean;
|
|
2075
|
+
reviewedAt?: boolean;
|
|
2076
|
+
executedAt?: boolean;
|
|
2077
|
+
previousPhaseData?: boolean;
|
|
2078
|
+
newPhaseData?: boolean;
|
|
2079
|
+
createdAt?: boolean;
|
|
2080
|
+
updatedAt?: boolean;
|
|
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"]>;
|
|
2083
|
+
export type PaymentMethodChangeRequestInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
2084
|
+
tenant?: boolean | Prisma.TenantDefaultArgs<ExtArgs>;
|
|
2085
|
+
contract?: boolean | Prisma.ContractDefaultArgs<ExtArgs>;
|
|
2086
|
+
fromPaymentMethod?: boolean | Prisma.PropertyPaymentMethodDefaultArgs<ExtArgs>;
|
|
2087
|
+
toPaymentMethod?: boolean | Prisma.PropertyPaymentMethodDefaultArgs<ExtArgs>;
|
|
2088
|
+
requestor?: boolean | Prisma.UserDefaultArgs<ExtArgs>;
|
|
2089
|
+
reviewer?: boolean | Prisma.PaymentMethodChangeRequest$reviewerArgs<ExtArgs>;
|
|
2090
|
+
};
|
|
2091
|
+
export type $PaymentMethodChangeRequestPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
2092
|
+
name: "PaymentMethodChangeRequest";
|
|
2093
|
+
objects: {
|
|
2094
|
+
tenant: Prisma.$TenantPayload<ExtArgs>;
|
|
2095
|
+
contract: Prisma.$ContractPayload<ExtArgs>;
|
|
2096
|
+
fromPaymentMethod: Prisma.$PropertyPaymentMethodPayload<ExtArgs>;
|
|
2097
|
+
toPaymentMethod: Prisma.$PropertyPaymentMethodPayload<ExtArgs>;
|
|
2098
|
+
requestor: Prisma.$UserPayload<ExtArgs>;
|
|
2099
|
+
reviewer: Prisma.$UserPayload<ExtArgs> | null;
|
|
2100
|
+
};
|
|
2101
|
+
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
|
2102
|
+
id: string;
|
|
2103
|
+
tenantId: string;
|
|
2104
|
+
contractId: string;
|
|
2105
|
+
fromPaymentMethodId: string;
|
|
2106
|
+
toPaymentMethodId: string;
|
|
2107
|
+
requestorId: string;
|
|
2108
|
+
reason: string | null;
|
|
2109
|
+
requiredDocumentTypes: string | null;
|
|
2110
|
+
submittedDocuments: runtime.JsonValue | null;
|
|
2111
|
+
currentOutstanding: number | null;
|
|
2112
|
+
newTermMonths: number | null;
|
|
2113
|
+
newInterestRate: number | null;
|
|
2114
|
+
newMonthlyPayment: number | null;
|
|
2115
|
+
penaltyAmount: number | null;
|
|
2116
|
+
financialImpactNotes: string | null;
|
|
2117
|
+
status: $Enums.PaymentMethodChangeStatus;
|
|
2118
|
+
reviewerId: string | null;
|
|
2119
|
+
reviewNotes: string | null;
|
|
2120
|
+
reviewedAt: Date | null;
|
|
2121
|
+
executedAt: Date | null;
|
|
2122
|
+
previousPhaseData: runtime.JsonValue | null;
|
|
2123
|
+
newPhaseData: runtime.JsonValue | null;
|
|
2124
|
+
createdAt: Date;
|
|
2125
|
+
updatedAt: Date;
|
|
2126
|
+
}, ExtArgs["result"]["paymentMethodChangeRequest"]>;
|
|
2127
|
+
composites: {};
|
|
2128
|
+
};
|
|
2129
|
+
export type PaymentMethodChangeRequestGetPayload<S extends boolean | null | undefined | PaymentMethodChangeRequestDefaultArgs> = runtime.Types.Result.GetResult<Prisma.$PaymentMethodChangeRequestPayload, S>;
|
|
2130
|
+
export type PaymentMethodChangeRequestCountArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = Omit<PaymentMethodChangeRequestFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
|
|
2131
|
+
select?: PaymentMethodChangeRequestCountAggregateInputType | true;
|
|
2132
|
+
};
|
|
2133
|
+
export interface PaymentMethodChangeRequestDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
|
|
2134
|
+
[K: symbol]: {
|
|
2135
|
+
types: Prisma.TypeMap<ExtArgs>['model']['PaymentMethodChangeRequest'];
|
|
2136
|
+
meta: {
|
|
2137
|
+
name: 'PaymentMethodChangeRequest';
|
|
2138
|
+
};
|
|
2139
|
+
};
|
|
2140
|
+
/**
|
|
2141
|
+
* Find zero or one PaymentMethodChangeRequest that matches the filter.
|
|
2142
|
+
* @param {PaymentMethodChangeRequestFindUniqueArgs} args - Arguments to find a PaymentMethodChangeRequest
|
|
2143
|
+
* @example
|
|
2144
|
+
* // Get one PaymentMethodChangeRequest
|
|
2145
|
+
* const paymentMethodChangeRequest = await prisma.paymentMethodChangeRequest.findUnique({
|
|
2146
|
+
* where: {
|
|
2147
|
+
* // ... provide filter here
|
|
2148
|
+
* }
|
|
2149
|
+
* })
|
|
2150
|
+
*/
|
|
2151
|
+
findUnique<T extends PaymentMethodChangeRequestFindUniqueArgs>(args: Prisma.SelectSubset<T, PaymentMethodChangeRequestFindUniqueArgs<ExtArgs>>): Prisma.Prisma__PaymentMethodChangeRequestClient<runtime.Types.Result.GetResult<Prisma.$PaymentMethodChangeRequestPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
2152
|
+
/**
|
|
2153
|
+
* Find one PaymentMethodChangeRequest that matches the filter or throw an error with `error.code='P2025'`
|
|
2154
|
+
* if no matches were found.
|
|
2155
|
+
* @param {PaymentMethodChangeRequestFindUniqueOrThrowArgs} args - Arguments to find a PaymentMethodChangeRequest
|
|
2156
|
+
* @example
|
|
2157
|
+
* // Get one PaymentMethodChangeRequest
|
|
2158
|
+
* const paymentMethodChangeRequest = await prisma.paymentMethodChangeRequest.findUniqueOrThrow({
|
|
2159
|
+
* where: {
|
|
2160
|
+
* // ... provide filter here
|
|
2161
|
+
* }
|
|
2162
|
+
* })
|
|
2163
|
+
*/
|
|
2164
|
+
findUniqueOrThrow<T extends PaymentMethodChangeRequestFindUniqueOrThrowArgs>(args: Prisma.SelectSubset<T, PaymentMethodChangeRequestFindUniqueOrThrowArgs<ExtArgs>>): Prisma.Prisma__PaymentMethodChangeRequestClient<runtime.Types.Result.GetResult<Prisma.$PaymentMethodChangeRequestPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
2165
|
+
/**
|
|
2166
|
+
* Find the first PaymentMethodChangeRequest that matches the filter.
|
|
2167
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
2168
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
2169
|
+
* @param {PaymentMethodChangeRequestFindFirstArgs} args - Arguments to find a PaymentMethodChangeRequest
|
|
2170
|
+
* @example
|
|
2171
|
+
* // Get one PaymentMethodChangeRequest
|
|
2172
|
+
* const paymentMethodChangeRequest = await prisma.paymentMethodChangeRequest.findFirst({
|
|
2173
|
+
* where: {
|
|
2174
|
+
* // ... provide filter here
|
|
2175
|
+
* }
|
|
2176
|
+
* })
|
|
2177
|
+
*/
|
|
2178
|
+
findFirst<T extends PaymentMethodChangeRequestFindFirstArgs>(args?: Prisma.SelectSubset<T, PaymentMethodChangeRequestFindFirstArgs<ExtArgs>>): Prisma.Prisma__PaymentMethodChangeRequestClient<runtime.Types.Result.GetResult<Prisma.$PaymentMethodChangeRequestPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
2179
|
+
/**
|
|
2180
|
+
* Find the first PaymentMethodChangeRequest that matches the filter or
|
|
2181
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
2182
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
2183
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
2184
|
+
* @param {PaymentMethodChangeRequestFindFirstOrThrowArgs} args - Arguments to find a PaymentMethodChangeRequest
|
|
2185
|
+
* @example
|
|
2186
|
+
* // Get one PaymentMethodChangeRequest
|
|
2187
|
+
* const paymentMethodChangeRequest = await prisma.paymentMethodChangeRequest.findFirstOrThrow({
|
|
2188
|
+
* where: {
|
|
2189
|
+
* // ... provide filter here
|
|
2190
|
+
* }
|
|
2191
|
+
* })
|
|
2192
|
+
*/
|
|
2193
|
+
findFirstOrThrow<T extends PaymentMethodChangeRequestFindFirstOrThrowArgs>(args?: Prisma.SelectSubset<T, PaymentMethodChangeRequestFindFirstOrThrowArgs<ExtArgs>>): Prisma.Prisma__PaymentMethodChangeRequestClient<runtime.Types.Result.GetResult<Prisma.$PaymentMethodChangeRequestPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
2194
|
+
/**
|
|
2195
|
+
* Find zero or more PaymentMethodChangeRequests that matches the filter.
|
|
2196
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
2197
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
2198
|
+
* @param {PaymentMethodChangeRequestFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
2199
|
+
* @example
|
|
2200
|
+
* // Get all PaymentMethodChangeRequests
|
|
2201
|
+
* const paymentMethodChangeRequests = await prisma.paymentMethodChangeRequest.findMany()
|
|
2202
|
+
*
|
|
2203
|
+
* // Get first 10 PaymentMethodChangeRequests
|
|
2204
|
+
* const paymentMethodChangeRequests = await prisma.paymentMethodChangeRequest.findMany({ take: 10 })
|
|
2205
|
+
*
|
|
2206
|
+
* // Only select the `id`
|
|
2207
|
+
* const paymentMethodChangeRequestWithIdOnly = await prisma.paymentMethodChangeRequest.findMany({ select: { id: true } })
|
|
2208
|
+
*
|
|
2209
|
+
*/
|
|
2210
|
+
findMany<T extends PaymentMethodChangeRequestFindManyArgs>(args?: Prisma.SelectSubset<T, PaymentMethodChangeRequestFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PaymentMethodChangeRequestPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>;
|
|
2211
|
+
/**
|
|
2212
|
+
* Create a PaymentMethodChangeRequest.
|
|
2213
|
+
* @param {PaymentMethodChangeRequestCreateArgs} args - Arguments to create a PaymentMethodChangeRequest.
|
|
2214
|
+
* @example
|
|
2215
|
+
* // Create one PaymentMethodChangeRequest
|
|
2216
|
+
* const PaymentMethodChangeRequest = await prisma.paymentMethodChangeRequest.create({
|
|
2217
|
+
* data: {
|
|
2218
|
+
* // ... data to create a PaymentMethodChangeRequest
|
|
2219
|
+
* }
|
|
2220
|
+
* })
|
|
2221
|
+
*
|
|
2222
|
+
*/
|
|
2223
|
+
create<T extends PaymentMethodChangeRequestCreateArgs>(args: Prisma.SelectSubset<T, PaymentMethodChangeRequestCreateArgs<ExtArgs>>): Prisma.Prisma__PaymentMethodChangeRequestClient<runtime.Types.Result.GetResult<Prisma.$PaymentMethodChangeRequestPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
2224
|
+
/**
|
|
2225
|
+
* Create many PaymentMethodChangeRequests.
|
|
2226
|
+
* @param {PaymentMethodChangeRequestCreateManyArgs} args - Arguments to create many PaymentMethodChangeRequests.
|
|
2227
|
+
* @example
|
|
2228
|
+
* // Create many PaymentMethodChangeRequests
|
|
2229
|
+
* const paymentMethodChangeRequest = await prisma.paymentMethodChangeRequest.createMany({
|
|
2230
|
+
* data: [
|
|
2231
|
+
* // ... provide data here
|
|
2232
|
+
* ]
|
|
2233
|
+
* })
|
|
2234
|
+
*
|
|
2235
|
+
*/
|
|
2236
|
+
createMany<T extends PaymentMethodChangeRequestCreateManyArgs>(args?: Prisma.SelectSubset<T, PaymentMethodChangeRequestCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
2237
|
+
/**
|
|
2238
|
+
* Delete a PaymentMethodChangeRequest.
|
|
2239
|
+
* @param {PaymentMethodChangeRequestDeleteArgs} args - Arguments to delete one PaymentMethodChangeRequest.
|
|
2240
|
+
* @example
|
|
2241
|
+
* // Delete one PaymentMethodChangeRequest
|
|
2242
|
+
* const PaymentMethodChangeRequest = await prisma.paymentMethodChangeRequest.delete({
|
|
2243
|
+
* where: {
|
|
2244
|
+
* // ... filter to delete one PaymentMethodChangeRequest
|
|
2245
|
+
* }
|
|
2246
|
+
* })
|
|
2247
|
+
*
|
|
2248
|
+
*/
|
|
2249
|
+
delete<T extends PaymentMethodChangeRequestDeleteArgs>(args: Prisma.SelectSubset<T, PaymentMethodChangeRequestDeleteArgs<ExtArgs>>): Prisma.Prisma__PaymentMethodChangeRequestClient<runtime.Types.Result.GetResult<Prisma.$PaymentMethodChangeRequestPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
2250
|
+
/**
|
|
2251
|
+
* Update one PaymentMethodChangeRequest.
|
|
2252
|
+
* @param {PaymentMethodChangeRequestUpdateArgs} args - Arguments to update one PaymentMethodChangeRequest.
|
|
2253
|
+
* @example
|
|
2254
|
+
* // Update one PaymentMethodChangeRequest
|
|
2255
|
+
* const paymentMethodChangeRequest = await prisma.paymentMethodChangeRequest.update({
|
|
2256
|
+
* where: {
|
|
2257
|
+
* // ... provide filter here
|
|
2258
|
+
* },
|
|
2259
|
+
* data: {
|
|
2260
|
+
* // ... provide data here
|
|
2261
|
+
* }
|
|
2262
|
+
* })
|
|
2263
|
+
*
|
|
2264
|
+
*/
|
|
2265
|
+
update<T extends PaymentMethodChangeRequestUpdateArgs>(args: Prisma.SelectSubset<T, PaymentMethodChangeRequestUpdateArgs<ExtArgs>>): Prisma.Prisma__PaymentMethodChangeRequestClient<runtime.Types.Result.GetResult<Prisma.$PaymentMethodChangeRequestPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
2266
|
+
/**
|
|
2267
|
+
* Delete zero or more PaymentMethodChangeRequests.
|
|
2268
|
+
* @param {PaymentMethodChangeRequestDeleteManyArgs} args - Arguments to filter PaymentMethodChangeRequests to delete.
|
|
2269
|
+
* @example
|
|
2270
|
+
* // Delete a few PaymentMethodChangeRequests
|
|
2271
|
+
* const { count } = await prisma.paymentMethodChangeRequest.deleteMany({
|
|
2272
|
+
* where: {
|
|
2273
|
+
* // ... provide filter here
|
|
2274
|
+
* }
|
|
2275
|
+
* })
|
|
2276
|
+
*
|
|
2277
|
+
*/
|
|
2278
|
+
deleteMany<T extends PaymentMethodChangeRequestDeleteManyArgs>(args?: Prisma.SelectSubset<T, PaymentMethodChangeRequestDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
2279
|
+
/**
|
|
2280
|
+
* Update zero or more PaymentMethodChangeRequests.
|
|
2281
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
2282
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
2283
|
+
* @param {PaymentMethodChangeRequestUpdateManyArgs} args - Arguments to update one or more rows.
|
|
2284
|
+
* @example
|
|
2285
|
+
* // Update many PaymentMethodChangeRequests
|
|
2286
|
+
* const paymentMethodChangeRequest = await prisma.paymentMethodChangeRequest.updateMany({
|
|
2287
|
+
* where: {
|
|
2288
|
+
* // ... provide filter here
|
|
2289
|
+
* },
|
|
2290
|
+
* data: {
|
|
2291
|
+
* // ... provide data here
|
|
2292
|
+
* }
|
|
2293
|
+
* })
|
|
2294
|
+
*
|
|
2295
|
+
*/
|
|
2296
|
+
updateMany<T extends PaymentMethodChangeRequestUpdateManyArgs>(args: Prisma.SelectSubset<T, PaymentMethodChangeRequestUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
2297
|
+
/**
|
|
2298
|
+
* Create or update one PaymentMethodChangeRequest.
|
|
2299
|
+
* @param {PaymentMethodChangeRequestUpsertArgs} args - Arguments to update or create a PaymentMethodChangeRequest.
|
|
2300
|
+
* @example
|
|
2301
|
+
* // Update or create a PaymentMethodChangeRequest
|
|
2302
|
+
* const paymentMethodChangeRequest = await prisma.paymentMethodChangeRequest.upsert({
|
|
2303
|
+
* create: {
|
|
2304
|
+
* // ... data to create a PaymentMethodChangeRequest
|
|
2305
|
+
* },
|
|
2306
|
+
* update: {
|
|
2307
|
+
* // ... in case it already exists, update
|
|
2308
|
+
* },
|
|
2309
|
+
* where: {
|
|
2310
|
+
* // ... the filter for the PaymentMethodChangeRequest we want to update
|
|
2311
|
+
* }
|
|
2312
|
+
* })
|
|
2313
|
+
*/
|
|
2314
|
+
upsert<T extends PaymentMethodChangeRequestUpsertArgs>(args: Prisma.SelectSubset<T, PaymentMethodChangeRequestUpsertArgs<ExtArgs>>): Prisma.Prisma__PaymentMethodChangeRequestClient<runtime.Types.Result.GetResult<Prisma.$PaymentMethodChangeRequestPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
2315
|
+
/**
|
|
2316
|
+
* Count the number of PaymentMethodChangeRequests.
|
|
2317
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
2318
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
2319
|
+
* @param {PaymentMethodChangeRequestCountArgs} args - Arguments to filter PaymentMethodChangeRequests to count.
|
|
2320
|
+
* @example
|
|
2321
|
+
* // Count the number of PaymentMethodChangeRequests
|
|
2322
|
+
* const count = await prisma.paymentMethodChangeRequest.count({
|
|
2323
|
+
* where: {
|
|
2324
|
+
* // ... the filter for the PaymentMethodChangeRequests we want to count
|
|
2325
|
+
* }
|
|
2326
|
+
* })
|
|
2327
|
+
**/
|
|
2328
|
+
count<T extends PaymentMethodChangeRequestCountArgs>(args?: Prisma.Subset<T, PaymentMethodChangeRequestCountArgs>): Prisma.PrismaPromise<T extends runtime.Types.Utils.Record<'select', any> ? T['select'] extends true ? number : Prisma.GetScalarType<T['select'], PaymentMethodChangeRequestCountAggregateOutputType> : number>;
|
|
2329
|
+
/**
|
|
2330
|
+
* Allows you to perform aggregations operations on a PaymentMethodChangeRequest.
|
|
2331
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
2332
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
2333
|
+
* @param {PaymentMethodChangeRequestAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
2334
|
+
* @example
|
|
2335
|
+
* // Ordered by age ascending
|
|
2336
|
+
* // Where email contains prisma.io
|
|
2337
|
+
* // Limited to the 10 users
|
|
2338
|
+
* const aggregations = await prisma.user.aggregate({
|
|
2339
|
+
* _avg: {
|
|
2340
|
+
* age: true,
|
|
2341
|
+
* },
|
|
2342
|
+
* where: {
|
|
2343
|
+
* email: {
|
|
2344
|
+
* contains: "prisma.io",
|
|
2345
|
+
* },
|
|
2346
|
+
* },
|
|
2347
|
+
* orderBy: {
|
|
2348
|
+
* age: "asc",
|
|
2349
|
+
* },
|
|
2350
|
+
* take: 10,
|
|
2351
|
+
* })
|
|
2352
|
+
**/
|
|
2353
|
+
aggregate<T extends PaymentMethodChangeRequestAggregateArgs>(args: Prisma.Subset<T, PaymentMethodChangeRequestAggregateArgs>): Prisma.PrismaPromise<GetPaymentMethodChangeRequestAggregateType<T>>;
|
|
2354
|
+
/**
|
|
2355
|
+
* Group by PaymentMethodChangeRequest.
|
|
2356
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
2357
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
2358
|
+
* @param {PaymentMethodChangeRequestGroupByArgs} args - Group by arguments.
|
|
2359
|
+
* @example
|
|
2360
|
+
* // Group by city, order by createdAt, get count
|
|
2361
|
+
* const result = await prisma.user.groupBy({
|
|
2362
|
+
* by: ['city', 'createdAt'],
|
|
2363
|
+
* orderBy: {
|
|
2364
|
+
* createdAt: true
|
|
2365
|
+
* },
|
|
2366
|
+
* _count: {
|
|
2367
|
+
* _all: true
|
|
2368
|
+
* },
|
|
2369
|
+
* })
|
|
2370
|
+
*
|
|
2371
|
+
**/
|
|
2372
|
+
groupBy<T extends PaymentMethodChangeRequestGroupByArgs, HasSelectOrTake extends Prisma.Or<Prisma.Extends<'skip', Prisma.Keys<T>>, Prisma.Extends<'take', Prisma.Keys<T>>>, OrderByArg extends Prisma.True extends HasSelectOrTake ? {
|
|
2373
|
+
orderBy: PaymentMethodChangeRequestGroupByArgs['orderBy'];
|
|
2374
|
+
} : {
|
|
2375
|
+
orderBy?: PaymentMethodChangeRequestGroupByArgs['orderBy'];
|
|
2376
|
+
}, OrderFields extends Prisma.ExcludeUnderscoreKeys<Prisma.Keys<Prisma.MaybeTupleToUnion<T['orderBy']>>>, ByFields extends Prisma.MaybeTupleToUnion<T['by']>, ByValid extends Prisma.Has<ByFields, OrderFields>, HavingFields extends Prisma.GetHavingFields<T['having']>, HavingValid extends Prisma.Has<ByFields, HavingFields>, ByEmpty extends T['by'] extends never[] ? Prisma.True : Prisma.False, InputErrors extends ByEmpty extends Prisma.True ? `Error: "by" must not be empty.` : HavingValid extends Prisma.False ? {
|
|
2377
|
+
[P in HavingFields]: P extends ByFields ? never : P extends string ? `Error: Field "${P}" used in "having" needs to be provided in "by".` : [
|
|
2378
|
+
Error,
|
|
2379
|
+
'Field ',
|
|
2380
|
+
P,
|
|
2381
|
+
` in "having" needs to be provided in "by"`
|
|
2382
|
+
];
|
|
2383
|
+
}[HavingFields] : 'take' extends Prisma.Keys<T> ? 'orderBy' extends Prisma.Keys<T> ? ByValid extends Prisma.True ? {} : {
|
|
2384
|
+
[P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
|
|
2385
|
+
}[OrderFields] : 'Error: If you provide "take", you also need to provide "orderBy"' : 'skip' extends Prisma.Keys<T> ? 'orderBy' extends Prisma.Keys<T> ? ByValid extends Prisma.True ? {} : {
|
|
2386
|
+
[P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
|
|
2387
|
+
}[OrderFields] : 'Error: If you provide "skip", you also need to provide "orderBy"' : ByValid extends Prisma.True ? {} : {
|
|
2388
|
+
[P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
|
|
2389
|
+
}[OrderFields]>(args: Prisma.SubsetIntersection<T, PaymentMethodChangeRequestGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetPaymentMethodChangeRequestGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>;
|
|
2390
|
+
/**
|
|
2391
|
+
* Fields of the PaymentMethodChangeRequest model
|
|
2392
|
+
*/
|
|
2393
|
+
readonly fields: PaymentMethodChangeRequestFieldRefs;
|
|
2394
|
+
}
|
|
2395
|
+
/**
|
|
2396
|
+
* The delegate class that acts as a "Promise-like" for PaymentMethodChangeRequest.
|
|
2397
|
+
* Why is this prefixed with `Prisma__`?
|
|
2398
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
2399
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
2400
|
+
*/
|
|
2401
|
+
export interface Prisma__PaymentMethodChangeRequestClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
|
2402
|
+
readonly [Symbol.toStringTag]: "PrismaPromise";
|
|
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>;
|
|
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
|
+
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
|
+
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>;
|
|
2408
|
+
reviewer<T extends Prisma.PaymentMethodChangeRequest$reviewerArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.PaymentMethodChangeRequest$reviewerArgs<ExtArgs>>): Prisma.Prisma__UserClient<runtime.Types.Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
2409
|
+
/**
|
|
2410
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
2411
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
2412
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
2413
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
2414
|
+
*/
|
|
2415
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): runtime.Types.Utils.JsPromise<TResult1 | TResult2>;
|
|
2416
|
+
/**
|
|
2417
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
2418
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
2419
|
+
* @returns A Promise for the completion of the callback.
|
|
2420
|
+
*/
|
|
2421
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): runtime.Types.Utils.JsPromise<T | TResult>;
|
|
2422
|
+
/**
|
|
2423
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
2424
|
+
* resolved value cannot be modified from the callback.
|
|
2425
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
2426
|
+
* @returns A Promise for the completion of the callback.
|
|
2427
|
+
*/
|
|
2428
|
+
finally(onfinally?: (() => void) | undefined | null): runtime.Types.Utils.JsPromise<T>;
|
|
2429
|
+
}
|
|
2430
|
+
/**
|
|
2431
|
+
* Fields of the PaymentMethodChangeRequest model
|
|
2432
|
+
*/
|
|
2433
|
+
export interface PaymentMethodChangeRequestFieldRefs {
|
|
2434
|
+
readonly id: Prisma.FieldRef<"PaymentMethodChangeRequest", 'String'>;
|
|
2435
|
+
readonly tenantId: Prisma.FieldRef<"PaymentMethodChangeRequest", 'String'>;
|
|
2436
|
+
readonly contractId: Prisma.FieldRef<"PaymentMethodChangeRequest", 'String'>;
|
|
2437
|
+
readonly fromPaymentMethodId: Prisma.FieldRef<"PaymentMethodChangeRequest", 'String'>;
|
|
2438
|
+
readonly toPaymentMethodId: Prisma.FieldRef<"PaymentMethodChangeRequest", 'String'>;
|
|
2439
|
+
readonly requestorId: Prisma.FieldRef<"PaymentMethodChangeRequest", 'String'>;
|
|
2440
|
+
readonly reason: Prisma.FieldRef<"PaymentMethodChangeRequest", 'String'>;
|
|
2441
|
+
readonly requiredDocumentTypes: Prisma.FieldRef<"PaymentMethodChangeRequest", 'String'>;
|
|
2442
|
+
readonly submittedDocuments: Prisma.FieldRef<"PaymentMethodChangeRequest", 'Json'>;
|
|
2443
|
+
readonly currentOutstanding: Prisma.FieldRef<"PaymentMethodChangeRequest", 'Float'>;
|
|
2444
|
+
readonly newTermMonths: Prisma.FieldRef<"PaymentMethodChangeRequest", 'Int'>;
|
|
2445
|
+
readonly newInterestRate: Prisma.FieldRef<"PaymentMethodChangeRequest", 'Float'>;
|
|
2446
|
+
readonly newMonthlyPayment: Prisma.FieldRef<"PaymentMethodChangeRequest", 'Float'>;
|
|
2447
|
+
readonly penaltyAmount: Prisma.FieldRef<"PaymentMethodChangeRequest", 'Float'>;
|
|
2448
|
+
readonly financialImpactNotes: Prisma.FieldRef<"PaymentMethodChangeRequest", 'String'>;
|
|
2449
|
+
readonly status: Prisma.FieldRef<"PaymentMethodChangeRequest", 'PaymentMethodChangeStatus'>;
|
|
2450
|
+
readonly reviewerId: Prisma.FieldRef<"PaymentMethodChangeRequest", 'String'>;
|
|
2451
|
+
readonly reviewNotes: Prisma.FieldRef<"PaymentMethodChangeRequest", 'String'>;
|
|
2452
|
+
readonly reviewedAt: Prisma.FieldRef<"PaymentMethodChangeRequest", 'DateTime'>;
|
|
2453
|
+
readonly executedAt: Prisma.FieldRef<"PaymentMethodChangeRequest", 'DateTime'>;
|
|
2454
|
+
readonly previousPhaseData: Prisma.FieldRef<"PaymentMethodChangeRequest", 'Json'>;
|
|
2455
|
+
readonly newPhaseData: Prisma.FieldRef<"PaymentMethodChangeRequest", 'Json'>;
|
|
2456
|
+
readonly createdAt: Prisma.FieldRef<"PaymentMethodChangeRequest", 'DateTime'>;
|
|
2457
|
+
readonly updatedAt: Prisma.FieldRef<"PaymentMethodChangeRequest", 'DateTime'>;
|
|
2458
|
+
}
|
|
2459
|
+
/**
|
|
2460
|
+
* PaymentMethodChangeRequest findUnique
|
|
2461
|
+
*/
|
|
2462
|
+
export type PaymentMethodChangeRequestFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
2463
|
+
/**
|
|
2464
|
+
* Select specific fields to fetch from the PaymentMethodChangeRequest
|
|
2465
|
+
*/
|
|
2466
|
+
select?: Prisma.PaymentMethodChangeRequestSelect<ExtArgs> | null;
|
|
2467
|
+
/**
|
|
2468
|
+
* Omit specific fields from the PaymentMethodChangeRequest
|
|
2469
|
+
*/
|
|
2470
|
+
omit?: Prisma.PaymentMethodChangeRequestOmit<ExtArgs> | null;
|
|
2471
|
+
/**
|
|
2472
|
+
* Choose, which related nodes to fetch as well
|
|
2473
|
+
*/
|
|
2474
|
+
include?: Prisma.PaymentMethodChangeRequestInclude<ExtArgs> | null;
|
|
2475
|
+
/**
|
|
2476
|
+
* Filter, which PaymentMethodChangeRequest to fetch.
|
|
2477
|
+
*/
|
|
2478
|
+
where: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
|
|
2479
|
+
};
|
|
2480
|
+
/**
|
|
2481
|
+
* PaymentMethodChangeRequest findUniqueOrThrow
|
|
2482
|
+
*/
|
|
2483
|
+
export type PaymentMethodChangeRequestFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
2484
|
+
/**
|
|
2485
|
+
* Select specific fields to fetch from the PaymentMethodChangeRequest
|
|
2486
|
+
*/
|
|
2487
|
+
select?: Prisma.PaymentMethodChangeRequestSelect<ExtArgs> | null;
|
|
2488
|
+
/**
|
|
2489
|
+
* Omit specific fields from the PaymentMethodChangeRequest
|
|
2490
|
+
*/
|
|
2491
|
+
omit?: Prisma.PaymentMethodChangeRequestOmit<ExtArgs> | null;
|
|
2492
|
+
/**
|
|
2493
|
+
* Choose, which related nodes to fetch as well
|
|
2494
|
+
*/
|
|
2495
|
+
include?: Prisma.PaymentMethodChangeRequestInclude<ExtArgs> | null;
|
|
2496
|
+
/**
|
|
2497
|
+
* Filter, which PaymentMethodChangeRequest to fetch.
|
|
2498
|
+
*/
|
|
2499
|
+
where: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
|
|
2500
|
+
};
|
|
2501
|
+
/**
|
|
2502
|
+
* PaymentMethodChangeRequest findFirst
|
|
2503
|
+
*/
|
|
2504
|
+
export type PaymentMethodChangeRequestFindFirstArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
2505
|
+
/**
|
|
2506
|
+
* Select specific fields to fetch from the PaymentMethodChangeRequest
|
|
2507
|
+
*/
|
|
2508
|
+
select?: Prisma.PaymentMethodChangeRequestSelect<ExtArgs> | null;
|
|
2509
|
+
/**
|
|
2510
|
+
* Omit specific fields from the PaymentMethodChangeRequest
|
|
2511
|
+
*/
|
|
2512
|
+
omit?: Prisma.PaymentMethodChangeRequestOmit<ExtArgs> | null;
|
|
2513
|
+
/**
|
|
2514
|
+
* Choose, which related nodes to fetch as well
|
|
2515
|
+
*/
|
|
2516
|
+
include?: Prisma.PaymentMethodChangeRequestInclude<ExtArgs> | null;
|
|
2517
|
+
/**
|
|
2518
|
+
* Filter, which PaymentMethodChangeRequest to fetch.
|
|
2519
|
+
*/
|
|
2520
|
+
where?: Prisma.PaymentMethodChangeRequestWhereInput;
|
|
2521
|
+
/**
|
|
2522
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
2523
|
+
*
|
|
2524
|
+
* Determine the order of PaymentMethodChangeRequests to fetch.
|
|
2525
|
+
*/
|
|
2526
|
+
orderBy?: Prisma.PaymentMethodChangeRequestOrderByWithRelationInput | Prisma.PaymentMethodChangeRequestOrderByWithRelationInput[];
|
|
2527
|
+
/**
|
|
2528
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
2529
|
+
*
|
|
2530
|
+
* Sets the position for searching for PaymentMethodChangeRequests.
|
|
2531
|
+
*/
|
|
2532
|
+
cursor?: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
|
|
2533
|
+
/**
|
|
2534
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
2535
|
+
*
|
|
2536
|
+
* Take `±n` PaymentMethodChangeRequests from the position of the cursor.
|
|
2537
|
+
*/
|
|
2538
|
+
take?: number;
|
|
2539
|
+
/**
|
|
2540
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
2541
|
+
*
|
|
2542
|
+
* Skip the first `n` PaymentMethodChangeRequests.
|
|
2543
|
+
*/
|
|
2544
|
+
skip?: number;
|
|
2545
|
+
/**
|
|
2546
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
2547
|
+
*
|
|
2548
|
+
* Filter by unique combinations of PaymentMethodChangeRequests.
|
|
2549
|
+
*/
|
|
2550
|
+
distinct?: Prisma.PaymentMethodChangeRequestScalarFieldEnum | Prisma.PaymentMethodChangeRequestScalarFieldEnum[];
|
|
2551
|
+
};
|
|
2552
|
+
/**
|
|
2553
|
+
* PaymentMethodChangeRequest findFirstOrThrow
|
|
2554
|
+
*/
|
|
2555
|
+
export type PaymentMethodChangeRequestFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
2556
|
+
/**
|
|
2557
|
+
* Select specific fields to fetch from the PaymentMethodChangeRequest
|
|
2558
|
+
*/
|
|
2559
|
+
select?: Prisma.PaymentMethodChangeRequestSelect<ExtArgs> | null;
|
|
2560
|
+
/**
|
|
2561
|
+
* Omit specific fields from the PaymentMethodChangeRequest
|
|
2562
|
+
*/
|
|
2563
|
+
omit?: Prisma.PaymentMethodChangeRequestOmit<ExtArgs> | null;
|
|
2564
|
+
/**
|
|
2565
|
+
* Choose, which related nodes to fetch as well
|
|
2566
|
+
*/
|
|
2567
|
+
include?: Prisma.PaymentMethodChangeRequestInclude<ExtArgs> | null;
|
|
2568
|
+
/**
|
|
2569
|
+
* Filter, which PaymentMethodChangeRequest to fetch.
|
|
2570
|
+
*/
|
|
2571
|
+
where?: Prisma.PaymentMethodChangeRequestWhereInput;
|
|
2572
|
+
/**
|
|
2573
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
2574
|
+
*
|
|
2575
|
+
* Determine the order of PaymentMethodChangeRequests to fetch.
|
|
2576
|
+
*/
|
|
2577
|
+
orderBy?: Prisma.PaymentMethodChangeRequestOrderByWithRelationInput | Prisma.PaymentMethodChangeRequestOrderByWithRelationInput[];
|
|
2578
|
+
/**
|
|
2579
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
2580
|
+
*
|
|
2581
|
+
* Sets the position for searching for PaymentMethodChangeRequests.
|
|
2582
|
+
*/
|
|
2583
|
+
cursor?: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
|
|
2584
|
+
/**
|
|
2585
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
2586
|
+
*
|
|
2587
|
+
* Take `±n` PaymentMethodChangeRequests from the position of the cursor.
|
|
2588
|
+
*/
|
|
2589
|
+
take?: number;
|
|
2590
|
+
/**
|
|
2591
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
2592
|
+
*
|
|
2593
|
+
* Skip the first `n` PaymentMethodChangeRequests.
|
|
2594
|
+
*/
|
|
2595
|
+
skip?: number;
|
|
2596
|
+
/**
|
|
2597
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
2598
|
+
*
|
|
2599
|
+
* Filter by unique combinations of PaymentMethodChangeRequests.
|
|
2600
|
+
*/
|
|
2601
|
+
distinct?: Prisma.PaymentMethodChangeRequestScalarFieldEnum | Prisma.PaymentMethodChangeRequestScalarFieldEnum[];
|
|
2602
|
+
};
|
|
2603
|
+
/**
|
|
2604
|
+
* PaymentMethodChangeRequest findMany
|
|
2605
|
+
*/
|
|
2606
|
+
export type PaymentMethodChangeRequestFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
2607
|
+
/**
|
|
2608
|
+
* Select specific fields to fetch from the PaymentMethodChangeRequest
|
|
2609
|
+
*/
|
|
2610
|
+
select?: Prisma.PaymentMethodChangeRequestSelect<ExtArgs> | null;
|
|
2611
|
+
/**
|
|
2612
|
+
* Omit specific fields from the PaymentMethodChangeRequest
|
|
2613
|
+
*/
|
|
2614
|
+
omit?: Prisma.PaymentMethodChangeRequestOmit<ExtArgs> | null;
|
|
2615
|
+
/**
|
|
2616
|
+
* Choose, which related nodes to fetch as well
|
|
2617
|
+
*/
|
|
2618
|
+
include?: Prisma.PaymentMethodChangeRequestInclude<ExtArgs> | null;
|
|
2619
|
+
/**
|
|
2620
|
+
* Filter, which PaymentMethodChangeRequests to fetch.
|
|
2621
|
+
*/
|
|
2622
|
+
where?: Prisma.PaymentMethodChangeRequestWhereInput;
|
|
2623
|
+
/**
|
|
2624
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
2625
|
+
*
|
|
2626
|
+
* Determine the order of PaymentMethodChangeRequests to fetch.
|
|
2627
|
+
*/
|
|
2628
|
+
orderBy?: Prisma.PaymentMethodChangeRequestOrderByWithRelationInput | Prisma.PaymentMethodChangeRequestOrderByWithRelationInput[];
|
|
2629
|
+
/**
|
|
2630
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
2631
|
+
*
|
|
2632
|
+
* Sets the position for listing PaymentMethodChangeRequests.
|
|
2633
|
+
*/
|
|
2634
|
+
cursor?: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
|
|
2635
|
+
/**
|
|
2636
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
2637
|
+
*
|
|
2638
|
+
* Take `±n` PaymentMethodChangeRequests from the position of the cursor.
|
|
2639
|
+
*/
|
|
2640
|
+
take?: number;
|
|
2641
|
+
/**
|
|
2642
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
2643
|
+
*
|
|
2644
|
+
* Skip the first `n` PaymentMethodChangeRequests.
|
|
2645
|
+
*/
|
|
2646
|
+
skip?: number;
|
|
2647
|
+
distinct?: Prisma.PaymentMethodChangeRequestScalarFieldEnum | Prisma.PaymentMethodChangeRequestScalarFieldEnum[];
|
|
2648
|
+
};
|
|
2649
|
+
/**
|
|
2650
|
+
* PaymentMethodChangeRequest create
|
|
2651
|
+
*/
|
|
2652
|
+
export type PaymentMethodChangeRequestCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
2653
|
+
/**
|
|
2654
|
+
* Select specific fields to fetch from the PaymentMethodChangeRequest
|
|
2655
|
+
*/
|
|
2656
|
+
select?: Prisma.PaymentMethodChangeRequestSelect<ExtArgs> | null;
|
|
2657
|
+
/**
|
|
2658
|
+
* Omit specific fields from the PaymentMethodChangeRequest
|
|
2659
|
+
*/
|
|
2660
|
+
omit?: Prisma.PaymentMethodChangeRequestOmit<ExtArgs> | null;
|
|
2661
|
+
/**
|
|
2662
|
+
* Choose, which related nodes to fetch as well
|
|
2663
|
+
*/
|
|
2664
|
+
include?: Prisma.PaymentMethodChangeRequestInclude<ExtArgs> | null;
|
|
2665
|
+
/**
|
|
2666
|
+
* The data needed to create a PaymentMethodChangeRequest.
|
|
2667
|
+
*/
|
|
2668
|
+
data: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateInput, Prisma.PaymentMethodChangeRequestUncheckedCreateInput>;
|
|
2669
|
+
};
|
|
2670
|
+
/**
|
|
2671
|
+
* PaymentMethodChangeRequest createMany
|
|
2672
|
+
*/
|
|
2673
|
+
export type PaymentMethodChangeRequestCreateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
2674
|
+
/**
|
|
2675
|
+
* The data used to create many PaymentMethodChangeRequests.
|
|
2676
|
+
*/
|
|
2677
|
+
data: Prisma.PaymentMethodChangeRequestCreateManyInput | Prisma.PaymentMethodChangeRequestCreateManyInput[];
|
|
2678
|
+
skipDuplicates?: boolean;
|
|
2679
|
+
};
|
|
2680
|
+
/**
|
|
2681
|
+
* PaymentMethodChangeRequest update
|
|
2682
|
+
*/
|
|
2683
|
+
export type PaymentMethodChangeRequestUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
2684
|
+
/**
|
|
2685
|
+
* Select specific fields to fetch from the PaymentMethodChangeRequest
|
|
2686
|
+
*/
|
|
2687
|
+
select?: Prisma.PaymentMethodChangeRequestSelect<ExtArgs> | null;
|
|
2688
|
+
/**
|
|
2689
|
+
* Omit specific fields from the PaymentMethodChangeRequest
|
|
2690
|
+
*/
|
|
2691
|
+
omit?: Prisma.PaymentMethodChangeRequestOmit<ExtArgs> | null;
|
|
2692
|
+
/**
|
|
2693
|
+
* Choose, which related nodes to fetch as well
|
|
2694
|
+
*/
|
|
2695
|
+
include?: Prisma.PaymentMethodChangeRequestInclude<ExtArgs> | null;
|
|
2696
|
+
/**
|
|
2697
|
+
* The data needed to update a PaymentMethodChangeRequest.
|
|
2698
|
+
*/
|
|
2699
|
+
data: Prisma.XOR<Prisma.PaymentMethodChangeRequestUpdateInput, Prisma.PaymentMethodChangeRequestUncheckedUpdateInput>;
|
|
2700
|
+
/**
|
|
2701
|
+
* Choose, which PaymentMethodChangeRequest to update.
|
|
2702
|
+
*/
|
|
2703
|
+
where: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
|
|
2704
|
+
};
|
|
2705
|
+
/**
|
|
2706
|
+
* PaymentMethodChangeRequest updateMany
|
|
2707
|
+
*/
|
|
2708
|
+
export type PaymentMethodChangeRequestUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
2709
|
+
/**
|
|
2710
|
+
* The data used to update PaymentMethodChangeRequests.
|
|
2711
|
+
*/
|
|
2712
|
+
data: Prisma.XOR<Prisma.PaymentMethodChangeRequestUpdateManyMutationInput, Prisma.PaymentMethodChangeRequestUncheckedUpdateManyInput>;
|
|
2713
|
+
/**
|
|
2714
|
+
* Filter which PaymentMethodChangeRequests to update
|
|
2715
|
+
*/
|
|
2716
|
+
where?: Prisma.PaymentMethodChangeRequestWhereInput;
|
|
2717
|
+
/**
|
|
2718
|
+
* Limit how many PaymentMethodChangeRequests to update.
|
|
2719
|
+
*/
|
|
2720
|
+
limit?: number;
|
|
2721
|
+
};
|
|
2722
|
+
/**
|
|
2723
|
+
* PaymentMethodChangeRequest upsert
|
|
2724
|
+
*/
|
|
2725
|
+
export type PaymentMethodChangeRequestUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
2726
|
+
/**
|
|
2727
|
+
* Select specific fields to fetch from the PaymentMethodChangeRequest
|
|
2728
|
+
*/
|
|
2729
|
+
select?: Prisma.PaymentMethodChangeRequestSelect<ExtArgs> | null;
|
|
2730
|
+
/**
|
|
2731
|
+
* Omit specific fields from the PaymentMethodChangeRequest
|
|
2732
|
+
*/
|
|
2733
|
+
omit?: Prisma.PaymentMethodChangeRequestOmit<ExtArgs> | null;
|
|
2734
|
+
/**
|
|
2735
|
+
* Choose, which related nodes to fetch as well
|
|
2736
|
+
*/
|
|
2737
|
+
include?: Prisma.PaymentMethodChangeRequestInclude<ExtArgs> | null;
|
|
2738
|
+
/**
|
|
2739
|
+
* The filter to search for the PaymentMethodChangeRequest to update in case it exists.
|
|
2740
|
+
*/
|
|
2741
|
+
where: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
|
|
2742
|
+
/**
|
|
2743
|
+
* In case the PaymentMethodChangeRequest found by the `where` argument doesn't exist, create a new PaymentMethodChangeRequest with this data.
|
|
2744
|
+
*/
|
|
2745
|
+
create: Prisma.XOR<Prisma.PaymentMethodChangeRequestCreateInput, Prisma.PaymentMethodChangeRequestUncheckedCreateInput>;
|
|
2746
|
+
/**
|
|
2747
|
+
* In case the PaymentMethodChangeRequest was found with the provided `where` argument, update it with this data.
|
|
2748
|
+
*/
|
|
2749
|
+
update: Prisma.XOR<Prisma.PaymentMethodChangeRequestUpdateInput, Prisma.PaymentMethodChangeRequestUncheckedUpdateInput>;
|
|
2750
|
+
};
|
|
2751
|
+
/**
|
|
2752
|
+
* PaymentMethodChangeRequest delete
|
|
2753
|
+
*/
|
|
2754
|
+
export type PaymentMethodChangeRequestDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
2755
|
+
/**
|
|
2756
|
+
* Select specific fields to fetch from the PaymentMethodChangeRequest
|
|
2757
|
+
*/
|
|
2758
|
+
select?: Prisma.PaymentMethodChangeRequestSelect<ExtArgs> | null;
|
|
2759
|
+
/**
|
|
2760
|
+
* Omit specific fields from the PaymentMethodChangeRequest
|
|
2761
|
+
*/
|
|
2762
|
+
omit?: Prisma.PaymentMethodChangeRequestOmit<ExtArgs> | null;
|
|
2763
|
+
/**
|
|
2764
|
+
* Choose, which related nodes to fetch as well
|
|
2765
|
+
*/
|
|
2766
|
+
include?: Prisma.PaymentMethodChangeRequestInclude<ExtArgs> | null;
|
|
2767
|
+
/**
|
|
2768
|
+
* Filter which PaymentMethodChangeRequest to delete.
|
|
2769
|
+
*/
|
|
2770
|
+
where: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
|
|
2771
|
+
};
|
|
2772
|
+
/**
|
|
2773
|
+
* PaymentMethodChangeRequest deleteMany
|
|
2774
|
+
*/
|
|
2775
|
+
export type PaymentMethodChangeRequestDeleteManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
2776
|
+
/**
|
|
2777
|
+
* Filter which PaymentMethodChangeRequests to delete
|
|
2778
|
+
*/
|
|
2779
|
+
where?: Prisma.PaymentMethodChangeRequestWhereInput;
|
|
2780
|
+
/**
|
|
2781
|
+
* Limit how many PaymentMethodChangeRequests to delete.
|
|
2782
|
+
*/
|
|
2783
|
+
limit?: number;
|
|
2784
|
+
};
|
|
2785
|
+
/**
|
|
2786
|
+
* PaymentMethodChangeRequest.reviewer
|
|
2787
|
+
*/
|
|
2788
|
+
export type PaymentMethodChangeRequest$reviewerArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
2789
|
+
/**
|
|
2790
|
+
* Select specific fields to fetch from the User
|
|
2791
|
+
*/
|
|
2792
|
+
select?: Prisma.UserSelect<ExtArgs> | null;
|
|
2793
|
+
/**
|
|
2794
|
+
* Omit specific fields from the User
|
|
2795
|
+
*/
|
|
2796
|
+
omit?: Prisma.UserOmit<ExtArgs> | null;
|
|
2797
|
+
/**
|
|
2798
|
+
* Choose, which related nodes to fetch as well
|
|
2799
|
+
*/
|
|
2800
|
+
include?: Prisma.UserInclude<ExtArgs> | null;
|
|
2801
|
+
where?: Prisma.UserWhereInput;
|
|
2802
|
+
};
|
|
2803
|
+
/**
|
|
2804
|
+
* PaymentMethodChangeRequest without action
|
|
2805
|
+
*/
|
|
2806
|
+
export type PaymentMethodChangeRequestDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
2807
|
+
/**
|
|
2808
|
+
* Select specific fields to fetch from the PaymentMethodChangeRequest
|
|
2809
|
+
*/
|
|
2810
|
+
select?: Prisma.PaymentMethodChangeRequestSelect<ExtArgs> | null;
|
|
2811
|
+
/**
|
|
2812
|
+
* Omit specific fields from the PaymentMethodChangeRequest
|
|
2813
|
+
*/
|
|
2814
|
+
omit?: Prisma.PaymentMethodChangeRequestOmit<ExtArgs> | null;
|
|
2815
|
+
/**
|
|
2816
|
+
* Choose, which related nodes to fetch as well
|
|
2817
|
+
*/
|
|
2818
|
+
include?: Prisma.PaymentMethodChangeRequestInclude<ExtArgs> | null;
|
|
2819
|
+
};
|
|
2820
|
+
export {};
|