@agroyaar/sdk 1.4.1-2 → 1.4.1-3

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
@@ -84,7 +84,8 @@ var mappers = {
84
84
  iconURL: response.iconURL,
85
85
  kind: response.kind,
86
86
  seasonProcessIds: response.seasonProcessIds,
87
- machineUsageIds: response.machineUsageIds
87
+ machineUsageIds: response.machineUsageIds,
88
+ seasonsProcess: response.seasonsProcess
88
89
  }),
89
90
  getMechanizationVarietyList: (response) => response.map(mappers.getMechanizationVariety),
90
91
  getMechanization: (response) => ({
package/dist/index.d.ts CHANGED
@@ -49,6 +49,7 @@ type MechanizationVarietyModel = {
49
49
  kind: VarietyKind;
50
50
  seasonProcessIds: string[];
51
51
  machineUsageIds: string[];
52
+ seasonsProcess: MechanizationSeasonProcessKind[];
52
53
  };
53
54
  type MechanizationVarietyVariables = {
54
55
  kindName: MechanizationType;
package/dist/index.mjs CHANGED
@@ -48,7 +48,8 @@ var mappers = {
48
48
  iconURL: response.iconURL,
49
49
  kind: response.kind,
50
50
  seasonProcessIds: response.seasonProcessIds,
51
- machineUsageIds: response.machineUsageIds
51
+ machineUsageIds: response.machineUsageIds,
52
+ seasonsProcess: response.seasonsProcess
52
53
  }),
53
54
  getMechanizationVarietyList: (response) => response.map(mappers.getMechanizationVariety),
54
55
  getMechanization: (response) => ({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agroyaar/sdk",
3
- "version": "1.4.1-2",
3
+ "version": "1.4.1-3",
4
4
  "description": "",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",