kcommons 7.0.4 → 7.0.5
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,6 +1,10 @@
|
|
|
1
1
|
import { INestedApprovalConfig } from "./approvalConfig.typings";
|
|
2
2
|
import { INestedRole } from "./roles.typings";
|
|
3
3
|
import { INestedUser } from "./user.typings";
|
|
4
|
+
export declare enum APPROVAL_CHAIN_ITEM_POSITION {
|
|
5
|
+
NEXT = "NEXT",
|
|
6
|
+
PREVIOUS = "PREVIOUS"
|
|
7
|
+
}
|
|
4
8
|
export declare enum ApprovalAction {
|
|
5
9
|
APPROVED = "APPROVED",
|
|
6
10
|
REJECTED = "REJECTED",
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ApprovalConfigInlcude = exports.ApprovalAction = void 0;
|
|
3
|
+
exports.ApprovalConfigInlcude = exports.ApprovalAction = exports.APPROVAL_CHAIN_ITEM_POSITION = void 0;
|
|
4
|
+
var APPROVAL_CHAIN_ITEM_POSITION;
|
|
5
|
+
(function (APPROVAL_CHAIN_ITEM_POSITION) {
|
|
6
|
+
APPROVAL_CHAIN_ITEM_POSITION["NEXT"] = "NEXT";
|
|
7
|
+
APPROVAL_CHAIN_ITEM_POSITION["PREVIOUS"] = "PREVIOUS";
|
|
8
|
+
})(APPROVAL_CHAIN_ITEM_POSITION || (exports.APPROVAL_CHAIN_ITEM_POSITION = APPROVAL_CHAIN_ITEM_POSITION = {}));
|
|
4
9
|
var ApprovalAction;
|
|
5
10
|
(function (ApprovalAction) {
|
|
6
11
|
ApprovalAction["APPROVED"] = "APPROVED";
|