kcommons 5.2.16 → 5.2.17

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.
@@ -21,6 +21,10 @@ export declare enum PO_STATUS {
21
21
  ACCEPTED = "ACCEPTED",
22
22
  REJECTED_BY_VENDOR = "REJECTED_BY_VENDOR"
23
23
  }
24
+ export declare enum PO_TYPE {
25
+ DIRECT = "DIRECT",
26
+ ASCENDENT_OF_COMPARATIVE = "ASCENDENT_OF_COMPARATIVE"
27
+ }
24
28
  export interface IPurchaseOrder {
25
29
  id: string;
26
30
  po_no: string;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PO_ITEM_INCLUDE = exports.PO_INCLUDE = exports.PO_STATUS = void 0;
3
+ exports.PO_ITEM_INCLUDE = exports.PO_INCLUDE = exports.PO_TYPE = exports.PO_STATUS = void 0;
4
4
  var PO_STATUS;
5
5
  (function (PO_STATUS) {
6
6
  PO_STATUS["DRAFT"] = "DRAFT";
@@ -13,6 +13,11 @@ var PO_STATUS;
13
13
  PO_STATUS["ACCEPTED"] = "ACCEPTED";
14
14
  PO_STATUS["REJECTED_BY_VENDOR"] = "REJECTED_BY_VENDOR";
15
15
  })(PO_STATUS = exports.PO_STATUS || (exports.PO_STATUS = {}));
16
+ var PO_TYPE;
17
+ (function (PO_TYPE) {
18
+ PO_TYPE["DIRECT"] = "DIRECT";
19
+ PO_TYPE["ASCENDENT_OF_COMPARATIVE"] = "ASCENDENT_OF_COMPARATIVE";
20
+ })(PO_TYPE = exports.PO_TYPE || (exports.PO_TYPE = {}));
16
21
  var PO_INCLUDE;
17
22
  (function (PO_INCLUDE) {
18
23
  PO_INCLUDE["company"] = "company";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "5.2.16",
3
+ "version": "5.2.17",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.js",