kcommons 9.2.3 → 9.2.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.
@@ -3,6 +3,10 @@ import { INestedCompany } from "../../company.typings";
3
3
  import { INestedStoreLocation } from "../../storeLocation.typings";
4
4
  import { INestedUser } from "../../user.typings";
5
5
  import { INestedISTDItem } from "./istdItems.typings";
6
+ export declare enum ISTD_TYPES {
7
+ REQUESTED = "REQUESTED",
8
+ RECEIVED = "RECEIVED"
9
+ }
6
10
  export declare enum ISTD_STATUS_FOR_SOURCE {
7
11
  DRAFT = "DRAFT",
8
12
  PENDING_APPROVAL = "PENDING APPROVAL",
@@ -1,6 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ISTD_INCLUDE = exports.ISTD_STATUS_FOR_DEST = exports.ISTD_STATUS_FOR_SOURCE = void 0;
3
+ exports.ISTD_INCLUDE = exports.ISTD_STATUS_FOR_DEST = exports.ISTD_STATUS_FOR_SOURCE = exports.ISTD_TYPES = void 0;
4
+ var ISTD_TYPES;
5
+ (function (ISTD_TYPES) {
6
+ ISTD_TYPES["REQUESTED"] = "REQUESTED";
7
+ ISTD_TYPES["RECEIVED"] = "RECEIVED";
8
+ })(ISTD_TYPES || (exports.ISTD_TYPES = ISTD_TYPES = {}));
4
9
  var ISTD_STATUS_FOR_SOURCE;
5
10
  (function (ISTD_STATUS_FOR_SOURCE) {
6
11
  ISTD_STATUS_FOR_SOURCE["DRAFT"] = "DRAFT";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "9.2.3",
3
+ "version": "9.2.4",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.js",