kcommons 3.14.1 → 3.14.2
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.
|
@@ -14,4 +14,6 @@ var DOCUMENT_STATUS;
|
|
|
14
14
|
DOCUMENT_STATUS["PO"] = "PO";
|
|
15
15
|
DOCUMENT_STATUS["SENT_TO_STORE"] = "SENT TO STORE";
|
|
16
16
|
DOCUMENT_STATUS["SENT_TO_PURCHASE"] = "SENT TO PURCHASE";
|
|
17
|
+
DOCUMENT_STATUS["PENDING"] = "PENDING";
|
|
18
|
+
DOCUMENT_STATUS["QUOTED"] = "QUOTED";
|
|
17
19
|
})(DOCUMENT_STATUS = exports.DOCUMENT_STATUS || (exports.DOCUMENT_STATUS = {}));
|
package/build/index.d.ts
CHANGED
package/build/index.js
CHANGED
|
@@ -46,3 +46,5 @@ __exportStar(require("./typings/mi/mi.typings"), exports);
|
|
|
46
46
|
__exportStar(require("./typings/rfq.typings"), exports);
|
|
47
47
|
__exportStar(require("./typings/company.typings"), exports);
|
|
48
48
|
__exportStar(require("./typings/storeInventory.include"), exports);
|
|
49
|
+
//Vendor
|
|
50
|
+
__exportStar(require("./typings/quote.typings"), exports);
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.QUOTE_STATUS = void 0;
|
|
4
|
+
var QUOTE_STATUS;
|
|
5
|
+
(function (QUOTE_STATUS) {
|
|
6
|
+
QUOTE_STATUS["PENDING"] = "PENDING";
|
|
7
|
+
QUOTE_STATUS["QUOTED"] = "QUOTED";
|
|
8
|
+
})(QUOTE_STATUS = exports.QUOTE_STATUS || (exports.QUOTE_STATUS = {}));
|