@valentine-efagene/qshelter-common 2.0.113 → 2.0.114
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 +4 -0
- package/dist/generated/client/internal/prismaNamespace.js +6 -2
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +4 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +6 -2
- package/dist/generated/client/models/Application.d.ts +793 -1
- package/dist/generated/client/models/PropertyPaymentMethodPhase.d.ts +74 -1
- package/package.json +1 -1
- package/prisma/schema.prisma +15 -0
|
@@ -31,6 +31,7 @@ export declare const ApplicationStatus: {
|
|
|
31
31
|
readonly CANCELLED: "CANCELLED";
|
|
32
32
|
readonly TERMINATED: "TERMINATED";
|
|
33
33
|
readonly TRANSFERRED: "TRANSFERRED";
|
|
34
|
+
readonly SUPERSEDED: "SUPERSEDED";
|
|
34
35
|
};
|
|
35
36
|
export type ApplicationStatus = (typeof ApplicationStatus)[keyof typeof ApplicationStatus];
|
|
36
37
|
export declare const TransferRequestStatus: {
|
|
@@ -232,6 +233,7 @@ export declare const EventHandlerType: {
|
|
|
232
233
|
readonly CALL_WEBHOOK: "CALL_WEBHOOK";
|
|
233
234
|
readonly ADVANCE_WORKFLOW: "ADVANCE_WORKFLOW";
|
|
234
235
|
readonly RUN_AUTOMATION: "RUN_AUTOMATION";
|
|
236
|
+
readonly LOCK_UNIT: "LOCK_UNIT";
|
|
235
237
|
};
|
|
236
238
|
export type EventHandlerType = (typeof EventHandlerType)[keyof typeof EventHandlerType];
|
|
237
239
|
export declare const ActorType: {
|
|
@@ -36,7 +36,8 @@ export const ApplicationStatus = {
|
|
|
36
36
|
COMPLETED: 'COMPLETED',
|
|
37
37
|
CANCELLED: 'CANCELLED',
|
|
38
38
|
TERMINATED: 'TERMINATED',
|
|
39
|
-
TRANSFERRED: 'TRANSFERRED'
|
|
39
|
+
TRANSFERRED: 'TRANSFERRED',
|
|
40
|
+
SUPERSEDED: 'SUPERSEDED'
|
|
40
41
|
};
|
|
41
42
|
export const TransferRequestStatus = {
|
|
42
43
|
PENDING: 'PENDING',
|
|
@@ -216,7 +217,8 @@ export const EventHandlerType = {
|
|
|
216
217
|
SEND_PUSH: 'SEND_PUSH',
|
|
217
218
|
CALL_WEBHOOK: 'CALL_WEBHOOK',
|
|
218
219
|
ADVANCE_WORKFLOW: 'ADVANCE_WORKFLOW',
|
|
219
|
-
RUN_AUTOMATION: 'RUN_AUTOMATION'
|
|
220
|
+
RUN_AUTOMATION: 'RUN_AUTOMATION',
|
|
221
|
+
LOCK_UNIT: 'LOCK_UNIT'
|
|
220
222
|
};
|
|
221
223
|
export const ActorType = {
|
|
222
224
|
USER: 'USER',
|