kuzzle-device-manager 0.4.13 → 0.4.14

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.
@@ -191,7 +191,7 @@ class DeviceService {
191
191
  const { _source: { measures } } = await this.sdk.document.get(tenantId, 'assets', device._source.assetId);
192
192
  for (const [measureName] of Object.entries(device._source.measures)) {
193
193
  if (measures[measureName]) {
194
- measures[measureName] = undefined;
194
+ measures[measureName] = null;
195
195
  }
196
196
  }
197
197
  return measures;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kuzzle-device-manager",
3
- "version": "0.4.13",
3
+ "version": "0.4.14",
4
4
  "description": "Manage your IoT devices and assets. Choose a provisionning strategy, receive and decode payload, handle your IoT business logic.",
5
5
  "author": "The Kuzzle Team (support@kuzzle.io)",
6
6
  "repository": {