@valentine-efagene/qshelter-common 2.0.21 → 2.0.22

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