@platform-modules/foreign-ministry 1.3.115 → 1.3.117
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.
|
@@ -9,10 +9,11 @@ export declare enum SecurityDeptRequestStatus {
|
|
|
9
9
|
IN_PROGRESS = "In Progress"
|
|
10
10
|
}
|
|
11
11
|
/**
|
|
12
|
-
* Access Type Enum
|
|
12
|
+
* Access Type Enum
|
|
13
13
|
*/
|
|
14
14
|
export declare enum SecurityDeptAccessType {
|
|
15
|
-
NORMAL = "Normal"
|
|
15
|
+
NORMAL = "Normal",
|
|
16
|
+
SPECIAL = "Special"
|
|
16
17
|
}
|
|
17
18
|
/**
|
|
18
19
|
* Security Department Main Request Table
|
|
@@ -23,11 +23,12 @@ var SecurityDeptRequestStatus;
|
|
|
23
23
|
SecurityDeptRequestStatus["IN_PROGRESS"] = "In Progress";
|
|
24
24
|
})(SecurityDeptRequestStatus || (exports.SecurityDeptRequestStatus = SecurityDeptRequestStatus = {}));
|
|
25
25
|
/**
|
|
26
|
-
* Access Type Enum
|
|
26
|
+
* Access Type Enum
|
|
27
27
|
*/
|
|
28
28
|
var SecurityDeptAccessType;
|
|
29
29
|
(function (SecurityDeptAccessType) {
|
|
30
30
|
SecurityDeptAccessType["NORMAL"] = "Normal";
|
|
31
|
+
SecurityDeptAccessType["SPECIAL"] = "Special";
|
|
31
32
|
})(SecurityDeptAccessType || (exports.SecurityDeptAccessType = SecurityDeptAccessType = {}));
|
|
32
33
|
/**
|
|
33
34
|
* Security Department Main Request Table
|
package/package.json
CHANGED