@valentine-efagene/qshelter-common 2.0.91 → 2.0.94
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 +6 -0
- package/dist/generated/client/client.d.ts +6 -0
- package/dist/generated/client/commonInputTypes.d.ts +30 -0
- package/dist/generated/client/enums.d.ts +8 -0
- package/dist/generated/client/enums.js +7 -0
- package/dist/generated/client/internal/class.d.ts +11 -0
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +97 -1
- package/dist/generated/client/internal/prismaNamespace.js +23 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +25 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +23 -0
- package/dist/generated/client/models/EventHandler.d.ts +158 -0
- package/dist/generated/client/models/PaymentPhase.d.ts +95 -1
- package/dist/generated/client/models/PaymentPlan.d.ts +259 -30
- package/dist/generated/client/models/PhaseEventAttachment.d.ts +1331 -0
- package/dist/generated/client/models/PhaseEventAttachment.js +1 -0
- package/dist/generated/client/models/PropertyPaymentMethodPhase.d.ts +179 -0
- package/dist/generated/client/models/index.d.ts +1 -0
- package/dist/generated/client/models/index.js +1 -0
- package/dist/generated/client/models.d.ts +1 -0
- package/package.json +1 -1
- package/prisma/migrations/20260112000006_add_phase_event_attachments/migration.sql +22 -0
- package/prisma/migrations/20260112041159_add_flexible_term_configuration/migration.sql +11 -0
- package/prisma/schema.prisma +59 -1
|
@@ -262,6 +262,7 @@ export declare const ModelName: {
|
|
|
262
262
|
readonly PropertyPaymentMethod: "PropertyPaymentMethod";
|
|
263
263
|
readonly PropertyPaymentMethodLink: "PropertyPaymentMethodLink";
|
|
264
264
|
readonly PropertyPaymentMethodPhase: "PropertyPaymentMethodPhase";
|
|
265
|
+
readonly PhaseEventAttachment: "PhaseEventAttachment";
|
|
265
266
|
readonly PaymentMethodPhaseStep: "PaymentMethodPhaseStep";
|
|
266
267
|
readonly StepEventAttachment: "StepEventAttachment";
|
|
267
268
|
readonly PaymentMethodPhaseDocument: "PaymentMethodPhaseDocument";
|
|
@@ -305,7 +306,7 @@ export type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runt
|
|
|
305
306
|
omit: GlobalOmitOptions;
|
|
306
307
|
};
|
|
307
308
|
meta: {
|
|
308
|
-
modelProps: "user" | "role" | "permission" | "rolePermission" | "userRole" | "tenantMembership" | "tenant" | "apiKey" | "refreshToken" | "passwordReset" | "userSuspension" | "emailPreference" | "deviceEndpoint" | "social" | "oAuthState" | "wallet" | "transaction" | "settings" | "property" | "propertyMedia" | "propertyDocument" | "amenity" | "propertyVariant" | "propertyVariantAmenity" | "propertyVariantMedia" | "propertyUnit" | "propertyAmenity" | "paymentPlan" | "propertyPaymentMethod" | "propertyPaymentMethodLink" | "propertyPaymentMethodPhase" | "paymentMethodPhaseStep" | "stepEventAttachment" | "paymentMethodPhaseDocument" | "paymentMethodPhaseField" | "contract" | "contractRefund" | "contractPhase" | "questionnairePhase" | "documentationPhase" | "paymentPhase" | "questionnaireField" | "contractEvent" | "documentationStep" | "documentationStepDocument" | "documentationStepApproval" | "contractInstallment" | "contractPayment" | "contractDocument" | "documentTemplate" | "offerLetter" | "contractTermination" | "paymentMethodChangeRequest" | "documentRequirementRule" | "eventChannel" | "eventType" | "eventHandler" | "workflowEvent" | "eventHandlerExecution" | "domainEvent" | "propertyTransferRequest" | "approvalRequest";
|
|
309
|
+
modelProps: "user" | "role" | "permission" | "rolePermission" | "userRole" | "tenantMembership" | "tenant" | "apiKey" | "refreshToken" | "passwordReset" | "userSuspension" | "emailPreference" | "deviceEndpoint" | "social" | "oAuthState" | "wallet" | "transaction" | "settings" | "property" | "propertyMedia" | "propertyDocument" | "amenity" | "propertyVariant" | "propertyVariantAmenity" | "propertyVariantMedia" | "propertyUnit" | "propertyAmenity" | "paymentPlan" | "propertyPaymentMethod" | "propertyPaymentMethodLink" | "propertyPaymentMethodPhase" | "phaseEventAttachment" | "paymentMethodPhaseStep" | "stepEventAttachment" | "paymentMethodPhaseDocument" | "paymentMethodPhaseField" | "contract" | "contractRefund" | "contractPhase" | "questionnairePhase" | "documentationPhase" | "paymentPhase" | "questionnaireField" | "contractEvent" | "documentationStep" | "documentationStepDocument" | "documentationStepApproval" | "contractInstallment" | "contractPayment" | "contractDocument" | "documentTemplate" | "offerLetter" | "contractTermination" | "paymentMethodChangeRequest" | "documentRequirementRule" | "eventChannel" | "eventType" | "eventHandler" | "workflowEvent" | "eventHandlerExecution" | "domainEvent" | "propertyTransferRequest" | "approvalRequest";
|
|
309
310
|
txIsolationLevel: TransactionIsolationLevel;
|
|
310
311
|
};
|
|
311
312
|
model: {
|
|
@@ -2355,6 +2356,72 @@ export type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runt
|
|
|
2355
2356
|
};
|
|
2356
2357
|
};
|
|
2357
2358
|
};
|
|
2359
|
+
PhaseEventAttachment: {
|
|
2360
|
+
payload: Prisma.$PhaseEventAttachmentPayload<ExtArgs>;
|
|
2361
|
+
fields: Prisma.PhaseEventAttachmentFieldRefs;
|
|
2362
|
+
operations: {
|
|
2363
|
+
findUnique: {
|
|
2364
|
+
args: Prisma.PhaseEventAttachmentFindUniqueArgs<ExtArgs>;
|
|
2365
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PhaseEventAttachmentPayload> | null;
|
|
2366
|
+
};
|
|
2367
|
+
findUniqueOrThrow: {
|
|
2368
|
+
args: Prisma.PhaseEventAttachmentFindUniqueOrThrowArgs<ExtArgs>;
|
|
2369
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PhaseEventAttachmentPayload>;
|
|
2370
|
+
};
|
|
2371
|
+
findFirst: {
|
|
2372
|
+
args: Prisma.PhaseEventAttachmentFindFirstArgs<ExtArgs>;
|
|
2373
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PhaseEventAttachmentPayload> | null;
|
|
2374
|
+
};
|
|
2375
|
+
findFirstOrThrow: {
|
|
2376
|
+
args: Prisma.PhaseEventAttachmentFindFirstOrThrowArgs<ExtArgs>;
|
|
2377
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PhaseEventAttachmentPayload>;
|
|
2378
|
+
};
|
|
2379
|
+
findMany: {
|
|
2380
|
+
args: Prisma.PhaseEventAttachmentFindManyArgs<ExtArgs>;
|
|
2381
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PhaseEventAttachmentPayload>[];
|
|
2382
|
+
};
|
|
2383
|
+
create: {
|
|
2384
|
+
args: Prisma.PhaseEventAttachmentCreateArgs<ExtArgs>;
|
|
2385
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PhaseEventAttachmentPayload>;
|
|
2386
|
+
};
|
|
2387
|
+
createMany: {
|
|
2388
|
+
args: Prisma.PhaseEventAttachmentCreateManyArgs<ExtArgs>;
|
|
2389
|
+
result: BatchPayload;
|
|
2390
|
+
};
|
|
2391
|
+
delete: {
|
|
2392
|
+
args: Prisma.PhaseEventAttachmentDeleteArgs<ExtArgs>;
|
|
2393
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PhaseEventAttachmentPayload>;
|
|
2394
|
+
};
|
|
2395
|
+
update: {
|
|
2396
|
+
args: Prisma.PhaseEventAttachmentUpdateArgs<ExtArgs>;
|
|
2397
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PhaseEventAttachmentPayload>;
|
|
2398
|
+
};
|
|
2399
|
+
deleteMany: {
|
|
2400
|
+
args: Prisma.PhaseEventAttachmentDeleteManyArgs<ExtArgs>;
|
|
2401
|
+
result: BatchPayload;
|
|
2402
|
+
};
|
|
2403
|
+
updateMany: {
|
|
2404
|
+
args: Prisma.PhaseEventAttachmentUpdateManyArgs<ExtArgs>;
|
|
2405
|
+
result: BatchPayload;
|
|
2406
|
+
};
|
|
2407
|
+
upsert: {
|
|
2408
|
+
args: Prisma.PhaseEventAttachmentUpsertArgs<ExtArgs>;
|
|
2409
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PhaseEventAttachmentPayload>;
|
|
2410
|
+
};
|
|
2411
|
+
aggregate: {
|
|
2412
|
+
args: Prisma.PhaseEventAttachmentAggregateArgs<ExtArgs>;
|
|
2413
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregatePhaseEventAttachment>;
|
|
2414
|
+
};
|
|
2415
|
+
groupBy: {
|
|
2416
|
+
args: Prisma.PhaseEventAttachmentGroupByArgs<ExtArgs>;
|
|
2417
|
+
result: runtime.Types.Utils.Optional<Prisma.PhaseEventAttachmentGroupByOutputType>[];
|
|
2418
|
+
};
|
|
2419
|
+
count: {
|
|
2420
|
+
args: Prisma.PhaseEventAttachmentCountArgs<ExtArgs>;
|
|
2421
|
+
result: runtime.Types.Utils.Optional<Prisma.PhaseEventAttachmentCountAggregateOutputType> | number;
|
|
2422
|
+
};
|
|
2423
|
+
};
|
|
2424
|
+
};
|
|
2358
2425
|
PaymentMethodPhaseStep: {
|
|
2359
2426
|
payload: Prisma.$PaymentMethodPhaseStepPayload<ExtArgs>;
|
|
2360
2427
|
fields: Prisma.PaymentMethodPhaseStepFieldRefs;
|
|
@@ -4749,6 +4816,11 @@ export declare const PaymentPlanScalarFieldEnum: {
|
|
|
4749
4816
|
readonly numberOfInstallments: "numberOfInstallments";
|
|
4750
4817
|
readonly calculateInterestDaily: "calculateInterestDaily";
|
|
4751
4818
|
readonly gracePeriodDays: "gracePeriodDays";
|
|
4819
|
+
readonly allowFlexibleTerm: "allowFlexibleTerm";
|
|
4820
|
+
readonly minTermMonths: "minTermMonths";
|
|
4821
|
+
readonly maxTermMonths: "maxTermMonths";
|
|
4822
|
+
readonly termStepMonths: "termStepMonths";
|
|
4823
|
+
readonly maxAgeAtMaturity: "maxAgeAtMaturity";
|
|
4752
4824
|
readonly collectFunds: "collectFunds";
|
|
4753
4825
|
readonly createdAt: "createdAt";
|
|
4754
4826
|
readonly updatedAt: "updatedAt";
|
|
@@ -4797,6 +4869,17 @@ export declare const PropertyPaymentMethodPhaseScalarFieldEnum: {
|
|
|
4797
4869
|
readonly updatedAt: "updatedAt";
|
|
4798
4870
|
};
|
|
4799
4871
|
export type PropertyPaymentMethodPhaseScalarFieldEnum = (typeof PropertyPaymentMethodPhaseScalarFieldEnum)[keyof typeof PropertyPaymentMethodPhaseScalarFieldEnum];
|
|
4872
|
+
export declare const PhaseEventAttachmentScalarFieldEnum: {
|
|
4873
|
+
readonly id: "id";
|
|
4874
|
+
readonly phaseId: "phaseId";
|
|
4875
|
+
readonly trigger: "trigger";
|
|
4876
|
+
readonly handlerId: "handlerId";
|
|
4877
|
+
readonly priority: "priority";
|
|
4878
|
+
readonly enabled: "enabled";
|
|
4879
|
+
readonly createdAt: "createdAt";
|
|
4880
|
+
readonly updatedAt: "updatedAt";
|
|
4881
|
+
};
|
|
4882
|
+
export type PhaseEventAttachmentScalarFieldEnum = (typeof PhaseEventAttachmentScalarFieldEnum)[keyof typeof PhaseEventAttachmentScalarFieldEnum];
|
|
4800
4883
|
export declare const PaymentMethodPhaseStepScalarFieldEnum: {
|
|
4801
4884
|
readonly id: "id";
|
|
4802
4885
|
readonly phaseId: "phaseId";
|
|
@@ -4955,6 +5038,8 @@ export declare const PaymentPhaseScalarFieldEnum: {
|
|
|
4955
5038
|
readonly totalAmount: "totalAmount";
|
|
4956
5039
|
readonly paidAmount: "paidAmount";
|
|
4957
5040
|
readonly interestRate: "interestRate";
|
|
5041
|
+
readonly selectedTermMonths: "selectedTermMonths";
|
|
5042
|
+
readonly numberOfInstallments: "numberOfInstallments";
|
|
4958
5043
|
readonly collectFunds: "collectFunds";
|
|
4959
5044
|
readonly minimumCompletionPercentage: "minimumCompletionPercentage";
|
|
4960
5045
|
readonly paymentPlanSnapshot: "paymentPlanSnapshot";
|
|
@@ -5626,6 +5711,12 @@ export declare const PropertyPaymentMethodPhaseOrderByRelevanceFieldEnum: {
|
|
|
5626
5711
|
readonly description: "description";
|
|
5627
5712
|
};
|
|
5628
5713
|
export type PropertyPaymentMethodPhaseOrderByRelevanceFieldEnum = (typeof PropertyPaymentMethodPhaseOrderByRelevanceFieldEnum)[keyof typeof PropertyPaymentMethodPhaseOrderByRelevanceFieldEnum];
|
|
5714
|
+
export declare const PhaseEventAttachmentOrderByRelevanceFieldEnum: {
|
|
5715
|
+
readonly id: "id";
|
|
5716
|
+
readonly phaseId: "phaseId";
|
|
5717
|
+
readonly handlerId: "handlerId";
|
|
5718
|
+
};
|
|
5719
|
+
export type PhaseEventAttachmentOrderByRelevanceFieldEnum = (typeof PhaseEventAttachmentOrderByRelevanceFieldEnum)[keyof typeof PhaseEventAttachmentOrderByRelevanceFieldEnum];
|
|
5629
5720
|
export declare const PaymentMethodPhaseStepOrderByRelevanceFieldEnum: {
|
|
5630
5721
|
readonly id: "id";
|
|
5631
5722
|
readonly phaseId: "phaseId";
|
|
@@ -5986,6 +6077,10 @@ export type EnumPhaseTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$Prisma
|
|
|
5986
6077
|
* Reference to a field of type 'CompletionCriterion'
|
|
5987
6078
|
*/
|
|
5988
6079
|
export type EnumCompletionCriterionFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'CompletionCriterion'>;
|
|
6080
|
+
/**
|
|
6081
|
+
* Reference to a field of type 'PhaseTrigger'
|
|
6082
|
+
*/
|
|
6083
|
+
export type EnumPhaseTriggerFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'PhaseTrigger'>;
|
|
5989
6084
|
/**
|
|
5990
6085
|
* Reference to a field of type 'StepType'
|
|
5991
6086
|
*/
|
|
@@ -6227,6 +6322,7 @@ export type GlobalOmitConfig = {
|
|
|
6227
6322
|
propertyPaymentMethod?: Prisma.PropertyPaymentMethodOmit;
|
|
6228
6323
|
propertyPaymentMethodLink?: Prisma.PropertyPaymentMethodLinkOmit;
|
|
6229
6324
|
propertyPaymentMethodPhase?: Prisma.PropertyPaymentMethodPhaseOmit;
|
|
6325
|
+
phaseEventAttachment?: Prisma.PhaseEventAttachmentOmit;
|
|
6230
6326
|
paymentMethodPhaseStep?: Prisma.PaymentMethodPhaseStepOmit;
|
|
6231
6327
|
stepEventAttachment?: Prisma.StepEventAttachmentOmit;
|
|
6232
6328
|
paymentMethodPhaseDocument?: Prisma.PaymentMethodPhaseDocumentOmit;
|
|
@@ -98,6 +98,7 @@ export const ModelName = {
|
|
|
98
98
|
PropertyPaymentMethod: 'PropertyPaymentMethod',
|
|
99
99
|
PropertyPaymentMethodLink: 'PropertyPaymentMethodLink',
|
|
100
100
|
PropertyPaymentMethodPhase: 'PropertyPaymentMethodPhase',
|
|
101
|
+
PhaseEventAttachment: 'PhaseEventAttachment',
|
|
101
102
|
PaymentMethodPhaseStep: 'PaymentMethodPhaseStep',
|
|
102
103
|
StepEventAttachment: 'StepEventAttachment',
|
|
103
104
|
PaymentMethodPhaseDocument: 'PaymentMethodPhaseDocument',
|
|
@@ -426,6 +427,11 @@ export const PaymentPlanScalarFieldEnum = {
|
|
|
426
427
|
numberOfInstallments: 'numberOfInstallments',
|
|
427
428
|
calculateInterestDaily: 'calculateInterestDaily',
|
|
428
429
|
gracePeriodDays: 'gracePeriodDays',
|
|
430
|
+
allowFlexibleTerm: 'allowFlexibleTerm',
|
|
431
|
+
minTermMonths: 'minTermMonths',
|
|
432
|
+
maxTermMonths: 'maxTermMonths',
|
|
433
|
+
termStepMonths: 'termStepMonths',
|
|
434
|
+
maxAgeAtMaturity: 'maxAgeAtMaturity',
|
|
429
435
|
collectFunds: 'collectFunds',
|
|
430
436
|
createdAt: 'createdAt',
|
|
431
437
|
updatedAt: 'updatedAt'
|
|
@@ -470,6 +476,16 @@ export const PropertyPaymentMethodPhaseScalarFieldEnum = {
|
|
|
470
476
|
createdAt: 'createdAt',
|
|
471
477
|
updatedAt: 'updatedAt'
|
|
472
478
|
};
|
|
479
|
+
export const PhaseEventAttachmentScalarFieldEnum = {
|
|
480
|
+
id: 'id',
|
|
481
|
+
phaseId: 'phaseId',
|
|
482
|
+
trigger: 'trigger',
|
|
483
|
+
handlerId: 'handlerId',
|
|
484
|
+
priority: 'priority',
|
|
485
|
+
enabled: 'enabled',
|
|
486
|
+
createdAt: 'createdAt',
|
|
487
|
+
updatedAt: 'updatedAt'
|
|
488
|
+
};
|
|
473
489
|
export const PaymentMethodPhaseStepScalarFieldEnum = {
|
|
474
490
|
id: 'id',
|
|
475
491
|
phaseId: 'phaseId',
|
|
@@ -619,6 +635,8 @@ export const PaymentPhaseScalarFieldEnum = {
|
|
|
619
635
|
totalAmount: 'totalAmount',
|
|
620
636
|
paidAmount: 'paidAmount',
|
|
621
637
|
interestRate: 'interestRate',
|
|
638
|
+
selectedTermMonths: 'selectedTermMonths',
|
|
639
|
+
numberOfInstallments: 'numberOfInstallments',
|
|
622
640
|
collectFunds: 'collectFunds',
|
|
623
641
|
minimumCompletionPercentage: 'minimumCompletionPercentage',
|
|
624
642
|
paymentPlanSnapshot: 'paymentPlanSnapshot',
|
|
@@ -1231,6 +1249,11 @@ export const PropertyPaymentMethodPhaseOrderByRelevanceFieldEnum = {
|
|
|
1231
1249
|
name: 'name',
|
|
1232
1250
|
description: 'description'
|
|
1233
1251
|
};
|
|
1252
|
+
export const PhaseEventAttachmentOrderByRelevanceFieldEnum = {
|
|
1253
|
+
id: 'id',
|
|
1254
|
+
phaseId: 'phaseId',
|
|
1255
|
+
handlerId: 'handlerId'
|
|
1256
|
+
};
|
|
1234
1257
|
export const PaymentMethodPhaseStepOrderByRelevanceFieldEnum = {
|
|
1235
1258
|
id: 'id',
|
|
1236
1259
|
phaseId: 'phaseId',
|
|
@@ -57,6 +57,7 @@ export declare const ModelName: {
|
|
|
57
57
|
readonly PropertyPaymentMethod: "PropertyPaymentMethod";
|
|
58
58
|
readonly PropertyPaymentMethodLink: "PropertyPaymentMethodLink";
|
|
59
59
|
readonly PropertyPaymentMethodPhase: "PropertyPaymentMethodPhase";
|
|
60
|
+
readonly PhaseEventAttachment: "PhaseEventAttachment";
|
|
60
61
|
readonly PaymentMethodPhaseStep: "PaymentMethodPhaseStep";
|
|
61
62
|
readonly StepEventAttachment: "StepEventAttachment";
|
|
62
63
|
readonly PaymentMethodPhaseDocument: "PaymentMethodPhaseDocument";
|
|
@@ -411,6 +412,11 @@ export declare const PaymentPlanScalarFieldEnum: {
|
|
|
411
412
|
readonly numberOfInstallments: "numberOfInstallments";
|
|
412
413
|
readonly calculateInterestDaily: "calculateInterestDaily";
|
|
413
414
|
readonly gracePeriodDays: "gracePeriodDays";
|
|
415
|
+
readonly allowFlexibleTerm: "allowFlexibleTerm";
|
|
416
|
+
readonly minTermMonths: "minTermMonths";
|
|
417
|
+
readonly maxTermMonths: "maxTermMonths";
|
|
418
|
+
readonly termStepMonths: "termStepMonths";
|
|
419
|
+
readonly maxAgeAtMaturity: "maxAgeAtMaturity";
|
|
414
420
|
readonly collectFunds: "collectFunds";
|
|
415
421
|
readonly createdAt: "createdAt";
|
|
416
422
|
readonly updatedAt: "updatedAt";
|
|
@@ -459,6 +465,17 @@ export declare const PropertyPaymentMethodPhaseScalarFieldEnum: {
|
|
|
459
465
|
readonly updatedAt: "updatedAt";
|
|
460
466
|
};
|
|
461
467
|
export type PropertyPaymentMethodPhaseScalarFieldEnum = (typeof PropertyPaymentMethodPhaseScalarFieldEnum)[keyof typeof PropertyPaymentMethodPhaseScalarFieldEnum];
|
|
468
|
+
export declare const PhaseEventAttachmentScalarFieldEnum: {
|
|
469
|
+
readonly id: "id";
|
|
470
|
+
readonly phaseId: "phaseId";
|
|
471
|
+
readonly trigger: "trigger";
|
|
472
|
+
readonly handlerId: "handlerId";
|
|
473
|
+
readonly priority: "priority";
|
|
474
|
+
readonly enabled: "enabled";
|
|
475
|
+
readonly createdAt: "createdAt";
|
|
476
|
+
readonly updatedAt: "updatedAt";
|
|
477
|
+
};
|
|
478
|
+
export type PhaseEventAttachmentScalarFieldEnum = (typeof PhaseEventAttachmentScalarFieldEnum)[keyof typeof PhaseEventAttachmentScalarFieldEnum];
|
|
462
479
|
export declare const PaymentMethodPhaseStepScalarFieldEnum: {
|
|
463
480
|
readonly id: "id";
|
|
464
481
|
readonly phaseId: "phaseId";
|
|
@@ -617,6 +634,8 @@ export declare const PaymentPhaseScalarFieldEnum: {
|
|
|
617
634
|
readonly totalAmount: "totalAmount";
|
|
618
635
|
readonly paidAmount: "paidAmount";
|
|
619
636
|
readonly interestRate: "interestRate";
|
|
637
|
+
readonly selectedTermMonths: "selectedTermMonths";
|
|
638
|
+
readonly numberOfInstallments: "numberOfInstallments";
|
|
620
639
|
readonly collectFunds: "collectFunds";
|
|
621
640
|
readonly minimumCompletionPercentage: "minimumCompletionPercentage";
|
|
622
641
|
readonly paymentPlanSnapshot: "paymentPlanSnapshot";
|
|
@@ -1288,6 +1307,12 @@ export declare const PropertyPaymentMethodPhaseOrderByRelevanceFieldEnum: {
|
|
|
1288
1307
|
readonly description: "description";
|
|
1289
1308
|
};
|
|
1290
1309
|
export type PropertyPaymentMethodPhaseOrderByRelevanceFieldEnum = (typeof PropertyPaymentMethodPhaseOrderByRelevanceFieldEnum)[keyof typeof PropertyPaymentMethodPhaseOrderByRelevanceFieldEnum];
|
|
1310
|
+
export declare const PhaseEventAttachmentOrderByRelevanceFieldEnum: {
|
|
1311
|
+
readonly id: "id";
|
|
1312
|
+
readonly phaseId: "phaseId";
|
|
1313
|
+
readonly handlerId: "handlerId";
|
|
1314
|
+
};
|
|
1315
|
+
export type PhaseEventAttachmentOrderByRelevanceFieldEnum = (typeof PhaseEventAttachmentOrderByRelevanceFieldEnum)[keyof typeof PhaseEventAttachmentOrderByRelevanceFieldEnum];
|
|
1291
1316
|
export declare const PaymentMethodPhaseStepOrderByRelevanceFieldEnum: {
|
|
1292
1317
|
readonly id: "id";
|
|
1293
1318
|
readonly phaseId: "phaseId";
|
|
@@ -70,6 +70,7 @@ export const ModelName = {
|
|
|
70
70
|
PropertyPaymentMethod: 'PropertyPaymentMethod',
|
|
71
71
|
PropertyPaymentMethodLink: 'PropertyPaymentMethodLink',
|
|
72
72
|
PropertyPaymentMethodPhase: 'PropertyPaymentMethodPhase',
|
|
73
|
+
PhaseEventAttachment: 'PhaseEventAttachment',
|
|
73
74
|
PaymentMethodPhaseStep: 'PaymentMethodPhaseStep',
|
|
74
75
|
StepEventAttachment: 'StepEventAttachment',
|
|
75
76
|
PaymentMethodPhaseDocument: 'PaymentMethodPhaseDocument',
|
|
@@ -398,6 +399,11 @@ export const PaymentPlanScalarFieldEnum = {
|
|
|
398
399
|
numberOfInstallments: 'numberOfInstallments',
|
|
399
400
|
calculateInterestDaily: 'calculateInterestDaily',
|
|
400
401
|
gracePeriodDays: 'gracePeriodDays',
|
|
402
|
+
allowFlexibleTerm: 'allowFlexibleTerm',
|
|
403
|
+
minTermMonths: 'minTermMonths',
|
|
404
|
+
maxTermMonths: 'maxTermMonths',
|
|
405
|
+
termStepMonths: 'termStepMonths',
|
|
406
|
+
maxAgeAtMaturity: 'maxAgeAtMaturity',
|
|
401
407
|
collectFunds: 'collectFunds',
|
|
402
408
|
createdAt: 'createdAt',
|
|
403
409
|
updatedAt: 'updatedAt'
|
|
@@ -442,6 +448,16 @@ export const PropertyPaymentMethodPhaseScalarFieldEnum = {
|
|
|
442
448
|
createdAt: 'createdAt',
|
|
443
449
|
updatedAt: 'updatedAt'
|
|
444
450
|
};
|
|
451
|
+
export const PhaseEventAttachmentScalarFieldEnum = {
|
|
452
|
+
id: 'id',
|
|
453
|
+
phaseId: 'phaseId',
|
|
454
|
+
trigger: 'trigger',
|
|
455
|
+
handlerId: 'handlerId',
|
|
456
|
+
priority: 'priority',
|
|
457
|
+
enabled: 'enabled',
|
|
458
|
+
createdAt: 'createdAt',
|
|
459
|
+
updatedAt: 'updatedAt'
|
|
460
|
+
};
|
|
445
461
|
export const PaymentMethodPhaseStepScalarFieldEnum = {
|
|
446
462
|
id: 'id',
|
|
447
463
|
phaseId: 'phaseId',
|
|
@@ -591,6 +607,8 @@ export const PaymentPhaseScalarFieldEnum = {
|
|
|
591
607
|
totalAmount: 'totalAmount',
|
|
592
608
|
paidAmount: 'paidAmount',
|
|
593
609
|
interestRate: 'interestRate',
|
|
610
|
+
selectedTermMonths: 'selectedTermMonths',
|
|
611
|
+
numberOfInstallments: 'numberOfInstallments',
|
|
594
612
|
collectFunds: 'collectFunds',
|
|
595
613
|
minimumCompletionPercentage: 'minimumCompletionPercentage',
|
|
596
614
|
paymentPlanSnapshot: 'paymentPlanSnapshot',
|
|
@@ -1203,6 +1221,11 @@ export const PropertyPaymentMethodPhaseOrderByRelevanceFieldEnum = {
|
|
|
1203
1221
|
name: 'name',
|
|
1204
1222
|
description: 'description'
|
|
1205
1223
|
};
|
|
1224
|
+
export const PhaseEventAttachmentOrderByRelevanceFieldEnum = {
|
|
1225
|
+
id: 'id',
|
|
1226
|
+
phaseId: 'phaseId',
|
|
1227
|
+
handlerId: 'handlerId'
|
|
1228
|
+
};
|
|
1206
1229
|
export const PaymentMethodPhaseStepOrderByRelevanceFieldEnum = {
|
|
1207
1230
|
id: 'id',
|
|
1208
1231
|
phaseId: 'phaseId',
|