motion-master-client 0.0.35 → 0.0.37

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "motion-master-client",
3
- "version": "0.0.35",
3
+ "version": "0.0.37",
4
4
  "type": "commonjs",
5
5
  "description": "A library and CLI program used for communicating with Motion Master.",
6
6
  "dependencies": {
@@ -14,7 +14,7 @@
14
14
  "uuid": "^9.0.0"
15
15
  },
16
16
  "peerDependencies": {
17
- "tslib": "2.5.2"
17
+ "tslib": "2.5.3"
18
18
  },
19
19
  "main": "./src/index.js",
20
20
  "types": "./src/index.d.ts"
@@ -8,7 +8,7 @@ export declare class RequestError extends Error {
8
8
  export type ParameterAddress = [number, number];
9
9
  export type ParameterTypeValue = Omit<MotionMasterMessage.Request.SetDeviceParameterValues.IParameterValue, 'index' | 'subindex'>;
10
10
  export type ParameterTypeValueKey = keyof ParameterTypeValue;
11
- export type ParameterValueType = string | number | Uint8Array;
11
+ export type ParameterValueType = string | number | Uint8Array | Array<number>;
12
12
  export type ParameterAddressValue = [number, number, ParameterValueType, ParameterTypeValueKey?];
13
13
  export type DeviceParameterAddressValue = [DeviceRef, number, number, ParameterValueType, ParameterTypeValueKey?];
14
14
  export type DeviceParameterIds = string[] | [DeviceRef, number, number][];