kcommons 5.11.9 → 5.11.12

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.
@@ -107,6 +107,8 @@ export interface IRFQItem {
107
107
  item_description?: string | null;
108
108
  parent_pr_id?: string | null;
109
109
  parent_pr_no?: string | null;
110
+ parent_rfq_bom_id?: string | null;
111
+ parent_rfq_bom_no?: string | null;
110
112
  corresponding_pr_item_id?: string | null;
111
113
  is_deleted: boolean;
112
114
  deleted_at: string | null;
@@ -134,9 +136,9 @@ export interface IRFQBom {
134
136
  remarks: string | null;
135
137
  quantity: number;
136
138
  is_deleted: boolean;
137
- deleted_at: Date | null;
138
- created_at: Date;
139
- updated_at: Date;
139
+ deleted_at: string | null;
140
+ created_at: string;
141
+ updated_at: string;
140
142
  parent_rfq: INestedRFQ | null;
141
143
  bom: INestedBOM | null;
142
144
  referenced_rfq_item: IRFQItem | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "5.11.9",
3
+ "version": "5.11.12",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.js",