@agroyaar/sdk 2.4.0 → 2.4.1

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.
package/dist/index.cjs CHANGED
@@ -119,6 +119,7 @@ var mappers = {
119
119
  code: res.code,
120
120
  kind: res.kind,
121
121
  kindName: res.kindName,
122
+ deviceCode: res.deviceCode,
122
123
  variety: mappers.getMechanizationVariety(res.variety)
123
124
  }),
124
125
  getMechanizations: (response) => response.map(mappers.getMechanization),
package/dist/index.d.ts CHANGED
@@ -64,6 +64,7 @@ type MechanizationModel = {
64
64
  avatarURL: string;
65
65
  manufactureYear: string;
66
66
  code: string;
67
+ deviceCode: string;
67
68
  kind: VarietyKind;
68
69
  kindName: MechanizationType;
69
70
  variety: MechanizationVarietyModel;
package/dist/index.mjs CHANGED
@@ -83,6 +83,7 @@ var mappers = {
83
83
  code: res.code,
84
84
  kind: res.kind,
85
85
  kindName: res.kindName,
86
+ deviceCode: res.deviceCode,
86
87
  variety: mappers.getMechanizationVariety(res.variety)
87
88
  }),
88
89
  getMechanizations: (response) => response.map(mappers.getMechanization),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agroyaar/sdk",
3
- "version": "2.4.0",
3
+ "version": "2.4.1",
4
4
  "description": "",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",