kcommons 5.23.32 → 5.23.34

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.
@@ -54,3 +54,8 @@ export declare enum VENDOR_INCLUDE {
54
54
  export interface IVENDOR_TOKEN_PAYLOAD {
55
55
  id: string;
56
56
  }
57
+ export declare enum VENDOR_TYPE {
58
+ MFG = "Manufracturing",
59
+ TRD = "Traders",
60
+ SPO = "Service Provider and Others"
61
+ }
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.VENDOR_INCLUDE = void 0;
3
+ exports.VENDOR_TYPE = exports.VENDOR_INCLUDE = void 0;
4
4
  var VENDOR_INCLUDE;
5
5
  (function (VENDOR_INCLUDE) {
6
6
  VENDOR_INCLUDE["quotes"] = "quotes";
@@ -10,3 +10,10 @@ var VENDOR_INCLUDE;
10
10
  VENDOR_INCLUDE["vendor_notifications"] = "vendor_notifications";
11
11
  // pos = "pos",
12
12
  })(VENDOR_INCLUDE || (exports.VENDOR_INCLUDE = VENDOR_INCLUDE = {}));
13
+ // for GST-Core activities Types
14
+ var VENDOR_TYPE;
15
+ (function (VENDOR_TYPE) {
16
+ VENDOR_TYPE["MFG"] = "Manufracturing";
17
+ VENDOR_TYPE["TRD"] = "Traders";
18
+ VENDOR_TYPE["SPO"] = "Service Provider and Others";
19
+ })(VENDOR_TYPE || (exports.VENDOR_TYPE = VENDOR_TYPE = {}));
@@ -17,6 +17,7 @@ export interface IVendorItem {
17
17
  item_type: string;
18
18
  vendor_id: string;
19
19
  name: string;
20
+ per_unit_rate: number;
20
21
  tolerence: string | null;
21
22
  item_classification: string | null;
22
23
  uom: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "5.23.32",
3
+ "version": "5.23.34",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.js",