plac-micro-common 1.3.116 → 1.3.118
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.
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.PaymentMode = exports.CreditCardType = exports.PaymentMethod = exports.AppPaymentStatus = exports.AppPaymentType = exports.AppDocumentType = exports.UwAnswerValueType = exports.AppCoverageType = exports.AppPhLaRelation = exports.AppPersonRole = exports.ApplicationActionType = exports.ApplicationStatus = exports.AppSourceType = exports.AppFormType = void 0;
|
|
3
|
+
exports.PaymentMode = exports.CreditCardType = exports.PaymentMethod = exports.AppPaymentStatus = exports.AppPaymentType = exports.AppDocumentType = exports.UwAnswerValueType = exports.AppCoverageType = exports.AppPhLaRelation = exports.AppPersonRole = exports.ApplicationActionType = exports.ApplicationStatus = exports.AppSourceType = exports.AppVisibilityScope = exports.AppFormType = void 0;
|
|
4
4
|
var AppFormType;
|
|
5
5
|
(function (AppFormType) {
|
|
6
6
|
AppFormType["Base"] = "base";
|
|
7
7
|
AppFormType["Simplified"] = "sio";
|
|
8
8
|
})(AppFormType || (exports.AppFormType = AppFormType = {}));
|
|
9
|
+
var AppVisibilityScope;
|
|
10
|
+
(function (AppVisibilityScope) {
|
|
11
|
+
AppVisibilityScope["Own"] = "own";
|
|
12
|
+
AppVisibilityScope["Team"] = "team";
|
|
13
|
+
AppVisibilityScope["Org"] = "org";
|
|
14
|
+
})(AppVisibilityScope || (exports.AppVisibilityScope = AppVisibilityScope = {}));
|
|
9
15
|
var AppSourceType;
|
|
10
16
|
(function (AppSourceType) {
|
|
11
17
|
AppSourceType["Banca"] = "banca";
|
|
@@ -18,9 +18,11 @@ export declare enum PermissionAction {
|
|
|
18
18
|
Read = "read",
|
|
19
19
|
Reject = "reject",
|
|
20
20
|
Restore = "restore",
|
|
21
|
+
Submit = "submit",
|
|
21
22
|
Transfer = "transfer",
|
|
22
23
|
Update = "update",
|
|
23
|
-
Void = "void"
|
|
24
|
+
Void = "void",
|
|
25
|
+
ReadOrg = "readOrg"
|
|
24
26
|
}
|
|
25
27
|
export declare const PermissionResource: {
|
|
26
28
|
readonly AuditLog: "audit_log";
|
|
@@ -23,9 +23,12 @@ var PermissionAction;
|
|
|
23
23
|
PermissionAction["Read"] = "read";
|
|
24
24
|
PermissionAction["Reject"] = "reject";
|
|
25
25
|
PermissionAction["Restore"] = "restore";
|
|
26
|
+
PermissionAction["Submit"] = "submit";
|
|
26
27
|
PermissionAction["Transfer"] = "transfer";
|
|
27
28
|
PermissionAction["Update"] = "update";
|
|
28
29
|
PermissionAction["Void"] = "void";
|
|
30
|
+
// special - org level
|
|
31
|
+
PermissionAction["ReadOrg"] = "readOrg";
|
|
29
32
|
})(PermissionAction || (exports.PermissionAction = PermissionAction = {}));
|
|
30
33
|
exports.PermissionResource = {
|
|
31
34
|
AuditLog: "audit_log",
|