@agroyaar/sdk 1.1.2 → 1.1.3-0

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
@@ -96,11 +96,11 @@ var mappers = {
96
96
  code: response.code,
97
97
  variety: {
98
98
  id: response.id,
99
- name: response.variety.name,
100
- iconURL: response.variety.iconURL,
99
+ name: "response.variety.name",
100
+ iconURL: "response.variety.iconURL",
101
101
  kind: response.variety.kind,
102
- seasonProcessIds: response.variety.seasonProcessIds,
103
- machineUsageIds: response.variety.machineUsageIds
102
+ seasonProcessIds: [],
103
+ machineUsageIds: []
104
104
  }
105
105
  }),
106
106
  getMechanizationsList: (response) => response.map(mappers.getMechanization)
package/dist/index.mjs CHANGED
@@ -60,11 +60,11 @@ var mappers = {
60
60
  code: response.code,
61
61
  variety: {
62
62
  id: response.id,
63
- name: response.variety.name,
64
- iconURL: response.variety.iconURL,
63
+ name: "response.variety.name",
64
+ iconURL: "response.variety.iconURL",
65
65
  kind: response.variety.kind,
66
- seasonProcessIds: response.variety.seasonProcessIds,
67
- machineUsageIds: response.variety.machineUsageIds
66
+ seasonProcessIds: [],
67
+ machineUsageIds: []
68
68
  }
69
69
  }),
70
70
  getMechanizationsList: (response) => response.map(mappers.getMechanization)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agroyaar/sdk",
3
- "version": "1.1.2",
3
+ "version": "1.1.3-0",
4
4
  "description": "",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",