@valentine-efagene/qshelter-common 2.0.19 → 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.
- package/dist/generated/client/browser.d.ts +45 -30
- package/dist/generated/client/client.d.ts +45 -30
- package/dist/generated/client/commonInputTypes.d.ts +40 -0
- package/dist/generated/client/internal/class.d.ts +93 -60
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +1050 -720
- package/dist/generated/client/internal/prismaNamespace.js +313 -190
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +344 -215
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +313 -190
- package/dist/generated/client/models/Amenity.d.ts +168 -1
- package/dist/generated/client/models/Contract.d.ts +2037 -298
- package/dist/generated/client/models/ContractDocument.d.ts +299 -12
- package/dist/generated/client/models/ContractEvent.d.ts +1052 -0
- package/dist/generated/client/models/ContractEvent.js +1 -0
- package/dist/generated/client/models/ContractInstallment.d.ts +1656 -0
- package/dist/generated/client/models/ContractInstallment.js +1 -0
- package/dist/generated/client/models/ContractPayment.d.ts +2026 -0
- package/dist/generated/client/models/ContractPayment.js +1 -0
- package/dist/generated/client/models/ContractPhase.d.ts +2467 -0
- package/dist/generated/client/models/ContractPhase.js +1 -0
- package/dist/generated/client/models/ContractPhaseStep.d.ts +1678 -0
- package/dist/generated/client/models/ContractPhaseStep.js +1 -0
- package/dist/generated/client/models/ContractPhaseStepApproval.d.ts +1249 -0
- package/dist/generated/client/models/ContractPhaseStepApproval.js +1 -0
- package/dist/generated/client/models/ContractTransition.d.ts +1118 -0
- package/dist/generated/client/models/ContractTransition.js +1 -0
- package/dist/generated/client/models/DomainEvent.d.ts +1240 -0
- package/dist/generated/client/models/DomainEvent.js +1 -0
- package/dist/generated/client/models/PaymentPlan.d.ts +325 -1062
- package/dist/generated/client/models/Property.d.ts +154 -684
- package/dist/generated/client/models/PropertyPaymentMethod.d.ts +1498 -0
- package/dist/generated/client/models/PropertyPaymentMethod.js +1 -0
- package/dist/generated/client/models/PropertyPaymentMethodLink.d.ts +1158 -0
- package/dist/generated/client/models/PropertyPaymentMethodLink.js +1 -0
- package/dist/generated/client/models/PropertyPaymentMethodPhase.d.ts +1656 -0
- package/dist/generated/client/models/PropertyPaymentMethodPhase.js +1 -0
- package/dist/generated/client/models/PropertyUnit.d.ts +1598 -0
- package/dist/generated/client/models/PropertyUnit.js +1 -0
- package/dist/generated/client/models/PropertyVariant.d.ts +2079 -0
- package/dist/generated/client/models/PropertyVariant.js +1 -0
- package/dist/generated/client/models/PropertyVariantAmenity.d.ts +1080 -0
- package/dist/generated/client/models/PropertyVariantAmenity.js +1 -0
- package/dist/generated/client/models/PropertyVariantMedia.d.ts +1189 -0
- package/dist/generated/client/models/PropertyVariantMedia.js +1 -0
- package/dist/generated/client/models/User.d.ts +684 -427
- package/dist/generated/client/models/index.d.ts +15 -12
- package/dist/generated/client/models/index.js +15 -12
- package/dist/generated/client/models.d.ts +15 -12
- package/dist/src/config/config.service.d.ts +0 -1
- package/dist/src/config/config.service.js +0 -1
- package/package.json +2 -1
- package/prisma/schema.prisma +544 -269
|
@@ -103,82 +103,97 @@ export type PropertyDocument = Prisma.PropertyDocumentModel;
|
|
|
103
103
|
*/
|
|
104
104
|
export type Amenity = Prisma.AmenityModel;
|
|
105
105
|
/**
|
|
106
|
-
* Model
|
|
106
|
+
* Model PropertyVariant
|
|
107
107
|
*
|
|
108
108
|
*/
|
|
109
|
-
export type
|
|
109
|
+
export type PropertyVariant = Prisma.PropertyVariantModel;
|
|
110
110
|
/**
|
|
111
|
-
* Model
|
|
111
|
+
* Model PropertyVariantAmenity
|
|
112
112
|
*
|
|
113
113
|
*/
|
|
114
|
-
export type
|
|
114
|
+
export type PropertyVariantAmenity = Prisma.PropertyVariantAmenityModel;
|
|
115
115
|
/**
|
|
116
|
-
* Model
|
|
116
|
+
* Model PropertyVariantMedia
|
|
117
117
|
*
|
|
118
118
|
*/
|
|
119
|
-
export type
|
|
119
|
+
export type PropertyVariantMedia = Prisma.PropertyVariantMediaModel;
|
|
120
120
|
/**
|
|
121
|
-
* Model
|
|
121
|
+
* Model PropertyUnit
|
|
122
122
|
*
|
|
123
123
|
*/
|
|
124
|
-
export type
|
|
124
|
+
export type PropertyUnit = Prisma.PropertyUnitModel;
|
|
125
125
|
/**
|
|
126
|
-
* Model
|
|
126
|
+
* Model PropertyAmenity
|
|
127
127
|
*
|
|
128
128
|
*/
|
|
129
|
-
export type
|
|
129
|
+
export type PropertyAmenity = Prisma.PropertyAmenityModel;
|
|
130
130
|
/**
|
|
131
|
-
* Model
|
|
131
|
+
* Model PaymentPlan
|
|
132
132
|
*
|
|
133
133
|
*/
|
|
134
|
-
export type
|
|
134
|
+
export type PaymentPlan = Prisma.PaymentPlanModel;
|
|
135
135
|
/**
|
|
136
|
-
* Model
|
|
136
|
+
* Model PropertyPaymentMethod
|
|
137
137
|
*
|
|
138
138
|
*/
|
|
139
|
-
export type
|
|
139
|
+
export type PropertyPaymentMethod = Prisma.PropertyPaymentMethodModel;
|
|
140
140
|
/**
|
|
141
|
-
* Model
|
|
141
|
+
* Model PropertyPaymentMethodLink
|
|
142
142
|
*
|
|
143
143
|
*/
|
|
144
|
-
export type
|
|
144
|
+
export type PropertyPaymentMethodLink = Prisma.PropertyPaymentMethodLinkModel;
|
|
145
145
|
/**
|
|
146
|
-
* Model
|
|
146
|
+
* Model PropertyPaymentMethodPhase
|
|
147
147
|
*
|
|
148
148
|
*/
|
|
149
|
-
export type
|
|
149
|
+
export type PropertyPaymentMethodPhase = Prisma.PropertyPaymentMethodPhaseModel;
|
|
150
150
|
/**
|
|
151
|
-
* Model
|
|
151
|
+
* Model Contract
|
|
152
152
|
*
|
|
153
153
|
*/
|
|
154
|
-
export type
|
|
154
|
+
export type Contract = Prisma.ContractModel;
|
|
155
155
|
/**
|
|
156
|
-
* Model
|
|
156
|
+
* Model ContractPhase
|
|
157
157
|
*
|
|
158
158
|
*/
|
|
159
|
-
export type
|
|
159
|
+
export type ContractPhase = Prisma.ContractPhaseModel;
|
|
160
160
|
/**
|
|
161
|
-
* Model
|
|
161
|
+
* Model ContractPhaseStep
|
|
162
162
|
*
|
|
163
163
|
*/
|
|
164
|
-
export type
|
|
164
|
+
export type ContractPhaseStep = Prisma.ContractPhaseStepModel;
|
|
165
165
|
/**
|
|
166
|
-
* Model
|
|
166
|
+
* Model ContractPhaseStepApproval
|
|
167
167
|
*
|
|
168
168
|
*/
|
|
169
|
-
export type
|
|
169
|
+
export type ContractPhaseStepApproval = Prisma.ContractPhaseStepApprovalModel;
|
|
170
170
|
/**
|
|
171
|
-
* Model
|
|
171
|
+
* Model ContractInstallment
|
|
172
172
|
*
|
|
173
173
|
*/
|
|
174
|
-
export type
|
|
174
|
+
export type ContractInstallment = Prisma.ContractInstallmentModel;
|
|
175
175
|
/**
|
|
176
|
-
* Model
|
|
176
|
+
* Model ContractPayment
|
|
177
177
|
*
|
|
178
178
|
*/
|
|
179
|
-
export type
|
|
179
|
+
export type ContractPayment = Prisma.ContractPaymentModel;
|
|
180
180
|
/**
|
|
181
181
|
* Model ContractDocument
|
|
182
182
|
*
|
|
183
183
|
*/
|
|
184
184
|
export type ContractDocument = Prisma.ContractDocumentModel;
|
|
185
|
+
/**
|
|
186
|
+
* Model ContractTransition
|
|
187
|
+
*
|
|
188
|
+
*/
|
|
189
|
+
export type ContractTransition = Prisma.ContractTransitionModel;
|
|
190
|
+
/**
|
|
191
|
+
* Model ContractEvent
|
|
192
|
+
*
|
|
193
|
+
*/
|
|
194
|
+
export type ContractEvent = Prisma.ContractEventModel;
|
|
195
|
+
/**
|
|
196
|
+
* Model DomainEvent
|
|
197
|
+
*
|
|
198
|
+
*/
|
|
199
|
+
export type DomainEvent = Prisma.DomainEventModel;
|
|
@@ -120,82 +120,97 @@ export type PropertyDocument = Prisma.PropertyDocumentModel;
|
|
|
120
120
|
*/
|
|
121
121
|
export type Amenity = Prisma.AmenityModel;
|
|
122
122
|
/**
|
|
123
|
-
* Model
|
|
123
|
+
* Model PropertyVariant
|
|
124
124
|
*
|
|
125
125
|
*/
|
|
126
|
-
export type
|
|
126
|
+
export type PropertyVariant = Prisma.PropertyVariantModel;
|
|
127
127
|
/**
|
|
128
|
-
* Model
|
|
128
|
+
* Model PropertyVariantAmenity
|
|
129
129
|
*
|
|
130
130
|
*/
|
|
131
|
-
export type
|
|
131
|
+
export type PropertyVariantAmenity = Prisma.PropertyVariantAmenityModel;
|
|
132
132
|
/**
|
|
133
|
-
* Model
|
|
133
|
+
* Model PropertyVariantMedia
|
|
134
134
|
*
|
|
135
135
|
*/
|
|
136
|
-
export type
|
|
136
|
+
export type PropertyVariantMedia = Prisma.PropertyVariantMediaModel;
|
|
137
137
|
/**
|
|
138
|
-
* Model
|
|
138
|
+
* Model PropertyUnit
|
|
139
139
|
*
|
|
140
140
|
*/
|
|
141
|
-
export type
|
|
141
|
+
export type PropertyUnit = Prisma.PropertyUnitModel;
|
|
142
142
|
/**
|
|
143
|
-
* Model
|
|
143
|
+
* Model PropertyAmenity
|
|
144
144
|
*
|
|
145
145
|
*/
|
|
146
|
-
export type
|
|
146
|
+
export type PropertyAmenity = Prisma.PropertyAmenityModel;
|
|
147
147
|
/**
|
|
148
|
-
* Model
|
|
148
|
+
* Model PaymentPlan
|
|
149
149
|
*
|
|
150
150
|
*/
|
|
151
|
-
export type
|
|
151
|
+
export type PaymentPlan = Prisma.PaymentPlanModel;
|
|
152
152
|
/**
|
|
153
|
-
* Model
|
|
153
|
+
* Model PropertyPaymentMethod
|
|
154
154
|
*
|
|
155
155
|
*/
|
|
156
|
-
export type
|
|
156
|
+
export type PropertyPaymentMethod = Prisma.PropertyPaymentMethodModel;
|
|
157
157
|
/**
|
|
158
|
-
* Model
|
|
158
|
+
* Model PropertyPaymentMethodLink
|
|
159
159
|
*
|
|
160
160
|
*/
|
|
161
|
-
export type
|
|
161
|
+
export type PropertyPaymentMethodLink = Prisma.PropertyPaymentMethodLinkModel;
|
|
162
162
|
/**
|
|
163
|
-
* Model
|
|
163
|
+
* Model PropertyPaymentMethodPhase
|
|
164
164
|
*
|
|
165
165
|
*/
|
|
166
|
-
export type
|
|
166
|
+
export type PropertyPaymentMethodPhase = Prisma.PropertyPaymentMethodPhaseModel;
|
|
167
167
|
/**
|
|
168
|
-
* Model
|
|
168
|
+
* Model Contract
|
|
169
169
|
*
|
|
170
170
|
*/
|
|
171
|
-
export type
|
|
171
|
+
export type Contract = Prisma.ContractModel;
|
|
172
172
|
/**
|
|
173
|
-
* Model
|
|
173
|
+
* Model ContractPhase
|
|
174
174
|
*
|
|
175
175
|
*/
|
|
176
|
-
export type
|
|
176
|
+
export type ContractPhase = Prisma.ContractPhaseModel;
|
|
177
177
|
/**
|
|
178
|
-
* Model
|
|
178
|
+
* Model ContractPhaseStep
|
|
179
179
|
*
|
|
180
180
|
*/
|
|
181
|
-
export type
|
|
181
|
+
export type ContractPhaseStep = Prisma.ContractPhaseStepModel;
|
|
182
182
|
/**
|
|
183
|
-
* Model
|
|
183
|
+
* Model ContractPhaseStepApproval
|
|
184
184
|
*
|
|
185
185
|
*/
|
|
186
|
-
export type
|
|
186
|
+
export type ContractPhaseStepApproval = Prisma.ContractPhaseStepApprovalModel;
|
|
187
187
|
/**
|
|
188
|
-
* Model
|
|
188
|
+
* Model ContractInstallment
|
|
189
189
|
*
|
|
190
190
|
*/
|
|
191
|
-
export type
|
|
191
|
+
export type ContractInstallment = Prisma.ContractInstallmentModel;
|
|
192
192
|
/**
|
|
193
|
-
* Model
|
|
193
|
+
* Model ContractPayment
|
|
194
194
|
*
|
|
195
195
|
*/
|
|
196
|
-
export type
|
|
196
|
+
export type ContractPayment = Prisma.ContractPaymentModel;
|
|
197
197
|
/**
|
|
198
198
|
* Model ContractDocument
|
|
199
199
|
*
|
|
200
200
|
*/
|
|
201
201
|
export type ContractDocument = Prisma.ContractDocumentModel;
|
|
202
|
+
/**
|
|
203
|
+
* Model ContractTransition
|
|
204
|
+
*
|
|
205
|
+
*/
|
|
206
|
+
export type ContractTransition = Prisma.ContractTransitionModel;
|
|
207
|
+
/**
|
|
208
|
+
* Model ContractEvent
|
|
209
|
+
*
|
|
210
|
+
*/
|
|
211
|
+
export type ContractEvent = Prisma.ContractEventModel;
|
|
212
|
+
/**
|
|
213
|
+
* Model DomainEvent
|
|
214
|
+
*
|
|
215
|
+
*/
|
|
216
|
+
export type DomainEvent = Prisma.DomainEventModel;
|
|
@@ -197,6 +197,31 @@ export type IntWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
197
197
|
_min?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
198
198
|
_max?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
199
199
|
};
|
|
200
|
+
export type IntNullableFilter<$PrismaModel = never> = {
|
|
201
|
+
equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null;
|
|
202
|
+
in?: number[] | null;
|
|
203
|
+
notIn?: number[] | null;
|
|
204
|
+
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
205
|
+
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
206
|
+
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
207
|
+
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
208
|
+
not?: Prisma.NestedIntNullableFilter<$PrismaModel> | number | null;
|
|
209
|
+
};
|
|
210
|
+
export type IntNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
211
|
+
equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null;
|
|
212
|
+
in?: number[] | null;
|
|
213
|
+
notIn?: number[] | null;
|
|
214
|
+
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
215
|
+
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
216
|
+
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
217
|
+
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
218
|
+
not?: Prisma.NestedIntNullableWithAggregatesFilter<$PrismaModel> | number | null;
|
|
219
|
+
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
220
|
+
_avg?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
|
|
221
|
+
_sum?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
222
|
+
_min?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
223
|
+
_max?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
224
|
+
};
|
|
200
225
|
export type NestedStringFilter<$PrismaModel = never> = {
|
|
201
226
|
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
202
227
|
in?: string[];
|
|
@@ -401,3 +426,18 @@ export type NestedIntWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
401
426
|
_min?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
402
427
|
_max?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
403
428
|
};
|
|
429
|
+
export type NestedIntNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
430
|
+
equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null;
|
|
431
|
+
in?: number[] | null;
|
|
432
|
+
notIn?: number[] | null;
|
|
433
|
+
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
434
|
+
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
435
|
+
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
436
|
+
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
437
|
+
not?: Prisma.NestedIntNullableWithAggregatesFilter<$PrismaModel> | number | null;
|
|
438
|
+
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
439
|
+
_avg?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
|
|
440
|
+
_sum?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
441
|
+
_min?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
442
|
+
_max?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
443
|
+
};
|
|
@@ -332,168 +332,168 @@ export interface PrismaClient<in LogOpts extends Prisma.LogLevel = never, in out
|
|
|
332
332
|
omit: OmitOpts;
|
|
333
333
|
}>;
|
|
334
334
|
/**
|
|
335
|
-
* `prisma.
|
|
335
|
+
* `prisma.propertyVariant`: Exposes CRUD operations for the **PropertyVariant** model.
|
|
336
336
|
* Example usage:
|
|
337
337
|
* ```ts
|
|
338
|
-
* // Fetch zero or more
|
|
339
|
-
* const
|
|
338
|
+
* // Fetch zero or more PropertyVariants
|
|
339
|
+
* const propertyVariants = await prisma.propertyVariant.findMany()
|
|
340
340
|
* ```
|
|
341
341
|
*/
|
|
342
|
-
get
|
|
342
|
+
get propertyVariant(): Prisma.PropertyVariantDelegate<ExtArgs, {
|
|
343
343
|
omit: OmitOpts;
|
|
344
344
|
}>;
|
|
345
345
|
/**
|
|
346
|
-
* `prisma.
|
|
346
|
+
* `prisma.propertyVariantAmenity`: Exposes CRUD operations for the **PropertyVariantAmenity** model.
|
|
347
347
|
* Example usage:
|
|
348
348
|
* ```ts
|
|
349
|
-
* // Fetch zero or more
|
|
350
|
-
* const
|
|
349
|
+
* // Fetch zero or more PropertyVariantAmenities
|
|
350
|
+
* const propertyVariantAmenities = await prisma.propertyVariantAmenity.findMany()
|
|
351
351
|
* ```
|
|
352
352
|
*/
|
|
353
|
-
get
|
|
353
|
+
get propertyVariantAmenity(): Prisma.PropertyVariantAmenityDelegate<ExtArgs, {
|
|
354
354
|
omit: OmitOpts;
|
|
355
355
|
}>;
|
|
356
356
|
/**
|
|
357
|
-
* `prisma.
|
|
357
|
+
* `prisma.propertyVariantMedia`: Exposes CRUD operations for the **PropertyVariantMedia** model.
|
|
358
358
|
* Example usage:
|
|
359
359
|
* ```ts
|
|
360
|
-
* // Fetch zero or more
|
|
361
|
-
* const
|
|
360
|
+
* // Fetch zero or more PropertyVariantMedias
|
|
361
|
+
* const propertyVariantMedias = await prisma.propertyVariantMedia.findMany()
|
|
362
362
|
* ```
|
|
363
363
|
*/
|
|
364
|
-
get
|
|
364
|
+
get propertyVariantMedia(): Prisma.PropertyVariantMediaDelegate<ExtArgs, {
|
|
365
365
|
omit: OmitOpts;
|
|
366
366
|
}>;
|
|
367
367
|
/**
|
|
368
|
-
* `prisma.
|
|
368
|
+
* `prisma.propertyUnit`: Exposes CRUD operations for the **PropertyUnit** model.
|
|
369
369
|
* Example usage:
|
|
370
370
|
* ```ts
|
|
371
|
-
* // Fetch zero or more
|
|
372
|
-
* const
|
|
371
|
+
* // Fetch zero or more PropertyUnits
|
|
372
|
+
* const propertyUnits = await prisma.propertyUnit.findMany()
|
|
373
373
|
* ```
|
|
374
374
|
*/
|
|
375
|
-
get
|
|
375
|
+
get propertyUnit(): Prisma.PropertyUnitDelegate<ExtArgs, {
|
|
376
376
|
omit: OmitOpts;
|
|
377
377
|
}>;
|
|
378
378
|
/**
|
|
379
|
-
* `prisma.
|
|
379
|
+
* `prisma.propertyAmenity`: Exposes CRUD operations for the **PropertyAmenity** model.
|
|
380
380
|
* Example usage:
|
|
381
381
|
* ```ts
|
|
382
|
-
* // Fetch zero or more
|
|
383
|
-
* const
|
|
382
|
+
* // Fetch zero or more PropertyAmenities
|
|
383
|
+
* const propertyAmenities = await prisma.propertyAmenity.findMany()
|
|
384
384
|
* ```
|
|
385
385
|
*/
|
|
386
|
-
get
|
|
386
|
+
get propertyAmenity(): Prisma.PropertyAmenityDelegate<ExtArgs, {
|
|
387
387
|
omit: OmitOpts;
|
|
388
388
|
}>;
|
|
389
389
|
/**
|
|
390
|
-
* `prisma.
|
|
390
|
+
* `prisma.paymentPlan`: Exposes CRUD operations for the **PaymentPlan** model.
|
|
391
391
|
* Example usage:
|
|
392
392
|
* ```ts
|
|
393
|
-
* // Fetch zero or more
|
|
394
|
-
* const
|
|
393
|
+
* // Fetch zero or more PaymentPlans
|
|
394
|
+
* const paymentPlans = await prisma.paymentPlan.findMany()
|
|
395
395
|
* ```
|
|
396
396
|
*/
|
|
397
|
-
get
|
|
397
|
+
get paymentPlan(): Prisma.PaymentPlanDelegate<ExtArgs, {
|
|
398
398
|
omit: OmitOpts;
|
|
399
399
|
}>;
|
|
400
400
|
/**
|
|
401
|
-
* `prisma.
|
|
401
|
+
* `prisma.propertyPaymentMethod`: Exposes CRUD operations for the **PropertyPaymentMethod** model.
|
|
402
402
|
* Example usage:
|
|
403
403
|
* ```ts
|
|
404
|
-
* // Fetch zero or more
|
|
405
|
-
* const
|
|
404
|
+
* // Fetch zero or more PropertyPaymentMethods
|
|
405
|
+
* const propertyPaymentMethods = await prisma.propertyPaymentMethod.findMany()
|
|
406
406
|
* ```
|
|
407
407
|
*/
|
|
408
|
-
get
|
|
408
|
+
get propertyPaymentMethod(): Prisma.PropertyPaymentMethodDelegate<ExtArgs, {
|
|
409
409
|
omit: OmitOpts;
|
|
410
410
|
}>;
|
|
411
411
|
/**
|
|
412
|
-
* `prisma.
|
|
412
|
+
* `prisma.propertyPaymentMethodLink`: Exposes CRUD operations for the **PropertyPaymentMethodLink** model.
|
|
413
413
|
* Example usage:
|
|
414
414
|
* ```ts
|
|
415
|
-
* // Fetch zero or more
|
|
416
|
-
* const
|
|
415
|
+
* // Fetch zero or more PropertyPaymentMethodLinks
|
|
416
|
+
* const propertyPaymentMethodLinks = await prisma.propertyPaymentMethodLink.findMany()
|
|
417
417
|
* ```
|
|
418
418
|
*/
|
|
419
|
-
get
|
|
419
|
+
get propertyPaymentMethodLink(): Prisma.PropertyPaymentMethodLinkDelegate<ExtArgs, {
|
|
420
420
|
omit: OmitOpts;
|
|
421
421
|
}>;
|
|
422
422
|
/**
|
|
423
|
-
* `prisma.
|
|
423
|
+
* `prisma.propertyPaymentMethodPhase`: Exposes CRUD operations for the **PropertyPaymentMethodPhase** model.
|
|
424
424
|
* Example usage:
|
|
425
425
|
* ```ts
|
|
426
|
-
* // Fetch zero or more
|
|
427
|
-
* const
|
|
426
|
+
* // Fetch zero or more PropertyPaymentMethodPhases
|
|
427
|
+
* const propertyPaymentMethodPhases = await prisma.propertyPaymentMethodPhase.findMany()
|
|
428
428
|
* ```
|
|
429
429
|
*/
|
|
430
|
-
get
|
|
430
|
+
get propertyPaymentMethodPhase(): Prisma.PropertyPaymentMethodPhaseDelegate<ExtArgs, {
|
|
431
431
|
omit: OmitOpts;
|
|
432
432
|
}>;
|
|
433
433
|
/**
|
|
434
|
-
* `prisma.
|
|
434
|
+
* `prisma.contract`: Exposes CRUD operations for the **Contract** model.
|
|
435
435
|
* Example usage:
|
|
436
436
|
* ```ts
|
|
437
|
-
* // Fetch zero or more
|
|
438
|
-
* const
|
|
437
|
+
* // Fetch zero or more Contracts
|
|
438
|
+
* const contracts = await prisma.contract.findMany()
|
|
439
439
|
* ```
|
|
440
440
|
*/
|
|
441
|
-
get
|
|
441
|
+
get contract(): Prisma.ContractDelegate<ExtArgs, {
|
|
442
442
|
omit: OmitOpts;
|
|
443
443
|
}>;
|
|
444
444
|
/**
|
|
445
|
-
* `prisma.
|
|
445
|
+
* `prisma.contractPhase`: Exposes CRUD operations for the **ContractPhase** model.
|
|
446
446
|
* Example usage:
|
|
447
447
|
* ```ts
|
|
448
|
-
* // Fetch zero or more
|
|
449
|
-
* const
|
|
448
|
+
* // Fetch zero or more ContractPhases
|
|
449
|
+
* const contractPhases = await prisma.contractPhase.findMany()
|
|
450
450
|
* ```
|
|
451
451
|
*/
|
|
452
|
-
get
|
|
452
|
+
get contractPhase(): Prisma.ContractPhaseDelegate<ExtArgs, {
|
|
453
453
|
omit: OmitOpts;
|
|
454
454
|
}>;
|
|
455
455
|
/**
|
|
456
|
-
* `prisma.
|
|
456
|
+
* `prisma.contractPhaseStep`: Exposes CRUD operations for the **ContractPhaseStep** model.
|
|
457
457
|
* Example usage:
|
|
458
458
|
* ```ts
|
|
459
|
-
* // Fetch zero or more
|
|
460
|
-
* const
|
|
459
|
+
* // Fetch zero or more ContractPhaseSteps
|
|
460
|
+
* const contractPhaseSteps = await prisma.contractPhaseStep.findMany()
|
|
461
461
|
* ```
|
|
462
462
|
*/
|
|
463
|
-
get
|
|
463
|
+
get contractPhaseStep(): Prisma.ContractPhaseStepDelegate<ExtArgs, {
|
|
464
464
|
omit: OmitOpts;
|
|
465
465
|
}>;
|
|
466
466
|
/**
|
|
467
|
-
* `prisma.
|
|
467
|
+
* `prisma.contractPhaseStepApproval`: Exposes CRUD operations for the **ContractPhaseStepApproval** model.
|
|
468
468
|
* Example usage:
|
|
469
469
|
* ```ts
|
|
470
|
-
* // Fetch zero or more
|
|
471
|
-
* const
|
|
470
|
+
* // Fetch zero or more ContractPhaseStepApprovals
|
|
471
|
+
* const contractPhaseStepApprovals = await prisma.contractPhaseStepApproval.findMany()
|
|
472
472
|
* ```
|
|
473
473
|
*/
|
|
474
|
-
get
|
|
474
|
+
get contractPhaseStepApproval(): Prisma.ContractPhaseStepApprovalDelegate<ExtArgs, {
|
|
475
475
|
omit: OmitOpts;
|
|
476
476
|
}>;
|
|
477
477
|
/**
|
|
478
|
-
* `prisma.
|
|
478
|
+
* `prisma.contractInstallment`: Exposes CRUD operations for the **ContractInstallment** model.
|
|
479
479
|
* Example usage:
|
|
480
480
|
* ```ts
|
|
481
|
-
* // Fetch zero or more
|
|
482
|
-
* const
|
|
481
|
+
* // Fetch zero or more ContractInstallments
|
|
482
|
+
* const contractInstallments = await prisma.contractInstallment.findMany()
|
|
483
483
|
* ```
|
|
484
484
|
*/
|
|
485
|
-
get
|
|
485
|
+
get contractInstallment(): Prisma.ContractInstallmentDelegate<ExtArgs, {
|
|
486
486
|
omit: OmitOpts;
|
|
487
487
|
}>;
|
|
488
488
|
/**
|
|
489
|
-
* `prisma.
|
|
489
|
+
* `prisma.contractPayment`: Exposes CRUD operations for the **ContractPayment** model.
|
|
490
490
|
* Example usage:
|
|
491
491
|
* ```ts
|
|
492
|
-
* // Fetch zero or more
|
|
493
|
-
* const
|
|
492
|
+
* // Fetch zero or more ContractPayments
|
|
493
|
+
* const contractPayments = await prisma.contractPayment.findMany()
|
|
494
494
|
* ```
|
|
495
495
|
*/
|
|
496
|
-
get
|
|
496
|
+
get contractPayment(): Prisma.ContractPaymentDelegate<ExtArgs, {
|
|
497
497
|
omit: OmitOpts;
|
|
498
498
|
}>;
|
|
499
499
|
/**
|
|
@@ -507,5 +507,38 @@ export interface PrismaClient<in LogOpts extends Prisma.LogLevel = never, in out
|
|
|
507
507
|
get contractDocument(): Prisma.ContractDocumentDelegate<ExtArgs, {
|
|
508
508
|
omit: OmitOpts;
|
|
509
509
|
}>;
|
|
510
|
+
/**
|
|
511
|
+
* `prisma.contractTransition`: Exposes CRUD operations for the **ContractTransition** model.
|
|
512
|
+
* Example usage:
|
|
513
|
+
* ```ts
|
|
514
|
+
* // Fetch zero or more ContractTransitions
|
|
515
|
+
* const contractTransitions = await prisma.contractTransition.findMany()
|
|
516
|
+
* ```
|
|
517
|
+
*/
|
|
518
|
+
get contractTransition(): Prisma.ContractTransitionDelegate<ExtArgs, {
|
|
519
|
+
omit: OmitOpts;
|
|
520
|
+
}>;
|
|
521
|
+
/**
|
|
522
|
+
* `prisma.contractEvent`: Exposes CRUD operations for the **ContractEvent** model.
|
|
523
|
+
* Example usage:
|
|
524
|
+
* ```ts
|
|
525
|
+
* // Fetch zero or more ContractEvents
|
|
526
|
+
* const contractEvents = await prisma.contractEvent.findMany()
|
|
527
|
+
* ```
|
|
528
|
+
*/
|
|
529
|
+
get contractEvent(): Prisma.ContractEventDelegate<ExtArgs, {
|
|
530
|
+
omit: OmitOpts;
|
|
531
|
+
}>;
|
|
532
|
+
/**
|
|
533
|
+
* `prisma.domainEvent`: Exposes CRUD operations for the **DomainEvent** model.
|
|
534
|
+
* Example usage:
|
|
535
|
+
* ```ts
|
|
536
|
+
* // Fetch zero or more DomainEvents
|
|
537
|
+
* const domainEvents = await prisma.domainEvent.findMany()
|
|
538
|
+
* ```
|
|
539
|
+
*/
|
|
540
|
+
get domainEvent(): Prisma.DomainEventDelegate<ExtArgs, {
|
|
541
|
+
omit: OmitOpts;
|
|
542
|
+
}>;
|
|
510
543
|
}
|
|
511
544
|
export declare function getPrismaClientClass(): PrismaClientConstructor;
|