@agroyaar/sdk 1.1.6-0 → 1.1.6-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 +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
@@ -158,6 +158,7 @@ var createMechanizationServices = (client) => ({
|
|
158
158
|
const { data } = await client.get(
|
159
159
|
`/farmers/${farmerId}/mechanizations/${mechanizationId}/sensors`
|
160
160
|
);
|
161
|
+
console.log({ data });
|
161
162
|
return import_ts_belt.R.Ok(
|
162
163
|
mappers.getMotorizedMechanizationSensors(
|
163
164
|
data.result.data.mechanizations
|
package/dist/index.mjs
CHANGED
@@ -122,6 +122,7 @@ var createMechanizationServices = (client) => ({
|
|
122
122
|
const { data } = await client.get(
|
123
123
|
`/farmers/${farmerId}/mechanizations/${mechanizationId}/sensors`
|
124
124
|
);
|
125
|
+
console.log({ data });
|
125
126
|
return R.Ok(
|
126
127
|
mappers.getMotorizedMechanizationSensors(
|
127
128
|
data.result.data.mechanizations
|