@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 +5 -1
- package/dist/index.d.ts +5 -1
- package/package.json +1 -1
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
|
|
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
|
|
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;
|