@spytecgps/nova-orm 0.0.88 → 0.0.89

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.
@@ -47,6 +47,7 @@ export declare class DeviceBehaviorsRepository extends BaseRepository {
47
47
  * - params.behaviorParams: The behavior params, optional
48
48
  * - params.status: The status
49
49
  * - params.extraParams: The extra params, optional
50
+ * - params.commandTaskId: The common command task if the behavior is part of a bulk action, optional
50
51
  * @returns The device behavior task
51
52
  */
52
53
  createDeviceBehaviorTask(params: CreateDeviceBehaviorTaskParams): Promise<UserDeviceBehaviorTask>;
@@ -36,6 +36,7 @@ export interface CreateDeviceBehaviorTaskParams {
36
36
  behaviorParams?: object;
37
37
  status: DeviceBehaviorTaskStatus;
38
38
  extraParams?: object;
39
+ commandTaskId?: string;
39
40
  }
40
41
  export interface UpdateDeviceBehaviorTaskParams {
41
42
  filters: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spytecgps/nova-orm",
3
- "version": "0.0.88",
3
+ "version": "0.0.89",
4
4
  "description": "ORM with PlanetScale",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",