@juhuu/sdk-ts 1.2.249 → 1.2.250
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 -9
- package/dist/index.d.ts +5 -9
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -4399,12 +4399,14 @@ declare namespace JUHUU {
|
|
|
4399
4399
|
name: string;
|
|
4400
4400
|
anomalyScore: number | null;
|
|
4401
4401
|
isOutlier: boolean;
|
|
4402
|
+
incidentId: string | null;
|
|
4402
4403
|
featureReferenceParameterIdArray: Array<{
|
|
4403
4404
|
parameterId: string;
|
|
4404
4405
|
featureReference: string;
|
|
4405
4406
|
shapValues: [number, number, number] | null;
|
|
4406
4407
|
isOutlier: boolean;
|
|
4407
4408
|
}>;
|
|
4409
|
+
anomalyDescription: string | null;
|
|
4408
4410
|
};
|
|
4409
4411
|
namespace Create {
|
|
4410
4412
|
type Params = {
|
|
@@ -4471,6 +4473,7 @@ declare namespace JUHUU {
|
|
|
4471
4473
|
name: string;
|
|
4472
4474
|
propertyId: string;
|
|
4473
4475
|
featureReferenceArray: string[];
|
|
4476
|
+
description: null | string;
|
|
4474
4477
|
};
|
|
4475
4478
|
namespace Create {
|
|
4476
4479
|
type Params = {
|
|
@@ -5970,7 +5973,7 @@ declare namespace JUHUU {
|
|
|
5970
5973
|
}
|
|
5971
5974
|
}
|
|
5972
5975
|
namespace Kit {
|
|
5973
|
-
type KitType = "controlKitV1" | "tapkeyV1" | "emzV1"
|
|
5976
|
+
type KitType = "controlKitV1" | "tapkeyV1" | "emzV1";
|
|
5974
5977
|
type BaseKit = {
|
|
5975
5978
|
id: string;
|
|
5976
5979
|
readonly object: "kit";
|
|
@@ -5996,11 +5999,7 @@ declare namespace JUHUU {
|
|
|
5996
5999
|
username: string;
|
|
5997
6000
|
password: string;
|
|
5998
6001
|
};
|
|
5999
|
-
type
|
|
6000
|
-
type: "survisionNanopakTotemV1";
|
|
6001
|
-
anpr: string;
|
|
6002
|
-
};
|
|
6003
|
-
type Object = ControlKitV1 | TapkeyV1 | EmzV1 | SurvisionNanopakTotemV1;
|
|
6002
|
+
type Object = ControlKitV1 | TapkeyV1 | EmzV1;
|
|
6004
6003
|
namespace Create {
|
|
6005
6004
|
type Params = {
|
|
6006
6005
|
name?: string;
|
|
@@ -6021,9 +6020,6 @@ declare namespace JUHUU {
|
|
|
6021
6020
|
userId: string;
|
|
6022
6021
|
username: string;
|
|
6023
6022
|
password: string;
|
|
6024
|
-
} | {
|
|
6025
|
-
type: "survisionNanopakTotemV1";
|
|
6026
|
-
anpr: string;
|
|
6027
6023
|
};
|
|
6028
6024
|
};
|
|
6029
6025
|
type Options = JUHUU.RequestOptions;
|
package/dist/index.d.ts
CHANGED
|
@@ -4399,12 +4399,14 @@ declare namespace JUHUU {
|
|
|
4399
4399
|
name: string;
|
|
4400
4400
|
anomalyScore: number | null;
|
|
4401
4401
|
isOutlier: boolean;
|
|
4402
|
+
incidentId: string | null;
|
|
4402
4403
|
featureReferenceParameterIdArray: Array<{
|
|
4403
4404
|
parameterId: string;
|
|
4404
4405
|
featureReference: string;
|
|
4405
4406
|
shapValues: [number, number, number] | null;
|
|
4406
4407
|
isOutlier: boolean;
|
|
4407
4408
|
}>;
|
|
4409
|
+
anomalyDescription: string | null;
|
|
4408
4410
|
};
|
|
4409
4411
|
namespace Create {
|
|
4410
4412
|
type Params = {
|
|
@@ -4471,6 +4473,7 @@ declare namespace JUHUU {
|
|
|
4471
4473
|
name: string;
|
|
4472
4474
|
propertyId: string;
|
|
4473
4475
|
featureReferenceArray: string[];
|
|
4476
|
+
description: null | string;
|
|
4474
4477
|
};
|
|
4475
4478
|
namespace Create {
|
|
4476
4479
|
type Params = {
|
|
@@ -5970,7 +5973,7 @@ declare namespace JUHUU {
|
|
|
5970
5973
|
}
|
|
5971
5974
|
}
|
|
5972
5975
|
namespace Kit {
|
|
5973
|
-
type KitType = "controlKitV1" | "tapkeyV1" | "emzV1"
|
|
5976
|
+
type KitType = "controlKitV1" | "tapkeyV1" | "emzV1";
|
|
5974
5977
|
type BaseKit = {
|
|
5975
5978
|
id: string;
|
|
5976
5979
|
readonly object: "kit";
|
|
@@ -5996,11 +5999,7 @@ declare namespace JUHUU {
|
|
|
5996
5999
|
username: string;
|
|
5997
6000
|
password: string;
|
|
5998
6001
|
};
|
|
5999
|
-
type
|
|
6000
|
-
type: "survisionNanopakTotemV1";
|
|
6001
|
-
anpr: string;
|
|
6002
|
-
};
|
|
6003
|
-
type Object = ControlKitV1 | TapkeyV1 | EmzV1 | SurvisionNanopakTotemV1;
|
|
6002
|
+
type Object = ControlKitV1 | TapkeyV1 | EmzV1;
|
|
6004
6003
|
namespace Create {
|
|
6005
6004
|
type Params = {
|
|
6006
6005
|
name?: string;
|
|
@@ -6021,9 +6020,6 @@ declare namespace JUHUU {
|
|
|
6021
6020
|
userId: string;
|
|
6022
6021
|
username: string;
|
|
6023
6022
|
password: string;
|
|
6024
|
-
} | {
|
|
6025
|
-
type: "survisionNanopakTotemV1";
|
|
6026
|
-
anpr: string;
|
|
6027
6023
|
};
|
|
6028
6024
|
};
|
|
6029
6025
|
type Options = JUHUU.RequestOptions;
|