@valentine-efagene/qshelter-common 2.0.86 → 2.0.87
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 +25 -0
- package/dist/generated/client/client.d.ts +25 -0
- package/dist/generated/client/commonInputTypes.d.ts +30 -0
- package/dist/generated/client/enums.d.ts +18 -0
- package/dist/generated/client/enums.js +17 -0
- package/dist/generated/client/internal/class.d.ts +55 -0
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +469 -42
- package/dist/generated/client/internal/prismaNamespace.js +118 -40
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +129 -41
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +118 -40
- package/dist/generated/client/models/Contract.d.ts +303 -1574
- package/dist/generated/client/models/ContractInstallment.d.ts +77 -77
- package/dist/generated/client/models/ContractPhase.d.ts +339 -1376
- package/dist/generated/client/models/DocumentationPhase.d.ts +1649 -0
- package/dist/generated/client/models/DocumentationPhase.js +1 -0
- package/dist/generated/client/models/DocumentationStep.d.ts +126 -387
- package/dist/generated/client/models/PaymentMethodPhaseField.d.ts +1378 -0
- package/dist/generated/client/models/PaymentMethodPhaseField.js +1 -0
- package/dist/generated/client/models/PaymentPhase.d.ts +1566 -0
- package/dist/generated/client/models/PaymentPhase.js +1 -0
- package/dist/generated/client/models/PaymentPlan.d.ts +53 -53
- package/dist/generated/client/models/PropertyPaymentMethodPhase.d.ts +171 -0
- package/dist/generated/client/models/PropertyTransferRequest.d.ts +196 -70
- package/dist/generated/client/models/QuestionnaireField.d.ts +1495 -0
- package/dist/generated/client/models/QuestionnaireField.js +1 -0
- package/dist/generated/client/models/QuestionnairePhase.d.ts +1383 -0
- package/dist/generated/client/models/QuestionnairePhase.js +1 -0
- package/dist/generated/client/models.d.ts +5 -0
- package/package.json +1 -1
|
@@ -0,0 +1,1378 @@
|
|
|
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 PaymentMethodPhaseField
|
|
6
|
+
*
|
|
7
|
+
*/
|
|
8
|
+
export type PaymentMethodPhaseFieldModel = runtime.Types.Result.DefaultSelection<Prisma.$PaymentMethodPhaseFieldPayload>;
|
|
9
|
+
export type AggregatePaymentMethodPhaseField = {
|
|
10
|
+
_count: PaymentMethodPhaseFieldCountAggregateOutputType | null;
|
|
11
|
+
_avg: PaymentMethodPhaseFieldAvgAggregateOutputType | null;
|
|
12
|
+
_sum: PaymentMethodPhaseFieldSumAggregateOutputType | null;
|
|
13
|
+
_min: PaymentMethodPhaseFieldMinAggregateOutputType | null;
|
|
14
|
+
_max: PaymentMethodPhaseFieldMaxAggregateOutputType | null;
|
|
15
|
+
};
|
|
16
|
+
export type PaymentMethodPhaseFieldAvgAggregateOutputType = {
|
|
17
|
+
order: number | null;
|
|
18
|
+
};
|
|
19
|
+
export type PaymentMethodPhaseFieldSumAggregateOutputType = {
|
|
20
|
+
order: number | null;
|
|
21
|
+
};
|
|
22
|
+
export type PaymentMethodPhaseFieldMinAggregateOutputType = {
|
|
23
|
+
id: string | null;
|
|
24
|
+
phaseId: string | null;
|
|
25
|
+
name: string | null;
|
|
26
|
+
label: string | null;
|
|
27
|
+
description: string | null;
|
|
28
|
+
placeholder: string | null;
|
|
29
|
+
fieldType: $Enums.FieldType | null;
|
|
30
|
+
isRequired: boolean | null;
|
|
31
|
+
order: number | null;
|
|
32
|
+
createdAt: Date | null;
|
|
33
|
+
updatedAt: Date | null;
|
|
34
|
+
};
|
|
35
|
+
export type PaymentMethodPhaseFieldMaxAggregateOutputType = {
|
|
36
|
+
id: string | null;
|
|
37
|
+
phaseId: string | null;
|
|
38
|
+
name: string | null;
|
|
39
|
+
label: string | null;
|
|
40
|
+
description: string | null;
|
|
41
|
+
placeholder: string | null;
|
|
42
|
+
fieldType: $Enums.FieldType | null;
|
|
43
|
+
isRequired: boolean | null;
|
|
44
|
+
order: number | null;
|
|
45
|
+
createdAt: Date | null;
|
|
46
|
+
updatedAt: Date | null;
|
|
47
|
+
};
|
|
48
|
+
export type PaymentMethodPhaseFieldCountAggregateOutputType = {
|
|
49
|
+
id: number;
|
|
50
|
+
phaseId: number;
|
|
51
|
+
name: number;
|
|
52
|
+
label: number;
|
|
53
|
+
description: number;
|
|
54
|
+
placeholder: number;
|
|
55
|
+
fieldType: number;
|
|
56
|
+
isRequired: number;
|
|
57
|
+
order: number;
|
|
58
|
+
validation: number;
|
|
59
|
+
displayCondition: number;
|
|
60
|
+
defaultValue: number;
|
|
61
|
+
createdAt: number;
|
|
62
|
+
updatedAt: number;
|
|
63
|
+
_all: number;
|
|
64
|
+
};
|
|
65
|
+
export type PaymentMethodPhaseFieldAvgAggregateInputType = {
|
|
66
|
+
order?: true;
|
|
67
|
+
};
|
|
68
|
+
export type PaymentMethodPhaseFieldSumAggregateInputType = {
|
|
69
|
+
order?: true;
|
|
70
|
+
};
|
|
71
|
+
export type PaymentMethodPhaseFieldMinAggregateInputType = {
|
|
72
|
+
id?: true;
|
|
73
|
+
phaseId?: true;
|
|
74
|
+
name?: true;
|
|
75
|
+
label?: true;
|
|
76
|
+
description?: true;
|
|
77
|
+
placeholder?: true;
|
|
78
|
+
fieldType?: true;
|
|
79
|
+
isRequired?: true;
|
|
80
|
+
order?: true;
|
|
81
|
+
createdAt?: true;
|
|
82
|
+
updatedAt?: true;
|
|
83
|
+
};
|
|
84
|
+
export type PaymentMethodPhaseFieldMaxAggregateInputType = {
|
|
85
|
+
id?: true;
|
|
86
|
+
phaseId?: true;
|
|
87
|
+
name?: true;
|
|
88
|
+
label?: true;
|
|
89
|
+
description?: true;
|
|
90
|
+
placeholder?: true;
|
|
91
|
+
fieldType?: true;
|
|
92
|
+
isRequired?: true;
|
|
93
|
+
order?: true;
|
|
94
|
+
createdAt?: true;
|
|
95
|
+
updatedAt?: true;
|
|
96
|
+
};
|
|
97
|
+
export type PaymentMethodPhaseFieldCountAggregateInputType = {
|
|
98
|
+
id?: true;
|
|
99
|
+
phaseId?: true;
|
|
100
|
+
name?: true;
|
|
101
|
+
label?: true;
|
|
102
|
+
description?: true;
|
|
103
|
+
placeholder?: true;
|
|
104
|
+
fieldType?: true;
|
|
105
|
+
isRequired?: true;
|
|
106
|
+
order?: true;
|
|
107
|
+
validation?: true;
|
|
108
|
+
displayCondition?: true;
|
|
109
|
+
defaultValue?: true;
|
|
110
|
+
createdAt?: true;
|
|
111
|
+
updatedAt?: true;
|
|
112
|
+
_all?: true;
|
|
113
|
+
};
|
|
114
|
+
export type PaymentMethodPhaseFieldAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
115
|
+
/**
|
|
116
|
+
* Filter which PaymentMethodPhaseField to aggregate.
|
|
117
|
+
*/
|
|
118
|
+
where?: Prisma.PaymentMethodPhaseFieldWhereInput;
|
|
119
|
+
/**
|
|
120
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
121
|
+
*
|
|
122
|
+
* Determine the order of PaymentMethodPhaseFields to fetch.
|
|
123
|
+
*/
|
|
124
|
+
orderBy?: Prisma.PaymentMethodPhaseFieldOrderByWithRelationInput | Prisma.PaymentMethodPhaseFieldOrderByWithRelationInput[];
|
|
125
|
+
/**
|
|
126
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
127
|
+
*
|
|
128
|
+
* Sets the start position
|
|
129
|
+
*/
|
|
130
|
+
cursor?: Prisma.PaymentMethodPhaseFieldWhereUniqueInput;
|
|
131
|
+
/**
|
|
132
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
133
|
+
*
|
|
134
|
+
* Take `±n` PaymentMethodPhaseFields from the position of the cursor.
|
|
135
|
+
*/
|
|
136
|
+
take?: number;
|
|
137
|
+
/**
|
|
138
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
139
|
+
*
|
|
140
|
+
* Skip the first `n` PaymentMethodPhaseFields.
|
|
141
|
+
*/
|
|
142
|
+
skip?: number;
|
|
143
|
+
/**
|
|
144
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
145
|
+
*
|
|
146
|
+
* Count returned PaymentMethodPhaseFields
|
|
147
|
+
**/
|
|
148
|
+
_count?: true | PaymentMethodPhaseFieldCountAggregateInputType;
|
|
149
|
+
/**
|
|
150
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
151
|
+
*
|
|
152
|
+
* Select which fields to average
|
|
153
|
+
**/
|
|
154
|
+
_avg?: PaymentMethodPhaseFieldAvgAggregateInputType;
|
|
155
|
+
/**
|
|
156
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
157
|
+
*
|
|
158
|
+
* Select which fields to sum
|
|
159
|
+
**/
|
|
160
|
+
_sum?: PaymentMethodPhaseFieldSumAggregateInputType;
|
|
161
|
+
/**
|
|
162
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
163
|
+
*
|
|
164
|
+
* Select which fields to find the minimum value
|
|
165
|
+
**/
|
|
166
|
+
_min?: PaymentMethodPhaseFieldMinAggregateInputType;
|
|
167
|
+
/**
|
|
168
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
169
|
+
*
|
|
170
|
+
* Select which fields to find the maximum value
|
|
171
|
+
**/
|
|
172
|
+
_max?: PaymentMethodPhaseFieldMaxAggregateInputType;
|
|
173
|
+
};
|
|
174
|
+
export type GetPaymentMethodPhaseFieldAggregateType<T extends PaymentMethodPhaseFieldAggregateArgs> = {
|
|
175
|
+
[P in keyof T & keyof AggregatePaymentMethodPhaseField]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType<T[P], AggregatePaymentMethodPhaseField[P]> : Prisma.GetScalarType<T[P], AggregatePaymentMethodPhaseField[P]>;
|
|
176
|
+
};
|
|
177
|
+
export type PaymentMethodPhaseFieldGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
178
|
+
where?: Prisma.PaymentMethodPhaseFieldWhereInput;
|
|
179
|
+
orderBy?: Prisma.PaymentMethodPhaseFieldOrderByWithAggregationInput | Prisma.PaymentMethodPhaseFieldOrderByWithAggregationInput[];
|
|
180
|
+
by: Prisma.PaymentMethodPhaseFieldScalarFieldEnum[] | Prisma.PaymentMethodPhaseFieldScalarFieldEnum;
|
|
181
|
+
having?: Prisma.PaymentMethodPhaseFieldScalarWhereWithAggregatesInput;
|
|
182
|
+
take?: number;
|
|
183
|
+
skip?: number;
|
|
184
|
+
_count?: PaymentMethodPhaseFieldCountAggregateInputType | true;
|
|
185
|
+
_avg?: PaymentMethodPhaseFieldAvgAggregateInputType;
|
|
186
|
+
_sum?: PaymentMethodPhaseFieldSumAggregateInputType;
|
|
187
|
+
_min?: PaymentMethodPhaseFieldMinAggregateInputType;
|
|
188
|
+
_max?: PaymentMethodPhaseFieldMaxAggregateInputType;
|
|
189
|
+
};
|
|
190
|
+
export type PaymentMethodPhaseFieldGroupByOutputType = {
|
|
191
|
+
id: string;
|
|
192
|
+
phaseId: string;
|
|
193
|
+
name: string;
|
|
194
|
+
label: string;
|
|
195
|
+
description: string | null;
|
|
196
|
+
placeholder: string | null;
|
|
197
|
+
fieldType: $Enums.FieldType;
|
|
198
|
+
isRequired: boolean;
|
|
199
|
+
order: number;
|
|
200
|
+
validation: runtime.JsonValue | null;
|
|
201
|
+
displayCondition: runtime.JsonValue | null;
|
|
202
|
+
defaultValue: runtime.JsonValue | null;
|
|
203
|
+
createdAt: Date;
|
|
204
|
+
updatedAt: Date;
|
|
205
|
+
_count: PaymentMethodPhaseFieldCountAggregateOutputType | null;
|
|
206
|
+
_avg: PaymentMethodPhaseFieldAvgAggregateOutputType | null;
|
|
207
|
+
_sum: PaymentMethodPhaseFieldSumAggregateOutputType | null;
|
|
208
|
+
_min: PaymentMethodPhaseFieldMinAggregateOutputType | null;
|
|
209
|
+
_max: PaymentMethodPhaseFieldMaxAggregateOutputType | null;
|
|
210
|
+
};
|
|
211
|
+
type GetPaymentMethodPhaseFieldGroupByPayload<T extends PaymentMethodPhaseFieldGroupByArgs> = Prisma.PrismaPromise<Array<Prisma.PickEnumerable<PaymentMethodPhaseFieldGroupByOutputType, T['by']> & {
|
|
212
|
+
[P in ((keyof T) & (keyof PaymentMethodPhaseFieldGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType<T[P], PaymentMethodPhaseFieldGroupByOutputType[P]> : Prisma.GetScalarType<T[P], PaymentMethodPhaseFieldGroupByOutputType[P]>;
|
|
213
|
+
}>>;
|
|
214
|
+
export type PaymentMethodPhaseFieldWhereInput = {
|
|
215
|
+
AND?: Prisma.PaymentMethodPhaseFieldWhereInput | Prisma.PaymentMethodPhaseFieldWhereInput[];
|
|
216
|
+
OR?: Prisma.PaymentMethodPhaseFieldWhereInput[];
|
|
217
|
+
NOT?: Prisma.PaymentMethodPhaseFieldWhereInput | Prisma.PaymentMethodPhaseFieldWhereInput[];
|
|
218
|
+
id?: Prisma.StringFilter<"PaymentMethodPhaseField"> | string;
|
|
219
|
+
phaseId?: Prisma.StringFilter<"PaymentMethodPhaseField"> | string;
|
|
220
|
+
name?: Prisma.StringFilter<"PaymentMethodPhaseField"> | string;
|
|
221
|
+
label?: Prisma.StringFilter<"PaymentMethodPhaseField"> | string;
|
|
222
|
+
description?: Prisma.StringNullableFilter<"PaymentMethodPhaseField"> | string | null;
|
|
223
|
+
placeholder?: Prisma.StringNullableFilter<"PaymentMethodPhaseField"> | string | null;
|
|
224
|
+
fieldType?: Prisma.EnumFieldTypeFilter<"PaymentMethodPhaseField"> | $Enums.FieldType;
|
|
225
|
+
isRequired?: Prisma.BoolFilter<"PaymentMethodPhaseField"> | boolean;
|
|
226
|
+
order?: Prisma.IntFilter<"PaymentMethodPhaseField"> | number;
|
|
227
|
+
validation?: Prisma.JsonNullableFilter<"PaymentMethodPhaseField">;
|
|
228
|
+
displayCondition?: Prisma.JsonNullableFilter<"PaymentMethodPhaseField">;
|
|
229
|
+
defaultValue?: Prisma.JsonNullableFilter<"PaymentMethodPhaseField">;
|
|
230
|
+
createdAt?: Prisma.DateTimeFilter<"PaymentMethodPhaseField"> | Date | string;
|
|
231
|
+
updatedAt?: Prisma.DateTimeFilter<"PaymentMethodPhaseField"> | Date | string;
|
|
232
|
+
phase?: Prisma.XOR<Prisma.PropertyPaymentMethodPhaseScalarRelationFilter, Prisma.PropertyPaymentMethodPhaseWhereInput>;
|
|
233
|
+
};
|
|
234
|
+
export type PaymentMethodPhaseFieldOrderByWithRelationInput = {
|
|
235
|
+
id?: Prisma.SortOrder;
|
|
236
|
+
phaseId?: Prisma.SortOrder;
|
|
237
|
+
name?: Prisma.SortOrder;
|
|
238
|
+
label?: Prisma.SortOrder;
|
|
239
|
+
description?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
240
|
+
placeholder?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
241
|
+
fieldType?: Prisma.SortOrder;
|
|
242
|
+
isRequired?: Prisma.SortOrder;
|
|
243
|
+
order?: Prisma.SortOrder;
|
|
244
|
+
validation?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
245
|
+
displayCondition?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
246
|
+
defaultValue?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
247
|
+
createdAt?: Prisma.SortOrder;
|
|
248
|
+
updatedAt?: Prisma.SortOrder;
|
|
249
|
+
phase?: Prisma.PropertyPaymentMethodPhaseOrderByWithRelationInput;
|
|
250
|
+
_relevance?: Prisma.PaymentMethodPhaseFieldOrderByRelevanceInput;
|
|
251
|
+
};
|
|
252
|
+
export type PaymentMethodPhaseFieldWhereUniqueInput = Prisma.AtLeast<{
|
|
253
|
+
id?: string;
|
|
254
|
+
phaseId_name?: Prisma.PaymentMethodPhaseFieldPhaseIdNameCompoundUniqueInput;
|
|
255
|
+
AND?: Prisma.PaymentMethodPhaseFieldWhereInput | Prisma.PaymentMethodPhaseFieldWhereInput[];
|
|
256
|
+
OR?: Prisma.PaymentMethodPhaseFieldWhereInput[];
|
|
257
|
+
NOT?: Prisma.PaymentMethodPhaseFieldWhereInput | Prisma.PaymentMethodPhaseFieldWhereInput[];
|
|
258
|
+
phaseId?: Prisma.StringFilter<"PaymentMethodPhaseField"> | string;
|
|
259
|
+
name?: Prisma.StringFilter<"PaymentMethodPhaseField"> | string;
|
|
260
|
+
label?: Prisma.StringFilter<"PaymentMethodPhaseField"> | string;
|
|
261
|
+
description?: Prisma.StringNullableFilter<"PaymentMethodPhaseField"> | string | null;
|
|
262
|
+
placeholder?: Prisma.StringNullableFilter<"PaymentMethodPhaseField"> | string | null;
|
|
263
|
+
fieldType?: Prisma.EnumFieldTypeFilter<"PaymentMethodPhaseField"> | $Enums.FieldType;
|
|
264
|
+
isRequired?: Prisma.BoolFilter<"PaymentMethodPhaseField"> | boolean;
|
|
265
|
+
order?: Prisma.IntFilter<"PaymentMethodPhaseField"> | number;
|
|
266
|
+
validation?: Prisma.JsonNullableFilter<"PaymentMethodPhaseField">;
|
|
267
|
+
displayCondition?: Prisma.JsonNullableFilter<"PaymentMethodPhaseField">;
|
|
268
|
+
defaultValue?: Prisma.JsonNullableFilter<"PaymentMethodPhaseField">;
|
|
269
|
+
createdAt?: Prisma.DateTimeFilter<"PaymentMethodPhaseField"> | Date | string;
|
|
270
|
+
updatedAt?: Prisma.DateTimeFilter<"PaymentMethodPhaseField"> | Date | string;
|
|
271
|
+
phase?: Prisma.XOR<Prisma.PropertyPaymentMethodPhaseScalarRelationFilter, Prisma.PropertyPaymentMethodPhaseWhereInput>;
|
|
272
|
+
}, "id" | "phaseId_name">;
|
|
273
|
+
export type PaymentMethodPhaseFieldOrderByWithAggregationInput = {
|
|
274
|
+
id?: Prisma.SortOrder;
|
|
275
|
+
phaseId?: Prisma.SortOrder;
|
|
276
|
+
name?: Prisma.SortOrder;
|
|
277
|
+
label?: Prisma.SortOrder;
|
|
278
|
+
description?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
279
|
+
placeholder?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
280
|
+
fieldType?: Prisma.SortOrder;
|
|
281
|
+
isRequired?: Prisma.SortOrder;
|
|
282
|
+
order?: Prisma.SortOrder;
|
|
283
|
+
validation?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
284
|
+
displayCondition?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
285
|
+
defaultValue?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
286
|
+
createdAt?: Prisma.SortOrder;
|
|
287
|
+
updatedAt?: Prisma.SortOrder;
|
|
288
|
+
_count?: Prisma.PaymentMethodPhaseFieldCountOrderByAggregateInput;
|
|
289
|
+
_avg?: Prisma.PaymentMethodPhaseFieldAvgOrderByAggregateInput;
|
|
290
|
+
_max?: Prisma.PaymentMethodPhaseFieldMaxOrderByAggregateInput;
|
|
291
|
+
_min?: Prisma.PaymentMethodPhaseFieldMinOrderByAggregateInput;
|
|
292
|
+
_sum?: Prisma.PaymentMethodPhaseFieldSumOrderByAggregateInput;
|
|
293
|
+
};
|
|
294
|
+
export type PaymentMethodPhaseFieldScalarWhereWithAggregatesInput = {
|
|
295
|
+
AND?: Prisma.PaymentMethodPhaseFieldScalarWhereWithAggregatesInput | Prisma.PaymentMethodPhaseFieldScalarWhereWithAggregatesInput[];
|
|
296
|
+
OR?: Prisma.PaymentMethodPhaseFieldScalarWhereWithAggregatesInput[];
|
|
297
|
+
NOT?: Prisma.PaymentMethodPhaseFieldScalarWhereWithAggregatesInput | Prisma.PaymentMethodPhaseFieldScalarWhereWithAggregatesInput[];
|
|
298
|
+
id?: Prisma.StringWithAggregatesFilter<"PaymentMethodPhaseField"> | string;
|
|
299
|
+
phaseId?: Prisma.StringWithAggregatesFilter<"PaymentMethodPhaseField"> | string;
|
|
300
|
+
name?: Prisma.StringWithAggregatesFilter<"PaymentMethodPhaseField"> | string;
|
|
301
|
+
label?: Prisma.StringWithAggregatesFilter<"PaymentMethodPhaseField"> | string;
|
|
302
|
+
description?: Prisma.StringNullableWithAggregatesFilter<"PaymentMethodPhaseField"> | string | null;
|
|
303
|
+
placeholder?: Prisma.StringNullableWithAggregatesFilter<"PaymentMethodPhaseField"> | string | null;
|
|
304
|
+
fieldType?: Prisma.EnumFieldTypeWithAggregatesFilter<"PaymentMethodPhaseField"> | $Enums.FieldType;
|
|
305
|
+
isRequired?: Prisma.BoolWithAggregatesFilter<"PaymentMethodPhaseField"> | boolean;
|
|
306
|
+
order?: Prisma.IntWithAggregatesFilter<"PaymentMethodPhaseField"> | number;
|
|
307
|
+
validation?: Prisma.JsonNullableWithAggregatesFilter<"PaymentMethodPhaseField">;
|
|
308
|
+
displayCondition?: Prisma.JsonNullableWithAggregatesFilter<"PaymentMethodPhaseField">;
|
|
309
|
+
defaultValue?: Prisma.JsonNullableWithAggregatesFilter<"PaymentMethodPhaseField">;
|
|
310
|
+
createdAt?: Prisma.DateTimeWithAggregatesFilter<"PaymentMethodPhaseField"> | Date | string;
|
|
311
|
+
updatedAt?: Prisma.DateTimeWithAggregatesFilter<"PaymentMethodPhaseField"> | Date | string;
|
|
312
|
+
};
|
|
313
|
+
export type PaymentMethodPhaseFieldCreateInput = {
|
|
314
|
+
id?: string;
|
|
315
|
+
name: string;
|
|
316
|
+
label: string;
|
|
317
|
+
description?: string | null;
|
|
318
|
+
placeholder?: string | null;
|
|
319
|
+
fieldType: $Enums.FieldType;
|
|
320
|
+
isRequired?: boolean;
|
|
321
|
+
order: number;
|
|
322
|
+
validation?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
323
|
+
displayCondition?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
324
|
+
defaultValue?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
325
|
+
createdAt?: Date | string;
|
|
326
|
+
updatedAt?: Date | string;
|
|
327
|
+
phase: Prisma.PropertyPaymentMethodPhaseCreateNestedOneWithoutQuestionnaireFieldsInput;
|
|
328
|
+
};
|
|
329
|
+
export type PaymentMethodPhaseFieldUncheckedCreateInput = {
|
|
330
|
+
id?: string;
|
|
331
|
+
phaseId: string;
|
|
332
|
+
name: string;
|
|
333
|
+
label: string;
|
|
334
|
+
description?: string | null;
|
|
335
|
+
placeholder?: string | null;
|
|
336
|
+
fieldType: $Enums.FieldType;
|
|
337
|
+
isRequired?: boolean;
|
|
338
|
+
order: number;
|
|
339
|
+
validation?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
340
|
+
displayCondition?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
341
|
+
defaultValue?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
342
|
+
createdAt?: Date | string;
|
|
343
|
+
updatedAt?: Date | string;
|
|
344
|
+
};
|
|
345
|
+
export type PaymentMethodPhaseFieldUpdateInput = {
|
|
346
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
347
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
348
|
+
label?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
349
|
+
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
350
|
+
placeholder?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
351
|
+
fieldType?: Prisma.EnumFieldTypeFieldUpdateOperationsInput | $Enums.FieldType;
|
|
352
|
+
isRequired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
353
|
+
order?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
354
|
+
validation?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
355
|
+
displayCondition?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
356
|
+
defaultValue?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
357
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
358
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
359
|
+
phase?: Prisma.PropertyPaymentMethodPhaseUpdateOneRequiredWithoutQuestionnaireFieldsNestedInput;
|
|
360
|
+
};
|
|
361
|
+
export type PaymentMethodPhaseFieldUncheckedUpdateInput = {
|
|
362
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
363
|
+
phaseId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
364
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
365
|
+
label?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
366
|
+
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
367
|
+
placeholder?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
368
|
+
fieldType?: Prisma.EnumFieldTypeFieldUpdateOperationsInput | $Enums.FieldType;
|
|
369
|
+
isRequired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
370
|
+
order?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
371
|
+
validation?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
372
|
+
displayCondition?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
373
|
+
defaultValue?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
374
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
375
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
376
|
+
};
|
|
377
|
+
export type PaymentMethodPhaseFieldCreateManyInput = {
|
|
378
|
+
id?: string;
|
|
379
|
+
phaseId: string;
|
|
380
|
+
name: string;
|
|
381
|
+
label: string;
|
|
382
|
+
description?: string | null;
|
|
383
|
+
placeholder?: string | null;
|
|
384
|
+
fieldType: $Enums.FieldType;
|
|
385
|
+
isRequired?: boolean;
|
|
386
|
+
order: number;
|
|
387
|
+
validation?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
388
|
+
displayCondition?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
389
|
+
defaultValue?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
390
|
+
createdAt?: Date | string;
|
|
391
|
+
updatedAt?: Date | string;
|
|
392
|
+
};
|
|
393
|
+
export type PaymentMethodPhaseFieldUpdateManyMutationInput = {
|
|
394
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
395
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
396
|
+
label?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
397
|
+
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
398
|
+
placeholder?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
399
|
+
fieldType?: Prisma.EnumFieldTypeFieldUpdateOperationsInput | $Enums.FieldType;
|
|
400
|
+
isRequired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
401
|
+
order?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
402
|
+
validation?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
403
|
+
displayCondition?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
404
|
+
defaultValue?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
405
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
406
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
407
|
+
};
|
|
408
|
+
export type PaymentMethodPhaseFieldUncheckedUpdateManyInput = {
|
|
409
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
410
|
+
phaseId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
411
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
412
|
+
label?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
413
|
+
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
414
|
+
placeholder?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
415
|
+
fieldType?: Prisma.EnumFieldTypeFieldUpdateOperationsInput | $Enums.FieldType;
|
|
416
|
+
isRequired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
417
|
+
order?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
418
|
+
validation?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
419
|
+
displayCondition?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
420
|
+
defaultValue?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
421
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
422
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
423
|
+
};
|
|
424
|
+
export type PaymentMethodPhaseFieldListRelationFilter = {
|
|
425
|
+
every?: Prisma.PaymentMethodPhaseFieldWhereInput;
|
|
426
|
+
some?: Prisma.PaymentMethodPhaseFieldWhereInput;
|
|
427
|
+
none?: Prisma.PaymentMethodPhaseFieldWhereInput;
|
|
428
|
+
};
|
|
429
|
+
export type PaymentMethodPhaseFieldOrderByRelationAggregateInput = {
|
|
430
|
+
_count?: Prisma.SortOrder;
|
|
431
|
+
};
|
|
432
|
+
export type PaymentMethodPhaseFieldOrderByRelevanceInput = {
|
|
433
|
+
fields: Prisma.PaymentMethodPhaseFieldOrderByRelevanceFieldEnum | Prisma.PaymentMethodPhaseFieldOrderByRelevanceFieldEnum[];
|
|
434
|
+
sort: Prisma.SortOrder;
|
|
435
|
+
search: string;
|
|
436
|
+
};
|
|
437
|
+
export type PaymentMethodPhaseFieldPhaseIdNameCompoundUniqueInput = {
|
|
438
|
+
phaseId: string;
|
|
439
|
+
name: string;
|
|
440
|
+
};
|
|
441
|
+
export type PaymentMethodPhaseFieldCountOrderByAggregateInput = {
|
|
442
|
+
id?: Prisma.SortOrder;
|
|
443
|
+
phaseId?: Prisma.SortOrder;
|
|
444
|
+
name?: Prisma.SortOrder;
|
|
445
|
+
label?: Prisma.SortOrder;
|
|
446
|
+
description?: Prisma.SortOrder;
|
|
447
|
+
placeholder?: Prisma.SortOrder;
|
|
448
|
+
fieldType?: Prisma.SortOrder;
|
|
449
|
+
isRequired?: Prisma.SortOrder;
|
|
450
|
+
order?: Prisma.SortOrder;
|
|
451
|
+
validation?: Prisma.SortOrder;
|
|
452
|
+
displayCondition?: Prisma.SortOrder;
|
|
453
|
+
defaultValue?: Prisma.SortOrder;
|
|
454
|
+
createdAt?: Prisma.SortOrder;
|
|
455
|
+
updatedAt?: Prisma.SortOrder;
|
|
456
|
+
};
|
|
457
|
+
export type PaymentMethodPhaseFieldAvgOrderByAggregateInput = {
|
|
458
|
+
order?: Prisma.SortOrder;
|
|
459
|
+
};
|
|
460
|
+
export type PaymentMethodPhaseFieldMaxOrderByAggregateInput = {
|
|
461
|
+
id?: Prisma.SortOrder;
|
|
462
|
+
phaseId?: Prisma.SortOrder;
|
|
463
|
+
name?: Prisma.SortOrder;
|
|
464
|
+
label?: Prisma.SortOrder;
|
|
465
|
+
description?: Prisma.SortOrder;
|
|
466
|
+
placeholder?: Prisma.SortOrder;
|
|
467
|
+
fieldType?: Prisma.SortOrder;
|
|
468
|
+
isRequired?: Prisma.SortOrder;
|
|
469
|
+
order?: Prisma.SortOrder;
|
|
470
|
+
createdAt?: Prisma.SortOrder;
|
|
471
|
+
updatedAt?: Prisma.SortOrder;
|
|
472
|
+
};
|
|
473
|
+
export type PaymentMethodPhaseFieldMinOrderByAggregateInput = {
|
|
474
|
+
id?: Prisma.SortOrder;
|
|
475
|
+
phaseId?: Prisma.SortOrder;
|
|
476
|
+
name?: Prisma.SortOrder;
|
|
477
|
+
label?: Prisma.SortOrder;
|
|
478
|
+
description?: Prisma.SortOrder;
|
|
479
|
+
placeholder?: Prisma.SortOrder;
|
|
480
|
+
fieldType?: Prisma.SortOrder;
|
|
481
|
+
isRequired?: Prisma.SortOrder;
|
|
482
|
+
order?: Prisma.SortOrder;
|
|
483
|
+
createdAt?: Prisma.SortOrder;
|
|
484
|
+
updatedAt?: Prisma.SortOrder;
|
|
485
|
+
};
|
|
486
|
+
export type PaymentMethodPhaseFieldSumOrderByAggregateInput = {
|
|
487
|
+
order?: Prisma.SortOrder;
|
|
488
|
+
};
|
|
489
|
+
export type PaymentMethodPhaseFieldCreateNestedManyWithoutPhaseInput = {
|
|
490
|
+
create?: Prisma.XOR<Prisma.PaymentMethodPhaseFieldCreateWithoutPhaseInput, Prisma.PaymentMethodPhaseFieldUncheckedCreateWithoutPhaseInput> | Prisma.PaymentMethodPhaseFieldCreateWithoutPhaseInput[] | Prisma.PaymentMethodPhaseFieldUncheckedCreateWithoutPhaseInput[];
|
|
491
|
+
connectOrCreate?: Prisma.PaymentMethodPhaseFieldCreateOrConnectWithoutPhaseInput | Prisma.PaymentMethodPhaseFieldCreateOrConnectWithoutPhaseInput[];
|
|
492
|
+
createMany?: Prisma.PaymentMethodPhaseFieldCreateManyPhaseInputEnvelope;
|
|
493
|
+
connect?: Prisma.PaymentMethodPhaseFieldWhereUniqueInput | Prisma.PaymentMethodPhaseFieldWhereUniqueInput[];
|
|
494
|
+
};
|
|
495
|
+
export type PaymentMethodPhaseFieldUncheckedCreateNestedManyWithoutPhaseInput = {
|
|
496
|
+
create?: Prisma.XOR<Prisma.PaymentMethodPhaseFieldCreateWithoutPhaseInput, Prisma.PaymentMethodPhaseFieldUncheckedCreateWithoutPhaseInput> | Prisma.PaymentMethodPhaseFieldCreateWithoutPhaseInput[] | Prisma.PaymentMethodPhaseFieldUncheckedCreateWithoutPhaseInput[];
|
|
497
|
+
connectOrCreate?: Prisma.PaymentMethodPhaseFieldCreateOrConnectWithoutPhaseInput | Prisma.PaymentMethodPhaseFieldCreateOrConnectWithoutPhaseInput[];
|
|
498
|
+
createMany?: Prisma.PaymentMethodPhaseFieldCreateManyPhaseInputEnvelope;
|
|
499
|
+
connect?: Prisma.PaymentMethodPhaseFieldWhereUniqueInput | Prisma.PaymentMethodPhaseFieldWhereUniqueInput[];
|
|
500
|
+
};
|
|
501
|
+
export type PaymentMethodPhaseFieldUpdateManyWithoutPhaseNestedInput = {
|
|
502
|
+
create?: Prisma.XOR<Prisma.PaymentMethodPhaseFieldCreateWithoutPhaseInput, Prisma.PaymentMethodPhaseFieldUncheckedCreateWithoutPhaseInput> | Prisma.PaymentMethodPhaseFieldCreateWithoutPhaseInput[] | Prisma.PaymentMethodPhaseFieldUncheckedCreateWithoutPhaseInput[];
|
|
503
|
+
connectOrCreate?: Prisma.PaymentMethodPhaseFieldCreateOrConnectWithoutPhaseInput | Prisma.PaymentMethodPhaseFieldCreateOrConnectWithoutPhaseInput[];
|
|
504
|
+
upsert?: Prisma.PaymentMethodPhaseFieldUpsertWithWhereUniqueWithoutPhaseInput | Prisma.PaymentMethodPhaseFieldUpsertWithWhereUniqueWithoutPhaseInput[];
|
|
505
|
+
createMany?: Prisma.PaymentMethodPhaseFieldCreateManyPhaseInputEnvelope;
|
|
506
|
+
set?: Prisma.PaymentMethodPhaseFieldWhereUniqueInput | Prisma.PaymentMethodPhaseFieldWhereUniqueInput[];
|
|
507
|
+
disconnect?: Prisma.PaymentMethodPhaseFieldWhereUniqueInput | Prisma.PaymentMethodPhaseFieldWhereUniqueInput[];
|
|
508
|
+
delete?: Prisma.PaymentMethodPhaseFieldWhereUniqueInput | Prisma.PaymentMethodPhaseFieldWhereUniqueInput[];
|
|
509
|
+
connect?: Prisma.PaymentMethodPhaseFieldWhereUniqueInput | Prisma.PaymentMethodPhaseFieldWhereUniqueInput[];
|
|
510
|
+
update?: Prisma.PaymentMethodPhaseFieldUpdateWithWhereUniqueWithoutPhaseInput | Prisma.PaymentMethodPhaseFieldUpdateWithWhereUniqueWithoutPhaseInput[];
|
|
511
|
+
updateMany?: Prisma.PaymentMethodPhaseFieldUpdateManyWithWhereWithoutPhaseInput | Prisma.PaymentMethodPhaseFieldUpdateManyWithWhereWithoutPhaseInput[];
|
|
512
|
+
deleteMany?: Prisma.PaymentMethodPhaseFieldScalarWhereInput | Prisma.PaymentMethodPhaseFieldScalarWhereInput[];
|
|
513
|
+
};
|
|
514
|
+
export type PaymentMethodPhaseFieldUncheckedUpdateManyWithoutPhaseNestedInput = {
|
|
515
|
+
create?: Prisma.XOR<Prisma.PaymentMethodPhaseFieldCreateWithoutPhaseInput, Prisma.PaymentMethodPhaseFieldUncheckedCreateWithoutPhaseInput> | Prisma.PaymentMethodPhaseFieldCreateWithoutPhaseInput[] | Prisma.PaymentMethodPhaseFieldUncheckedCreateWithoutPhaseInput[];
|
|
516
|
+
connectOrCreate?: Prisma.PaymentMethodPhaseFieldCreateOrConnectWithoutPhaseInput | Prisma.PaymentMethodPhaseFieldCreateOrConnectWithoutPhaseInput[];
|
|
517
|
+
upsert?: Prisma.PaymentMethodPhaseFieldUpsertWithWhereUniqueWithoutPhaseInput | Prisma.PaymentMethodPhaseFieldUpsertWithWhereUniqueWithoutPhaseInput[];
|
|
518
|
+
createMany?: Prisma.PaymentMethodPhaseFieldCreateManyPhaseInputEnvelope;
|
|
519
|
+
set?: Prisma.PaymentMethodPhaseFieldWhereUniqueInput | Prisma.PaymentMethodPhaseFieldWhereUniqueInput[];
|
|
520
|
+
disconnect?: Prisma.PaymentMethodPhaseFieldWhereUniqueInput | Prisma.PaymentMethodPhaseFieldWhereUniqueInput[];
|
|
521
|
+
delete?: Prisma.PaymentMethodPhaseFieldWhereUniqueInput | Prisma.PaymentMethodPhaseFieldWhereUniqueInput[];
|
|
522
|
+
connect?: Prisma.PaymentMethodPhaseFieldWhereUniqueInput | Prisma.PaymentMethodPhaseFieldWhereUniqueInput[];
|
|
523
|
+
update?: Prisma.PaymentMethodPhaseFieldUpdateWithWhereUniqueWithoutPhaseInput | Prisma.PaymentMethodPhaseFieldUpdateWithWhereUniqueWithoutPhaseInput[];
|
|
524
|
+
updateMany?: Prisma.PaymentMethodPhaseFieldUpdateManyWithWhereWithoutPhaseInput | Prisma.PaymentMethodPhaseFieldUpdateManyWithWhereWithoutPhaseInput[];
|
|
525
|
+
deleteMany?: Prisma.PaymentMethodPhaseFieldScalarWhereInput | Prisma.PaymentMethodPhaseFieldScalarWhereInput[];
|
|
526
|
+
};
|
|
527
|
+
export type EnumFieldTypeFieldUpdateOperationsInput = {
|
|
528
|
+
set?: $Enums.FieldType;
|
|
529
|
+
};
|
|
530
|
+
export type PaymentMethodPhaseFieldCreateWithoutPhaseInput = {
|
|
531
|
+
id?: string;
|
|
532
|
+
name: string;
|
|
533
|
+
label: string;
|
|
534
|
+
description?: string | null;
|
|
535
|
+
placeholder?: string | null;
|
|
536
|
+
fieldType: $Enums.FieldType;
|
|
537
|
+
isRequired?: boolean;
|
|
538
|
+
order: number;
|
|
539
|
+
validation?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
540
|
+
displayCondition?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
541
|
+
defaultValue?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
542
|
+
createdAt?: Date | string;
|
|
543
|
+
updatedAt?: Date | string;
|
|
544
|
+
};
|
|
545
|
+
export type PaymentMethodPhaseFieldUncheckedCreateWithoutPhaseInput = {
|
|
546
|
+
id?: string;
|
|
547
|
+
name: string;
|
|
548
|
+
label: string;
|
|
549
|
+
description?: string | null;
|
|
550
|
+
placeholder?: string | null;
|
|
551
|
+
fieldType: $Enums.FieldType;
|
|
552
|
+
isRequired?: boolean;
|
|
553
|
+
order: number;
|
|
554
|
+
validation?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
555
|
+
displayCondition?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
556
|
+
defaultValue?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
557
|
+
createdAt?: Date | string;
|
|
558
|
+
updatedAt?: Date | string;
|
|
559
|
+
};
|
|
560
|
+
export type PaymentMethodPhaseFieldCreateOrConnectWithoutPhaseInput = {
|
|
561
|
+
where: Prisma.PaymentMethodPhaseFieldWhereUniqueInput;
|
|
562
|
+
create: Prisma.XOR<Prisma.PaymentMethodPhaseFieldCreateWithoutPhaseInput, Prisma.PaymentMethodPhaseFieldUncheckedCreateWithoutPhaseInput>;
|
|
563
|
+
};
|
|
564
|
+
export type PaymentMethodPhaseFieldCreateManyPhaseInputEnvelope = {
|
|
565
|
+
data: Prisma.PaymentMethodPhaseFieldCreateManyPhaseInput | Prisma.PaymentMethodPhaseFieldCreateManyPhaseInput[];
|
|
566
|
+
skipDuplicates?: boolean;
|
|
567
|
+
};
|
|
568
|
+
export type PaymentMethodPhaseFieldUpsertWithWhereUniqueWithoutPhaseInput = {
|
|
569
|
+
where: Prisma.PaymentMethodPhaseFieldWhereUniqueInput;
|
|
570
|
+
update: Prisma.XOR<Prisma.PaymentMethodPhaseFieldUpdateWithoutPhaseInput, Prisma.PaymentMethodPhaseFieldUncheckedUpdateWithoutPhaseInput>;
|
|
571
|
+
create: Prisma.XOR<Prisma.PaymentMethodPhaseFieldCreateWithoutPhaseInput, Prisma.PaymentMethodPhaseFieldUncheckedCreateWithoutPhaseInput>;
|
|
572
|
+
};
|
|
573
|
+
export type PaymentMethodPhaseFieldUpdateWithWhereUniqueWithoutPhaseInput = {
|
|
574
|
+
where: Prisma.PaymentMethodPhaseFieldWhereUniqueInput;
|
|
575
|
+
data: Prisma.XOR<Prisma.PaymentMethodPhaseFieldUpdateWithoutPhaseInput, Prisma.PaymentMethodPhaseFieldUncheckedUpdateWithoutPhaseInput>;
|
|
576
|
+
};
|
|
577
|
+
export type PaymentMethodPhaseFieldUpdateManyWithWhereWithoutPhaseInput = {
|
|
578
|
+
where: Prisma.PaymentMethodPhaseFieldScalarWhereInput;
|
|
579
|
+
data: Prisma.XOR<Prisma.PaymentMethodPhaseFieldUpdateManyMutationInput, Prisma.PaymentMethodPhaseFieldUncheckedUpdateManyWithoutPhaseInput>;
|
|
580
|
+
};
|
|
581
|
+
export type PaymentMethodPhaseFieldScalarWhereInput = {
|
|
582
|
+
AND?: Prisma.PaymentMethodPhaseFieldScalarWhereInput | Prisma.PaymentMethodPhaseFieldScalarWhereInput[];
|
|
583
|
+
OR?: Prisma.PaymentMethodPhaseFieldScalarWhereInput[];
|
|
584
|
+
NOT?: Prisma.PaymentMethodPhaseFieldScalarWhereInput | Prisma.PaymentMethodPhaseFieldScalarWhereInput[];
|
|
585
|
+
id?: Prisma.StringFilter<"PaymentMethodPhaseField"> | string;
|
|
586
|
+
phaseId?: Prisma.StringFilter<"PaymentMethodPhaseField"> | string;
|
|
587
|
+
name?: Prisma.StringFilter<"PaymentMethodPhaseField"> | string;
|
|
588
|
+
label?: Prisma.StringFilter<"PaymentMethodPhaseField"> | string;
|
|
589
|
+
description?: Prisma.StringNullableFilter<"PaymentMethodPhaseField"> | string | null;
|
|
590
|
+
placeholder?: Prisma.StringNullableFilter<"PaymentMethodPhaseField"> | string | null;
|
|
591
|
+
fieldType?: Prisma.EnumFieldTypeFilter<"PaymentMethodPhaseField"> | $Enums.FieldType;
|
|
592
|
+
isRequired?: Prisma.BoolFilter<"PaymentMethodPhaseField"> | boolean;
|
|
593
|
+
order?: Prisma.IntFilter<"PaymentMethodPhaseField"> | number;
|
|
594
|
+
validation?: Prisma.JsonNullableFilter<"PaymentMethodPhaseField">;
|
|
595
|
+
displayCondition?: Prisma.JsonNullableFilter<"PaymentMethodPhaseField">;
|
|
596
|
+
defaultValue?: Prisma.JsonNullableFilter<"PaymentMethodPhaseField">;
|
|
597
|
+
createdAt?: Prisma.DateTimeFilter<"PaymentMethodPhaseField"> | Date | string;
|
|
598
|
+
updatedAt?: Prisma.DateTimeFilter<"PaymentMethodPhaseField"> | Date | string;
|
|
599
|
+
};
|
|
600
|
+
export type PaymentMethodPhaseFieldCreateManyPhaseInput = {
|
|
601
|
+
id?: string;
|
|
602
|
+
name: string;
|
|
603
|
+
label: string;
|
|
604
|
+
description?: string | null;
|
|
605
|
+
placeholder?: string | null;
|
|
606
|
+
fieldType: $Enums.FieldType;
|
|
607
|
+
isRequired?: boolean;
|
|
608
|
+
order: number;
|
|
609
|
+
validation?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
610
|
+
displayCondition?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
611
|
+
defaultValue?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
612
|
+
createdAt?: Date | string;
|
|
613
|
+
updatedAt?: Date | string;
|
|
614
|
+
};
|
|
615
|
+
export type PaymentMethodPhaseFieldUpdateWithoutPhaseInput = {
|
|
616
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
617
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
618
|
+
label?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
619
|
+
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
620
|
+
placeholder?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
621
|
+
fieldType?: Prisma.EnumFieldTypeFieldUpdateOperationsInput | $Enums.FieldType;
|
|
622
|
+
isRequired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
623
|
+
order?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
624
|
+
validation?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
625
|
+
displayCondition?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
626
|
+
defaultValue?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
627
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
628
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
629
|
+
};
|
|
630
|
+
export type PaymentMethodPhaseFieldUncheckedUpdateWithoutPhaseInput = {
|
|
631
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
632
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
633
|
+
label?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
634
|
+
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
635
|
+
placeholder?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
636
|
+
fieldType?: Prisma.EnumFieldTypeFieldUpdateOperationsInput | $Enums.FieldType;
|
|
637
|
+
isRequired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
638
|
+
order?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
639
|
+
validation?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
640
|
+
displayCondition?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
641
|
+
defaultValue?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
642
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
643
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
644
|
+
};
|
|
645
|
+
export type PaymentMethodPhaseFieldUncheckedUpdateManyWithoutPhaseInput = {
|
|
646
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
647
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
648
|
+
label?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
649
|
+
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
650
|
+
placeholder?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
651
|
+
fieldType?: Prisma.EnumFieldTypeFieldUpdateOperationsInput | $Enums.FieldType;
|
|
652
|
+
isRequired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
653
|
+
order?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
654
|
+
validation?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
655
|
+
displayCondition?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
656
|
+
defaultValue?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
657
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
658
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
659
|
+
};
|
|
660
|
+
export type PaymentMethodPhaseFieldSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
661
|
+
id?: boolean;
|
|
662
|
+
phaseId?: boolean;
|
|
663
|
+
name?: boolean;
|
|
664
|
+
label?: boolean;
|
|
665
|
+
description?: boolean;
|
|
666
|
+
placeholder?: boolean;
|
|
667
|
+
fieldType?: boolean;
|
|
668
|
+
isRequired?: boolean;
|
|
669
|
+
order?: boolean;
|
|
670
|
+
validation?: boolean;
|
|
671
|
+
displayCondition?: boolean;
|
|
672
|
+
defaultValue?: boolean;
|
|
673
|
+
createdAt?: boolean;
|
|
674
|
+
updatedAt?: boolean;
|
|
675
|
+
phase?: boolean | Prisma.PropertyPaymentMethodPhaseDefaultArgs<ExtArgs>;
|
|
676
|
+
}, ExtArgs["result"]["paymentMethodPhaseField"]>;
|
|
677
|
+
export type PaymentMethodPhaseFieldSelectScalar = {
|
|
678
|
+
id?: boolean;
|
|
679
|
+
phaseId?: boolean;
|
|
680
|
+
name?: boolean;
|
|
681
|
+
label?: boolean;
|
|
682
|
+
description?: boolean;
|
|
683
|
+
placeholder?: boolean;
|
|
684
|
+
fieldType?: boolean;
|
|
685
|
+
isRequired?: boolean;
|
|
686
|
+
order?: boolean;
|
|
687
|
+
validation?: boolean;
|
|
688
|
+
displayCondition?: boolean;
|
|
689
|
+
defaultValue?: boolean;
|
|
690
|
+
createdAt?: boolean;
|
|
691
|
+
updatedAt?: boolean;
|
|
692
|
+
};
|
|
693
|
+
export type PaymentMethodPhaseFieldOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "phaseId" | "name" | "label" | "description" | "placeholder" | "fieldType" | "isRequired" | "order" | "validation" | "displayCondition" | "defaultValue" | "createdAt" | "updatedAt", ExtArgs["result"]["paymentMethodPhaseField"]>;
|
|
694
|
+
export type PaymentMethodPhaseFieldInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
695
|
+
phase?: boolean | Prisma.PropertyPaymentMethodPhaseDefaultArgs<ExtArgs>;
|
|
696
|
+
};
|
|
697
|
+
export type $PaymentMethodPhaseFieldPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
698
|
+
name: "PaymentMethodPhaseField";
|
|
699
|
+
objects: {
|
|
700
|
+
phase: Prisma.$PropertyPaymentMethodPhasePayload<ExtArgs>;
|
|
701
|
+
};
|
|
702
|
+
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
|
703
|
+
id: string;
|
|
704
|
+
phaseId: string;
|
|
705
|
+
name: string;
|
|
706
|
+
label: string;
|
|
707
|
+
description: string | null;
|
|
708
|
+
placeholder: string | null;
|
|
709
|
+
fieldType: $Enums.FieldType;
|
|
710
|
+
isRequired: boolean;
|
|
711
|
+
order: number;
|
|
712
|
+
validation: runtime.JsonValue | null;
|
|
713
|
+
displayCondition: runtime.JsonValue | null;
|
|
714
|
+
defaultValue: runtime.JsonValue | null;
|
|
715
|
+
createdAt: Date;
|
|
716
|
+
updatedAt: Date;
|
|
717
|
+
}, ExtArgs["result"]["paymentMethodPhaseField"]>;
|
|
718
|
+
composites: {};
|
|
719
|
+
};
|
|
720
|
+
export type PaymentMethodPhaseFieldGetPayload<S extends boolean | null | undefined | PaymentMethodPhaseFieldDefaultArgs> = runtime.Types.Result.GetResult<Prisma.$PaymentMethodPhaseFieldPayload, S>;
|
|
721
|
+
export type PaymentMethodPhaseFieldCountArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = Omit<PaymentMethodPhaseFieldFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
|
|
722
|
+
select?: PaymentMethodPhaseFieldCountAggregateInputType | true;
|
|
723
|
+
};
|
|
724
|
+
export interface PaymentMethodPhaseFieldDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
|
|
725
|
+
[K: symbol]: {
|
|
726
|
+
types: Prisma.TypeMap<ExtArgs>['model']['PaymentMethodPhaseField'];
|
|
727
|
+
meta: {
|
|
728
|
+
name: 'PaymentMethodPhaseField';
|
|
729
|
+
};
|
|
730
|
+
};
|
|
731
|
+
/**
|
|
732
|
+
* Find zero or one PaymentMethodPhaseField that matches the filter.
|
|
733
|
+
* @param {PaymentMethodPhaseFieldFindUniqueArgs} args - Arguments to find a PaymentMethodPhaseField
|
|
734
|
+
* @example
|
|
735
|
+
* // Get one PaymentMethodPhaseField
|
|
736
|
+
* const paymentMethodPhaseField = await prisma.paymentMethodPhaseField.findUnique({
|
|
737
|
+
* where: {
|
|
738
|
+
* // ... provide filter here
|
|
739
|
+
* }
|
|
740
|
+
* })
|
|
741
|
+
*/
|
|
742
|
+
findUnique<T extends PaymentMethodPhaseFieldFindUniqueArgs>(args: Prisma.SelectSubset<T, PaymentMethodPhaseFieldFindUniqueArgs<ExtArgs>>): Prisma.Prisma__PaymentMethodPhaseFieldClient<runtime.Types.Result.GetResult<Prisma.$PaymentMethodPhaseFieldPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
743
|
+
/**
|
|
744
|
+
* Find one PaymentMethodPhaseField that matches the filter or throw an error with `error.code='P2025'`
|
|
745
|
+
* if no matches were found.
|
|
746
|
+
* @param {PaymentMethodPhaseFieldFindUniqueOrThrowArgs} args - Arguments to find a PaymentMethodPhaseField
|
|
747
|
+
* @example
|
|
748
|
+
* // Get one PaymentMethodPhaseField
|
|
749
|
+
* const paymentMethodPhaseField = await prisma.paymentMethodPhaseField.findUniqueOrThrow({
|
|
750
|
+
* where: {
|
|
751
|
+
* // ... provide filter here
|
|
752
|
+
* }
|
|
753
|
+
* })
|
|
754
|
+
*/
|
|
755
|
+
findUniqueOrThrow<T extends PaymentMethodPhaseFieldFindUniqueOrThrowArgs>(args: Prisma.SelectSubset<T, PaymentMethodPhaseFieldFindUniqueOrThrowArgs<ExtArgs>>): Prisma.Prisma__PaymentMethodPhaseFieldClient<runtime.Types.Result.GetResult<Prisma.$PaymentMethodPhaseFieldPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
756
|
+
/**
|
|
757
|
+
* Find the first PaymentMethodPhaseField that matches the filter.
|
|
758
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
759
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
760
|
+
* @param {PaymentMethodPhaseFieldFindFirstArgs} args - Arguments to find a PaymentMethodPhaseField
|
|
761
|
+
* @example
|
|
762
|
+
* // Get one PaymentMethodPhaseField
|
|
763
|
+
* const paymentMethodPhaseField = await prisma.paymentMethodPhaseField.findFirst({
|
|
764
|
+
* where: {
|
|
765
|
+
* // ... provide filter here
|
|
766
|
+
* }
|
|
767
|
+
* })
|
|
768
|
+
*/
|
|
769
|
+
findFirst<T extends PaymentMethodPhaseFieldFindFirstArgs>(args?: Prisma.SelectSubset<T, PaymentMethodPhaseFieldFindFirstArgs<ExtArgs>>): Prisma.Prisma__PaymentMethodPhaseFieldClient<runtime.Types.Result.GetResult<Prisma.$PaymentMethodPhaseFieldPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
770
|
+
/**
|
|
771
|
+
* Find the first PaymentMethodPhaseField that matches the filter or
|
|
772
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
773
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
774
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
775
|
+
* @param {PaymentMethodPhaseFieldFindFirstOrThrowArgs} args - Arguments to find a PaymentMethodPhaseField
|
|
776
|
+
* @example
|
|
777
|
+
* // Get one PaymentMethodPhaseField
|
|
778
|
+
* const paymentMethodPhaseField = await prisma.paymentMethodPhaseField.findFirstOrThrow({
|
|
779
|
+
* where: {
|
|
780
|
+
* // ... provide filter here
|
|
781
|
+
* }
|
|
782
|
+
* })
|
|
783
|
+
*/
|
|
784
|
+
findFirstOrThrow<T extends PaymentMethodPhaseFieldFindFirstOrThrowArgs>(args?: Prisma.SelectSubset<T, PaymentMethodPhaseFieldFindFirstOrThrowArgs<ExtArgs>>): Prisma.Prisma__PaymentMethodPhaseFieldClient<runtime.Types.Result.GetResult<Prisma.$PaymentMethodPhaseFieldPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
785
|
+
/**
|
|
786
|
+
* Find zero or more PaymentMethodPhaseFields that matches the filter.
|
|
787
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
788
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
789
|
+
* @param {PaymentMethodPhaseFieldFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
790
|
+
* @example
|
|
791
|
+
* // Get all PaymentMethodPhaseFields
|
|
792
|
+
* const paymentMethodPhaseFields = await prisma.paymentMethodPhaseField.findMany()
|
|
793
|
+
*
|
|
794
|
+
* // Get first 10 PaymentMethodPhaseFields
|
|
795
|
+
* const paymentMethodPhaseFields = await prisma.paymentMethodPhaseField.findMany({ take: 10 })
|
|
796
|
+
*
|
|
797
|
+
* // Only select the `id`
|
|
798
|
+
* const paymentMethodPhaseFieldWithIdOnly = await prisma.paymentMethodPhaseField.findMany({ select: { id: true } })
|
|
799
|
+
*
|
|
800
|
+
*/
|
|
801
|
+
findMany<T extends PaymentMethodPhaseFieldFindManyArgs>(args?: Prisma.SelectSubset<T, PaymentMethodPhaseFieldFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PaymentMethodPhaseFieldPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>;
|
|
802
|
+
/**
|
|
803
|
+
* Create a PaymentMethodPhaseField.
|
|
804
|
+
* @param {PaymentMethodPhaseFieldCreateArgs} args - Arguments to create a PaymentMethodPhaseField.
|
|
805
|
+
* @example
|
|
806
|
+
* // Create one PaymentMethodPhaseField
|
|
807
|
+
* const PaymentMethodPhaseField = await prisma.paymentMethodPhaseField.create({
|
|
808
|
+
* data: {
|
|
809
|
+
* // ... data to create a PaymentMethodPhaseField
|
|
810
|
+
* }
|
|
811
|
+
* })
|
|
812
|
+
*
|
|
813
|
+
*/
|
|
814
|
+
create<T extends PaymentMethodPhaseFieldCreateArgs>(args: Prisma.SelectSubset<T, PaymentMethodPhaseFieldCreateArgs<ExtArgs>>): Prisma.Prisma__PaymentMethodPhaseFieldClient<runtime.Types.Result.GetResult<Prisma.$PaymentMethodPhaseFieldPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
815
|
+
/**
|
|
816
|
+
* Create many PaymentMethodPhaseFields.
|
|
817
|
+
* @param {PaymentMethodPhaseFieldCreateManyArgs} args - Arguments to create many PaymentMethodPhaseFields.
|
|
818
|
+
* @example
|
|
819
|
+
* // Create many PaymentMethodPhaseFields
|
|
820
|
+
* const paymentMethodPhaseField = await prisma.paymentMethodPhaseField.createMany({
|
|
821
|
+
* data: [
|
|
822
|
+
* // ... provide data here
|
|
823
|
+
* ]
|
|
824
|
+
* })
|
|
825
|
+
*
|
|
826
|
+
*/
|
|
827
|
+
createMany<T extends PaymentMethodPhaseFieldCreateManyArgs>(args?: Prisma.SelectSubset<T, PaymentMethodPhaseFieldCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
828
|
+
/**
|
|
829
|
+
* Delete a PaymentMethodPhaseField.
|
|
830
|
+
* @param {PaymentMethodPhaseFieldDeleteArgs} args - Arguments to delete one PaymentMethodPhaseField.
|
|
831
|
+
* @example
|
|
832
|
+
* // Delete one PaymentMethodPhaseField
|
|
833
|
+
* const PaymentMethodPhaseField = await prisma.paymentMethodPhaseField.delete({
|
|
834
|
+
* where: {
|
|
835
|
+
* // ... filter to delete one PaymentMethodPhaseField
|
|
836
|
+
* }
|
|
837
|
+
* })
|
|
838
|
+
*
|
|
839
|
+
*/
|
|
840
|
+
delete<T extends PaymentMethodPhaseFieldDeleteArgs>(args: Prisma.SelectSubset<T, PaymentMethodPhaseFieldDeleteArgs<ExtArgs>>): Prisma.Prisma__PaymentMethodPhaseFieldClient<runtime.Types.Result.GetResult<Prisma.$PaymentMethodPhaseFieldPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
841
|
+
/**
|
|
842
|
+
* Update one PaymentMethodPhaseField.
|
|
843
|
+
* @param {PaymentMethodPhaseFieldUpdateArgs} args - Arguments to update one PaymentMethodPhaseField.
|
|
844
|
+
* @example
|
|
845
|
+
* // Update one PaymentMethodPhaseField
|
|
846
|
+
* const paymentMethodPhaseField = await prisma.paymentMethodPhaseField.update({
|
|
847
|
+
* where: {
|
|
848
|
+
* // ... provide filter here
|
|
849
|
+
* },
|
|
850
|
+
* data: {
|
|
851
|
+
* // ... provide data here
|
|
852
|
+
* }
|
|
853
|
+
* })
|
|
854
|
+
*
|
|
855
|
+
*/
|
|
856
|
+
update<T extends PaymentMethodPhaseFieldUpdateArgs>(args: Prisma.SelectSubset<T, PaymentMethodPhaseFieldUpdateArgs<ExtArgs>>): Prisma.Prisma__PaymentMethodPhaseFieldClient<runtime.Types.Result.GetResult<Prisma.$PaymentMethodPhaseFieldPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
857
|
+
/**
|
|
858
|
+
* Delete zero or more PaymentMethodPhaseFields.
|
|
859
|
+
* @param {PaymentMethodPhaseFieldDeleteManyArgs} args - Arguments to filter PaymentMethodPhaseFields to delete.
|
|
860
|
+
* @example
|
|
861
|
+
* // Delete a few PaymentMethodPhaseFields
|
|
862
|
+
* const { count } = await prisma.paymentMethodPhaseField.deleteMany({
|
|
863
|
+
* where: {
|
|
864
|
+
* // ... provide filter here
|
|
865
|
+
* }
|
|
866
|
+
* })
|
|
867
|
+
*
|
|
868
|
+
*/
|
|
869
|
+
deleteMany<T extends PaymentMethodPhaseFieldDeleteManyArgs>(args?: Prisma.SelectSubset<T, PaymentMethodPhaseFieldDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
870
|
+
/**
|
|
871
|
+
* Update zero or more PaymentMethodPhaseFields.
|
|
872
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
873
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
874
|
+
* @param {PaymentMethodPhaseFieldUpdateManyArgs} args - Arguments to update one or more rows.
|
|
875
|
+
* @example
|
|
876
|
+
* // Update many PaymentMethodPhaseFields
|
|
877
|
+
* const paymentMethodPhaseField = await prisma.paymentMethodPhaseField.updateMany({
|
|
878
|
+
* where: {
|
|
879
|
+
* // ... provide filter here
|
|
880
|
+
* },
|
|
881
|
+
* data: {
|
|
882
|
+
* // ... provide data here
|
|
883
|
+
* }
|
|
884
|
+
* })
|
|
885
|
+
*
|
|
886
|
+
*/
|
|
887
|
+
updateMany<T extends PaymentMethodPhaseFieldUpdateManyArgs>(args: Prisma.SelectSubset<T, PaymentMethodPhaseFieldUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
888
|
+
/**
|
|
889
|
+
* Create or update one PaymentMethodPhaseField.
|
|
890
|
+
* @param {PaymentMethodPhaseFieldUpsertArgs} args - Arguments to update or create a PaymentMethodPhaseField.
|
|
891
|
+
* @example
|
|
892
|
+
* // Update or create a PaymentMethodPhaseField
|
|
893
|
+
* const paymentMethodPhaseField = await prisma.paymentMethodPhaseField.upsert({
|
|
894
|
+
* create: {
|
|
895
|
+
* // ... data to create a PaymentMethodPhaseField
|
|
896
|
+
* },
|
|
897
|
+
* update: {
|
|
898
|
+
* // ... in case it already exists, update
|
|
899
|
+
* },
|
|
900
|
+
* where: {
|
|
901
|
+
* // ... the filter for the PaymentMethodPhaseField we want to update
|
|
902
|
+
* }
|
|
903
|
+
* })
|
|
904
|
+
*/
|
|
905
|
+
upsert<T extends PaymentMethodPhaseFieldUpsertArgs>(args: Prisma.SelectSubset<T, PaymentMethodPhaseFieldUpsertArgs<ExtArgs>>): Prisma.Prisma__PaymentMethodPhaseFieldClient<runtime.Types.Result.GetResult<Prisma.$PaymentMethodPhaseFieldPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
906
|
+
/**
|
|
907
|
+
* Count the number of PaymentMethodPhaseFields.
|
|
908
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
909
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
910
|
+
* @param {PaymentMethodPhaseFieldCountArgs} args - Arguments to filter PaymentMethodPhaseFields to count.
|
|
911
|
+
* @example
|
|
912
|
+
* // Count the number of PaymentMethodPhaseFields
|
|
913
|
+
* const count = await prisma.paymentMethodPhaseField.count({
|
|
914
|
+
* where: {
|
|
915
|
+
* // ... the filter for the PaymentMethodPhaseFields we want to count
|
|
916
|
+
* }
|
|
917
|
+
* })
|
|
918
|
+
**/
|
|
919
|
+
count<T extends PaymentMethodPhaseFieldCountArgs>(args?: Prisma.Subset<T, PaymentMethodPhaseFieldCountArgs>): Prisma.PrismaPromise<T extends runtime.Types.Utils.Record<'select', any> ? T['select'] extends true ? number : Prisma.GetScalarType<T['select'], PaymentMethodPhaseFieldCountAggregateOutputType> : number>;
|
|
920
|
+
/**
|
|
921
|
+
* Allows you to perform aggregations operations on a PaymentMethodPhaseField.
|
|
922
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
923
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
924
|
+
* @param {PaymentMethodPhaseFieldAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
925
|
+
* @example
|
|
926
|
+
* // Ordered by age ascending
|
|
927
|
+
* // Where email contains prisma.io
|
|
928
|
+
* // Limited to the 10 users
|
|
929
|
+
* const aggregations = await prisma.user.aggregate({
|
|
930
|
+
* _avg: {
|
|
931
|
+
* age: true,
|
|
932
|
+
* },
|
|
933
|
+
* where: {
|
|
934
|
+
* email: {
|
|
935
|
+
* contains: "prisma.io",
|
|
936
|
+
* },
|
|
937
|
+
* },
|
|
938
|
+
* orderBy: {
|
|
939
|
+
* age: "asc",
|
|
940
|
+
* },
|
|
941
|
+
* take: 10,
|
|
942
|
+
* })
|
|
943
|
+
**/
|
|
944
|
+
aggregate<T extends PaymentMethodPhaseFieldAggregateArgs>(args: Prisma.Subset<T, PaymentMethodPhaseFieldAggregateArgs>): Prisma.PrismaPromise<GetPaymentMethodPhaseFieldAggregateType<T>>;
|
|
945
|
+
/**
|
|
946
|
+
* Group by PaymentMethodPhaseField.
|
|
947
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
948
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
949
|
+
* @param {PaymentMethodPhaseFieldGroupByArgs} args - Group by arguments.
|
|
950
|
+
* @example
|
|
951
|
+
* // Group by city, order by createdAt, get count
|
|
952
|
+
* const result = await prisma.user.groupBy({
|
|
953
|
+
* by: ['city', 'createdAt'],
|
|
954
|
+
* orderBy: {
|
|
955
|
+
* createdAt: true
|
|
956
|
+
* },
|
|
957
|
+
* _count: {
|
|
958
|
+
* _all: true
|
|
959
|
+
* },
|
|
960
|
+
* })
|
|
961
|
+
*
|
|
962
|
+
**/
|
|
963
|
+
groupBy<T extends PaymentMethodPhaseFieldGroupByArgs, HasSelectOrTake extends Prisma.Or<Prisma.Extends<'skip', Prisma.Keys<T>>, Prisma.Extends<'take', Prisma.Keys<T>>>, OrderByArg extends Prisma.True extends HasSelectOrTake ? {
|
|
964
|
+
orderBy: PaymentMethodPhaseFieldGroupByArgs['orderBy'];
|
|
965
|
+
} : {
|
|
966
|
+
orderBy?: PaymentMethodPhaseFieldGroupByArgs['orderBy'];
|
|
967
|
+
}, 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 ? {
|
|
968
|
+
[P in HavingFields]: P extends ByFields ? never : P extends string ? `Error: Field "${P}" used in "having" needs to be provided in "by".` : [
|
|
969
|
+
Error,
|
|
970
|
+
'Field ',
|
|
971
|
+
P,
|
|
972
|
+
` in "having" needs to be provided in "by"`
|
|
973
|
+
];
|
|
974
|
+
}[HavingFields] : 'take' extends Prisma.Keys<T> ? 'orderBy' extends Prisma.Keys<T> ? ByValid extends Prisma.True ? {} : {
|
|
975
|
+
[P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
|
|
976
|
+
}[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 ? {} : {
|
|
977
|
+
[P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
|
|
978
|
+
}[OrderFields] : 'Error: If you provide "skip", you also need to provide "orderBy"' : ByValid extends Prisma.True ? {} : {
|
|
979
|
+
[P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
|
|
980
|
+
}[OrderFields]>(args: Prisma.SubsetIntersection<T, PaymentMethodPhaseFieldGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetPaymentMethodPhaseFieldGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>;
|
|
981
|
+
/**
|
|
982
|
+
* Fields of the PaymentMethodPhaseField model
|
|
983
|
+
*/
|
|
984
|
+
readonly fields: PaymentMethodPhaseFieldFieldRefs;
|
|
985
|
+
}
|
|
986
|
+
/**
|
|
987
|
+
* The delegate class that acts as a "Promise-like" for PaymentMethodPhaseField.
|
|
988
|
+
* Why is this prefixed with `Prisma__`?
|
|
989
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
990
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
991
|
+
*/
|
|
992
|
+
export interface Prisma__PaymentMethodPhaseFieldClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
|
993
|
+
readonly [Symbol.toStringTag]: "PrismaPromise";
|
|
994
|
+
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>;
|
|
995
|
+
/**
|
|
996
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
997
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
998
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
999
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
1000
|
+
*/
|
|
1001
|
+
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>;
|
|
1002
|
+
/**
|
|
1003
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
1004
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
1005
|
+
* @returns A Promise for the completion of the callback.
|
|
1006
|
+
*/
|
|
1007
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): runtime.Types.Utils.JsPromise<T | TResult>;
|
|
1008
|
+
/**
|
|
1009
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
1010
|
+
* resolved value cannot be modified from the callback.
|
|
1011
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
1012
|
+
* @returns A Promise for the completion of the callback.
|
|
1013
|
+
*/
|
|
1014
|
+
finally(onfinally?: (() => void) | undefined | null): runtime.Types.Utils.JsPromise<T>;
|
|
1015
|
+
}
|
|
1016
|
+
/**
|
|
1017
|
+
* Fields of the PaymentMethodPhaseField model
|
|
1018
|
+
*/
|
|
1019
|
+
export interface PaymentMethodPhaseFieldFieldRefs {
|
|
1020
|
+
readonly id: Prisma.FieldRef<"PaymentMethodPhaseField", 'String'>;
|
|
1021
|
+
readonly phaseId: Prisma.FieldRef<"PaymentMethodPhaseField", 'String'>;
|
|
1022
|
+
readonly name: Prisma.FieldRef<"PaymentMethodPhaseField", 'String'>;
|
|
1023
|
+
readonly label: Prisma.FieldRef<"PaymentMethodPhaseField", 'String'>;
|
|
1024
|
+
readonly description: Prisma.FieldRef<"PaymentMethodPhaseField", 'String'>;
|
|
1025
|
+
readonly placeholder: Prisma.FieldRef<"PaymentMethodPhaseField", 'String'>;
|
|
1026
|
+
readonly fieldType: Prisma.FieldRef<"PaymentMethodPhaseField", 'FieldType'>;
|
|
1027
|
+
readonly isRequired: Prisma.FieldRef<"PaymentMethodPhaseField", 'Boolean'>;
|
|
1028
|
+
readonly order: Prisma.FieldRef<"PaymentMethodPhaseField", 'Int'>;
|
|
1029
|
+
readonly validation: Prisma.FieldRef<"PaymentMethodPhaseField", 'Json'>;
|
|
1030
|
+
readonly displayCondition: Prisma.FieldRef<"PaymentMethodPhaseField", 'Json'>;
|
|
1031
|
+
readonly defaultValue: Prisma.FieldRef<"PaymentMethodPhaseField", 'Json'>;
|
|
1032
|
+
readonly createdAt: Prisma.FieldRef<"PaymentMethodPhaseField", 'DateTime'>;
|
|
1033
|
+
readonly updatedAt: Prisma.FieldRef<"PaymentMethodPhaseField", 'DateTime'>;
|
|
1034
|
+
}
|
|
1035
|
+
/**
|
|
1036
|
+
* PaymentMethodPhaseField findUnique
|
|
1037
|
+
*/
|
|
1038
|
+
export type PaymentMethodPhaseFieldFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1039
|
+
/**
|
|
1040
|
+
* Select specific fields to fetch from the PaymentMethodPhaseField
|
|
1041
|
+
*/
|
|
1042
|
+
select?: Prisma.PaymentMethodPhaseFieldSelect<ExtArgs> | null;
|
|
1043
|
+
/**
|
|
1044
|
+
* Omit specific fields from the PaymentMethodPhaseField
|
|
1045
|
+
*/
|
|
1046
|
+
omit?: Prisma.PaymentMethodPhaseFieldOmit<ExtArgs> | null;
|
|
1047
|
+
/**
|
|
1048
|
+
* Choose, which related nodes to fetch as well
|
|
1049
|
+
*/
|
|
1050
|
+
include?: Prisma.PaymentMethodPhaseFieldInclude<ExtArgs> | null;
|
|
1051
|
+
/**
|
|
1052
|
+
* Filter, which PaymentMethodPhaseField to fetch.
|
|
1053
|
+
*/
|
|
1054
|
+
where: Prisma.PaymentMethodPhaseFieldWhereUniqueInput;
|
|
1055
|
+
};
|
|
1056
|
+
/**
|
|
1057
|
+
* PaymentMethodPhaseField findUniqueOrThrow
|
|
1058
|
+
*/
|
|
1059
|
+
export type PaymentMethodPhaseFieldFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1060
|
+
/**
|
|
1061
|
+
* Select specific fields to fetch from the PaymentMethodPhaseField
|
|
1062
|
+
*/
|
|
1063
|
+
select?: Prisma.PaymentMethodPhaseFieldSelect<ExtArgs> | null;
|
|
1064
|
+
/**
|
|
1065
|
+
* Omit specific fields from the PaymentMethodPhaseField
|
|
1066
|
+
*/
|
|
1067
|
+
omit?: Prisma.PaymentMethodPhaseFieldOmit<ExtArgs> | null;
|
|
1068
|
+
/**
|
|
1069
|
+
* Choose, which related nodes to fetch as well
|
|
1070
|
+
*/
|
|
1071
|
+
include?: Prisma.PaymentMethodPhaseFieldInclude<ExtArgs> | null;
|
|
1072
|
+
/**
|
|
1073
|
+
* Filter, which PaymentMethodPhaseField to fetch.
|
|
1074
|
+
*/
|
|
1075
|
+
where: Prisma.PaymentMethodPhaseFieldWhereUniqueInput;
|
|
1076
|
+
};
|
|
1077
|
+
/**
|
|
1078
|
+
* PaymentMethodPhaseField findFirst
|
|
1079
|
+
*/
|
|
1080
|
+
export type PaymentMethodPhaseFieldFindFirstArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1081
|
+
/**
|
|
1082
|
+
* Select specific fields to fetch from the PaymentMethodPhaseField
|
|
1083
|
+
*/
|
|
1084
|
+
select?: Prisma.PaymentMethodPhaseFieldSelect<ExtArgs> | null;
|
|
1085
|
+
/**
|
|
1086
|
+
* Omit specific fields from the PaymentMethodPhaseField
|
|
1087
|
+
*/
|
|
1088
|
+
omit?: Prisma.PaymentMethodPhaseFieldOmit<ExtArgs> | null;
|
|
1089
|
+
/**
|
|
1090
|
+
* Choose, which related nodes to fetch as well
|
|
1091
|
+
*/
|
|
1092
|
+
include?: Prisma.PaymentMethodPhaseFieldInclude<ExtArgs> | null;
|
|
1093
|
+
/**
|
|
1094
|
+
* Filter, which PaymentMethodPhaseField to fetch.
|
|
1095
|
+
*/
|
|
1096
|
+
where?: Prisma.PaymentMethodPhaseFieldWhereInput;
|
|
1097
|
+
/**
|
|
1098
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
1099
|
+
*
|
|
1100
|
+
* Determine the order of PaymentMethodPhaseFields to fetch.
|
|
1101
|
+
*/
|
|
1102
|
+
orderBy?: Prisma.PaymentMethodPhaseFieldOrderByWithRelationInput | Prisma.PaymentMethodPhaseFieldOrderByWithRelationInput[];
|
|
1103
|
+
/**
|
|
1104
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
1105
|
+
*
|
|
1106
|
+
* Sets the position for searching for PaymentMethodPhaseFields.
|
|
1107
|
+
*/
|
|
1108
|
+
cursor?: Prisma.PaymentMethodPhaseFieldWhereUniqueInput;
|
|
1109
|
+
/**
|
|
1110
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1111
|
+
*
|
|
1112
|
+
* Take `±n` PaymentMethodPhaseFields from the position of the cursor.
|
|
1113
|
+
*/
|
|
1114
|
+
take?: number;
|
|
1115
|
+
/**
|
|
1116
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1117
|
+
*
|
|
1118
|
+
* Skip the first `n` PaymentMethodPhaseFields.
|
|
1119
|
+
*/
|
|
1120
|
+
skip?: number;
|
|
1121
|
+
/**
|
|
1122
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
1123
|
+
*
|
|
1124
|
+
* Filter by unique combinations of PaymentMethodPhaseFields.
|
|
1125
|
+
*/
|
|
1126
|
+
distinct?: Prisma.PaymentMethodPhaseFieldScalarFieldEnum | Prisma.PaymentMethodPhaseFieldScalarFieldEnum[];
|
|
1127
|
+
};
|
|
1128
|
+
/**
|
|
1129
|
+
* PaymentMethodPhaseField findFirstOrThrow
|
|
1130
|
+
*/
|
|
1131
|
+
export type PaymentMethodPhaseFieldFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1132
|
+
/**
|
|
1133
|
+
* Select specific fields to fetch from the PaymentMethodPhaseField
|
|
1134
|
+
*/
|
|
1135
|
+
select?: Prisma.PaymentMethodPhaseFieldSelect<ExtArgs> | null;
|
|
1136
|
+
/**
|
|
1137
|
+
* Omit specific fields from the PaymentMethodPhaseField
|
|
1138
|
+
*/
|
|
1139
|
+
omit?: Prisma.PaymentMethodPhaseFieldOmit<ExtArgs> | null;
|
|
1140
|
+
/**
|
|
1141
|
+
* Choose, which related nodes to fetch as well
|
|
1142
|
+
*/
|
|
1143
|
+
include?: Prisma.PaymentMethodPhaseFieldInclude<ExtArgs> | null;
|
|
1144
|
+
/**
|
|
1145
|
+
* Filter, which PaymentMethodPhaseField to fetch.
|
|
1146
|
+
*/
|
|
1147
|
+
where?: Prisma.PaymentMethodPhaseFieldWhereInput;
|
|
1148
|
+
/**
|
|
1149
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
1150
|
+
*
|
|
1151
|
+
* Determine the order of PaymentMethodPhaseFields to fetch.
|
|
1152
|
+
*/
|
|
1153
|
+
orderBy?: Prisma.PaymentMethodPhaseFieldOrderByWithRelationInput | Prisma.PaymentMethodPhaseFieldOrderByWithRelationInput[];
|
|
1154
|
+
/**
|
|
1155
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
1156
|
+
*
|
|
1157
|
+
* Sets the position for searching for PaymentMethodPhaseFields.
|
|
1158
|
+
*/
|
|
1159
|
+
cursor?: Prisma.PaymentMethodPhaseFieldWhereUniqueInput;
|
|
1160
|
+
/**
|
|
1161
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1162
|
+
*
|
|
1163
|
+
* Take `±n` PaymentMethodPhaseFields from the position of the cursor.
|
|
1164
|
+
*/
|
|
1165
|
+
take?: number;
|
|
1166
|
+
/**
|
|
1167
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1168
|
+
*
|
|
1169
|
+
* Skip the first `n` PaymentMethodPhaseFields.
|
|
1170
|
+
*/
|
|
1171
|
+
skip?: number;
|
|
1172
|
+
/**
|
|
1173
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
1174
|
+
*
|
|
1175
|
+
* Filter by unique combinations of PaymentMethodPhaseFields.
|
|
1176
|
+
*/
|
|
1177
|
+
distinct?: Prisma.PaymentMethodPhaseFieldScalarFieldEnum | Prisma.PaymentMethodPhaseFieldScalarFieldEnum[];
|
|
1178
|
+
};
|
|
1179
|
+
/**
|
|
1180
|
+
* PaymentMethodPhaseField findMany
|
|
1181
|
+
*/
|
|
1182
|
+
export type PaymentMethodPhaseFieldFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1183
|
+
/**
|
|
1184
|
+
* Select specific fields to fetch from the PaymentMethodPhaseField
|
|
1185
|
+
*/
|
|
1186
|
+
select?: Prisma.PaymentMethodPhaseFieldSelect<ExtArgs> | null;
|
|
1187
|
+
/**
|
|
1188
|
+
* Omit specific fields from the PaymentMethodPhaseField
|
|
1189
|
+
*/
|
|
1190
|
+
omit?: Prisma.PaymentMethodPhaseFieldOmit<ExtArgs> | null;
|
|
1191
|
+
/**
|
|
1192
|
+
* Choose, which related nodes to fetch as well
|
|
1193
|
+
*/
|
|
1194
|
+
include?: Prisma.PaymentMethodPhaseFieldInclude<ExtArgs> | null;
|
|
1195
|
+
/**
|
|
1196
|
+
* Filter, which PaymentMethodPhaseFields to fetch.
|
|
1197
|
+
*/
|
|
1198
|
+
where?: Prisma.PaymentMethodPhaseFieldWhereInput;
|
|
1199
|
+
/**
|
|
1200
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
1201
|
+
*
|
|
1202
|
+
* Determine the order of PaymentMethodPhaseFields to fetch.
|
|
1203
|
+
*/
|
|
1204
|
+
orderBy?: Prisma.PaymentMethodPhaseFieldOrderByWithRelationInput | Prisma.PaymentMethodPhaseFieldOrderByWithRelationInput[];
|
|
1205
|
+
/**
|
|
1206
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
1207
|
+
*
|
|
1208
|
+
* Sets the position for listing PaymentMethodPhaseFields.
|
|
1209
|
+
*/
|
|
1210
|
+
cursor?: Prisma.PaymentMethodPhaseFieldWhereUniqueInput;
|
|
1211
|
+
/**
|
|
1212
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1213
|
+
*
|
|
1214
|
+
* Take `±n` PaymentMethodPhaseFields from the position of the cursor.
|
|
1215
|
+
*/
|
|
1216
|
+
take?: number;
|
|
1217
|
+
/**
|
|
1218
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1219
|
+
*
|
|
1220
|
+
* Skip the first `n` PaymentMethodPhaseFields.
|
|
1221
|
+
*/
|
|
1222
|
+
skip?: number;
|
|
1223
|
+
distinct?: Prisma.PaymentMethodPhaseFieldScalarFieldEnum | Prisma.PaymentMethodPhaseFieldScalarFieldEnum[];
|
|
1224
|
+
};
|
|
1225
|
+
/**
|
|
1226
|
+
* PaymentMethodPhaseField create
|
|
1227
|
+
*/
|
|
1228
|
+
export type PaymentMethodPhaseFieldCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1229
|
+
/**
|
|
1230
|
+
* Select specific fields to fetch from the PaymentMethodPhaseField
|
|
1231
|
+
*/
|
|
1232
|
+
select?: Prisma.PaymentMethodPhaseFieldSelect<ExtArgs> | null;
|
|
1233
|
+
/**
|
|
1234
|
+
* Omit specific fields from the PaymentMethodPhaseField
|
|
1235
|
+
*/
|
|
1236
|
+
omit?: Prisma.PaymentMethodPhaseFieldOmit<ExtArgs> | null;
|
|
1237
|
+
/**
|
|
1238
|
+
* Choose, which related nodes to fetch as well
|
|
1239
|
+
*/
|
|
1240
|
+
include?: Prisma.PaymentMethodPhaseFieldInclude<ExtArgs> | null;
|
|
1241
|
+
/**
|
|
1242
|
+
* The data needed to create a PaymentMethodPhaseField.
|
|
1243
|
+
*/
|
|
1244
|
+
data: Prisma.XOR<Prisma.PaymentMethodPhaseFieldCreateInput, Prisma.PaymentMethodPhaseFieldUncheckedCreateInput>;
|
|
1245
|
+
};
|
|
1246
|
+
/**
|
|
1247
|
+
* PaymentMethodPhaseField createMany
|
|
1248
|
+
*/
|
|
1249
|
+
export type PaymentMethodPhaseFieldCreateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1250
|
+
/**
|
|
1251
|
+
* The data used to create many PaymentMethodPhaseFields.
|
|
1252
|
+
*/
|
|
1253
|
+
data: Prisma.PaymentMethodPhaseFieldCreateManyInput | Prisma.PaymentMethodPhaseFieldCreateManyInput[];
|
|
1254
|
+
skipDuplicates?: boolean;
|
|
1255
|
+
};
|
|
1256
|
+
/**
|
|
1257
|
+
* PaymentMethodPhaseField update
|
|
1258
|
+
*/
|
|
1259
|
+
export type PaymentMethodPhaseFieldUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1260
|
+
/**
|
|
1261
|
+
* Select specific fields to fetch from the PaymentMethodPhaseField
|
|
1262
|
+
*/
|
|
1263
|
+
select?: Prisma.PaymentMethodPhaseFieldSelect<ExtArgs> | null;
|
|
1264
|
+
/**
|
|
1265
|
+
* Omit specific fields from the PaymentMethodPhaseField
|
|
1266
|
+
*/
|
|
1267
|
+
omit?: Prisma.PaymentMethodPhaseFieldOmit<ExtArgs> | null;
|
|
1268
|
+
/**
|
|
1269
|
+
* Choose, which related nodes to fetch as well
|
|
1270
|
+
*/
|
|
1271
|
+
include?: Prisma.PaymentMethodPhaseFieldInclude<ExtArgs> | null;
|
|
1272
|
+
/**
|
|
1273
|
+
* The data needed to update a PaymentMethodPhaseField.
|
|
1274
|
+
*/
|
|
1275
|
+
data: Prisma.XOR<Prisma.PaymentMethodPhaseFieldUpdateInput, Prisma.PaymentMethodPhaseFieldUncheckedUpdateInput>;
|
|
1276
|
+
/**
|
|
1277
|
+
* Choose, which PaymentMethodPhaseField to update.
|
|
1278
|
+
*/
|
|
1279
|
+
where: Prisma.PaymentMethodPhaseFieldWhereUniqueInput;
|
|
1280
|
+
};
|
|
1281
|
+
/**
|
|
1282
|
+
* PaymentMethodPhaseField updateMany
|
|
1283
|
+
*/
|
|
1284
|
+
export type PaymentMethodPhaseFieldUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1285
|
+
/**
|
|
1286
|
+
* The data used to update PaymentMethodPhaseFields.
|
|
1287
|
+
*/
|
|
1288
|
+
data: Prisma.XOR<Prisma.PaymentMethodPhaseFieldUpdateManyMutationInput, Prisma.PaymentMethodPhaseFieldUncheckedUpdateManyInput>;
|
|
1289
|
+
/**
|
|
1290
|
+
* Filter which PaymentMethodPhaseFields to update
|
|
1291
|
+
*/
|
|
1292
|
+
where?: Prisma.PaymentMethodPhaseFieldWhereInput;
|
|
1293
|
+
/**
|
|
1294
|
+
* Limit how many PaymentMethodPhaseFields to update.
|
|
1295
|
+
*/
|
|
1296
|
+
limit?: number;
|
|
1297
|
+
};
|
|
1298
|
+
/**
|
|
1299
|
+
* PaymentMethodPhaseField upsert
|
|
1300
|
+
*/
|
|
1301
|
+
export type PaymentMethodPhaseFieldUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1302
|
+
/**
|
|
1303
|
+
* Select specific fields to fetch from the PaymentMethodPhaseField
|
|
1304
|
+
*/
|
|
1305
|
+
select?: Prisma.PaymentMethodPhaseFieldSelect<ExtArgs> | null;
|
|
1306
|
+
/**
|
|
1307
|
+
* Omit specific fields from the PaymentMethodPhaseField
|
|
1308
|
+
*/
|
|
1309
|
+
omit?: Prisma.PaymentMethodPhaseFieldOmit<ExtArgs> | null;
|
|
1310
|
+
/**
|
|
1311
|
+
* Choose, which related nodes to fetch as well
|
|
1312
|
+
*/
|
|
1313
|
+
include?: Prisma.PaymentMethodPhaseFieldInclude<ExtArgs> | null;
|
|
1314
|
+
/**
|
|
1315
|
+
* The filter to search for the PaymentMethodPhaseField to update in case it exists.
|
|
1316
|
+
*/
|
|
1317
|
+
where: Prisma.PaymentMethodPhaseFieldWhereUniqueInput;
|
|
1318
|
+
/**
|
|
1319
|
+
* In case the PaymentMethodPhaseField found by the `where` argument doesn't exist, create a new PaymentMethodPhaseField with this data.
|
|
1320
|
+
*/
|
|
1321
|
+
create: Prisma.XOR<Prisma.PaymentMethodPhaseFieldCreateInput, Prisma.PaymentMethodPhaseFieldUncheckedCreateInput>;
|
|
1322
|
+
/**
|
|
1323
|
+
* In case the PaymentMethodPhaseField was found with the provided `where` argument, update it with this data.
|
|
1324
|
+
*/
|
|
1325
|
+
update: Prisma.XOR<Prisma.PaymentMethodPhaseFieldUpdateInput, Prisma.PaymentMethodPhaseFieldUncheckedUpdateInput>;
|
|
1326
|
+
};
|
|
1327
|
+
/**
|
|
1328
|
+
* PaymentMethodPhaseField delete
|
|
1329
|
+
*/
|
|
1330
|
+
export type PaymentMethodPhaseFieldDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1331
|
+
/**
|
|
1332
|
+
* Select specific fields to fetch from the PaymentMethodPhaseField
|
|
1333
|
+
*/
|
|
1334
|
+
select?: Prisma.PaymentMethodPhaseFieldSelect<ExtArgs> | null;
|
|
1335
|
+
/**
|
|
1336
|
+
* Omit specific fields from the PaymentMethodPhaseField
|
|
1337
|
+
*/
|
|
1338
|
+
omit?: Prisma.PaymentMethodPhaseFieldOmit<ExtArgs> | null;
|
|
1339
|
+
/**
|
|
1340
|
+
* Choose, which related nodes to fetch as well
|
|
1341
|
+
*/
|
|
1342
|
+
include?: Prisma.PaymentMethodPhaseFieldInclude<ExtArgs> | null;
|
|
1343
|
+
/**
|
|
1344
|
+
* Filter which PaymentMethodPhaseField to delete.
|
|
1345
|
+
*/
|
|
1346
|
+
where: Prisma.PaymentMethodPhaseFieldWhereUniqueInput;
|
|
1347
|
+
};
|
|
1348
|
+
/**
|
|
1349
|
+
* PaymentMethodPhaseField deleteMany
|
|
1350
|
+
*/
|
|
1351
|
+
export type PaymentMethodPhaseFieldDeleteManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1352
|
+
/**
|
|
1353
|
+
* Filter which PaymentMethodPhaseFields to delete
|
|
1354
|
+
*/
|
|
1355
|
+
where?: Prisma.PaymentMethodPhaseFieldWhereInput;
|
|
1356
|
+
/**
|
|
1357
|
+
* Limit how many PaymentMethodPhaseFields to delete.
|
|
1358
|
+
*/
|
|
1359
|
+
limit?: number;
|
|
1360
|
+
};
|
|
1361
|
+
/**
|
|
1362
|
+
* PaymentMethodPhaseField without action
|
|
1363
|
+
*/
|
|
1364
|
+
export type PaymentMethodPhaseFieldDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1365
|
+
/**
|
|
1366
|
+
* Select specific fields to fetch from the PaymentMethodPhaseField
|
|
1367
|
+
*/
|
|
1368
|
+
select?: Prisma.PaymentMethodPhaseFieldSelect<ExtArgs> | null;
|
|
1369
|
+
/**
|
|
1370
|
+
* Omit specific fields from the PaymentMethodPhaseField
|
|
1371
|
+
*/
|
|
1372
|
+
omit?: Prisma.PaymentMethodPhaseFieldOmit<ExtArgs> | null;
|
|
1373
|
+
/**
|
|
1374
|
+
* Choose, which related nodes to fetch as well
|
|
1375
|
+
*/
|
|
1376
|
+
include?: Prisma.PaymentMethodPhaseFieldInclude<ExtArgs> | null;
|
|
1377
|
+
};
|
|
1378
|
+
export {};
|