@valentine-efagene/qshelter-common 2.0.29 → 2.0.31
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 +20 -0
- package/dist/generated/client/client.d.ts +20 -0
- package/dist/generated/client/commonInputTypes.d.ts +531 -51
- package/dist/generated/client/enums.d.ts +133 -0
- package/dist/generated/client/enums.js +117 -0
- package/dist/generated/client/internal/class.d.ts +44 -0
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +478 -35
- package/dist/generated/client/internal/prismaNamespace.js +139 -36
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +146 -35
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +139 -36
- package/dist/generated/client/models/Contract.d.ts +423 -148
- package/dist/generated/client/models/ContractDocument.d.ts +32 -28
- package/dist/generated/client/models/ContractInstallment.d.ts +30 -26
- package/dist/generated/client/models/ContractPayment.d.ts +44 -40
- package/dist/generated/client/models/ContractPhase.d.ts +539 -121
- package/dist/generated/client/models/ContractPhaseStep.d.ts +208 -108
- package/dist/generated/client/models/ContractPhaseStepApproval.d.ts +32 -28
- package/dist/generated/client/models/ContractPhaseStepDocument.d.ts +1052 -0
- package/dist/generated/client/models/ContractPhaseStepDocument.js +1 -0
- package/dist/generated/client/models/ContractTermination.d.ts +3449 -0
- package/dist/generated/client/models/ContractTermination.js +1 -0
- package/dist/generated/client/models/PaymentMethodPhaseDocument.d.ts +1216 -0
- package/dist/generated/client/models/PaymentMethodPhaseDocument.js +1 -0
- package/dist/generated/client/models/PaymentMethodPhaseStep.d.ts +1187 -0
- package/dist/generated/client/models/PaymentMethodPhaseStep.js +1 -0
- package/dist/generated/client/models/PaymentPlan.d.ts +34 -30
- package/dist/generated/client/models/PropertyPaymentMethodPhase.d.ts +504 -135
- package/dist/generated/client/models/Tenant.d.ts +163 -0
- package/dist/generated/client/models/User.d.ts +586 -0
- package/dist/generated/client/models/index.d.ts +4 -0
- package/dist/generated/client/models/index.js +4 -0
- package/dist/generated/client/models.d.ts +4 -0
- package/package.json +1 -1
- package/prisma/migrations/20260101081428_normalize_schema/migration.sql +119 -0
- package/prisma/migrations/20260101102022_add_contract_termination/migration.sql +69 -0
- package/prisma/schema.prisma +340 -30
|
@@ -260,15 +260,19 @@ export declare const ModelName: {
|
|
|
260
260
|
readonly PropertyPaymentMethod: "PropertyPaymentMethod";
|
|
261
261
|
readonly PropertyPaymentMethodLink: "PropertyPaymentMethodLink";
|
|
262
262
|
readonly PropertyPaymentMethodPhase: "PropertyPaymentMethodPhase";
|
|
263
|
+
readonly PaymentMethodPhaseStep: "PaymentMethodPhaseStep";
|
|
264
|
+
readonly PaymentMethodPhaseDocument: "PaymentMethodPhaseDocument";
|
|
263
265
|
readonly Contract: "Contract";
|
|
264
266
|
readonly ContractPhase: "ContractPhase";
|
|
265
267
|
readonly ContractPhaseStep: "ContractPhaseStep";
|
|
268
|
+
readonly ContractPhaseStepDocument: "ContractPhaseStepDocument";
|
|
266
269
|
readonly ContractPhaseStepApproval: "ContractPhaseStepApproval";
|
|
267
270
|
readonly ContractInstallment: "ContractInstallment";
|
|
268
271
|
readonly ContractPayment: "ContractPayment";
|
|
269
272
|
readonly ContractDocument: "ContractDocument";
|
|
270
273
|
readonly ContractTransition: "ContractTransition";
|
|
271
274
|
readonly ContractEvent: "ContractEvent";
|
|
275
|
+
readonly ContractTermination: "ContractTermination";
|
|
272
276
|
readonly Prequalification: "Prequalification";
|
|
273
277
|
readonly PaymentMethodChangeRequest: "PaymentMethodChangeRequest";
|
|
274
278
|
readonly DocumentRequirementRule: "DocumentRequirementRule";
|
|
@@ -285,7 +289,7 @@ export type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runt
|
|
|
285
289
|
omit: GlobalOmitOptions;
|
|
286
290
|
};
|
|
287
291
|
meta: {
|
|
288
|
-
modelProps: "user" | "role" | "permission" | "rolePermission" | "userRole" | "tenant" | "refreshToken" | "passwordReset" | "userSuspension" | "emailPreference" | "deviceEndpoint" | "social" | "oAuthState" | "wallet" | "transaction" | "settings" | "property" | "propertyMedia" | "propertyDocument" | "amenity" | "propertyVariant" | "propertyVariantAmenity" | "propertyVariantMedia" | "propertyUnit" | "propertyAmenity" | "paymentPlan" | "propertyPaymentMethod" | "propertyPaymentMethodLink" | "propertyPaymentMethodPhase" | "contract" | "contractPhase" | "contractPhaseStep" | "contractPhaseStepApproval" | "contractInstallment" | "contractPayment" | "contractDocument" | "contractTransition" | "contractEvent" | "prequalification" | "paymentMethodChangeRequest" | "documentRequirementRule" | "domainEvent";
|
|
292
|
+
modelProps: "user" | "role" | "permission" | "rolePermission" | "userRole" | "tenant" | "refreshToken" | "passwordReset" | "userSuspension" | "emailPreference" | "deviceEndpoint" | "social" | "oAuthState" | "wallet" | "transaction" | "settings" | "property" | "propertyMedia" | "propertyDocument" | "amenity" | "propertyVariant" | "propertyVariantAmenity" | "propertyVariantMedia" | "propertyUnit" | "propertyAmenity" | "paymentPlan" | "propertyPaymentMethod" | "propertyPaymentMethodLink" | "propertyPaymentMethodPhase" | "paymentMethodPhaseStep" | "paymentMethodPhaseDocument" | "contract" | "contractPhase" | "contractPhaseStep" | "contractPhaseStepDocument" | "contractPhaseStepApproval" | "contractInstallment" | "contractPayment" | "contractDocument" | "contractTransition" | "contractEvent" | "contractTermination" | "prequalification" | "paymentMethodChangeRequest" | "documentRequirementRule" | "domainEvent";
|
|
289
293
|
txIsolationLevel: TransactionIsolationLevel;
|
|
290
294
|
};
|
|
291
295
|
model: {
|
|
@@ -2203,6 +2207,138 @@ export type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runt
|
|
|
2203
2207
|
};
|
|
2204
2208
|
};
|
|
2205
2209
|
};
|
|
2210
|
+
PaymentMethodPhaseStep: {
|
|
2211
|
+
payload: Prisma.$PaymentMethodPhaseStepPayload<ExtArgs>;
|
|
2212
|
+
fields: Prisma.PaymentMethodPhaseStepFieldRefs;
|
|
2213
|
+
operations: {
|
|
2214
|
+
findUnique: {
|
|
2215
|
+
args: Prisma.PaymentMethodPhaseStepFindUniqueArgs<ExtArgs>;
|
|
2216
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PaymentMethodPhaseStepPayload> | null;
|
|
2217
|
+
};
|
|
2218
|
+
findUniqueOrThrow: {
|
|
2219
|
+
args: Prisma.PaymentMethodPhaseStepFindUniqueOrThrowArgs<ExtArgs>;
|
|
2220
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PaymentMethodPhaseStepPayload>;
|
|
2221
|
+
};
|
|
2222
|
+
findFirst: {
|
|
2223
|
+
args: Prisma.PaymentMethodPhaseStepFindFirstArgs<ExtArgs>;
|
|
2224
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PaymentMethodPhaseStepPayload> | null;
|
|
2225
|
+
};
|
|
2226
|
+
findFirstOrThrow: {
|
|
2227
|
+
args: Prisma.PaymentMethodPhaseStepFindFirstOrThrowArgs<ExtArgs>;
|
|
2228
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PaymentMethodPhaseStepPayload>;
|
|
2229
|
+
};
|
|
2230
|
+
findMany: {
|
|
2231
|
+
args: Prisma.PaymentMethodPhaseStepFindManyArgs<ExtArgs>;
|
|
2232
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PaymentMethodPhaseStepPayload>[];
|
|
2233
|
+
};
|
|
2234
|
+
create: {
|
|
2235
|
+
args: Prisma.PaymentMethodPhaseStepCreateArgs<ExtArgs>;
|
|
2236
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PaymentMethodPhaseStepPayload>;
|
|
2237
|
+
};
|
|
2238
|
+
createMany: {
|
|
2239
|
+
args: Prisma.PaymentMethodPhaseStepCreateManyArgs<ExtArgs>;
|
|
2240
|
+
result: BatchPayload;
|
|
2241
|
+
};
|
|
2242
|
+
delete: {
|
|
2243
|
+
args: Prisma.PaymentMethodPhaseStepDeleteArgs<ExtArgs>;
|
|
2244
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PaymentMethodPhaseStepPayload>;
|
|
2245
|
+
};
|
|
2246
|
+
update: {
|
|
2247
|
+
args: Prisma.PaymentMethodPhaseStepUpdateArgs<ExtArgs>;
|
|
2248
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PaymentMethodPhaseStepPayload>;
|
|
2249
|
+
};
|
|
2250
|
+
deleteMany: {
|
|
2251
|
+
args: Prisma.PaymentMethodPhaseStepDeleteManyArgs<ExtArgs>;
|
|
2252
|
+
result: BatchPayload;
|
|
2253
|
+
};
|
|
2254
|
+
updateMany: {
|
|
2255
|
+
args: Prisma.PaymentMethodPhaseStepUpdateManyArgs<ExtArgs>;
|
|
2256
|
+
result: BatchPayload;
|
|
2257
|
+
};
|
|
2258
|
+
upsert: {
|
|
2259
|
+
args: Prisma.PaymentMethodPhaseStepUpsertArgs<ExtArgs>;
|
|
2260
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PaymentMethodPhaseStepPayload>;
|
|
2261
|
+
};
|
|
2262
|
+
aggregate: {
|
|
2263
|
+
args: Prisma.PaymentMethodPhaseStepAggregateArgs<ExtArgs>;
|
|
2264
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregatePaymentMethodPhaseStep>;
|
|
2265
|
+
};
|
|
2266
|
+
groupBy: {
|
|
2267
|
+
args: Prisma.PaymentMethodPhaseStepGroupByArgs<ExtArgs>;
|
|
2268
|
+
result: runtime.Types.Utils.Optional<Prisma.PaymentMethodPhaseStepGroupByOutputType>[];
|
|
2269
|
+
};
|
|
2270
|
+
count: {
|
|
2271
|
+
args: Prisma.PaymentMethodPhaseStepCountArgs<ExtArgs>;
|
|
2272
|
+
result: runtime.Types.Utils.Optional<Prisma.PaymentMethodPhaseStepCountAggregateOutputType> | number;
|
|
2273
|
+
};
|
|
2274
|
+
};
|
|
2275
|
+
};
|
|
2276
|
+
PaymentMethodPhaseDocument: {
|
|
2277
|
+
payload: Prisma.$PaymentMethodPhaseDocumentPayload<ExtArgs>;
|
|
2278
|
+
fields: Prisma.PaymentMethodPhaseDocumentFieldRefs;
|
|
2279
|
+
operations: {
|
|
2280
|
+
findUnique: {
|
|
2281
|
+
args: Prisma.PaymentMethodPhaseDocumentFindUniqueArgs<ExtArgs>;
|
|
2282
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PaymentMethodPhaseDocumentPayload> | null;
|
|
2283
|
+
};
|
|
2284
|
+
findUniqueOrThrow: {
|
|
2285
|
+
args: Prisma.PaymentMethodPhaseDocumentFindUniqueOrThrowArgs<ExtArgs>;
|
|
2286
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PaymentMethodPhaseDocumentPayload>;
|
|
2287
|
+
};
|
|
2288
|
+
findFirst: {
|
|
2289
|
+
args: Prisma.PaymentMethodPhaseDocumentFindFirstArgs<ExtArgs>;
|
|
2290
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PaymentMethodPhaseDocumentPayload> | null;
|
|
2291
|
+
};
|
|
2292
|
+
findFirstOrThrow: {
|
|
2293
|
+
args: Prisma.PaymentMethodPhaseDocumentFindFirstOrThrowArgs<ExtArgs>;
|
|
2294
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PaymentMethodPhaseDocumentPayload>;
|
|
2295
|
+
};
|
|
2296
|
+
findMany: {
|
|
2297
|
+
args: Prisma.PaymentMethodPhaseDocumentFindManyArgs<ExtArgs>;
|
|
2298
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PaymentMethodPhaseDocumentPayload>[];
|
|
2299
|
+
};
|
|
2300
|
+
create: {
|
|
2301
|
+
args: Prisma.PaymentMethodPhaseDocumentCreateArgs<ExtArgs>;
|
|
2302
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PaymentMethodPhaseDocumentPayload>;
|
|
2303
|
+
};
|
|
2304
|
+
createMany: {
|
|
2305
|
+
args: Prisma.PaymentMethodPhaseDocumentCreateManyArgs<ExtArgs>;
|
|
2306
|
+
result: BatchPayload;
|
|
2307
|
+
};
|
|
2308
|
+
delete: {
|
|
2309
|
+
args: Prisma.PaymentMethodPhaseDocumentDeleteArgs<ExtArgs>;
|
|
2310
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PaymentMethodPhaseDocumentPayload>;
|
|
2311
|
+
};
|
|
2312
|
+
update: {
|
|
2313
|
+
args: Prisma.PaymentMethodPhaseDocumentUpdateArgs<ExtArgs>;
|
|
2314
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PaymentMethodPhaseDocumentPayload>;
|
|
2315
|
+
};
|
|
2316
|
+
deleteMany: {
|
|
2317
|
+
args: Prisma.PaymentMethodPhaseDocumentDeleteManyArgs<ExtArgs>;
|
|
2318
|
+
result: BatchPayload;
|
|
2319
|
+
};
|
|
2320
|
+
updateMany: {
|
|
2321
|
+
args: Prisma.PaymentMethodPhaseDocumentUpdateManyArgs<ExtArgs>;
|
|
2322
|
+
result: BatchPayload;
|
|
2323
|
+
};
|
|
2324
|
+
upsert: {
|
|
2325
|
+
args: Prisma.PaymentMethodPhaseDocumentUpsertArgs<ExtArgs>;
|
|
2326
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PaymentMethodPhaseDocumentPayload>;
|
|
2327
|
+
};
|
|
2328
|
+
aggregate: {
|
|
2329
|
+
args: Prisma.PaymentMethodPhaseDocumentAggregateArgs<ExtArgs>;
|
|
2330
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregatePaymentMethodPhaseDocument>;
|
|
2331
|
+
};
|
|
2332
|
+
groupBy: {
|
|
2333
|
+
args: Prisma.PaymentMethodPhaseDocumentGroupByArgs<ExtArgs>;
|
|
2334
|
+
result: runtime.Types.Utils.Optional<Prisma.PaymentMethodPhaseDocumentGroupByOutputType>[];
|
|
2335
|
+
};
|
|
2336
|
+
count: {
|
|
2337
|
+
args: Prisma.PaymentMethodPhaseDocumentCountArgs<ExtArgs>;
|
|
2338
|
+
result: runtime.Types.Utils.Optional<Prisma.PaymentMethodPhaseDocumentCountAggregateOutputType> | number;
|
|
2339
|
+
};
|
|
2340
|
+
};
|
|
2341
|
+
};
|
|
2206
2342
|
Contract: {
|
|
2207
2343
|
payload: Prisma.$ContractPayload<ExtArgs>;
|
|
2208
2344
|
fields: Prisma.ContractFieldRefs;
|
|
@@ -2401,6 +2537,72 @@ export type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runt
|
|
|
2401
2537
|
};
|
|
2402
2538
|
};
|
|
2403
2539
|
};
|
|
2540
|
+
ContractPhaseStepDocument: {
|
|
2541
|
+
payload: Prisma.$ContractPhaseStepDocumentPayload<ExtArgs>;
|
|
2542
|
+
fields: Prisma.ContractPhaseStepDocumentFieldRefs;
|
|
2543
|
+
operations: {
|
|
2544
|
+
findUnique: {
|
|
2545
|
+
args: Prisma.ContractPhaseStepDocumentFindUniqueArgs<ExtArgs>;
|
|
2546
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ContractPhaseStepDocumentPayload> | null;
|
|
2547
|
+
};
|
|
2548
|
+
findUniqueOrThrow: {
|
|
2549
|
+
args: Prisma.ContractPhaseStepDocumentFindUniqueOrThrowArgs<ExtArgs>;
|
|
2550
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ContractPhaseStepDocumentPayload>;
|
|
2551
|
+
};
|
|
2552
|
+
findFirst: {
|
|
2553
|
+
args: Prisma.ContractPhaseStepDocumentFindFirstArgs<ExtArgs>;
|
|
2554
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ContractPhaseStepDocumentPayload> | null;
|
|
2555
|
+
};
|
|
2556
|
+
findFirstOrThrow: {
|
|
2557
|
+
args: Prisma.ContractPhaseStepDocumentFindFirstOrThrowArgs<ExtArgs>;
|
|
2558
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ContractPhaseStepDocumentPayload>;
|
|
2559
|
+
};
|
|
2560
|
+
findMany: {
|
|
2561
|
+
args: Prisma.ContractPhaseStepDocumentFindManyArgs<ExtArgs>;
|
|
2562
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ContractPhaseStepDocumentPayload>[];
|
|
2563
|
+
};
|
|
2564
|
+
create: {
|
|
2565
|
+
args: Prisma.ContractPhaseStepDocumentCreateArgs<ExtArgs>;
|
|
2566
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ContractPhaseStepDocumentPayload>;
|
|
2567
|
+
};
|
|
2568
|
+
createMany: {
|
|
2569
|
+
args: Prisma.ContractPhaseStepDocumentCreateManyArgs<ExtArgs>;
|
|
2570
|
+
result: BatchPayload;
|
|
2571
|
+
};
|
|
2572
|
+
delete: {
|
|
2573
|
+
args: Prisma.ContractPhaseStepDocumentDeleteArgs<ExtArgs>;
|
|
2574
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ContractPhaseStepDocumentPayload>;
|
|
2575
|
+
};
|
|
2576
|
+
update: {
|
|
2577
|
+
args: Prisma.ContractPhaseStepDocumentUpdateArgs<ExtArgs>;
|
|
2578
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ContractPhaseStepDocumentPayload>;
|
|
2579
|
+
};
|
|
2580
|
+
deleteMany: {
|
|
2581
|
+
args: Prisma.ContractPhaseStepDocumentDeleteManyArgs<ExtArgs>;
|
|
2582
|
+
result: BatchPayload;
|
|
2583
|
+
};
|
|
2584
|
+
updateMany: {
|
|
2585
|
+
args: Prisma.ContractPhaseStepDocumentUpdateManyArgs<ExtArgs>;
|
|
2586
|
+
result: BatchPayload;
|
|
2587
|
+
};
|
|
2588
|
+
upsert: {
|
|
2589
|
+
args: Prisma.ContractPhaseStepDocumentUpsertArgs<ExtArgs>;
|
|
2590
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ContractPhaseStepDocumentPayload>;
|
|
2591
|
+
};
|
|
2592
|
+
aggregate: {
|
|
2593
|
+
args: Prisma.ContractPhaseStepDocumentAggregateArgs<ExtArgs>;
|
|
2594
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateContractPhaseStepDocument>;
|
|
2595
|
+
};
|
|
2596
|
+
groupBy: {
|
|
2597
|
+
args: Prisma.ContractPhaseStepDocumentGroupByArgs<ExtArgs>;
|
|
2598
|
+
result: runtime.Types.Utils.Optional<Prisma.ContractPhaseStepDocumentGroupByOutputType>[];
|
|
2599
|
+
};
|
|
2600
|
+
count: {
|
|
2601
|
+
args: Prisma.ContractPhaseStepDocumentCountArgs<ExtArgs>;
|
|
2602
|
+
result: runtime.Types.Utils.Optional<Prisma.ContractPhaseStepDocumentCountAggregateOutputType> | number;
|
|
2603
|
+
};
|
|
2604
|
+
};
|
|
2605
|
+
};
|
|
2404
2606
|
ContractPhaseStepApproval: {
|
|
2405
2607
|
payload: Prisma.$ContractPhaseStepApprovalPayload<ExtArgs>;
|
|
2406
2608
|
fields: Prisma.ContractPhaseStepApprovalFieldRefs;
|
|
@@ -2797,6 +2999,72 @@ export type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runt
|
|
|
2797
2999
|
};
|
|
2798
3000
|
};
|
|
2799
3001
|
};
|
|
3002
|
+
ContractTermination: {
|
|
3003
|
+
payload: Prisma.$ContractTerminationPayload<ExtArgs>;
|
|
3004
|
+
fields: Prisma.ContractTerminationFieldRefs;
|
|
3005
|
+
operations: {
|
|
3006
|
+
findUnique: {
|
|
3007
|
+
args: Prisma.ContractTerminationFindUniqueArgs<ExtArgs>;
|
|
3008
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ContractTerminationPayload> | null;
|
|
3009
|
+
};
|
|
3010
|
+
findUniqueOrThrow: {
|
|
3011
|
+
args: Prisma.ContractTerminationFindUniqueOrThrowArgs<ExtArgs>;
|
|
3012
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ContractTerminationPayload>;
|
|
3013
|
+
};
|
|
3014
|
+
findFirst: {
|
|
3015
|
+
args: Prisma.ContractTerminationFindFirstArgs<ExtArgs>;
|
|
3016
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ContractTerminationPayload> | null;
|
|
3017
|
+
};
|
|
3018
|
+
findFirstOrThrow: {
|
|
3019
|
+
args: Prisma.ContractTerminationFindFirstOrThrowArgs<ExtArgs>;
|
|
3020
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ContractTerminationPayload>;
|
|
3021
|
+
};
|
|
3022
|
+
findMany: {
|
|
3023
|
+
args: Prisma.ContractTerminationFindManyArgs<ExtArgs>;
|
|
3024
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ContractTerminationPayload>[];
|
|
3025
|
+
};
|
|
3026
|
+
create: {
|
|
3027
|
+
args: Prisma.ContractTerminationCreateArgs<ExtArgs>;
|
|
3028
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ContractTerminationPayload>;
|
|
3029
|
+
};
|
|
3030
|
+
createMany: {
|
|
3031
|
+
args: Prisma.ContractTerminationCreateManyArgs<ExtArgs>;
|
|
3032
|
+
result: BatchPayload;
|
|
3033
|
+
};
|
|
3034
|
+
delete: {
|
|
3035
|
+
args: Prisma.ContractTerminationDeleteArgs<ExtArgs>;
|
|
3036
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ContractTerminationPayload>;
|
|
3037
|
+
};
|
|
3038
|
+
update: {
|
|
3039
|
+
args: Prisma.ContractTerminationUpdateArgs<ExtArgs>;
|
|
3040
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ContractTerminationPayload>;
|
|
3041
|
+
};
|
|
3042
|
+
deleteMany: {
|
|
3043
|
+
args: Prisma.ContractTerminationDeleteManyArgs<ExtArgs>;
|
|
3044
|
+
result: BatchPayload;
|
|
3045
|
+
};
|
|
3046
|
+
updateMany: {
|
|
3047
|
+
args: Prisma.ContractTerminationUpdateManyArgs<ExtArgs>;
|
|
3048
|
+
result: BatchPayload;
|
|
3049
|
+
};
|
|
3050
|
+
upsert: {
|
|
3051
|
+
args: Prisma.ContractTerminationUpsertArgs<ExtArgs>;
|
|
3052
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ContractTerminationPayload>;
|
|
3053
|
+
};
|
|
3054
|
+
aggregate: {
|
|
3055
|
+
args: Prisma.ContractTerminationAggregateArgs<ExtArgs>;
|
|
3056
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateContractTermination>;
|
|
3057
|
+
};
|
|
3058
|
+
groupBy: {
|
|
3059
|
+
args: Prisma.ContractTerminationGroupByArgs<ExtArgs>;
|
|
3060
|
+
result: runtime.Types.Utils.Optional<Prisma.ContractTerminationGroupByOutputType>[];
|
|
3061
|
+
};
|
|
3062
|
+
count: {
|
|
3063
|
+
args: Prisma.ContractTerminationCountArgs<ExtArgs>;
|
|
3064
|
+
result: runtime.Types.Utils.Optional<Prisma.ContractTerminationCountAggregateOutputType> | number;
|
|
3065
|
+
};
|
|
3066
|
+
};
|
|
3067
|
+
};
|
|
2800
3068
|
Prequalification: {
|
|
2801
3069
|
payload: Prisma.$PrequalificationPayload<ExtArgs>;
|
|
2802
3070
|
fields: Prisma.PrequalificationFieldRefs;
|
|
@@ -3413,12 +3681,36 @@ export declare const PropertyPaymentMethodPhaseScalarFieldEnum: {
|
|
|
3413
3681
|
readonly percentOfPrice: "percentOfPrice";
|
|
3414
3682
|
readonly requiresPreviousPhaseCompletion: "requiresPreviousPhaseCompletion";
|
|
3415
3683
|
readonly minimumCompletionPercentage: "minimumCompletionPercentage";
|
|
3416
|
-
readonly
|
|
3417
|
-
readonly
|
|
3684
|
+
readonly completionCriterion: "completionCriterion";
|
|
3685
|
+
readonly stepDefinitionsSnapshot: "stepDefinitionsSnapshot";
|
|
3686
|
+
readonly requiredDocumentSnapshot: "requiredDocumentSnapshot";
|
|
3418
3687
|
readonly createdAt: "createdAt";
|
|
3419
3688
|
readonly updatedAt: "updatedAt";
|
|
3420
3689
|
};
|
|
3421
3690
|
export type PropertyPaymentMethodPhaseScalarFieldEnum = (typeof PropertyPaymentMethodPhaseScalarFieldEnum)[keyof typeof PropertyPaymentMethodPhaseScalarFieldEnum];
|
|
3691
|
+
export declare const PaymentMethodPhaseStepScalarFieldEnum: {
|
|
3692
|
+
readonly id: "id";
|
|
3693
|
+
readonly phaseId: "phaseId";
|
|
3694
|
+
readonly name: "name";
|
|
3695
|
+
readonly stepType: "stepType";
|
|
3696
|
+
readonly order: "order";
|
|
3697
|
+
readonly metadata: "metadata";
|
|
3698
|
+
readonly createdAt: "createdAt";
|
|
3699
|
+
readonly updatedAt: "updatedAt";
|
|
3700
|
+
};
|
|
3701
|
+
export type PaymentMethodPhaseStepScalarFieldEnum = (typeof PaymentMethodPhaseStepScalarFieldEnum)[keyof typeof PaymentMethodPhaseStepScalarFieldEnum];
|
|
3702
|
+
export declare const PaymentMethodPhaseDocumentScalarFieldEnum: {
|
|
3703
|
+
readonly id: "id";
|
|
3704
|
+
readonly phaseId: "phaseId";
|
|
3705
|
+
readonly documentType: "documentType";
|
|
3706
|
+
readonly isRequired: "isRequired";
|
|
3707
|
+
readonly description: "description";
|
|
3708
|
+
readonly allowedMimeTypes: "allowedMimeTypes";
|
|
3709
|
+
readonly maxSizeBytes: "maxSizeBytes";
|
|
3710
|
+
readonly metadata: "metadata";
|
|
3711
|
+
readonly createdAt: "createdAt";
|
|
3712
|
+
};
|
|
3713
|
+
export type PaymentMethodPhaseDocumentScalarFieldEnum = (typeof PaymentMethodPhaseDocumentScalarFieldEnum)[keyof typeof PaymentMethodPhaseDocumentScalarFieldEnum];
|
|
3422
3714
|
export declare const ContractScalarFieldEnum: {
|
|
3423
3715
|
readonly id: "id";
|
|
3424
3716
|
readonly tenantId: "tenantId";
|
|
@@ -3466,6 +3758,10 @@ export declare const ContractPhaseScalarFieldEnum: {
|
|
|
3466
3758
|
readonly paidAmount: "paidAmount";
|
|
3467
3759
|
readonly remainingAmount: "remainingAmount";
|
|
3468
3760
|
readonly interestRate: "interestRate";
|
|
3761
|
+
readonly approvedDocumentsCount: "approvedDocumentsCount";
|
|
3762
|
+
readonly requiredDocumentsCount: "requiredDocumentsCount";
|
|
3763
|
+
readonly completedStepsCount: "completedStepsCount";
|
|
3764
|
+
readonly totalStepsCount: "totalStepsCount";
|
|
3469
3765
|
readonly dueDate: "dueDate";
|
|
3470
3766
|
readonly startDate: "startDate";
|
|
3471
3767
|
readonly endDate: "endDate";
|
|
@@ -3473,6 +3769,10 @@ export declare const ContractPhaseScalarFieldEnum: {
|
|
|
3473
3769
|
readonly completedAt: "completedAt";
|
|
3474
3770
|
readonly requiresPreviousPhaseCompletion: "requiresPreviousPhaseCompletion";
|
|
3475
3771
|
readonly minimumCompletionPercentage: "minimumCompletionPercentage";
|
|
3772
|
+
readonly completionCriterion: "completionCriterion";
|
|
3773
|
+
readonly paymentPlanSnapshot: "paymentPlanSnapshot";
|
|
3774
|
+
readonly stepDefinitionsSnapshot: "stepDefinitionsSnapshot";
|
|
3775
|
+
readonly requiredDocumentSnapshot: "requiredDocumentSnapshot";
|
|
3476
3776
|
readonly createdAt: "createdAt";
|
|
3477
3777
|
readonly updatedAt: "updatedAt";
|
|
3478
3778
|
};
|
|
@@ -3486,13 +3786,20 @@ export declare const ContractPhaseStepScalarFieldEnum: {
|
|
|
3486
3786
|
readonly order: "order";
|
|
3487
3787
|
readonly status: "status";
|
|
3488
3788
|
readonly assigneeId: "assigneeId";
|
|
3489
|
-
readonly requiredDocumentTypes: "requiredDocumentTypes";
|
|
3490
3789
|
readonly dueDate: "dueDate";
|
|
3491
3790
|
readonly completedAt: "completedAt";
|
|
3492
3791
|
readonly createdAt: "createdAt";
|
|
3493
3792
|
readonly updatedAt: "updatedAt";
|
|
3494
3793
|
};
|
|
3495
3794
|
export type ContractPhaseStepScalarFieldEnum = (typeof ContractPhaseStepScalarFieldEnum)[keyof typeof ContractPhaseStepScalarFieldEnum];
|
|
3795
|
+
export declare const ContractPhaseStepDocumentScalarFieldEnum: {
|
|
3796
|
+
readonly id: "id";
|
|
3797
|
+
readonly stepId: "stepId";
|
|
3798
|
+
readonly documentType: "documentType";
|
|
3799
|
+
readonly isRequired: "isRequired";
|
|
3800
|
+
readonly createdAt: "createdAt";
|
|
3801
|
+
};
|
|
3802
|
+
export type ContractPhaseStepDocumentScalarFieldEnum = (typeof ContractPhaseStepDocumentScalarFieldEnum)[keyof typeof ContractPhaseStepDocumentScalarFieldEnum];
|
|
3496
3803
|
export declare const ContractPhaseStepApprovalScalarFieldEnum: {
|
|
3497
3804
|
readonly id: "id";
|
|
3498
3805
|
readonly stepId: "stepId";
|
|
@@ -3573,6 +3880,53 @@ export declare const ContractEventScalarFieldEnum: {
|
|
|
3573
3880
|
readonly createdAt: "createdAt";
|
|
3574
3881
|
};
|
|
3575
3882
|
export type ContractEventScalarFieldEnum = (typeof ContractEventScalarFieldEnum)[keyof typeof ContractEventScalarFieldEnum];
|
|
3883
|
+
export declare const ContractTerminationScalarFieldEnum: {
|
|
3884
|
+
readonly id: "id";
|
|
3885
|
+
readonly contractId: "contractId";
|
|
3886
|
+
readonly tenantId: "tenantId";
|
|
3887
|
+
readonly requestNumber: "requestNumber";
|
|
3888
|
+
readonly initiatedBy: "initiatedBy";
|
|
3889
|
+
readonly initiatorId: "initiatorId";
|
|
3890
|
+
readonly type: "type";
|
|
3891
|
+
readonly reason: "reason";
|
|
3892
|
+
readonly supportingDocs: "supportingDocs";
|
|
3893
|
+
readonly status: "status";
|
|
3894
|
+
readonly requiresApproval: "requiresApproval";
|
|
3895
|
+
readonly autoApproveEligible: "autoApproveEligible";
|
|
3896
|
+
readonly reviewedBy: "reviewedBy";
|
|
3897
|
+
readonly reviewedAt: "reviewedAt";
|
|
3898
|
+
readonly reviewNotes: "reviewNotes";
|
|
3899
|
+
readonly rejectionReason: "rejectionReason";
|
|
3900
|
+
readonly contractSnapshot: "contractSnapshot";
|
|
3901
|
+
readonly totalContractAmount: "totalContractAmount";
|
|
3902
|
+
readonly totalPaidToDate: "totalPaidToDate";
|
|
3903
|
+
readonly outstandingBalance: "outstandingBalance";
|
|
3904
|
+
readonly refundableAmount: "refundableAmount";
|
|
3905
|
+
readonly penaltyAmount: "penaltyAmount";
|
|
3906
|
+
readonly forfeitedAmount: "forfeitedAmount";
|
|
3907
|
+
readonly adminFeeAmount: "adminFeeAmount";
|
|
3908
|
+
readonly netRefundAmount: "netRefundAmount";
|
|
3909
|
+
readonly settlementNotes: "settlementNotes";
|
|
3910
|
+
readonly refundStatus: "refundStatus";
|
|
3911
|
+
readonly refundReference: "refundReference";
|
|
3912
|
+
readonly refundMethod: "refundMethod";
|
|
3913
|
+
readonly refundAccountDetails: "refundAccountDetails";
|
|
3914
|
+
readonly refundInitiatedAt: "refundInitiatedAt";
|
|
3915
|
+
readonly refundCompletedAt: "refundCompletedAt";
|
|
3916
|
+
readonly refundFailureReason: "refundFailureReason";
|
|
3917
|
+
readonly unitReleasedAt: "unitReleasedAt";
|
|
3918
|
+
readonly unitReservedForId: "unitReservedForId";
|
|
3919
|
+
readonly requestedAt: "requestedAt";
|
|
3920
|
+
readonly approvedAt: "approvedAt";
|
|
3921
|
+
readonly executedAt: "executedAt";
|
|
3922
|
+
readonly completedAt: "completedAt";
|
|
3923
|
+
readonly cancelledAt: "cancelledAt";
|
|
3924
|
+
readonly idempotencyKey: "idempotencyKey";
|
|
3925
|
+
readonly metadata: "metadata";
|
|
3926
|
+
readonly createdAt: "createdAt";
|
|
3927
|
+
readonly updatedAt: "updatedAt";
|
|
3928
|
+
};
|
|
3929
|
+
export type ContractTerminationScalarFieldEnum = (typeof ContractTerminationScalarFieldEnum)[keyof typeof ContractTerminationScalarFieldEnum];
|
|
3576
3930
|
export declare const PrequalificationScalarFieldEnum: {
|
|
3577
3931
|
readonly id: "id";
|
|
3578
3932
|
readonly tenantId: "tenantId";
|
|
@@ -3668,15 +4022,15 @@ export declare const SortOrder: {
|
|
|
3668
4022
|
readonly desc: "desc";
|
|
3669
4023
|
};
|
|
3670
4024
|
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
3671
|
-
export declare const JsonNullValueInput: {
|
|
3672
|
-
readonly JsonNull: runtime.JsonNullClass;
|
|
3673
|
-
};
|
|
3674
|
-
export type JsonNullValueInput = (typeof JsonNullValueInput)[keyof typeof JsonNullValueInput];
|
|
3675
4025
|
export declare const NullableJsonNullValueInput: {
|
|
3676
4026
|
readonly DbNull: runtime.DbNullClass;
|
|
3677
4027
|
readonly JsonNull: runtime.JsonNullClass;
|
|
3678
4028
|
};
|
|
3679
4029
|
export type NullableJsonNullValueInput = (typeof NullableJsonNullValueInput)[keyof typeof NullableJsonNullValueInput];
|
|
4030
|
+
export declare const JsonNullValueInput: {
|
|
4031
|
+
readonly JsonNull: runtime.JsonNullClass;
|
|
4032
|
+
};
|
|
4033
|
+
export type JsonNullValueInput = (typeof JsonNullValueInput)[keyof typeof JsonNullValueInput];
|
|
3680
4034
|
export declare const NullsOrder: {
|
|
3681
4035
|
readonly first: "first";
|
|
3682
4036
|
readonly last: "last";
|
|
@@ -3873,7 +4227,6 @@ export declare const PaymentPlanOrderByRelevanceFieldEnum: {
|
|
|
3873
4227
|
readonly tenantId: "tenantId";
|
|
3874
4228
|
readonly name: "name";
|
|
3875
4229
|
readonly description: "description";
|
|
3876
|
-
readonly paymentFrequency: "paymentFrequency";
|
|
3877
4230
|
};
|
|
3878
4231
|
export type PaymentPlanOrderByRelevanceFieldEnum = (typeof PaymentPlanOrderByRelevanceFieldEnum)[keyof typeof PaymentPlanOrderByRelevanceFieldEnum];
|
|
3879
4232
|
export declare const PropertyPaymentMethodOrderByRelevanceFieldEnum: {
|
|
@@ -3888,18 +4241,39 @@ export declare const PropertyPaymentMethodLinkOrderByRelevanceFieldEnum: {
|
|
|
3888
4241
|
readonly paymentMethodId: "paymentMethodId";
|
|
3889
4242
|
};
|
|
3890
4243
|
export type PropertyPaymentMethodLinkOrderByRelevanceFieldEnum = (typeof PropertyPaymentMethodLinkOrderByRelevanceFieldEnum)[keyof typeof PropertyPaymentMethodLinkOrderByRelevanceFieldEnum];
|
|
4244
|
+
export declare const JsonNullValueFilter: {
|
|
4245
|
+
readonly DbNull: runtime.DbNullClass;
|
|
4246
|
+
readonly JsonNull: runtime.JsonNullClass;
|
|
4247
|
+
readonly AnyNull: runtime.AnyNullClass;
|
|
4248
|
+
};
|
|
4249
|
+
export type JsonNullValueFilter = (typeof JsonNullValueFilter)[keyof typeof JsonNullValueFilter];
|
|
4250
|
+
export declare const QueryMode: {
|
|
4251
|
+
readonly default: "default";
|
|
4252
|
+
readonly insensitive: "insensitive";
|
|
4253
|
+
};
|
|
4254
|
+
export type QueryMode = (typeof QueryMode)[keyof typeof QueryMode];
|
|
3891
4255
|
export declare const PropertyPaymentMethodPhaseOrderByRelevanceFieldEnum: {
|
|
3892
4256
|
readonly id: "id";
|
|
3893
4257
|
readonly paymentMethodId: "paymentMethodId";
|
|
3894
4258
|
readonly paymentPlanId: "paymentPlanId";
|
|
3895
4259
|
readonly name: "name";
|
|
3896
4260
|
readonly description: "description";
|
|
3897
|
-
readonly phaseCategory: "phaseCategory";
|
|
3898
|
-
readonly phaseType: "phaseType";
|
|
3899
|
-
readonly requiredDocumentTypes: "requiredDocumentTypes";
|
|
3900
|
-
readonly stepDefinitions: "stepDefinitions";
|
|
3901
4261
|
};
|
|
3902
4262
|
export type PropertyPaymentMethodPhaseOrderByRelevanceFieldEnum = (typeof PropertyPaymentMethodPhaseOrderByRelevanceFieldEnum)[keyof typeof PropertyPaymentMethodPhaseOrderByRelevanceFieldEnum];
|
|
4263
|
+
export declare const PaymentMethodPhaseStepOrderByRelevanceFieldEnum: {
|
|
4264
|
+
readonly id: "id";
|
|
4265
|
+
readonly phaseId: "phaseId";
|
|
4266
|
+
readonly name: "name";
|
|
4267
|
+
};
|
|
4268
|
+
export type PaymentMethodPhaseStepOrderByRelevanceFieldEnum = (typeof PaymentMethodPhaseStepOrderByRelevanceFieldEnum)[keyof typeof PaymentMethodPhaseStepOrderByRelevanceFieldEnum];
|
|
4269
|
+
export declare const PaymentMethodPhaseDocumentOrderByRelevanceFieldEnum: {
|
|
4270
|
+
readonly id: "id";
|
|
4271
|
+
readonly phaseId: "phaseId";
|
|
4272
|
+
readonly documentType: "documentType";
|
|
4273
|
+
readonly description: "description";
|
|
4274
|
+
readonly allowedMimeTypes: "allowedMimeTypes";
|
|
4275
|
+
};
|
|
4276
|
+
export type PaymentMethodPhaseDocumentOrderByRelevanceFieldEnum = (typeof PaymentMethodPhaseDocumentOrderByRelevanceFieldEnum)[keyof typeof PaymentMethodPhaseDocumentOrderByRelevanceFieldEnum];
|
|
3903
4277
|
export declare const ContractOrderByRelevanceFieldEnum: {
|
|
3904
4278
|
readonly id: "id";
|
|
3905
4279
|
readonly tenantId: "tenantId";
|
|
@@ -3911,8 +4285,6 @@ export declare const ContractOrderByRelevanceFieldEnum: {
|
|
|
3911
4285
|
readonly title: "title";
|
|
3912
4286
|
readonly description: "description";
|
|
3913
4287
|
readonly contractType: "contractType";
|
|
3914
|
-
readonly status: "status";
|
|
3915
|
-
readonly state: "state";
|
|
3916
4288
|
readonly currentPhaseId: "currentPhaseId";
|
|
3917
4289
|
};
|
|
3918
4290
|
export type ContractOrderByRelevanceFieldEnum = (typeof ContractOrderByRelevanceFieldEnum)[keyof typeof ContractOrderByRelevanceFieldEnum];
|
|
@@ -3922,9 +4294,6 @@ export declare const ContractPhaseOrderByRelevanceFieldEnum: {
|
|
|
3922
4294
|
readonly paymentPlanId: "paymentPlanId";
|
|
3923
4295
|
readonly name: "name";
|
|
3924
4296
|
readonly description: "description";
|
|
3925
|
-
readonly phaseCategory: "phaseCategory";
|
|
3926
|
-
readonly phaseType: "phaseType";
|
|
3927
|
-
readonly status: "status";
|
|
3928
4297
|
};
|
|
3929
4298
|
export type ContractPhaseOrderByRelevanceFieldEnum = (typeof ContractPhaseOrderByRelevanceFieldEnum)[keyof typeof ContractPhaseOrderByRelevanceFieldEnum];
|
|
3930
4299
|
export declare const ContractPhaseStepOrderByRelevanceFieldEnum: {
|
|
@@ -3932,24 +4301,25 @@ export declare const ContractPhaseStepOrderByRelevanceFieldEnum: {
|
|
|
3932
4301
|
readonly phaseId: "phaseId";
|
|
3933
4302
|
readonly name: "name";
|
|
3934
4303
|
readonly description: "description";
|
|
3935
|
-
readonly stepType: "stepType";
|
|
3936
|
-
readonly status: "status";
|
|
3937
4304
|
readonly assigneeId: "assigneeId";
|
|
3938
|
-
readonly requiredDocumentTypes: "requiredDocumentTypes";
|
|
3939
4305
|
};
|
|
3940
4306
|
export type ContractPhaseStepOrderByRelevanceFieldEnum = (typeof ContractPhaseStepOrderByRelevanceFieldEnum)[keyof typeof ContractPhaseStepOrderByRelevanceFieldEnum];
|
|
4307
|
+
export declare const ContractPhaseStepDocumentOrderByRelevanceFieldEnum: {
|
|
4308
|
+
readonly id: "id";
|
|
4309
|
+
readonly stepId: "stepId";
|
|
4310
|
+
readonly documentType: "documentType";
|
|
4311
|
+
};
|
|
4312
|
+
export type ContractPhaseStepDocumentOrderByRelevanceFieldEnum = (typeof ContractPhaseStepDocumentOrderByRelevanceFieldEnum)[keyof typeof ContractPhaseStepDocumentOrderByRelevanceFieldEnum];
|
|
3941
4313
|
export declare const ContractPhaseStepApprovalOrderByRelevanceFieldEnum: {
|
|
3942
4314
|
readonly id: "id";
|
|
3943
4315
|
readonly stepId: "stepId";
|
|
3944
4316
|
readonly approverId: "approverId";
|
|
3945
|
-
readonly decision: "decision";
|
|
3946
4317
|
readonly comment: "comment";
|
|
3947
4318
|
};
|
|
3948
4319
|
export type ContractPhaseStepApprovalOrderByRelevanceFieldEnum = (typeof ContractPhaseStepApprovalOrderByRelevanceFieldEnum)[keyof typeof ContractPhaseStepApprovalOrderByRelevanceFieldEnum];
|
|
3949
4320
|
export declare const ContractInstallmentOrderByRelevanceFieldEnum: {
|
|
3950
4321
|
readonly id: "id";
|
|
3951
4322
|
readonly phaseId: "phaseId";
|
|
3952
|
-
readonly status: "status";
|
|
3953
4323
|
};
|
|
3954
4324
|
export type ContractInstallmentOrderByRelevanceFieldEnum = (typeof ContractInstallmentOrderByRelevanceFieldEnum)[keyof typeof ContractInstallmentOrderByRelevanceFieldEnum];
|
|
3955
4325
|
export declare const ContractPaymentOrderByRelevanceFieldEnum: {
|
|
@@ -3959,7 +4329,6 @@ export declare const ContractPaymentOrderByRelevanceFieldEnum: {
|
|
|
3959
4329
|
readonly installmentId: "installmentId";
|
|
3960
4330
|
readonly payerId: "payerId";
|
|
3961
4331
|
readonly paymentMethod: "paymentMethod";
|
|
3962
|
-
readonly status: "status";
|
|
3963
4332
|
readonly reference: "reference";
|
|
3964
4333
|
readonly gatewayResponse: "gatewayResponse";
|
|
3965
4334
|
};
|
|
@@ -3973,7 +4342,6 @@ export declare const ContractDocumentOrderByRelevanceFieldEnum: {
|
|
|
3973
4342
|
readonly url: "url";
|
|
3974
4343
|
readonly type: "type";
|
|
3975
4344
|
readonly uploadedById: "uploadedById";
|
|
3976
|
-
readonly status: "status";
|
|
3977
4345
|
};
|
|
3978
4346
|
export type ContractDocumentOrderByRelevanceFieldEnum = (typeof ContractDocumentOrderByRelevanceFieldEnum)[keyof typeof ContractDocumentOrderByRelevanceFieldEnum];
|
|
3979
4347
|
export declare const ContractTransitionOrderByRelevanceFieldEnum: {
|
|
@@ -3992,17 +4360,24 @@ export declare const ContractEventOrderByRelevanceFieldEnum: {
|
|
|
3992
4360
|
readonly data: "data";
|
|
3993
4361
|
};
|
|
3994
4362
|
export type ContractEventOrderByRelevanceFieldEnum = (typeof ContractEventOrderByRelevanceFieldEnum)[keyof typeof ContractEventOrderByRelevanceFieldEnum];
|
|
3995
|
-
export declare const
|
|
3996
|
-
readonly
|
|
3997
|
-
readonly
|
|
3998
|
-
readonly
|
|
3999
|
-
|
|
4000
|
-
|
|
4001
|
-
|
|
4002
|
-
readonly
|
|
4003
|
-
readonly
|
|
4363
|
+
export declare const ContractTerminationOrderByRelevanceFieldEnum: {
|
|
4364
|
+
readonly id: "id";
|
|
4365
|
+
readonly contractId: "contractId";
|
|
4366
|
+
readonly tenantId: "tenantId";
|
|
4367
|
+
readonly requestNumber: "requestNumber";
|
|
4368
|
+
readonly initiatorId: "initiatorId";
|
|
4369
|
+
readonly reason: "reason";
|
|
4370
|
+
readonly reviewedBy: "reviewedBy";
|
|
4371
|
+
readonly reviewNotes: "reviewNotes";
|
|
4372
|
+
readonly rejectionReason: "rejectionReason";
|
|
4373
|
+
readonly settlementNotes: "settlementNotes";
|
|
4374
|
+
readonly refundReference: "refundReference";
|
|
4375
|
+
readonly refundMethod: "refundMethod";
|
|
4376
|
+
readonly refundFailureReason: "refundFailureReason";
|
|
4377
|
+
readonly unitReservedForId: "unitReservedForId";
|
|
4378
|
+
readonly idempotencyKey: "idempotencyKey";
|
|
4004
4379
|
};
|
|
4005
|
-
export type
|
|
4380
|
+
export type ContractTerminationOrderByRelevanceFieldEnum = (typeof ContractTerminationOrderByRelevanceFieldEnum)[keyof typeof ContractTerminationOrderByRelevanceFieldEnum];
|
|
4006
4381
|
export declare const PrequalificationOrderByRelevanceFieldEnum: {
|
|
4007
4382
|
readonly id: "id";
|
|
4008
4383
|
readonly tenantId: "tenantId";
|
|
@@ -4076,6 +4451,22 @@ export type FloatFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, '
|
|
|
4076
4451
|
* Reference to a field of type 'Int'
|
|
4077
4452
|
*/
|
|
4078
4453
|
export type IntFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Int'>;
|
|
4454
|
+
/**
|
|
4455
|
+
* Reference to a field of type 'PaymentFrequency'
|
|
4456
|
+
*/
|
|
4457
|
+
export type EnumPaymentFrequencyFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'PaymentFrequency'>;
|
|
4458
|
+
/**
|
|
4459
|
+
* Reference to a field of type 'PhaseCategory'
|
|
4460
|
+
*/
|
|
4461
|
+
export type EnumPhaseCategoryFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'PhaseCategory'>;
|
|
4462
|
+
/**
|
|
4463
|
+
* Reference to a field of type 'PhaseType'
|
|
4464
|
+
*/
|
|
4465
|
+
export type EnumPhaseTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'PhaseType'>;
|
|
4466
|
+
/**
|
|
4467
|
+
* Reference to a field of type 'CompletionCriterion'
|
|
4468
|
+
*/
|
|
4469
|
+
export type EnumCompletionCriterionFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'CompletionCriterion'>;
|
|
4079
4470
|
/**
|
|
4080
4471
|
* Reference to a field of type 'Json'
|
|
4081
4472
|
*/
|
|
@@ -4084,6 +4475,54 @@ export type JsonFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'J
|
|
|
4084
4475
|
* Reference to a field of type 'QueryMode'
|
|
4085
4476
|
*/
|
|
4086
4477
|
export type EnumQueryModeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'QueryMode'>;
|
|
4478
|
+
/**
|
|
4479
|
+
* Reference to a field of type 'StepType'
|
|
4480
|
+
*/
|
|
4481
|
+
export type EnumStepTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'StepType'>;
|
|
4482
|
+
/**
|
|
4483
|
+
* Reference to a field of type 'ContractStatus'
|
|
4484
|
+
*/
|
|
4485
|
+
export type EnumContractStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'ContractStatus'>;
|
|
4486
|
+
/**
|
|
4487
|
+
* Reference to a field of type 'PhaseStatus'
|
|
4488
|
+
*/
|
|
4489
|
+
export type EnumPhaseStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'PhaseStatus'>;
|
|
4490
|
+
/**
|
|
4491
|
+
* Reference to a field of type 'StepStatus'
|
|
4492
|
+
*/
|
|
4493
|
+
export type EnumStepStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'StepStatus'>;
|
|
4494
|
+
/**
|
|
4495
|
+
* Reference to a field of type 'ApprovalDecision'
|
|
4496
|
+
*/
|
|
4497
|
+
export type EnumApprovalDecisionFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'ApprovalDecision'>;
|
|
4498
|
+
/**
|
|
4499
|
+
* Reference to a field of type 'InstallmentStatus'
|
|
4500
|
+
*/
|
|
4501
|
+
export type EnumInstallmentStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'InstallmentStatus'>;
|
|
4502
|
+
/**
|
|
4503
|
+
* Reference to a field of type 'PaymentStatus'
|
|
4504
|
+
*/
|
|
4505
|
+
export type EnumPaymentStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'PaymentStatus'>;
|
|
4506
|
+
/**
|
|
4507
|
+
* Reference to a field of type 'DocumentStatus'
|
|
4508
|
+
*/
|
|
4509
|
+
export type EnumDocumentStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'DocumentStatus'>;
|
|
4510
|
+
/**
|
|
4511
|
+
* Reference to a field of type 'TerminationInitiator'
|
|
4512
|
+
*/
|
|
4513
|
+
export type EnumTerminationInitiatorFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'TerminationInitiator'>;
|
|
4514
|
+
/**
|
|
4515
|
+
* Reference to a field of type 'TerminationType'
|
|
4516
|
+
*/
|
|
4517
|
+
export type EnumTerminationTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'TerminationType'>;
|
|
4518
|
+
/**
|
|
4519
|
+
* Reference to a field of type 'TerminationStatus'
|
|
4520
|
+
*/
|
|
4521
|
+
export type EnumTerminationStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'TerminationStatus'>;
|
|
4522
|
+
/**
|
|
4523
|
+
* Reference to a field of type 'RefundStatus'
|
|
4524
|
+
*/
|
|
4525
|
+
export type EnumRefundStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'RefundStatus'>;
|
|
4087
4526
|
/**
|
|
4088
4527
|
* Reference to a field of type 'PrequalificationStatus'
|
|
4089
4528
|
*/
|
|
@@ -4219,15 +4658,19 @@ export type GlobalOmitConfig = {
|
|
|
4219
4658
|
propertyPaymentMethod?: Prisma.PropertyPaymentMethodOmit;
|
|
4220
4659
|
propertyPaymentMethodLink?: Prisma.PropertyPaymentMethodLinkOmit;
|
|
4221
4660
|
propertyPaymentMethodPhase?: Prisma.PropertyPaymentMethodPhaseOmit;
|
|
4661
|
+
paymentMethodPhaseStep?: Prisma.PaymentMethodPhaseStepOmit;
|
|
4662
|
+
paymentMethodPhaseDocument?: Prisma.PaymentMethodPhaseDocumentOmit;
|
|
4222
4663
|
contract?: Prisma.ContractOmit;
|
|
4223
4664
|
contractPhase?: Prisma.ContractPhaseOmit;
|
|
4224
4665
|
contractPhaseStep?: Prisma.ContractPhaseStepOmit;
|
|
4666
|
+
contractPhaseStepDocument?: Prisma.ContractPhaseStepDocumentOmit;
|
|
4225
4667
|
contractPhaseStepApproval?: Prisma.ContractPhaseStepApprovalOmit;
|
|
4226
4668
|
contractInstallment?: Prisma.ContractInstallmentOmit;
|
|
4227
4669
|
contractPayment?: Prisma.ContractPaymentOmit;
|
|
4228
4670
|
contractDocument?: Prisma.ContractDocumentOmit;
|
|
4229
4671
|
contractTransition?: Prisma.ContractTransitionOmit;
|
|
4230
4672
|
contractEvent?: Prisma.ContractEventOmit;
|
|
4673
|
+
contractTermination?: Prisma.ContractTerminationOmit;
|
|
4231
4674
|
prequalification?: Prisma.PrequalificationOmit;
|
|
4232
4675
|
paymentMethodChangeRequest?: Prisma.PaymentMethodChangeRequestOmit;
|
|
4233
4676
|
documentRequirementRule?: Prisma.DocumentRequirementRuleOmit;
|