@kuriousdesign/machine-sdk 1.0.31 → 1.0.32

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.
@@ -33,5 +33,5 @@ exports.initialMachine = ({
33
33
  errors: { ...exports.initialSystemFaultData },
34
34
  warnings: { ...exports.initialSystemFaultData },
35
35
  taskQueue: { ..._1.initialTaskQueue },
36
- registeredDevices: Array(_1.GCs.NUM_DEVICES).fill(null).map(() => ({ ..._1.initialDeviceRegistration }))
36
+ registeredDevices: [],
37
37
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kuriousdesign/machine-sdk",
3
- "version": "1.0.31",
3
+ "version": "1.0.32",
4
4
  "description": "Shared data types and helpers for machine-related repositories",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -98,6 +98,6 @@ export const initialMachine: Machine = ({
98
98
  errors: { ...initialSystemFaultData },
99
99
  warnings: { ...initialSystemFaultData },
100
100
  taskQueue: { ...initialTaskQueue },
101
- registeredDevices: Array(GCs.NUM_DEVICES).fill(null).map(() => ({ ...initialDeviceRegistration }))
101
+ registeredDevices: [],
102
102
 
103
103
  });