@juhuu/sdk-ts 1.2.210 → 1.2.211

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
@@ -3536,6 +3536,10 @@ declare namespace JUHUU {
3536
3536
  name: string;
3537
3537
  anomalyScore: number | null;
3538
3538
  isOutlier: boolean;
3539
+ featureReferenceParameterIdArray: Array<{
3540
+ parameterId: string;
3541
+ featureReference: string;
3542
+ }>;
3539
3543
  };
3540
3544
  namespace Create {
3541
3545
  type Params = {
@@ -3599,6 +3603,7 @@ declare namespace JUHUU {
3599
3603
  nextRunAt: Date | null;
3600
3604
  name: string;
3601
3605
  propertyId: string;
3606
+ featureReferenceArray: string[];
3602
3607
  };
3603
3608
  namespace Create {
3604
3609
  type Params = {
@@ -3676,7 +3681,7 @@ declare namespace JUHUU {
3676
3681
  parameterId: string;
3677
3682
  shapAnomalyArray: Array<{
3678
3683
  parameterAnomalyGroupId: string;
3679
- shapScore: number;
3684
+ shapScore: number | null;
3680
3685
  }>;
3681
3686
  };
3682
3687
  export interface Text extends Base {
package/dist/index.d.ts CHANGED
@@ -3536,6 +3536,10 @@ declare namespace JUHUU {
3536
3536
  name: string;
3537
3537
  anomalyScore: number | null;
3538
3538
  isOutlier: boolean;
3539
+ featureReferenceParameterIdArray: Array<{
3540
+ parameterId: string;
3541
+ featureReference: string;
3542
+ }>;
3539
3543
  };
3540
3544
  namespace Create {
3541
3545
  type Params = {
@@ -3599,6 +3603,7 @@ declare namespace JUHUU {
3599
3603
  nextRunAt: Date | null;
3600
3604
  name: string;
3601
3605
  propertyId: string;
3606
+ featureReferenceArray: string[];
3602
3607
  };
3603
3608
  namespace Create {
3604
3609
  type Params = {
@@ -3676,7 +3681,7 @@ declare namespace JUHUU {
3676
3681
  parameterId: string;
3677
3682
  shapAnomalyArray: Array<{
3678
3683
  parameterAnomalyGroupId: string;
3679
- shapScore: number;
3684
+ shapScore: number | null;
3680
3685
  }>;
3681
3686
  };
3682
3687
  export interface Text extends Base {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.210",
3
+ "version": "1.2.211",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",