@juhuu/sdk-ts 1.2.256 → 1.2.257

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.d.mts CHANGED
@@ -4191,7 +4191,11 @@ declare namespace JUHUU {
4191
4191
  type: "device";
4192
4192
  deviceId: string;
4193
4193
  }
4194
- export type Object = Location | Device;
4194
+ export interface ParameterAnomalyGroup extends Base {
4195
+ type: "parameterAnomalyGroup";
4196
+ parameterAnomalyGroupId: string;
4197
+ }
4198
+ export type Object = Location | Device | ParameterAnomalyGroup;
4195
4199
  export namespace Create {
4196
4200
  type Params = {
4197
4201
  propertyId: string;
package/dist/index.d.ts CHANGED
@@ -4191,7 +4191,11 @@ declare namespace JUHUU {
4191
4191
  type: "device";
4192
4192
  deviceId: string;
4193
4193
  }
4194
- export type Object = Location | Device;
4194
+ export interface ParameterAnomalyGroup extends Base {
4195
+ type: "parameterAnomalyGroup";
4196
+ parameterAnomalyGroupId: string;
4197
+ }
4198
+ export type Object = Location | Device | ParameterAnomalyGroup;
4195
4199
  export namespace Create {
4196
4200
  type Params = {
4197
4201
  propertyId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.256",
3
+ "version": "1.2.257",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",