kcommons 18.0.2 → 18.0.4

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.
@@ -112,6 +112,7 @@ export interface IRFQ {
112
112
  approved_at?: string | null;
113
113
  created_at?: string | null;
114
114
  updated_at?: string | null;
115
+ is_target_value_visible?: boolean | null;
115
116
  company?: INestedCompany | null;
116
117
  parent_purchase_location?: INestedPurchaseLocation | null;
117
118
  created_by_user?: INestedUser | null;
@@ -163,7 +164,8 @@ export interface IRFQItem {
163
164
  parent_rfq_bom_no?: string | null;
164
165
  corresponding_pr_item_id?: string | null;
165
166
  target_delivery_date?: string | null;
166
- target_price?: string | null;
167
+ target_price?: number | null;
168
+ gst?: number | null;
167
169
  is_deleted: boolean;
168
170
  deleted_at: string | null;
169
171
  created_at?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "18.0.2",
3
+ "version": "18.0.4",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",