kcommons 13.17.2 → 13.17.4
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/build/index.d.ts
CHANGED
|
@@ -80,6 +80,7 @@ export * from "./constants/company.constants";
|
|
|
80
80
|
export * from "./constants/alphaSeries.constants";
|
|
81
81
|
export * from "./constants/zod.constant";
|
|
82
82
|
export * from "./constants/date.constants";
|
|
83
|
+
export * from "./constants/companyDocumentUplodPath.constants";
|
|
83
84
|
export * from "./classes/asnWrapper.class";
|
|
84
85
|
export * from "./utils/permission.utils";
|
|
85
86
|
export * from "./utils/taxes.util";
|
package/build/index.js
CHANGED
|
@@ -101,6 +101,7 @@ __exportStar(require("./constants/company.constants"), exports);
|
|
|
101
101
|
__exportStar(require("./constants/alphaSeries.constants"), exports);
|
|
102
102
|
__exportStar(require("./constants/zod.constant"), exports);
|
|
103
103
|
__exportStar(require("./constants/date.constants"), exports);
|
|
104
|
+
__exportStar(require("./constants/companyDocumentUplodPath.constants"), exports);
|
|
104
105
|
// Classes
|
|
105
106
|
__exportStar(require("./classes/asnWrapper.class"), exports);
|
|
106
107
|
// Utils
|
|
@@ -34,7 +34,8 @@ export declare enum LIFECYCLE_LOG_ACTIONS {
|
|
|
34
34
|
SENT_TO_VENDORS = "SENT_TO_VENDORS",
|
|
35
35
|
ACCEPTED_BY_VENDOR = "ACCEPTED_BY_VENDOR",
|
|
36
36
|
REJECTED_BY_VENDOR = "REJECTED_BY_VENDOR",
|
|
37
|
-
READY_FOR_DISPATCH = "READY_FOR_DISPATCH"
|
|
37
|
+
READY_FOR_DISPATCH = "READY_FOR_DISPATCH",
|
|
38
|
+
SENT_TO_COMPANY_FOR_APPROVAL = "SENT_TO_COMPANY_FOR_APPROVAL"
|
|
38
39
|
}
|
|
39
40
|
export declare enum LIFECYCLE_LOGS_INCLUDE {
|
|
40
41
|
user = "user",
|
|
@@ -36,6 +36,7 @@ var LIFECYCLE_LOG_ACTIONS;
|
|
|
36
36
|
LIFECYCLE_LOG_ACTIONS["ACCEPTED_BY_VENDOR"] = "ACCEPTED_BY_VENDOR";
|
|
37
37
|
LIFECYCLE_LOG_ACTIONS["REJECTED_BY_VENDOR"] = "REJECTED_BY_VENDOR";
|
|
38
38
|
LIFECYCLE_LOG_ACTIONS["READY_FOR_DISPATCH"] = "READY_FOR_DISPATCH";
|
|
39
|
+
LIFECYCLE_LOG_ACTIONS["SENT_TO_COMPANY_FOR_APPROVAL"] = "SENT_TO_COMPANY_FOR_APPROVAL";
|
|
39
40
|
})(LIFECYCLE_LOG_ACTIONS || (exports.LIFECYCLE_LOG_ACTIONS = LIFECYCLE_LOG_ACTIONS = {}));
|
|
40
41
|
var LIFECYCLE_LOGS_INCLUDE;
|
|
41
42
|
(function (LIFECYCLE_LOGS_INCLUDE) {
|