kcommons 5.27.2 → 5.27.3

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.
@@ -16,6 +16,8 @@ export declare class ASNItemWrapper implements IASNItem {
16
16
  is_deleted: boolean;
17
17
  deleted_at: null;
18
18
  created_at: string;
19
+ delivered_at: string | null;
20
+ closed_at: string | null;
19
21
  updated_at: string;
20
22
  po_item_id: null;
21
23
  company: null;
@@ -18,6 +18,8 @@ class ASNItemWrapper {
18
18
  this.is_deleted = false;
19
19
  this.deleted_at = null;
20
20
  this.created_at = "";
21
+ this.delivered_at = null;
22
+ this.closed_at = null;
21
23
  this.updated_at = "";
22
24
  this.po_item_id = null;
23
25
  this.company = null;
@@ -77,11 +77,13 @@ export interface IASNItem {
77
77
  uom: string;
78
78
  quantity: number;
79
79
  item_description: string | null;
80
+ po_asn_item_junction_id: string;
81
+ delivered_at: string | null;
82
+ closed_at: string | null;
80
83
  is_deleted: boolean;
81
84
  deleted_at: string | null;
82
85
  created_at: string;
83
86
  updated_at: string;
84
- po_asn_item_junction_id: string;
85
87
  company?: INestedCompany | null;
86
88
  item?: INestedItem | null;
87
89
  parent_asn?: INestedASN | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "5.27.2",
3
+ "version": "5.27.3",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.js",