kcommons 5.22.1 → 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;
@@ -124,6 +124,7 @@ export interface IRFQItem {
124
124
  item_name: string;
125
125
  uom: string;
126
126
  code_sku: string;
127
+ tolerence: string | null;
127
128
  quantity: number;
128
129
  created_by_user_id: string;
129
130
  item_description?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "5.22.1",
3
+ "version": "5.22.2",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.js",