kcommons 5.24.15 → 5.24.16

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
@@ -36,6 +36,7 @@ export * from "./typings/notifications.typings";
36
36
  export * from "./typings/vendorItem.typings";
37
37
  export * from "./typings/vendorItemCategories.typings";
38
38
  export * from "./typings/vendorDiscovery.typings";
39
+ export * from "./typings/settings/configForm.typings";
39
40
  export * from "./constants/permission.constants";
40
41
  export * from "./constants/entityTypes.constants";
41
42
  export * from "./constants/documentStatus.typings";
package/build/index.js CHANGED
@@ -53,6 +53,7 @@ __exportStar(require("./typings/notifications.typings"), exports);
53
53
  __exportStar(require("./typings/vendorItem.typings"), exports);
54
54
  __exportStar(require("./typings/vendorItemCategories.typings"), exports);
55
55
  __exportStar(require("./typings/vendorDiscovery.typings"), exports);
56
+ __exportStar(require("./typings/settings/configForm.typings"), exports);
56
57
  // Constants
57
58
  __exportStar(require("./constants/permission.constants"), exports);
58
59
  __exportStar(require("./constants/entityTypes.constants"), exports);
@@ -0,0 +1,3 @@
1
+ export declare enum CONFIG_FORM_TYPES {
2
+ VENDOR_ONBOARDING = "vendor-onboarding"
3
+ }
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CONFIG_FORM_TYPES = void 0;
4
+ var CONFIG_FORM_TYPES;
5
+ (function (CONFIG_FORM_TYPES) {
6
+ CONFIG_FORM_TYPES["VENDOR_ONBOARDING"] = "vendor-onboarding";
7
+ })(CONFIG_FORM_TYPES || (exports.CONFIG_FORM_TYPES = CONFIG_FORM_TYPES = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "5.24.15",
3
+ "version": "5.24.16",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.js",