kcommons 18.10.3 → 18.10.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.
@@ -108,6 +108,13 @@ export interface IMRN {
108
108
  deleted_at: string | null;
109
109
  created_at: string;
110
110
  updated_at: string;
111
+ batch_number: string | null;
112
+ mfg_date: string | null;
113
+ best_before_date: string | null;
114
+ net_weight: number | null;
115
+ pack_size: string | null;
116
+ no_of_pack: string | null;
117
+ total_value: number | null;
111
118
  company: INestedCompany | null;
112
119
  parent_grn: INestedGRN | null;
113
120
  parent_department: INestedDepartment | null;
@@ -42,10 +42,11 @@ export interface ISupplierInvoice {
42
42
  eway_bill_no: string | null;
43
43
  transporter_name: string | null;
44
44
  vehicle_no: string | null;
45
- attachment_link: string | null;
45
+ attachments: string[];
46
46
  remarks: string | null;
47
47
  rejection_reason: string | null;
48
48
  cancellation_reason: string | null;
49
+ confidence_score: number | null;
49
50
  marked_as_cancelled_by_user_id: string | null;
50
51
  marked_as_verified_by_user_id: string | null;
51
52
  created_by_vendor_user_id: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "18.10.3",
3
+ "version": "18.10.4",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",