kcommons 5.22.0 → 5.22.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.
@@ -66,6 +66,7 @@ export interface IComparativeItem {
66
66
  quantity: number;
67
67
  pending_qnty: number;
68
68
  processing_qnty: number;
69
+ tolerence: string | null;
69
70
  item_description: string | null;
70
71
  remarks: string | null;
71
72
  attachment_link: string | null;
@@ -7,6 +7,7 @@ export interface IDocItem {
7
7
  item_name: string;
8
8
  quantity: number;
9
9
  uom: string;
10
+ tolerence: string | null;
10
11
  item_description?: string | null;
11
12
  attachment_link?: string | null;
12
13
  is_deleted?: boolean | null;
@@ -24,6 +25,7 @@ export declare class DocItem implements IDocItem {
24
25
  item_name: string;
25
26
  quantity: number;
26
27
  uom: string;
28
+ tolerence: string | null;
27
29
  item_description?: string | null;
28
30
  attachment_link?: string | null;
29
31
  is_deleted?: boolean | null;
@@ -38,6 +40,7 @@ export interface ITaxRelatedItemInputs {
38
40
  code_sku: string;
39
41
  item_description?: string | null;
40
42
  uom: string;
43
+ tolerence: string | null;
41
44
  provided_quantity?: number | null;
42
45
  per_unit_rate?: number | null;
43
46
  discount_value?: number | null;
@@ -11,6 +11,7 @@ class DocItem {
11
11
  this.item_name = "";
12
12
  this.quantity = 0;
13
13
  this.uom = "";
14
+ this.tolerence = null;
14
15
  Object.assign(this, partial);
15
16
  }
16
17
  }
@@ -45,6 +45,7 @@ export interface IItem {
45
45
  item_tax_preference: string;
46
46
  code_sku: string;
47
47
  uom: string;
48
+ tolerence: string | null;
48
49
  gst_percent?: number;
49
50
  attachment_link: string | null;
50
51
  least_purchase_price: number | null;
@@ -18,6 +18,11 @@ export interface IRFQFilters {
18
18
  include?: RFQ_INCLUDES[];
19
19
  name?: string;
20
20
  }
21
+ export declare enum RFQVendorType {
22
+ DIRECT = "DIRECT",
23
+ VENDOR_GROUP = "VENDOR_GROUP",
24
+ ADDITIONAL_VENDORS = "ADDITIONAL_VENDORS"
25
+ }
21
26
  export interface IRFQFiltersWithPagination extends IPaginationFilters, IRFQFilters {
22
27
  }
23
28
  export declare enum RFQ_INCLUDES {
@@ -119,6 +124,7 @@ export interface IRFQItem {
119
124
  item_name: string;
120
125
  uom: string;
121
126
  code_sku: string;
127
+ tolerence: string | null;
122
128
  quantity: number;
123
129
  created_by_user_id: string;
124
130
  item_description?: string | null;
@@ -1,6 +1,12 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.RFQ_BOM_INCLUDE = exports.RFQ_ITEM_INCLUDE = exports.BIDDING_TYPES = exports.RFQ_ITEM_TYPE = exports.RFQ_STATUS = exports.RFQ_INCLUDES = void 0;
3
+ exports.RFQ_BOM_INCLUDE = exports.RFQ_ITEM_INCLUDE = exports.BIDDING_TYPES = exports.RFQ_ITEM_TYPE = exports.RFQ_STATUS = exports.RFQ_INCLUDES = exports.RFQVendorType = void 0;
4
+ var RFQVendorType;
5
+ (function (RFQVendorType) {
6
+ RFQVendorType["DIRECT"] = "DIRECT";
7
+ RFQVendorType["VENDOR_GROUP"] = "VENDOR_GROUP";
8
+ RFQVendorType["ADDITIONAL_VENDORS"] = "ADDITIONAL_VENDORS";
9
+ })(RFQVendorType || (exports.RFQVendorType = RFQVendorType = {}));
4
10
  var RFQ_INCLUDES;
5
11
  (function (RFQ_INCLUDES) {
6
12
  RFQ_INCLUDES["company"] = "company";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "5.22.0",
3
+ "version": "5.22.2",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.js",