plac-micro-common 1.2.25 → 1.2.26
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.
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare enum ApplicationStatus {
|
|
2
|
+
New = "new",// Agent drafting
|
|
3
|
+
Submitted = "submitted",// Agent submitted to Admin
|
|
4
|
+
InReview = "in_review",// Admin picked up / reviewing
|
|
5
|
+
EditRequired = "edit_required",// Admin requires Agent to edit/resubmit
|
|
6
|
+
MoreDocRequired = "more_doc_required",// Admin requires additional docs upload
|
|
7
|
+
Resubmitted = "resubmitted",// Agent resubmitted after edit/docs
|
|
8
|
+
Rejected = "rejected",// final reject
|
|
9
|
+
Accepted = "accepted",// final accept
|
|
10
|
+
Transferred = "transferred",// pushed to core successfully
|
|
11
|
+
Cancelled = "cancelled"
|
|
12
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ApplicationStatus = void 0;
|
|
4
|
+
var ApplicationStatus;
|
|
5
|
+
(function (ApplicationStatus) {
|
|
6
|
+
ApplicationStatus["New"] = "new";
|
|
7
|
+
ApplicationStatus["Submitted"] = "submitted";
|
|
8
|
+
ApplicationStatus["InReview"] = "in_review";
|
|
9
|
+
ApplicationStatus["EditRequired"] = "edit_required";
|
|
10
|
+
ApplicationStatus["MoreDocRequired"] = "more_doc_required";
|
|
11
|
+
ApplicationStatus["Resubmitted"] = "resubmitted";
|
|
12
|
+
ApplicationStatus["Rejected"] = "rejected";
|
|
13
|
+
ApplicationStatus["Accepted"] = "accepted";
|
|
14
|
+
ApplicationStatus["Transferred"] = "transferred";
|
|
15
|
+
ApplicationStatus["Cancelled"] = "cancelled";
|
|
16
|
+
})(ApplicationStatus || (exports.ApplicationStatus = ApplicationStatus = {}));
|
package/dist/types/index.d.ts
CHANGED
package/dist/types/index.js
CHANGED
|
@@ -17,6 +17,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
__exportStar(require("./_base.type"), exports);
|
|
18
18
|
__exportStar(require("./auth.type"), exports);
|
|
19
19
|
__exportStar(require("./auth_info.type"), exports);
|
|
20
|
+
__exportStar(require("./application.type"), exports);
|
|
20
21
|
__exportStar(require("./business.type"), exports);
|
|
21
22
|
__exportStar(require("./customer.type"), exports);
|
|
22
23
|
__exportStar(require("./general.type"), exports);
|
|
@@ -17,12 +17,14 @@ export declare const PermissionResource: {
|
|
|
17
17
|
readonly Application: "application";
|
|
18
18
|
readonly Claim: "claim";
|
|
19
19
|
readonly Customer: "customer";
|
|
20
|
-
readonly Menu: "menu";
|
|
21
20
|
readonly Dashboard: "dashboard";
|
|
21
|
+
readonly Menu: "menu";
|
|
22
|
+
readonly Organization: "organization";
|
|
22
23
|
readonly Permission: "permission";
|
|
23
24
|
readonly Policy: "policy";
|
|
24
25
|
readonly Quotation: "quotation";
|
|
25
26
|
readonly Role: "role";
|
|
27
|
+
readonly Staff: "staff";
|
|
26
28
|
readonly User: "user";
|
|
27
29
|
};
|
|
28
30
|
export type PermissionResource = (typeof PermissionResource)[keyof typeof PermissionResource];
|
|
@@ -21,12 +21,14 @@ exports.PermissionResource = {
|
|
|
21
21
|
Application: "application",
|
|
22
22
|
Claim: "claim",
|
|
23
23
|
Customer: "customer",
|
|
24
|
-
Menu: "menu",
|
|
25
24
|
Dashboard: "dashboard",
|
|
25
|
+
Menu: "menu",
|
|
26
|
+
Organization: "organization",
|
|
26
27
|
Permission: "permission",
|
|
27
28
|
Policy: "policy",
|
|
28
29
|
Quotation: "quotation",
|
|
29
30
|
Role: "role",
|
|
31
|
+
Staff: "staff",
|
|
30
32
|
User: "user",
|
|
31
33
|
};
|
|
32
34
|
var PermissionModule;
|