@juhuu/sdk-ts 1.2.209 → 1.2.210

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
@@ -1049,6 +1049,7 @@ declare class ParameterAnomalyGroupTrackersService extends Service {
1049
1049
  retrieve(ParameterAnomalyGroupTrackerRetrieveParams: JUHUU.ParameterAnomalyGroupTracker.Retrieve.Params, ParameterAnomalyGroupTrackerRetrieveOptions?: JUHUU.ParameterAnomalyGroupTracker.Retrieve.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTracker.Retrieve.Response>>;
1050
1050
  update(ParameterAnomalyGroupTrackerUpdateParams: JUHUU.ParameterAnomalyGroupTracker.Update.Params, ParameterAnomalyGroupTrackerUpdateOptions?: JUHUU.ParameterAnomalyGroupTracker.Update.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTracker.Update.Response>>;
1051
1051
  delete(ParameterAnomalyGroupTrackerDeleteParams: JUHUU.ParameterAnomalyGroupTracker.Delete.Params, ParameterAnomalyGroupTrackerDeleteOptions?: JUHUU.ParameterAnomalyGroupTracker.Delete.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTracker.Delete.Response>>;
1052
+ analyze(ParameterAnomalyGroupTrackerAnalyzeParams: JUHUU.ParameterAnomalyGroupTracker.Analyze.Params, ParameterAnomalyGroupTrackerAnalyzeOptions?: JUHUU.ParameterAnomalyGroupTracker.Analyze.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTracker.Analyze.Response>>;
1052
1053
  }
1053
1054
 
1054
1055
  declare class EmzService extends Service {
@@ -3531,9 +3532,10 @@ declare namespace JUHUU {
3531
3532
  id: string;
3532
3533
  readonly object: "parameterAnomalyGroup";
3533
3534
  parameterAnomalyGroupTrackerId: string | null;
3534
- parameterIdArray: string[];
3535
3535
  propertyId: string;
3536
3536
  name: string;
3537
+ anomalyScore: number | null;
3538
+ isOutlier: boolean;
3537
3539
  };
3538
3540
  namespace Create {
3539
3541
  type Params = {
@@ -3652,6 +3654,15 @@ declare namespace JUHUU {
3652
3654
  parameterAnomalyGroupTracker: JUHUU.ParameterAnomalyGroupTracker.Object;
3653
3655
  };
3654
3656
  }
3657
+ namespace Analyze {
3658
+ type Params = {
3659
+ parameterAnomalyGroupTrackerId: string;
3660
+ };
3661
+ type Options = JUHUU.RequestOptions;
3662
+ type Response = {
3663
+ parameterAnomalyGroupTracker: JUHUU.ParameterAnomalyGroupTracker.Object;
3664
+ };
3665
+ }
3655
3666
  }
3656
3667
  namespace ParameterHistory {
3657
3668
  type Base = {
@@ -3662,6 +3673,11 @@ declare namespace JUHUU {
3662
3673
  propertyId: string;
3663
3674
  createdAt: Date;
3664
3675
  reference: string | null;
3676
+ parameterId: string;
3677
+ shapAnomalyArray: Array<{
3678
+ parameterAnomalyGroupId: string;
3679
+ shapScore: number;
3680
+ }>;
3665
3681
  };
3666
3682
  export interface Text extends Base {
3667
3683
  type: "text";
package/dist/index.d.ts CHANGED
@@ -1049,6 +1049,7 @@ declare class ParameterAnomalyGroupTrackersService extends Service {
1049
1049
  retrieve(ParameterAnomalyGroupTrackerRetrieveParams: JUHUU.ParameterAnomalyGroupTracker.Retrieve.Params, ParameterAnomalyGroupTrackerRetrieveOptions?: JUHUU.ParameterAnomalyGroupTracker.Retrieve.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTracker.Retrieve.Response>>;
1050
1050
  update(ParameterAnomalyGroupTrackerUpdateParams: JUHUU.ParameterAnomalyGroupTracker.Update.Params, ParameterAnomalyGroupTrackerUpdateOptions?: JUHUU.ParameterAnomalyGroupTracker.Update.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTracker.Update.Response>>;
1051
1051
  delete(ParameterAnomalyGroupTrackerDeleteParams: JUHUU.ParameterAnomalyGroupTracker.Delete.Params, ParameterAnomalyGroupTrackerDeleteOptions?: JUHUU.ParameterAnomalyGroupTracker.Delete.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTracker.Delete.Response>>;
1052
+ analyze(ParameterAnomalyGroupTrackerAnalyzeParams: JUHUU.ParameterAnomalyGroupTracker.Analyze.Params, ParameterAnomalyGroupTrackerAnalyzeOptions?: JUHUU.ParameterAnomalyGroupTracker.Analyze.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTracker.Analyze.Response>>;
1052
1053
  }
1053
1054
 
1054
1055
  declare class EmzService extends Service {
@@ -3531,9 +3532,10 @@ declare namespace JUHUU {
3531
3532
  id: string;
3532
3533
  readonly object: "parameterAnomalyGroup";
3533
3534
  parameterAnomalyGroupTrackerId: string | null;
3534
- parameterIdArray: string[];
3535
3535
  propertyId: string;
3536
3536
  name: string;
3537
+ anomalyScore: number | null;
3538
+ isOutlier: boolean;
3537
3539
  };
3538
3540
  namespace Create {
3539
3541
  type Params = {
@@ -3652,6 +3654,15 @@ declare namespace JUHUU {
3652
3654
  parameterAnomalyGroupTracker: JUHUU.ParameterAnomalyGroupTracker.Object;
3653
3655
  };
3654
3656
  }
3657
+ namespace Analyze {
3658
+ type Params = {
3659
+ parameterAnomalyGroupTrackerId: string;
3660
+ };
3661
+ type Options = JUHUU.RequestOptions;
3662
+ type Response = {
3663
+ parameterAnomalyGroupTracker: JUHUU.ParameterAnomalyGroupTracker.Object;
3664
+ };
3665
+ }
3655
3666
  }
3656
3667
  namespace ParameterHistory {
3657
3668
  type Base = {
@@ -3662,6 +3673,11 @@ declare namespace JUHUU {
3662
3673
  propertyId: string;
3663
3674
  createdAt: Date;
3664
3675
  reference: string | null;
3676
+ parameterId: string;
3677
+ shapAnomalyArray: Array<{
3678
+ parameterAnomalyGroupId: string;
3679
+ shapScore: number;
3680
+ }>;
3665
3681
  };
3666
3682
  export interface Text extends Base {
3667
3683
  type: "text";
package/dist/index.js CHANGED
@@ -3324,6 +3324,17 @@ var ParameterAnomalyGroupTrackersService = class extends Service {
3324
3324
  ParameterAnomalyGroupTrackerDeleteOptions
3325
3325
  );
3326
3326
  }
3327
+ async analyze(ParameterAnomalyGroupTrackerAnalyzeParams, ParameterAnomalyGroupTrackerAnalyzeOptions) {
3328
+ return await super.sendRequest(
3329
+ {
3330
+ method: "POST",
3331
+ url: "parameterAnomalyGroupTrackers/" + ParameterAnomalyGroupTrackerAnalyzeParams.parameterAnomalyGroupTrackerId,
3332
+ body: void 0,
3333
+ authenticationNotOptional: true
3334
+ },
3335
+ ParameterAnomalyGroupTrackerAnalyzeOptions
3336
+ );
3337
+ }
3327
3338
  };
3328
3339
 
3329
3340
  // src/emz/emz.service.ts
package/dist/index.mjs CHANGED
@@ -3280,6 +3280,17 @@ var ParameterAnomalyGroupTrackersService = class extends Service {
3280
3280
  ParameterAnomalyGroupTrackerDeleteOptions
3281
3281
  );
3282
3282
  }
3283
+ async analyze(ParameterAnomalyGroupTrackerAnalyzeParams, ParameterAnomalyGroupTrackerAnalyzeOptions) {
3284
+ return await super.sendRequest(
3285
+ {
3286
+ method: "POST",
3287
+ url: "parameterAnomalyGroupTrackers/" + ParameterAnomalyGroupTrackerAnalyzeParams.parameterAnomalyGroupTrackerId,
3288
+ body: void 0,
3289
+ authenticationNotOptional: true
3290
+ },
3291
+ ParameterAnomalyGroupTrackerAnalyzeOptions
3292
+ );
3293
+ }
3283
3294
  };
3284
3295
 
3285
3296
  // src/emz/emz.service.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.209",
3
+ "version": "1.2.210",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",