kcommons 18.0.13 → 18.0.15

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.
@@ -322,7 +322,16 @@ export declare enum ASN_SORTING_ORDER {
322
322
  }
323
323
  export interface IASNMetafields {
324
324
  items_data: INestedItem[] | null;
325
+ vendor_quote_item_custom_uom_data: IASNVendorQuoteItemCustomUOM[] | null;
325
326
  }
326
327
  export declare enum ASN_METAFIELDS_INCLUDE {
327
- items_data = "items_data"
328
+ items_data = "items_data",
329
+ vendor_quote_item_custom_uom_data = "vendor_quote_item_custom_uom_data"
330
+ }
331
+ export interface IASNVendorQuoteItemCustomUOM {
332
+ quote_item_id: string | null;
333
+ vendor_quote_item_name: string | null;
334
+ custom_uom_name: string | null;
335
+ custom_uom_abbrevation: string | null;
336
+ conversion_factor: number | null;
328
337
  }
@@ -153,4 +153,5 @@ var ASN_SORTING_ORDER;
153
153
  var ASN_METAFIELDS_INCLUDE;
154
154
  (function (ASN_METAFIELDS_INCLUDE) {
155
155
  ASN_METAFIELDS_INCLUDE["items_data"] = "items_data";
156
+ ASN_METAFIELDS_INCLUDE["vendor_quote_item_custom_uom_data"] = "vendor_quote_item_custom_uom_data";
156
157
  })(ASN_METAFIELDS_INCLUDE || (exports.ASN_METAFIELDS_INCLUDE = ASN_METAFIELDS_INCLUDE = {}));
@@ -337,6 +337,7 @@ export interface IPOAssociatedVendorQuoteItemCustomUOM {
337
337
  vendor_quote_item_id: string | null;
338
338
  vendor_item_id: string | null;
339
339
  quote_item_id: string | null;
340
+ vendor_quote_item_name: string | null;
340
341
  custom_uom_name: string | null;
341
342
  custom_uom_abbrevation: string | null;
342
343
  conversion_factor: number | null;
@@ -118,11 +118,13 @@ export interface IFetchDocumentForVESByDocumentNoResponse {
118
118
  }
119
119
  export declare enum VES_METAFIELDS_INCLUDE {
120
120
  vendor = "vendor",
121
- items_data = "items_data"
121
+ items_data = "items_data",
122
+ vendor_quote_item_custom_uom_data = "vendor_quote_item_custom_uom_data"
122
123
  }
123
124
  export interface IVESMetafields {
124
125
  vendor: INestedVendor | null;
125
126
  items_data: INestedItem[] | null;
127
+ vendor_quote_item_custom_uom_data: IVESVendorQuoteItemCustomUOM[] | null;
126
128
  }
127
129
  /**
128
130
  * @deprecated
@@ -137,3 +139,10 @@ export interface IOpenVESApprovalData {
137
139
  vesData: IVES;
138
140
  targetEntityApprovalChainEntry: IEntityApprovalChainEntry;
139
141
  }
142
+ export interface IVESVendorQuoteItemCustomUOM {
143
+ quote_item_id: string | null;
144
+ vendor_quote_item_name: string | null;
145
+ custom_uom_name: string | null;
146
+ custom_uom_abbrevation: string | null;
147
+ conversion_factor: number | null;
148
+ }
@@ -49,4 +49,5 @@ var VES_METAFIELDS_INCLUDE;
49
49
  (function (VES_METAFIELDS_INCLUDE) {
50
50
  VES_METAFIELDS_INCLUDE["vendor"] = "vendor";
51
51
  VES_METAFIELDS_INCLUDE["items_data"] = "items_data";
52
+ VES_METAFIELDS_INCLUDE["vendor_quote_item_custom_uom_data"] = "vendor_quote_item_custom_uom_data";
52
53
  })(VES_METAFIELDS_INCLUDE || (exports.VES_METAFIELDS_INCLUDE = VES_METAFIELDS_INCLUDE = {}));
@@ -168,8 +168,8 @@ export interface IRFQItem {
168
168
  gst: number | null;
169
169
  least_purchase_price?: number | null;
170
170
  least_purchase_date?: string | null;
171
- previous_purchase_price?: number | null;
172
- previous_purchase_date?: string | null;
171
+ previous_purchase_price: number | null;
172
+ previous_purchase_date: string | null;
173
173
  deleted_at: string | null;
174
174
  created_at?: string | null;
175
175
  updated_at?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "18.0.13",
3
+ "version": "18.0.15",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",