@valentine-efagene/qshelter-common 2.0.145 → 2.0.147
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/enums.d.ts +2 -0
- package/dist/generated/client/enums.js +4 -2
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +3 -0
- package/dist/generated/client/internal/prismaNamespace.js +3 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +3 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +3 -0
- package/dist/generated/client/models/PaymentInstallment.d.ts +50 -1
- package/dist/generated/client/models/PaymentMethodPhaseStep.d.ts +6 -1
- package/dist/generated/client/models/PaymentPhase.d.ts +54 -1
- package/dist/generated/client/models/PropertyPaymentMethodPhase.d.ts +6 -1
- package/dist/generated/client/models/PropertyUnit.d.ts +54 -1
- package/package.json +1 -1
- package/prisma/migrations/20260121155057_add_event_execution_and_bank_docs/migration.sql +198 -0
- package/prisma/migrations/20260121161937_add_phase_step_order_unique_constraints/migration.sql +12 -0
- package/prisma/migrations/20260121163910_add_optimistic_locking/migration.sql +14 -0
- package/prisma/schema.prisma +14 -1
|
@@ -308,6 +308,7 @@ export declare const ApplicationEventType: {
|
|
|
308
308
|
readonly APPLICATION_TRANSFERRED: "APPLICATION_TRANSFERRED";
|
|
309
309
|
readonly UNDERWRITING_COMPLETED: "UNDERWRITING_COMPLETED";
|
|
310
310
|
readonly OFFER_LETTER_GENERATED: "OFFER_LETTER_GENERATED";
|
|
311
|
+
readonly HANDLER_EXECUTED: "HANDLER_EXECUTED";
|
|
311
312
|
};
|
|
312
313
|
export type ApplicationEventType = (typeof ApplicationEventType)[keyof typeof ApplicationEventType];
|
|
313
314
|
export declare const ApplicationEventGroup: {
|
|
@@ -316,6 +317,7 @@ export declare const ApplicationEventGroup: {
|
|
|
316
317
|
readonly DOCUMENT: "DOCUMENT";
|
|
317
318
|
readonly NOTIFICATION: "NOTIFICATION";
|
|
318
319
|
readonly WORKFLOW: "WORKFLOW";
|
|
320
|
+
readonly AUTOMATION: "AUTOMATION";
|
|
319
321
|
};
|
|
320
322
|
export type ApplicationEventGroup = (typeof ApplicationEventGroup)[keyof typeof ApplicationEventGroup];
|
|
321
323
|
export declare const EventActorType: {
|
|
@@ -283,14 +283,16 @@ export const ApplicationEventType = {
|
|
|
283
283
|
APPLICATION_TERMINATED: 'APPLICATION_TERMINATED',
|
|
284
284
|
APPLICATION_TRANSFERRED: 'APPLICATION_TRANSFERRED',
|
|
285
285
|
UNDERWRITING_COMPLETED: 'UNDERWRITING_COMPLETED',
|
|
286
|
-
OFFER_LETTER_GENERATED: 'OFFER_LETTER_GENERATED'
|
|
286
|
+
OFFER_LETTER_GENERATED: 'OFFER_LETTER_GENERATED',
|
|
287
|
+
HANDLER_EXECUTED: 'HANDLER_EXECUTED'
|
|
287
288
|
};
|
|
288
289
|
export const ApplicationEventGroup = {
|
|
289
290
|
STATE_CHANGE: 'STATE_CHANGE',
|
|
290
291
|
PAYMENT: 'PAYMENT',
|
|
291
292
|
DOCUMENT: 'DOCUMENT',
|
|
292
293
|
NOTIFICATION: 'NOTIFICATION',
|
|
293
|
-
WORKFLOW: 'WORKFLOW'
|
|
294
|
+
WORKFLOW: 'WORKFLOW',
|
|
295
|
+
AUTOMATION: 'AUTOMATION'
|
|
294
296
|
};
|
|
295
297
|
export const EventActorType = {
|
|
296
298
|
USER: 'USER',
|