@valentine-efagene/qshelter-common 2.0.29 → 2.0.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/dist/generated/client/browser.d.ts +15 -0
  2. package/dist/generated/client/client.d.ts +15 -0
  3. package/dist/generated/client/commonInputTypes.d.ts +408 -48
  4. package/dist/generated/client/enums.d.ts +92 -0
  5. package/dist/generated/client/enums.js +80 -0
  6. package/dist/generated/client/internal/class.d.ts +33 -0
  7. package/dist/generated/client/internal/class.js +2 -2
  8. package/dist/generated/client/internal/prismaNamespace.d.ts +330 -36
  9. package/dist/generated/client/internal/prismaNamespace.js +76 -37
  10. package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +80 -35
  11. package/dist/generated/client/internal/prismaNamespaceBrowser.js +76 -37
  12. package/dist/generated/client/models/Contract.d.ts +152 -148
  13. package/dist/generated/client/models/ContractDocument.d.ts +32 -28
  14. package/dist/generated/client/models/ContractInstallment.d.ts +30 -26
  15. package/dist/generated/client/models/ContractPayment.d.ts +44 -40
  16. package/dist/generated/client/models/ContractPhase.d.ts +539 -121
  17. package/dist/generated/client/models/ContractPhaseStep.d.ts +208 -108
  18. package/dist/generated/client/models/ContractPhaseStepApproval.d.ts +32 -28
  19. package/dist/generated/client/models/ContractPhaseStepDocument.d.ts +1052 -0
  20. package/dist/generated/client/models/ContractPhaseStepDocument.js +1 -0
  21. package/dist/generated/client/models/PaymentMethodPhaseDocument.d.ts +1216 -0
  22. package/dist/generated/client/models/PaymentMethodPhaseDocument.js +1 -0
  23. package/dist/generated/client/models/PaymentMethodPhaseStep.d.ts +1187 -0
  24. package/dist/generated/client/models/PaymentMethodPhaseStep.js +1 -0
  25. package/dist/generated/client/models/PaymentPlan.d.ts +34 -30
  26. package/dist/generated/client/models/PropertyPaymentMethodPhase.d.ts +504 -135
  27. package/dist/generated/client/models/index.d.ts +3 -0
  28. package/dist/generated/client/models/index.js +3 -0
  29. package/dist/generated/client/models.d.ts +3 -0
  30. package/package.json +1 -1
  31. package/prisma/schema.prisma +195 -30
@@ -0,0 +1,1187 @@
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 PaymentMethodPhaseStep
6
+ *
7
+ */
8
+ export type PaymentMethodPhaseStepModel = runtime.Types.Result.DefaultSelection<Prisma.$PaymentMethodPhaseStepPayload>;
9
+ export type AggregatePaymentMethodPhaseStep = {
10
+ _count: PaymentMethodPhaseStepCountAggregateOutputType | null;
11
+ _avg: PaymentMethodPhaseStepAvgAggregateOutputType | null;
12
+ _sum: PaymentMethodPhaseStepSumAggregateOutputType | null;
13
+ _min: PaymentMethodPhaseStepMinAggregateOutputType | null;
14
+ _max: PaymentMethodPhaseStepMaxAggregateOutputType | null;
15
+ };
16
+ export type PaymentMethodPhaseStepAvgAggregateOutputType = {
17
+ order: number | null;
18
+ };
19
+ export type PaymentMethodPhaseStepSumAggregateOutputType = {
20
+ order: number | null;
21
+ };
22
+ export type PaymentMethodPhaseStepMinAggregateOutputType = {
23
+ id: string | null;
24
+ phaseId: string | null;
25
+ name: string | null;
26
+ stepType: $Enums.StepType | null;
27
+ order: number | null;
28
+ createdAt: Date | null;
29
+ updatedAt: Date | null;
30
+ };
31
+ export type PaymentMethodPhaseStepMaxAggregateOutputType = {
32
+ id: string | null;
33
+ phaseId: string | null;
34
+ name: string | null;
35
+ stepType: $Enums.StepType | null;
36
+ order: number | null;
37
+ createdAt: Date | null;
38
+ updatedAt: Date | null;
39
+ };
40
+ export type PaymentMethodPhaseStepCountAggregateOutputType = {
41
+ id: number;
42
+ phaseId: number;
43
+ name: number;
44
+ stepType: number;
45
+ order: number;
46
+ metadata: number;
47
+ createdAt: number;
48
+ updatedAt: number;
49
+ _all: number;
50
+ };
51
+ export type PaymentMethodPhaseStepAvgAggregateInputType = {
52
+ order?: true;
53
+ };
54
+ export type PaymentMethodPhaseStepSumAggregateInputType = {
55
+ order?: true;
56
+ };
57
+ export type PaymentMethodPhaseStepMinAggregateInputType = {
58
+ id?: true;
59
+ phaseId?: true;
60
+ name?: true;
61
+ stepType?: true;
62
+ order?: true;
63
+ createdAt?: true;
64
+ updatedAt?: true;
65
+ };
66
+ export type PaymentMethodPhaseStepMaxAggregateInputType = {
67
+ id?: true;
68
+ phaseId?: true;
69
+ name?: true;
70
+ stepType?: true;
71
+ order?: true;
72
+ createdAt?: true;
73
+ updatedAt?: true;
74
+ };
75
+ export type PaymentMethodPhaseStepCountAggregateInputType = {
76
+ id?: true;
77
+ phaseId?: true;
78
+ name?: true;
79
+ stepType?: true;
80
+ order?: true;
81
+ metadata?: true;
82
+ createdAt?: true;
83
+ updatedAt?: true;
84
+ _all?: true;
85
+ };
86
+ export type PaymentMethodPhaseStepAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
87
+ /**
88
+ * Filter which PaymentMethodPhaseStep to aggregate.
89
+ */
90
+ where?: Prisma.PaymentMethodPhaseStepWhereInput;
91
+ /**
92
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
93
+ *
94
+ * Determine the order of PaymentMethodPhaseSteps to fetch.
95
+ */
96
+ orderBy?: Prisma.PaymentMethodPhaseStepOrderByWithRelationInput | Prisma.PaymentMethodPhaseStepOrderByWithRelationInput[];
97
+ /**
98
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
99
+ *
100
+ * Sets the start position
101
+ */
102
+ cursor?: Prisma.PaymentMethodPhaseStepWhereUniqueInput;
103
+ /**
104
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
105
+ *
106
+ * Take `±n` PaymentMethodPhaseSteps from the position of the cursor.
107
+ */
108
+ take?: number;
109
+ /**
110
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
111
+ *
112
+ * Skip the first `n` PaymentMethodPhaseSteps.
113
+ */
114
+ skip?: number;
115
+ /**
116
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
117
+ *
118
+ * Count returned PaymentMethodPhaseSteps
119
+ **/
120
+ _count?: true | PaymentMethodPhaseStepCountAggregateInputType;
121
+ /**
122
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
123
+ *
124
+ * Select which fields to average
125
+ **/
126
+ _avg?: PaymentMethodPhaseStepAvgAggregateInputType;
127
+ /**
128
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
129
+ *
130
+ * Select which fields to sum
131
+ **/
132
+ _sum?: PaymentMethodPhaseStepSumAggregateInputType;
133
+ /**
134
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
135
+ *
136
+ * Select which fields to find the minimum value
137
+ **/
138
+ _min?: PaymentMethodPhaseStepMinAggregateInputType;
139
+ /**
140
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
141
+ *
142
+ * Select which fields to find the maximum value
143
+ **/
144
+ _max?: PaymentMethodPhaseStepMaxAggregateInputType;
145
+ };
146
+ export type GetPaymentMethodPhaseStepAggregateType<T extends PaymentMethodPhaseStepAggregateArgs> = {
147
+ [P in keyof T & keyof AggregatePaymentMethodPhaseStep]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType<T[P], AggregatePaymentMethodPhaseStep[P]> : Prisma.GetScalarType<T[P], AggregatePaymentMethodPhaseStep[P]>;
148
+ };
149
+ export type PaymentMethodPhaseStepGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
150
+ where?: Prisma.PaymentMethodPhaseStepWhereInput;
151
+ orderBy?: Prisma.PaymentMethodPhaseStepOrderByWithAggregationInput | Prisma.PaymentMethodPhaseStepOrderByWithAggregationInput[];
152
+ by: Prisma.PaymentMethodPhaseStepScalarFieldEnum[] | Prisma.PaymentMethodPhaseStepScalarFieldEnum;
153
+ having?: Prisma.PaymentMethodPhaseStepScalarWhereWithAggregatesInput;
154
+ take?: number;
155
+ skip?: number;
156
+ _count?: PaymentMethodPhaseStepCountAggregateInputType | true;
157
+ _avg?: PaymentMethodPhaseStepAvgAggregateInputType;
158
+ _sum?: PaymentMethodPhaseStepSumAggregateInputType;
159
+ _min?: PaymentMethodPhaseStepMinAggregateInputType;
160
+ _max?: PaymentMethodPhaseStepMaxAggregateInputType;
161
+ };
162
+ export type PaymentMethodPhaseStepGroupByOutputType = {
163
+ id: string;
164
+ phaseId: string;
165
+ name: string;
166
+ stepType: $Enums.StepType;
167
+ order: number;
168
+ metadata: runtime.JsonValue | null;
169
+ createdAt: Date;
170
+ updatedAt: Date;
171
+ _count: PaymentMethodPhaseStepCountAggregateOutputType | null;
172
+ _avg: PaymentMethodPhaseStepAvgAggregateOutputType | null;
173
+ _sum: PaymentMethodPhaseStepSumAggregateOutputType | null;
174
+ _min: PaymentMethodPhaseStepMinAggregateOutputType | null;
175
+ _max: PaymentMethodPhaseStepMaxAggregateOutputType | null;
176
+ };
177
+ type GetPaymentMethodPhaseStepGroupByPayload<T extends PaymentMethodPhaseStepGroupByArgs> = Prisma.PrismaPromise<Array<Prisma.PickEnumerable<PaymentMethodPhaseStepGroupByOutputType, T['by']> & {
178
+ [P in ((keyof T) & (keyof PaymentMethodPhaseStepGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType<T[P], PaymentMethodPhaseStepGroupByOutputType[P]> : Prisma.GetScalarType<T[P], PaymentMethodPhaseStepGroupByOutputType[P]>;
179
+ }>>;
180
+ export type PaymentMethodPhaseStepWhereInput = {
181
+ AND?: Prisma.PaymentMethodPhaseStepWhereInput | Prisma.PaymentMethodPhaseStepWhereInput[];
182
+ OR?: Prisma.PaymentMethodPhaseStepWhereInput[];
183
+ NOT?: Prisma.PaymentMethodPhaseStepWhereInput | Prisma.PaymentMethodPhaseStepWhereInput[];
184
+ id?: Prisma.StringFilter<"PaymentMethodPhaseStep"> | string;
185
+ phaseId?: Prisma.StringFilter<"PaymentMethodPhaseStep"> | string;
186
+ name?: Prisma.StringFilter<"PaymentMethodPhaseStep"> | string;
187
+ stepType?: Prisma.EnumStepTypeFilter<"PaymentMethodPhaseStep"> | $Enums.StepType;
188
+ order?: Prisma.IntFilter<"PaymentMethodPhaseStep"> | number;
189
+ metadata?: Prisma.JsonNullableFilter<"PaymentMethodPhaseStep">;
190
+ createdAt?: Prisma.DateTimeFilter<"PaymentMethodPhaseStep"> | Date | string;
191
+ updatedAt?: Prisma.DateTimeFilter<"PaymentMethodPhaseStep"> | Date | string;
192
+ phase?: Prisma.XOR<Prisma.PropertyPaymentMethodPhaseScalarRelationFilter, Prisma.PropertyPaymentMethodPhaseWhereInput>;
193
+ };
194
+ export type PaymentMethodPhaseStepOrderByWithRelationInput = {
195
+ id?: Prisma.SortOrder;
196
+ phaseId?: Prisma.SortOrder;
197
+ name?: Prisma.SortOrder;
198
+ stepType?: Prisma.SortOrder;
199
+ order?: Prisma.SortOrder;
200
+ metadata?: Prisma.SortOrderInput | Prisma.SortOrder;
201
+ createdAt?: Prisma.SortOrder;
202
+ updatedAt?: Prisma.SortOrder;
203
+ phase?: Prisma.PropertyPaymentMethodPhaseOrderByWithRelationInput;
204
+ _relevance?: Prisma.PaymentMethodPhaseStepOrderByRelevanceInput;
205
+ };
206
+ export type PaymentMethodPhaseStepWhereUniqueInput = Prisma.AtLeast<{
207
+ id?: string;
208
+ AND?: Prisma.PaymentMethodPhaseStepWhereInput | Prisma.PaymentMethodPhaseStepWhereInput[];
209
+ OR?: Prisma.PaymentMethodPhaseStepWhereInput[];
210
+ NOT?: Prisma.PaymentMethodPhaseStepWhereInput | Prisma.PaymentMethodPhaseStepWhereInput[];
211
+ phaseId?: Prisma.StringFilter<"PaymentMethodPhaseStep"> | string;
212
+ name?: Prisma.StringFilter<"PaymentMethodPhaseStep"> | string;
213
+ stepType?: Prisma.EnumStepTypeFilter<"PaymentMethodPhaseStep"> | $Enums.StepType;
214
+ order?: Prisma.IntFilter<"PaymentMethodPhaseStep"> | number;
215
+ metadata?: Prisma.JsonNullableFilter<"PaymentMethodPhaseStep">;
216
+ createdAt?: Prisma.DateTimeFilter<"PaymentMethodPhaseStep"> | Date | string;
217
+ updatedAt?: Prisma.DateTimeFilter<"PaymentMethodPhaseStep"> | Date | string;
218
+ phase?: Prisma.XOR<Prisma.PropertyPaymentMethodPhaseScalarRelationFilter, Prisma.PropertyPaymentMethodPhaseWhereInput>;
219
+ }, "id">;
220
+ export type PaymentMethodPhaseStepOrderByWithAggregationInput = {
221
+ id?: Prisma.SortOrder;
222
+ phaseId?: Prisma.SortOrder;
223
+ name?: Prisma.SortOrder;
224
+ stepType?: Prisma.SortOrder;
225
+ order?: Prisma.SortOrder;
226
+ metadata?: Prisma.SortOrderInput | Prisma.SortOrder;
227
+ createdAt?: Prisma.SortOrder;
228
+ updatedAt?: Prisma.SortOrder;
229
+ _count?: Prisma.PaymentMethodPhaseStepCountOrderByAggregateInput;
230
+ _avg?: Prisma.PaymentMethodPhaseStepAvgOrderByAggregateInput;
231
+ _max?: Prisma.PaymentMethodPhaseStepMaxOrderByAggregateInput;
232
+ _min?: Prisma.PaymentMethodPhaseStepMinOrderByAggregateInput;
233
+ _sum?: Prisma.PaymentMethodPhaseStepSumOrderByAggregateInput;
234
+ };
235
+ export type PaymentMethodPhaseStepScalarWhereWithAggregatesInput = {
236
+ AND?: Prisma.PaymentMethodPhaseStepScalarWhereWithAggregatesInput | Prisma.PaymentMethodPhaseStepScalarWhereWithAggregatesInput[];
237
+ OR?: Prisma.PaymentMethodPhaseStepScalarWhereWithAggregatesInput[];
238
+ NOT?: Prisma.PaymentMethodPhaseStepScalarWhereWithAggregatesInput | Prisma.PaymentMethodPhaseStepScalarWhereWithAggregatesInput[];
239
+ id?: Prisma.StringWithAggregatesFilter<"PaymentMethodPhaseStep"> | string;
240
+ phaseId?: Prisma.StringWithAggregatesFilter<"PaymentMethodPhaseStep"> | string;
241
+ name?: Prisma.StringWithAggregatesFilter<"PaymentMethodPhaseStep"> | string;
242
+ stepType?: Prisma.EnumStepTypeWithAggregatesFilter<"PaymentMethodPhaseStep"> | $Enums.StepType;
243
+ order?: Prisma.IntWithAggregatesFilter<"PaymentMethodPhaseStep"> | number;
244
+ metadata?: Prisma.JsonNullableWithAggregatesFilter<"PaymentMethodPhaseStep">;
245
+ createdAt?: Prisma.DateTimeWithAggregatesFilter<"PaymentMethodPhaseStep"> | Date | string;
246
+ updatedAt?: Prisma.DateTimeWithAggregatesFilter<"PaymentMethodPhaseStep"> | Date | string;
247
+ };
248
+ export type PaymentMethodPhaseStepCreateInput = {
249
+ id?: string;
250
+ name: string;
251
+ stepType: $Enums.StepType;
252
+ order: number;
253
+ metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
254
+ createdAt?: Date | string;
255
+ updatedAt?: Date | string;
256
+ phase: Prisma.PropertyPaymentMethodPhaseCreateNestedOneWithoutStepsInput;
257
+ };
258
+ export type PaymentMethodPhaseStepUncheckedCreateInput = {
259
+ id?: string;
260
+ phaseId: string;
261
+ name: string;
262
+ stepType: $Enums.StepType;
263
+ order: number;
264
+ metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
265
+ createdAt?: Date | string;
266
+ updatedAt?: Date | string;
267
+ };
268
+ export type PaymentMethodPhaseStepUpdateInput = {
269
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
270
+ name?: Prisma.StringFieldUpdateOperationsInput | string;
271
+ stepType?: Prisma.EnumStepTypeFieldUpdateOperationsInput | $Enums.StepType;
272
+ order?: Prisma.IntFieldUpdateOperationsInput | number;
273
+ metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
274
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
275
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
276
+ phase?: Prisma.PropertyPaymentMethodPhaseUpdateOneRequiredWithoutStepsNestedInput;
277
+ };
278
+ export type PaymentMethodPhaseStepUncheckedUpdateInput = {
279
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
280
+ phaseId?: Prisma.StringFieldUpdateOperationsInput | string;
281
+ name?: Prisma.StringFieldUpdateOperationsInput | string;
282
+ stepType?: Prisma.EnumStepTypeFieldUpdateOperationsInput | $Enums.StepType;
283
+ order?: Prisma.IntFieldUpdateOperationsInput | number;
284
+ metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
285
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
286
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
287
+ };
288
+ export type PaymentMethodPhaseStepCreateManyInput = {
289
+ id?: string;
290
+ phaseId: string;
291
+ name: string;
292
+ stepType: $Enums.StepType;
293
+ order: number;
294
+ metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
295
+ createdAt?: Date | string;
296
+ updatedAt?: Date | string;
297
+ };
298
+ export type PaymentMethodPhaseStepUpdateManyMutationInput = {
299
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
300
+ name?: Prisma.StringFieldUpdateOperationsInput | string;
301
+ stepType?: Prisma.EnumStepTypeFieldUpdateOperationsInput | $Enums.StepType;
302
+ order?: Prisma.IntFieldUpdateOperationsInput | number;
303
+ metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
304
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
305
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
306
+ };
307
+ export type PaymentMethodPhaseStepUncheckedUpdateManyInput = {
308
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
309
+ phaseId?: Prisma.StringFieldUpdateOperationsInput | string;
310
+ name?: Prisma.StringFieldUpdateOperationsInput | string;
311
+ stepType?: Prisma.EnumStepTypeFieldUpdateOperationsInput | $Enums.StepType;
312
+ order?: Prisma.IntFieldUpdateOperationsInput | number;
313
+ metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
314
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
315
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
316
+ };
317
+ export type PaymentMethodPhaseStepListRelationFilter = {
318
+ every?: Prisma.PaymentMethodPhaseStepWhereInput;
319
+ some?: Prisma.PaymentMethodPhaseStepWhereInput;
320
+ none?: Prisma.PaymentMethodPhaseStepWhereInput;
321
+ };
322
+ export type PaymentMethodPhaseStepOrderByRelationAggregateInput = {
323
+ _count?: Prisma.SortOrder;
324
+ };
325
+ export type PaymentMethodPhaseStepOrderByRelevanceInput = {
326
+ fields: Prisma.PaymentMethodPhaseStepOrderByRelevanceFieldEnum | Prisma.PaymentMethodPhaseStepOrderByRelevanceFieldEnum[];
327
+ sort: Prisma.SortOrder;
328
+ search: string;
329
+ };
330
+ export type PaymentMethodPhaseStepCountOrderByAggregateInput = {
331
+ id?: Prisma.SortOrder;
332
+ phaseId?: Prisma.SortOrder;
333
+ name?: Prisma.SortOrder;
334
+ stepType?: Prisma.SortOrder;
335
+ order?: Prisma.SortOrder;
336
+ metadata?: Prisma.SortOrder;
337
+ createdAt?: Prisma.SortOrder;
338
+ updatedAt?: Prisma.SortOrder;
339
+ };
340
+ export type PaymentMethodPhaseStepAvgOrderByAggregateInput = {
341
+ order?: Prisma.SortOrder;
342
+ };
343
+ export type PaymentMethodPhaseStepMaxOrderByAggregateInput = {
344
+ id?: Prisma.SortOrder;
345
+ phaseId?: Prisma.SortOrder;
346
+ name?: Prisma.SortOrder;
347
+ stepType?: Prisma.SortOrder;
348
+ order?: Prisma.SortOrder;
349
+ createdAt?: Prisma.SortOrder;
350
+ updatedAt?: Prisma.SortOrder;
351
+ };
352
+ export type PaymentMethodPhaseStepMinOrderByAggregateInput = {
353
+ id?: Prisma.SortOrder;
354
+ phaseId?: Prisma.SortOrder;
355
+ name?: Prisma.SortOrder;
356
+ stepType?: Prisma.SortOrder;
357
+ order?: Prisma.SortOrder;
358
+ createdAt?: Prisma.SortOrder;
359
+ updatedAt?: Prisma.SortOrder;
360
+ };
361
+ export type PaymentMethodPhaseStepSumOrderByAggregateInput = {
362
+ order?: Prisma.SortOrder;
363
+ };
364
+ export type PaymentMethodPhaseStepCreateNestedManyWithoutPhaseInput = {
365
+ create?: Prisma.XOR<Prisma.PaymentMethodPhaseStepCreateWithoutPhaseInput, Prisma.PaymentMethodPhaseStepUncheckedCreateWithoutPhaseInput> | Prisma.PaymentMethodPhaseStepCreateWithoutPhaseInput[] | Prisma.PaymentMethodPhaseStepUncheckedCreateWithoutPhaseInput[];
366
+ connectOrCreate?: Prisma.PaymentMethodPhaseStepCreateOrConnectWithoutPhaseInput | Prisma.PaymentMethodPhaseStepCreateOrConnectWithoutPhaseInput[];
367
+ createMany?: Prisma.PaymentMethodPhaseStepCreateManyPhaseInputEnvelope;
368
+ connect?: Prisma.PaymentMethodPhaseStepWhereUniqueInput | Prisma.PaymentMethodPhaseStepWhereUniqueInput[];
369
+ };
370
+ export type PaymentMethodPhaseStepUncheckedCreateNestedManyWithoutPhaseInput = {
371
+ create?: Prisma.XOR<Prisma.PaymentMethodPhaseStepCreateWithoutPhaseInput, Prisma.PaymentMethodPhaseStepUncheckedCreateWithoutPhaseInput> | Prisma.PaymentMethodPhaseStepCreateWithoutPhaseInput[] | Prisma.PaymentMethodPhaseStepUncheckedCreateWithoutPhaseInput[];
372
+ connectOrCreate?: Prisma.PaymentMethodPhaseStepCreateOrConnectWithoutPhaseInput | Prisma.PaymentMethodPhaseStepCreateOrConnectWithoutPhaseInput[];
373
+ createMany?: Prisma.PaymentMethodPhaseStepCreateManyPhaseInputEnvelope;
374
+ connect?: Prisma.PaymentMethodPhaseStepWhereUniqueInput | Prisma.PaymentMethodPhaseStepWhereUniqueInput[];
375
+ };
376
+ export type PaymentMethodPhaseStepUpdateManyWithoutPhaseNestedInput = {
377
+ create?: Prisma.XOR<Prisma.PaymentMethodPhaseStepCreateWithoutPhaseInput, Prisma.PaymentMethodPhaseStepUncheckedCreateWithoutPhaseInput> | Prisma.PaymentMethodPhaseStepCreateWithoutPhaseInput[] | Prisma.PaymentMethodPhaseStepUncheckedCreateWithoutPhaseInput[];
378
+ connectOrCreate?: Prisma.PaymentMethodPhaseStepCreateOrConnectWithoutPhaseInput | Prisma.PaymentMethodPhaseStepCreateOrConnectWithoutPhaseInput[];
379
+ upsert?: Prisma.PaymentMethodPhaseStepUpsertWithWhereUniqueWithoutPhaseInput | Prisma.PaymentMethodPhaseStepUpsertWithWhereUniqueWithoutPhaseInput[];
380
+ createMany?: Prisma.PaymentMethodPhaseStepCreateManyPhaseInputEnvelope;
381
+ set?: Prisma.PaymentMethodPhaseStepWhereUniqueInput | Prisma.PaymentMethodPhaseStepWhereUniqueInput[];
382
+ disconnect?: Prisma.PaymentMethodPhaseStepWhereUniqueInput | Prisma.PaymentMethodPhaseStepWhereUniqueInput[];
383
+ delete?: Prisma.PaymentMethodPhaseStepWhereUniqueInput | Prisma.PaymentMethodPhaseStepWhereUniqueInput[];
384
+ connect?: Prisma.PaymentMethodPhaseStepWhereUniqueInput | Prisma.PaymentMethodPhaseStepWhereUniqueInput[];
385
+ update?: Prisma.PaymentMethodPhaseStepUpdateWithWhereUniqueWithoutPhaseInput | Prisma.PaymentMethodPhaseStepUpdateWithWhereUniqueWithoutPhaseInput[];
386
+ updateMany?: Prisma.PaymentMethodPhaseStepUpdateManyWithWhereWithoutPhaseInput | Prisma.PaymentMethodPhaseStepUpdateManyWithWhereWithoutPhaseInput[];
387
+ deleteMany?: Prisma.PaymentMethodPhaseStepScalarWhereInput | Prisma.PaymentMethodPhaseStepScalarWhereInput[];
388
+ };
389
+ export type PaymentMethodPhaseStepUncheckedUpdateManyWithoutPhaseNestedInput = {
390
+ create?: Prisma.XOR<Prisma.PaymentMethodPhaseStepCreateWithoutPhaseInput, Prisma.PaymentMethodPhaseStepUncheckedCreateWithoutPhaseInput> | Prisma.PaymentMethodPhaseStepCreateWithoutPhaseInput[] | Prisma.PaymentMethodPhaseStepUncheckedCreateWithoutPhaseInput[];
391
+ connectOrCreate?: Prisma.PaymentMethodPhaseStepCreateOrConnectWithoutPhaseInput | Prisma.PaymentMethodPhaseStepCreateOrConnectWithoutPhaseInput[];
392
+ upsert?: Prisma.PaymentMethodPhaseStepUpsertWithWhereUniqueWithoutPhaseInput | Prisma.PaymentMethodPhaseStepUpsertWithWhereUniqueWithoutPhaseInput[];
393
+ createMany?: Prisma.PaymentMethodPhaseStepCreateManyPhaseInputEnvelope;
394
+ set?: Prisma.PaymentMethodPhaseStepWhereUniqueInput | Prisma.PaymentMethodPhaseStepWhereUniqueInput[];
395
+ disconnect?: Prisma.PaymentMethodPhaseStepWhereUniqueInput | Prisma.PaymentMethodPhaseStepWhereUniqueInput[];
396
+ delete?: Prisma.PaymentMethodPhaseStepWhereUniqueInput | Prisma.PaymentMethodPhaseStepWhereUniqueInput[];
397
+ connect?: Prisma.PaymentMethodPhaseStepWhereUniqueInput | Prisma.PaymentMethodPhaseStepWhereUniqueInput[];
398
+ update?: Prisma.PaymentMethodPhaseStepUpdateWithWhereUniqueWithoutPhaseInput | Prisma.PaymentMethodPhaseStepUpdateWithWhereUniqueWithoutPhaseInput[];
399
+ updateMany?: Prisma.PaymentMethodPhaseStepUpdateManyWithWhereWithoutPhaseInput | Prisma.PaymentMethodPhaseStepUpdateManyWithWhereWithoutPhaseInput[];
400
+ deleteMany?: Prisma.PaymentMethodPhaseStepScalarWhereInput | Prisma.PaymentMethodPhaseStepScalarWhereInput[];
401
+ };
402
+ export type EnumStepTypeFieldUpdateOperationsInput = {
403
+ set?: $Enums.StepType;
404
+ };
405
+ export type PaymentMethodPhaseStepCreateWithoutPhaseInput = {
406
+ id?: string;
407
+ name: string;
408
+ stepType: $Enums.StepType;
409
+ order: number;
410
+ metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
411
+ createdAt?: Date | string;
412
+ updatedAt?: Date | string;
413
+ };
414
+ export type PaymentMethodPhaseStepUncheckedCreateWithoutPhaseInput = {
415
+ id?: string;
416
+ name: string;
417
+ stepType: $Enums.StepType;
418
+ order: number;
419
+ metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
420
+ createdAt?: Date | string;
421
+ updatedAt?: Date | string;
422
+ };
423
+ export type PaymentMethodPhaseStepCreateOrConnectWithoutPhaseInput = {
424
+ where: Prisma.PaymentMethodPhaseStepWhereUniqueInput;
425
+ create: Prisma.XOR<Prisma.PaymentMethodPhaseStepCreateWithoutPhaseInput, Prisma.PaymentMethodPhaseStepUncheckedCreateWithoutPhaseInput>;
426
+ };
427
+ export type PaymentMethodPhaseStepCreateManyPhaseInputEnvelope = {
428
+ data: Prisma.PaymentMethodPhaseStepCreateManyPhaseInput | Prisma.PaymentMethodPhaseStepCreateManyPhaseInput[];
429
+ skipDuplicates?: boolean;
430
+ };
431
+ export type PaymentMethodPhaseStepUpsertWithWhereUniqueWithoutPhaseInput = {
432
+ where: Prisma.PaymentMethodPhaseStepWhereUniqueInput;
433
+ update: Prisma.XOR<Prisma.PaymentMethodPhaseStepUpdateWithoutPhaseInput, Prisma.PaymentMethodPhaseStepUncheckedUpdateWithoutPhaseInput>;
434
+ create: Prisma.XOR<Prisma.PaymentMethodPhaseStepCreateWithoutPhaseInput, Prisma.PaymentMethodPhaseStepUncheckedCreateWithoutPhaseInput>;
435
+ };
436
+ export type PaymentMethodPhaseStepUpdateWithWhereUniqueWithoutPhaseInput = {
437
+ where: Prisma.PaymentMethodPhaseStepWhereUniqueInput;
438
+ data: Prisma.XOR<Prisma.PaymentMethodPhaseStepUpdateWithoutPhaseInput, Prisma.PaymentMethodPhaseStepUncheckedUpdateWithoutPhaseInput>;
439
+ };
440
+ export type PaymentMethodPhaseStepUpdateManyWithWhereWithoutPhaseInput = {
441
+ where: Prisma.PaymentMethodPhaseStepScalarWhereInput;
442
+ data: Prisma.XOR<Prisma.PaymentMethodPhaseStepUpdateManyMutationInput, Prisma.PaymentMethodPhaseStepUncheckedUpdateManyWithoutPhaseInput>;
443
+ };
444
+ export type PaymentMethodPhaseStepScalarWhereInput = {
445
+ AND?: Prisma.PaymentMethodPhaseStepScalarWhereInput | Prisma.PaymentMethodPhaseStepScalarWhereInput[];
446
+ OR?: Prisma.PaymentMethodPhaseStepScalarWhereInput[];
447
+ NOT?: Prisma.PaymentMethodPhaseStepScalarWhereInput | Prisma.PaymentMethodPhaseStepScalarWhereInput[];
448
+ id?: Prisma.StringFilter<"PaymentMethodPhaseStep"> | string;
449
+ phaseId?: Prisma.StringFilter<"PaymentMethodPhaseStep"> | string;
450
+ name?: Prisma.StringFilter<"PaymentMethodPhaseStep"> | string;
451
+ stepType?: Prisma.EnumStepTypeFilter<"PaymentMethodPhaseStep"> | $Enums.StepType;
452
+ order?: Prisma.IntFilter<"PaymentMethodPhaseStep"> | number;
453
+ metadata?: Prisma.JsonNullableFilter<"PaymentMethodPhaseStep">;
454
+ createdAt?: Prisma.DateTimeFilter<"PaymentMethodPhaseStep"> | Date | string;
455
+ updatedAt?: Prisma.DateTimeFilter<"PaymentMethodPhaseStep"> | Date | string;
456
+ };
457
+ export type PaymentMethodPhaseStepCreateManyPhaseInput = {
458
+ id?: string;
459
+ name: string;
460
+ stepType: $Enums.StepType;
461
+ order: number;
462
+ metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
463
+ createdAt?: Date | string;
464
+ updatedAt?: Date | string;
465
+ };
466
+ export type PaymentMethodPhaseStepUpdateWithoutPhaseInput = {
467
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
468
+ name?: Prisma.StringFieldUpdateOperationsInput | string;
469
+ stepType?: Prisma.EnumStepTypeFieldUpdateOperationsInput | $Enums.StepType;
470
+ order?: Prisma.IntFieldUpdateOperationsInput | number;
471
+ metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
472
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
473
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
474
+ };
475
+ export type PaymentMethodPhaseStepUncheckedUpdateWithoutPhaseInput = {
476
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
477
+ name?: Prisma.StringFieldUpdateOperationsInput | string;
478
+ stepType?: Prisma.EnumStepTypeFieldUpdateOperationsInput | $Enums.StepType;
479
+ order?: Prisma.IntFieldUpdateOperationsInput | number;
480
+ metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
481
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
482
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
483
+ };
484
+ export type PaymentMethodPhaseStepUncheckedUpdateManyWithoutPhaseInput = {
485
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
486
+ name?: Prisma.StringFieldUpdateOperationsInput | string;
487
+ stepType?: Prisma.EnumStepTypeFieldUpdateOperationsInput | $Enums.StepType;
488
+ order?: Prisma.IntFieldUpdateOperationsInput | number;
489
+ metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
490
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
491
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
492
+ };
493
+ export type PaymentMethodPhaseStepSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
494
+ id?: boolean;
495
+ phaseId?: boolean;
496
+ name?: boolean;
497
+ stepType?: boolean;
498
+ order?: boolean;
499
+ metadata?: boolean;
500
+ createdAt?: boolean;
501
+ updatedAt?: boolean;
502
+ phase?: boolean | Prisma.PropertyPaymentMethodPhaseDefaultArgs<ExtArgs>;
503
+ }, ExtArgs["result"]["paymentMethodPhaseStep"]>;
504
+ export type PaymentMethodPhaseStepSelectScalar = {
505
+ id?: boolean;
506
+ phaseId?: boolean;
507
+ name?: boolean;
508
+ stepType?: boolean;
509
+ order?: boolean;
510
+ metadata?: boolean;
511
+ createdAt?: boolean;
512
+ updatedAt?: boolean;
513
+ };
514
+ export type PaymentMethodPhaseStepOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "phaseId" | "name" | "stepType" | "order" | "metadata" | "createdAt" | "updatedAt", ExtArgs["result"]["paymentMethodPhaseStep"]>;
515
+ export type PaymentMethodPhaseStepInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
516
+ phase?: boolean | Prisma.PropertyPaymentMethodPhaseDefaultArgs<ExtArgs>;
517
+ };
518
+ export type $PaymentMethodPhaseStepPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
519
+ name: "PaymentMethodPhaseStep";
520
+ objects: {
521
+ phase: Prisma.$PropertyPaymentMethodPhasePayload<ExtArgs>;
522
+ };
523
+ scalars: runtime.Types.Extensions.GetPayloadResult<{
524
+ id: string;
525
+ phaseId: string;
526
+ name: string;
527
+ stepType: $Enums.StepType;
528
+ order: number;
529
+ metadata: runtime.JsonValue | null;
530
+ createdAt: Date;
531
+ updatedAt: Date;
532
+ }, ExtArgs["result"]["paymentMethodPhaseStep"]>;
533
+ composites: {};
534
+ };
535
+ export type PaymentMethodPhaseStepGetPayload<S extends boolean | null | undefined | PaymentMethodPhaseStepDefaultArgs> = runtime.Types.Result.GetResult<Prisma.$PaymentMethodPhaseStepPayload, S>;
536
+ export type PaymentMethodPhaseStepCountArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = Omit<PaymentMethodPhaseStepFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
537
+ select?: PaymentMethodPhaseStepCountAggregateInputType | true;
538
+ };
539
+ export interface PaymentMethodPhaseStepDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
540
+ [K: symbol]: {
541
+ types: Prisma.TypeMap<ExtArgs>['model']['PaymentMethodPhaseStep'];
542
+ meta: {
543
+ name: 'PaymentMethodPhaseStep';
544
+ };
545
+ };
546
+ /**
547
+ * Find zero or one PaymentMethodPhaseStep that matches the filter.
548
+ * @param {PaymentMethodPhaseStepFindUniqueArgs} args - Arguments to find a PaymentMethodPhaseStep
549
+ * @example
550
+ * // Get one PaymentMethodPhaseStep
551
+ * const paymentMethodPhaseStep = await prisma.paymentMethodPhaseStep.findUnique({
552
+ * where: {
553
+ * // ... provide filter here
554
+ * }
555
+ * })
556
+ */
557
+ findUnique<T extends PaymentMethodPhaseStepFindUniqueArgs>(args: Prisma.SelectSubset<T, PaymentMethodPhaseStepFindUniqueArgs<ExtArgs>>): Prisma.Prisma__PaymentMethodPhaseStepClient<runtime.Types.Result.GetResult<Prisma.$PaymentMethodPhaseStepPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
558
+ /**
559
+ * Find one PaymentMethodPhaseStep that matches the filter or throw an error with `error.code='P2025'`
560
+ * if no matches were found.
561
+ * @param {PaymentMethodPhaseStepFindUniqueOrThrowArgs} args - Arguments to find a PaymentMethodPhaseStep
562
+ * @example
563
+ * // Get one PaymentMethodPhaseStep
564
+ * const paymentMethodPhaseStep = await prisma.paymentMethodPhaseStep.findUniqueOrThrow({
565
+ * where: {
566
+ * // ... provide filter here
567
+ * }
568
+ * })
569
+ */
570
+ findUniqueOrThrow<T extends PaymentMethodPhaseStepFindUniqueOrThrowArgs>(args: Prisma.SelectSubset<T, PaymentMethodPhaseStepFindUniqueOrThrowArgs<ExtArgs>>): Prisma.Prisma__PaymentMethodPhaseStepClient<runtime.Types.Result.GetResult<Prisma.$PaymentMethodPhaseStepPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
571
+ /**
572
+ * Find the first PaymentMethodPhaseStep that matches the filter.
573
+ * Note, that providing `undefined` is treated as the value not being there.
574
+ * Read more here: https://pris.ly/d/null-undefined
575
+ * @param {PaymentMethodPhaseStepFindFirstArgs} args - Arguments to find a PaymentMethodPhaseStep
576
+ * @example
577
+ * // Get one PaymentMethodPhaseStep
578
+ * const paymentMethodPhaseStep = await prisma.paymentMethodPhaseStep.findFirst({
579
+ * where: {
580
+ * // ... provide filter here
581
+ * }
582
+ * })
583
+ */
584
+ findFirst<T extends PaymentMethodPhaseStepFindFirstArgs>(args?: Prisma.SelectSubset<T, PaymentMethodPhaseStepFindFirstArgs<ExtArgs>>): Prisma.Prisma__PaymentMethodPhaseStepClient<runtime.Types.Result.GetResult<Prisma.$PaymentMethodPhaseStepPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
585
+ /**
586
+ * Find the first PaymentMethodPhaseStep that matches the filter or
587
+ * throw `PrismaKnownClientError` with `P2025` code if no matches were found.
588
+ * Note, that providing `undefined` is treated as the value not being there.
589
+ * Read more here: https://pris.ly/d/null-undefined
590
+ * @param {PaymentMethodPhaseStepFindFirstOrThrowArgs} args - Arguments to find a PaymentMethodPhaseStep
591
+ * @example
592
+ * // Get one PaymentMethodPhaseStep
593
+ * const paymentMethodPhaseStep = await prisma.paymentMethodPhaseStep.findFirstOrThrow({
594
+ * where: {
595
+ * // ... provide filter here
596
+ * }
597
+ * })
598
+ */
599
+ findFirstOrThrow<T extends PaymentMethodPhaseStepFindFirstOrThrowArgs>(args?: Prisma.SelectSubset<T, PaymentMethodPhaseStepFindFirstOrThrowArgs<ExtArgs>>): Prisma.Prisma__PaymentMethodPhaseStepClient<runtime.Types.Result.GetResult<Prisma.$PaymentMethodPhaseStepPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
600
+ /**
601
+ * Find zero or more PaymentMethodPhaseSteps that matches the filter.
602
+ * Note, that providing `undefined` is treated as the value not being there.
603
+ * Read more here: https://pris.ly/d/null-undefined
604
+ * @param {PaymentMethodPhaseStepFindManyArgs} args - Arguments to filter and select certain fields only.
605
+ * @example
606
+ * // Get all PaymentMethodPhaseSteps
607
+ * const paymentMethodPhaseSteps = await prisma.paymentMethodPhaseStep.findMany()
608
+ *
609
+ * // Get first 10 PaymentMethodPhaseSteps
610
+ * const paymentMethodPhaseSteps = await prisma.paymentMethodPhaseStep.findMany({ take: 10 })
611
+ *
612
+ * // Only select the `id`
613
+ * const paymentMethodPhaseStepWithIdOnly = await prisma.paymentMethodPhaseStep.findMany({ select: { id: true } })
614
+ *
615
+ */
616
+ findMany<T extends PaymentMethodPhaseStepFindManyArgs>(args?: Prisma.SelectSubset<T, PaymentMethodPhaseStepFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PaymentMethodPhaseStepPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>;
617
+ /**
618
+ * Create a PaymentMethodPhaseStep.
619
+ * @param {PaymentMethodPhaseStepCreateArgs} args - Arguments to create a PaymentMethodPhaseStep.
620
+ * @example
621
+ * // Create one PaymentMethodPhaseStep
622
+ * const PaymentMethodPhaseStep = await prisma.paymentMethodPhaseStep.create({
623
+ * data: {
624
+ * // ... data to create a PaymentMethodPhaseStep
625
+ * }
626
+ * })
627
+ *
628
+ */
629
+ create<T extends PaymentMethodPhaseStepCreateArgs>(args: Prisma.SelectSubset<T, PaymentMethodPhaseStepCreateArgs<ExtArgs>>): Prisma.Prisma__PaymentMethodPhaseStepClient<runtime.Types.Result.GetResult<Prisma.$PaymentMethodPhaseStepPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
630
+ /**
631
+ * Create many PaymentMethodPhaseSteps.
632
+ * @param {PaymentMethodPhaseStepCreateManyArgs} args - Arguments to create many PaymentMethodPhaseSteps.
633
+ * @example
634
+ * // Create many PaymentMethodPhaseSteps
635
+ * const paymentMethodPhaseStep = await prisma.paymentMethodPhaseStep.createMany({
636
+ * data: [
637
+ * // ... provide data here
638
+ * ]
639
+ * })
640
+ *
641
+ */
642
+ createMany<T extends PaymentMethodPhaseStepCreateManyArgs>(args?: Prisma.SelectSubset<T, PaymentMethodPhaseStepCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
643
+ /**
644
+ * Delete a PaymentMethodPhaseStep.
645
+ * @param {PaymentMethodPhaseStepDeleteArgs} args - Arguments to delete one PaymentMethodPhaseStep.
646
+ * @example
647
+ * // Delete one PaymentMethodPhaseStep
648
+ * const PaymentMethodPhaseStep = await prisma.paymentMethodPhaseStep.delete({
649
+ * where: {
650
+ * // ... filter to delete one PaymentMethodPhaseStep
651
+ * }
652
+ * })
653
+ *
654
+ */
655
+ delete<T extends PaymentMethodPhaseStepDeleteArgs>(args: Prisma.SelectSubset<T, PaymentMethodPhaseStepDeleteArgs<ExtArgs>>): Prisma.Prisma__PaymentMethodPhaseStepClient<runtime.Types.Result.GetResult<Prisma.$PaymentMethodPhaseStepPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
656
+ /**
657
+ * Update one PaymentMethodPhaseStep.
658
+ * @param {PaymentMethodPhaseStepUpdateArgs} args - Arguments to update one PaymentMethodPhaseStep.
659
+ * @example
660
+ * // Update one PaymentMethodPhaseStep
661
+ * const paymentMethodPhaseStep = await prisma.paymentMethodPhaseStep.update({
662
+ * where: {
663
+ * // ... provide filter here
664
+ * },
665
+ * data: {
666
+ * // ... provide data here
667
+ * }
668
+ * })
669
+ *
670
+ */
671
+ update<T extends PaymentMethodPhaseStepUpdateArgs>(args: Prisma.SelectSubset<T, PaymentMethodPhaseStepUpdateArgs<ExtArgs>>): Prisma.Prisma__PaymentMethodPhaseStepClient<runtime.Types.Result.GetResult<Prisma.$PaymentMethodPhaseStepPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
672
+ /**
673
+ * Delete zero or more PaymentMethodPhaseSteps.
674
+ * @param {PaymentMethodPhaseStepDeleteManyArgs} args - Arguments to filter PaymentMethodPhaseSteps to delete.
675
+ * @example
676
+ * // Delete a few PaymentMethodPhaseSteps
677
+ * const { count } = await prisma.paymentMethodPhaseStep.deleteMany({
678
+ * where: {
679
+ * // ... provide filter here
680
+ * }
681
+ * })
682
+ *
683
+ */
684
+ deleteMany<T extends PaymentMethodPhaseStepDeleteManyArgs>(args?: Prisma.SelectSubset<T, PaymentMethodPhaseStepDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
685
+ /**
686
+ * Update zero or more PaymentMethodPhaseSteps.
687
+ * Note, that providing `undefined` is treated as the value not being there.
688
+ * Read more here: https://pris.ly/d/null-undefined
689
+ * @param {PaymentMethodPhaseStepUpdateManyArgs} args - Arguments to update one or more rows.
690
+ * @example
691
+ * // Update many PaymentMethodPhaseSteps
692
+ * const paymentMethodPhaseStep = await prisma.paymentMethodPhaseStep.updateMany({
693
+ * where: {
694
+ * // ... provide filter here
695
+ * },
696
+ * data: {
697
+ * // ... provide data here
698
+ * }
699
+ * })
700
+ *
701
+ */
702
+ updateMany<T extends PaymentMethodPhaseStepUpdateManyArgs>(args: Prisma.SelectSubset<T, PaymentMethodPhaseStepUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
703
+ /**
704
+ * Create or update one PaymentMethodPhaseStep.
705
+ * @param {PaymentMethodPhaseStepUpsertArgs} args - Arguments to update or create a PaymentMethodPhaseStep.
706
+ * @example
707
+ * // Update or create a PaymentMethodPhaseStep
708
+ * const paymentMethodPhaseStep = await prisma.paymentMethodPhaseStep.upsert({
709
+ * create: {
710
+ * // ... data to create a PaymentMethodPhaseStep
711
+ * },
712
+ * update: {
713
+ * // ... in case it already exists, update
714
+ * },
715
+ * where: {
716
+ * // ... the filter for the PaymentMethodPhaseStep we want to update
717
+ * }
718
+ * })
719
+ */
720
+ upsert<T extends PaymentMethodPhaseStepUpsertArgs>(args: Prisma.SelectSubset<T, PaymentMethodPhaseStepUpsertArgs<ExtArgs>>): Prisma.Prisma__PaymentMethodPhaseStepClient<runtime.Types.Result.GetResult<Prisma.$PaymentMethodPhaseStepPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
721
+ /**
722
+ * Count the number of PaymentMethodPhaseSteps.
723
+ * Note, that providing `undefined` is treated as the value not being there.
724
+ * Read more here: https://pris.ly/d/null-undefined
725
+ * @param {PaymentMethodPhaseStepCountArgs} args - Arguments to filter PaymentMethodPhaseSteps to count.
726
+ * @example
727
+ * // Count the number of PaymentMethodPhaseSteps
728
+ * const count = await prisma.paymentMethodPhaseStep.count({
729
+ * where: {
730
+ * // ... the filter for the PaymentMethodPhaseSteps we want to count
731
+ * }
732
+ * })
733
+ **/
734
+ count<T extends PaymentMethodPhaseStepCountArgs>(args?: Prisma.Subset<T, PaymentMethodPhaseStepCountArgs>): Prisma.PrismaPromise<T extends runtime.Types.Utils.Record<'select', any> ? T['select'] extends true ? number : Prisma.GetScalarType<T['select'], PaymentMethodPhaseStepCountAggregateOutputType> : number>;
735
+ /**
736
+ * Allows you to perform aggregations operations on a PaymentMethodPhaseStep.
737
+ * Note, that providing `undefined` is treated as the value not being there.
738
+ * Read more here: https://pris.ly/d/null-undefined
739
+ * @param {PaymentMethodPhaseStepAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
740
+ * @example
741
+ * // Ordered by age ascending
742
+ * // Where email contains prisma.io
743
+ * // Limited to the 10 users
744
+ * const aggregations = await prisma.user.aggregate({
745
+ * _avg: {
746
+ * age: true,
747
+ * },
748
+ * where: {
749
+ * email: {
750
+ * contains: "prisma.io",
751
+ * },
752
+ * },
753
+ * orderBy: {
754
+ * age: "asc",
755
+ * },
756
+ * take: 10,
757
+ * })
758
+ **/
759
+ aggregate<T extends PaymentMethodPhaseStepAggregateArgs>(args: Prisma.Subset<T, PaymentMethodPhaseStepAggregateArgs>): Prisma.PrismaPromise<GetPaymentMethodPhaseStepAggregateType<T>>;
760
+ /**
761
+ * Group by PaymentMethodPhaseStep.
762
+ * Note, that providing `undefined` is treated as the value not being there.
763
+ * Read more here: https://pris.ly/d/null-undefined
764
+ * @param {PaymentMethodPhaseStepGroupByArgs} args - Group by arguments.
765
+ * @example
766
+ * // Group by city, order by createdAt, get count
767
+ * const result = await prisma.user.groupBy({
768
+ * by: ['city', 'createdAt'],
769
+ * orderBy: {
770
+ * createdAt: true
771
+ * },
772
+ * _count: {
773
+ * _all: true
774
+ * },
775
+ * })
776
+ *
777
+ **/
778
+ groupBy<T extends PaymentMethodPhaseStepGroupByArgs, HasSelectOrTake extends Prisma.Or<Prisma.Extends<'skip', Prisma.Keys<T>>, Prisma.Extends<'take', Prisma.Keys<T>>>, OrderByArg extends Prisma.True extends HasSelectOrTake ? {
779
+ orderBy: PaymentMethodPhaseStepGroupByArgs['orderBy'];
780
+ } : {
781
+ orderBy?: PaymentMethodPhaseStepGroupByArgs['orderBy'];
782
+ }, 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 ? {
783
+ [P in HavingFields]: P extends ByFields ? never : P extends string ? `Error: Field "${P}" used in "having" needs to be provided in "by".` : [
784
+ Error,
785
+ 'Field ',
786
+ P,
787
+ ` in "having" needs to be provided in "by"`
788
+ ];
789
+ }[HavingFields] : 'take' extends Prisma.Keys<T> ? 'orderBy' extends Prisma.Keys<T> ? ByValid extends Prisma.True ? {} : {
790
+ [P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
791
+ }[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 ? {} : {
792
+ [P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
793
+ }[OrderFields] : 'Error: If you provide "skip", you also need to provide "orderBy"' : ByValid extends Prisma.True ? {} : {
794
+ [P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
795
+ }[OrderFields]>(args: Prisma.SubsetIntersection<T, PaymentMethodPhaseStepGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetPaymentMethodPhaseStepGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>;
796
+ /**
797
+ * Fields of the PaymentMethodPhaseStep model
798
+ */
799
+ readonly fields: PaymentMethodPhaseStepFieldRefs;
800
+ }
801
+ /**
802
+ * The delegate class that acts as a "Promise-like" for PaymentMethodPhaseStep.
803
+ * Why is this prefixed with `Prisma__`?
804
+ * Because we want to prevent naming conflicts as mentioned in
805
+ * https://github.com/prisma/prisma-client-js/issues/707
806
+ */
807
+ export interface Prisma__PaymentMethodPhaseStepClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
808
+ readonly [Symbol.toStringTag]: "PrismaPromise";
809
+ phase<T extends Prisma.PropertyPaymentMethodPhaseDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.PropertyPaymentMethodPhaseDefaultArgs<ExtArgs>>): Prisma.Prisma__PropertyPaymentMethodPhaseClient<runtime.Types.Result.GetResult<Prisma.$PropertyPaymentMethodPhasePayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>;
810
+ /**
811
+ * Attaches callbacks for the resolution and/or rejection of the Promise.
812
+ * @param onfulfilled The callback to execute when the Promise is resolved.
813
+ * @param onrejected The callback to execute when the Promise is rejected.
814
+ * @returns A Promise for the completion of which ever callback is executed.
815
+ */
816
+ 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>;
817
+ /**
818
+ * Attaches a callback for only the rejection of the Promise.
819
+ * @param onrejected The callback to execute when the Promise is rejected.
820
+ * @returns A Promise for the completion of the callback.
821
+ */
822
+ catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): runtime.Types.Utils.JsPromise<T | TResult>;
823
+ /**
824
+ * Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
825
+ * resolved value cannot be modified from the callback.
826
+ * @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
827
+ * @returns A Promise for the completion of the callback.
828
+ */
829
+ finally(onfinally?: (() => void) | undefined | null): runtime.Types.Utils.JsPromise<T>;
830
+ }
831
+ /**
832
+ * Fields of the PaymentMethodPhaseStep model
833
+ */
834
+ export interface PaymentMethodPhaseStepFieldRefs {
835
+ readonly id: Prisma.FieldRef<"PaymentMethodPhaseStep", 'String'>;
836
+ readonly phaseId: Prisma.FieldRef<"PaymentMethodPhaseStep", 'String'>;
837
+ readonly name: Prisma.FieldRef<"PaymentMethodPhaseStep", 'String'>;
838
+ readonly stepType: Prisma.FieldRef<"PaymentMethodPhaseStep", 'StepType'>;
839
+ readonly order: Prisma.FieldRef<"PaymentMethodPhaseStep", 'Int'>;
840
+ readonly metadata: Prisma.FieldRef<"PaymentMethodPhaseStep", 'Json'>;
841
+ readonly createdAt: Prisma.FieldRef<"PaymentMethodPhaseStep", 'DateTime'>;
842
+ readonly updatedAt: Prisma.FieldRef<"PaymentMethodPhaseStep", 'DateTime'>;
843
+ }
844
+ /**
845
+ * PaymentMethodPhaseStep findUnique
846
+ */
847
+ export type PaymentMethodPhaseStepFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
848
+ /**
849
+ * Select specific fields to fetch from the PaymentMethodPhaseStep
850
+ */
851
+ select?: Prisma.PaymentMethodPhaseStepSelect<ExtArgs> | null;
852
+ /**
853
+ * Omit specific fields from the PaymentMethodPhaseStep
854
+ */
855
+ omit?: Prisma.PaymentMethodPhaseStepOmit<ExtArgs> | null;
856
+ /**
857
+ * Choose, which related nodes to fetch as well
858
+ */
859
+ include?: Prisma.PaymentMethodPhaseStepInclude<ExtArgs> | null;
860
+ /**
861
+ * Filter, which PaymentMethodPhaseStep to fetch.
862
+ */
863
+ where: Prisma.PaymentMethodPhaseStepWhereUniqueInput;
864
+ };
865
+ /**
866
+ * PaymentMethodPhaseStep findUniqueOrThrow
867
+ */
868
+ export type PaymentMethodPhaseStepFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
869
+ /**
870
+ * Select specific fields to fetch from the PaymentMethodPhaseStep
871
+ */
872
+ select?: Prisma.PaymentMethodPhaseStepSelect<ExtArgs> | null;
873
+ /**
874
+ * Omit specific fields from the PaymentMethodPhaseStep
875
+ */
876
+ omit?: Prisma.PaymentMethodPhaseStepOmit<ExtArgs> | null;
877
+ /**
878
+ * Choose, which related nodes to fetch as well
879
+ */
880
+ include?: Prisma.PaymentMethodPhaseStepInclude<ExtArgs> | null;
881
+ /**
882
+ * Filter, which PaymentMethodPhaseStep to fetch.
883
+ */
884
+ where: Prisma.PaymentMethodPhaseStepWhereUniqueInput;
885
+ };
886
+ /**
887
+ * PaymentMethodPhaseStep findFirst
888
+ */
889
+ export type PaymentMethodPhaseStepFindFirstArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
890
+ /**
891
+ * Select specific fields to fetch from the PaymentMethodPhaseStep
892
+ */
893
+ select?: Prisma.PaymentMethodPhaseStepSelect<ExtArgs> | null;
894
+ /**
895
+ * Omit specific fields from the PaymentMethodPhaseStep
896
+ */
897
+ omit?: Prisma.PaymentMethodPhaseStepOmit<ExtArgs> | null;
898
+ /**
899
+ * Choose, which related nodes to fetch as well
900
+ */
901
+ include?: Prisma.PaymentMethodPhaseStepInclude<ExtArgs> | null;
902
+ /**
903
+ * Filter, which PaymentMethodPhaseStep to fetch.
904
+ */
905
+ where?: Prisma.PaymentMethodPhaseStepWhereInput;
906
+ /**
907
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
908
+ *
909
+ * Determine the order of PaymentMethodPhaseSteps to fetch.
910
+ */
911
+ orderBy?: Prisma.PaymentMethodPhaseStepOrderByWithRelationInput | Prisma.PaymentMethodPhaseStepOrderByWithRelationInput[];
912
+ /**
913
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
914
+ *
915
+ * Sets the position for searching for PaymentMethodPhaseSteps.
916
+ */
917
+ cursor?: Prisma.PaymentMethodPhaseStepWhereUniqueInput;
918
+ /**
919
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
920
+ *
921
+ * Take `±n` PaymentMethodPhaseSteps from the position of the cursor.
922
+ */
923
+ take?: number;
924
+ /**
925
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
926
+ *
927
+ * Skip the first `n` PaymentMethodPhaseSteps.
928
+ */
929
+ skip?: number;
930
+ /**
931
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
932
+ *
933
+ * Filter by unique combinations of PaymentMethodPhaseSteps.
934
+ */
935
+ distinct?: Prisma.PaymentMethodPhaseStepScalarFieldEnum | Prisma.PaymentMethodPhaseStepScalarFieldEnum[];
936
+ };
937
+ /**
938
+ * PaymentMethodPhaseStep findFirstOrThrow
939
+ */
940
+ export type PaymentMethodPhaseStepFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
941
+ /**
942
+ * Select specific fields to fetch from the PaymentMethodPhaseStep
943
+ */
944
+ select?: Prisma.PaymentMethodPhaseStepSelect<ExtArgs> | null;
945
+ /**
946
+ * Omit specific fields from the PaymentMethodPhaseStep
947
+ */
948
+ omit?: Prisma.PaymentMethodPhaseStepOmit<ExtArgs> | null;
949
+ /**
950
+ * Choose, which related nodes to fetch as well
951
+ */
952
+ include?: Prisma.PaymentMethodPhaseStepInclude<ExtArgs> | null;
953
+ /**
954
+ * Filter, which PaymentMethodPhaseStep to fetch.
955
+ */
956
+ where?: Prisma.PaymentMethodPhaseStepWhereInput;
957
+ /**
958
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
959
+ *
960
+ * Determine the order of PaymentMethodPhaseSteps to fetch.
961
+ */
962
+ orderBy?: Prisma.PaymentMethodPhaseStepOrderByWithRelationInput | Prisma.PaymentMethodPhaseStepOrderByWithRelationInput[];
963
+ /**
964
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
965
+ *
966
+ * Sets the position for searching for PaymentMethodPhaseSteps.
967
+ */
968
+ cursor?: Prisma.PaymentMethodPhaseStepWhereUniqueInput;
969
+ /**
970
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
971
+ *
972
+ * Take `±n` PaymentMethodPhaseSteps from the position of the cursor.
973
+ */
974
+ take?: number;
975
+ /**
976
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
977
+ *
978
+ * Skip the first `n` PaymentMethodPhaseSteps.
979
+ */
980
+ skip?: number;
981
+ /**
982
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
983
+ *
984
+ * Filter by unique combinations of PaymentMethodPhaseSteps.
985
+ */
986
+ distinct?: Prisma.PaymentMethodPhaseStepScalarFieldEnum | Prisma.PaymentMethodPhaseStepScalarFieldEnum[];
987
+ };
988
+ /**
989
+ * PaymentMethodPhaseStep findMany
990
+ */
991
+ export type PaymentMethodPhaseStepFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
992
+ /**
993
+ * Select specific fields to fetch from the PaymentMethodPhaseStep
994
+ */
995
+ select?: Prisma.PaymentMethodPhaseStepSelect<ExtArgs> | null;
996
+ /**
997
+ * Omit specific fields from the PaymentMethodPhaseStep
998
+ */
999
+ omit?: Prisma.PaymentMethodPhaseStepOmit<ExtArgs> | null;
1000
+ /**
1001
+ * Choose, which related nodes to fetch as well
1002
+ */
1003
+ include?: Prisma.PaymentMethodPhaseStepInclude<ExtArgs> | null;
1004
+ /**
1005
+ * Filter, which PaymentMethodPhaseSteps to fetch.
1006
+ */
1007
+ where?: Prisma.PaymentMethodPhaseStepWhereInput;
1008
+ /**
1009
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
1010
+ *
1011
+ * Determine the order of PaymentMethodPhaseSteps to fetch.
1012
+ */
1013
+ orderBy?: Prisma.PaymentMethodPhaseStepOrderByWithRelationInput | Prisma.PaymentMethodPhaseStepOrderByWithRelationInput[];
1014
+ /**
1015
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
1016
+ *
1017
+ * Sets the position for listing PaymentMethodPhaseSteps.
1018
+ */
1019
+ cursor?: Prisma.PaymentMethodPhaseStepWhereUniqueInput;
1020
+ /**
1021
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
1022
+ *
1023
+ * Take `±n` PaymentMethodPhaseSteps from the position of the cursor.
1024
+ */
1025
+ take?: number;
1026
+ /**
1027
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
1028
+ *
1029
+ * Skip the first `n` PaymentMethodPhaseSteps.
1030
+ */
1031
+ skip?: number;
1032
+ distinct?: Prisma.PaymentMethodPhaseStepScalarFieldEnum | Prisma.PaymentMethodPhaseStepScalarFieldEnum[];
1033
+ };
1034
+ /**
1035
+ * PaymentMethodPhaseStep create
1036
+ */
1037
+ export type PaymentMethodPhaseStepCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1038
+ /**
1039
+ * Select specific fields to fetch from the PaymentMethodPhaseStep
1040
+ */
1041
+ select?: Prisma.PaymentMethodPhaseStepSelect<ExtArgs> | null;
1042
+ /**
1043
+ * Omit specific fields from the PaymentMethodPhaseStep
1044
+ */
1045
+ omit?: Prisma.PaymentMethodPhaseStepOmit<ExtArgs> | null;
1046
+ /**
1047
+ * Choose, which related nodes to fetch as well
1048
+ */
1049
+ include?: Prisma.PaymentMethodPhaseStepInclude<ExtArgs> | null;
1050
+ /**
1051
+ * The data needed to create a PaymentMethodPhaseStep.
1052
+ */
1053
+ data: Prisma.XOR<Prisma.PaymentMethodPhaseStepCreateInput, Prisma.PaymentMethodPhaseStepUncheckedCreateInput>;
1054
+ };
1055
+ /**
1056
+ * PaymentMethodPhaseStep createMany
1057
+ */
1058
+ export type PaymentMethodPhaseStepCreateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1059
+ /**
1060
+ * The data used to create many PaymentMethodPhaseSteps.
1061
+ */
1062
+ data: Prisma.PaymentMethodPhaseStepCreateManyInput | Prisma.PaymentMethodPhaseStepCreateManyInput[];
1063
+ skipDuplicates?: boolean;
1064
+ };
1065
+ /**
1066
+ * PaymentMethodPhaseStep update
1067
+ */
1068
+ export type PaymentMethodPhaseStepUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1069
+ /**
1070
+ * Select specific fields to fetch from the PaymentMethodPhaseStep
1071
+ */
1072
+ select?: Prisma.PaymentMethodPhaseStepSelect<ExtArgs> | null;
1073
+ /**
1074
+ * Omit specific fields from the PaymentMethodPhaseStep
1075
+ */
1076
+ omit?: Prisma.PaymentMethodPhaseStepOmit<ExtArgs> | null;
1077
+ /**
1078
+ * Choose, which related nodes to fetch as well
1079
+ */
1080
+ include?: Prisma.PaymentMethodPhaseStepInclude<ExtArgs> | null;
1081
+ /**
1082
+ * The data needed to update a PaymentMethodPhaseStep.
1083
+ */
1084
+ data: Prisma.XOR<Prisma.PaymentMethodPhaseStepUpdateInput, Prisma.PaymentMethodPhaseStepUncheckedUpdateInput>;
1085
+ /**
1086
+ * Choose, which PaymentMethodPhaseStep to update.
1087
+ */
1088
+ where: Prisma.PaymentMethodPhaseStepWhereUniqueInput;
1089
+ };
1090
+ /**
1091
+ * PaymentMethodPhaseStep updateMany
1092
+ */
1093
+ export type PaymentMethodPhaseStepUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1094
+ /**
1095
+ * The data used to update PaymentMethodPhaseSteps.
1096
+ */
1097
+ data: Prisma.XOR<Prisma.PaymentMethodPhaseStepUpdateManyMutationInput, Prisma.PaymentMethodPhaseStepUncheckedUpdateManyInput>;
1098
+ /**
1099
+ * Filter which PaymentMethodPhaseSteps to update
1100
+ */
1101
+ where?: Prisma.PaymentMethodPhaseStepWhereInput;
1102
+ /**
1103
+ * Limit how many PaymentMethodPhaseSteps to update.
1104
+ */
1105
+ limit?: number;
1106
+ };
1107
+ /**
1108
+ * PaymentMethodPhaseStep upsert
1109
+ */
1110
+ export type PaymentMethodPhaseStepUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1111
+ /**
1112
+ * Select specific fields to fetch from the PaymentMethodPhaseStep
1113
+ */
1114
+ select?: Prisma.PaymentMethodPhaseStepSelect<ExtArgs> | null;
1115
+ /**
1116
+ * Omit specific fields from the PaymentMethodPhaseStep
1117
+ */
1118
+ omit?: Prisma.PaymentMethodPhaseStepOmit<ExtArgs> | null;
1119
+ /**
1120
+ * Choose, which related nodes to fetch as well
1121
+ */
1122
+ include?: Prisma.PaymentMethodPhaseStepInclude<ExtArgs> | null;
1123
+ /**
1124
+ * The filter to search for the PaymentMethodPhaseStep to update in case it exists.
1125
+ */
1126
+ where: Prisma.PaymentMethodPhaseStepWhereUniqueInput;
1127
+ /**
1128
+ * In case the PaymentMethodPhaseStep found by the `where` argument doesn't exist, create a new PaymentMethodPhaseStep with this data.
1129
+ */
1130
+ create: Prisma.XOR<Prisma.PaymentMethodPhaseStepCreateInput, Prisma.PaymentMethodPhaseStepUncheckedCreateInput>;
1131
+ /**
1132
+ * In case the PaymentMethodPhaseStep was found with the provided `where` argument, update it with this data.
1133
+ */
1134
+ update: Prisma.XOR<Prisma.PaymentMethodPhaseStepUpdateInput, Prisma.PaymentMethodPhaseStepUncheckedUpdateInput>;
1135
+ };
1136
+ /**
1137
+ * PaymentMethodPhaseStep delete
1138
+ */
1139
+ export type PaymentMethodPhaseStepDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1140
+ /**
1141
+ * Select specific fields to fetch from the PaymentMethodPhaseStep
1142
+ */
1143
+ select?: Prisma.PaymentMethodPhaseStepSelect<ExtArgs> | null;
1144
+ /**
1145
+ * Omit specific fields from the PaymentMethodPhaseStep
1146
+ */
1147
+ omit?: Prisma.PaymentMethodPhaseStepOmit<ExtArgs> | null;
1148
+ /**
1149
+ * Choose, which related nodes to fetch as well
1150
+ */
1151
+ include?: Prisma.PaymentMethodPhaseStepInclude<ExtArgs> | null;
1152
+ /**
1153
+ * Filter which PaymentMethodPhaseStep to delete.
1154
+ */
1155
+ where: Prisma.PaymentMethodPhaseStepWhereUniqueInput;
1156
+ };
1157
+ /**
1158
+ * PaymentMethodPhaseStep deleteMany
1159
+ */
1160
+ export type PaymentMethodPhaseStepDeleteManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1161
+ /**
1162
+ * Filter which PaymentMethodPhaseSteps to delete
1163
+ */
1164
+ where?: Prisma.PaymentMethodPhaseStepWhereInput;
1165
+ /**
1166
+ * Limit how many PaymentMethodPhaseSteps to delete.
1167
+ */
1168
+ limit?: number;
1169
+ };
1170
+ /**
1171
+ * PaymentMethodPhaseStep without action
1172
+ */
1173
+ export type PaymentMethodPhaseStepDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1174
+ /**
1175
+ * Select specific fields to fetch from the PaymentMethodPhaseStep
1176
+ */
1177
+ select?: Prisma.PaymentMethodPhaseStepSelect<ExtArgs> | null;
1178
+ /**
1179
+ * Omit specific fields from the PaymentMethodPhaseStep
1180
+ */
1181
+ omit?: Prisma.PaymentMethodPhaseStepOmit<ExtArgs> | null;
1182
+ /**
1183
+ * Choose, which related nodes to fetch as well
1184
+ */
1185
+ include?: Prisma.PaymentMethodPhaseStepInclude<ExtArgs> | null;
1186
+ };
1187
+ export {};