kcommons 18.10.9 → 18.10.11

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.
@@ -42,6 +42,8 @@ export declare enum MODE_OF_TRANSPORT {
42
42
  }
43
43
  export declare enum VEHICLE_TYPE {
44
44
  TRUCK = "TRUCK",
45
+ MINI_TRUCK = "MINI_TRUCK",
46
+ PICKUP = "PICKUP",
45
47
  TRAILER = "TRAILER",
46
48
  TEMPO = "TEMPO",
47
49
  CONTAINER = "CONTAINER",
@@ -36,6 +36,8 @@ var MODE_OF_TRANSPORT;
36
36
  var VEHICLE_TYPE;
37
37
  (function (VEHICLE_TYPE) {
38
38
  VEHICLE_TYPE["TRUCK"] = "TRUCK";
39
+ VEHICLE_TYPE["MINI_TRUCK"] = "MINI_TRUCK";
40
+ VEHICLE_TYPE["PICKUP"] = "PICKUP";
39
41
  VEHICLE_TYPE["TRAILER"] = "TRAILER";
40
42
  VEHICLE_TYPE["TEMPO"] = "TEMPO";
41
43
  VEHICLE_TYPE["CONTAINER"] = "CONTAINER";
@@ -104,6 +104,18 @@ export interface IGRN {
104
104
  deleted_at: string | null;
105
105
  created_at: string;
106
106
  updated_at: string;
107
+ vehicle_no: string | null;
108
+ vehicle_type: string | null;
109
+ driver_name: string | null;
110
+ driver_mobile_no: string | null;
111
+ eway_bill_expiry_date: string | null;
112
+ eway_bill_no: string | null;
113
+ gross_weight: string | null;
114
+ tare_weight: string | null;
115
+ net_weight: string | null;
116
+ challan_no: string | null;
117
+ challan_date: string | null;
118
+ erp_grn_code: string | null;
107
119
  company: INestedCompany | null;
108
120
  created_by_user: INestedUser | null;
109
121
  last_updated_by_user: INestedUser | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "18.10.9",
3
+ "version": "18.10.11",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",