@juhuu/sdk-ts 1.2.209 → 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 +22 -1
- package/dist/index.d.ts +22 -1
- package/dist/index.js +11 -0
- package/dist/index.mjs +11 -0
- package/package.json +1 -1
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,14 @@ 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;
|
3539
|
+
featureReferenceParameterIdArray: Array<{
|
3540
|
+
parameterId: string;
|
3541
|
+
featureReference: string;
|
3542
|
+
}>;
|
3537
3543
|
};
|
3538
3544
|
namespace Create {
|
3539
3545
|
type Params = {
|
@@ -3597,6 +3603,7 @@ declare namespace JUHUU {
|
|
3597
3603
|
nextRunAt: Date | null;
|
3598
3604
|
name: string;
|
3599
3605
|
propertyId: string;
|
3606
|
+
featureReferenceArray: string[];
|
3600
3607
|
};
|
3601
3608
|
namespace Create {
|
3602
3609
|
type Params = {
|
@@ -3652,6 +3659,15 @@ declare namespace JUHUU {
|
|
3652
3659
|
parameterAnomalyGroupTracker: JUHUU.ParameterAnomalyGroupTracker.Object;
|
3653
3660
|
};
|
3654
3661
|
}
|
3662
|
+
namespace Analyze {
|
3663
|
+
type Params = {
|
3664
|
+
parameterAnomalyGroupTrackerId: string;
|
3665
|
+
};
|
3666
|
+
type Options = JUHUU.RequestOptions;
|
3667
|
+
type Response = {
|
3668
|
+
parameterAnomalyGroupTracker: JUHUU.ParameterAnomalyGroupTracker.Object;
|
3669
|
+
};
|
3670
|
+
}
|
3655
3671
|
}
|
3656
3672
|
namespace ParameterHistory {
|
3657
3673
|
type Base = {
|
@@ -3662,6 +3678,11 @@ declare namespace JUHUU {
|
|
3662
3678
|
propertyId: string;
|
3663
3679
|
createdAt: Date;
|
3664
3680
|
reference: string | null;
|
3681
|
+
parameterId: string;
|
3682
|
+
shapAnomalyArray: Array<{
|
3683
|
+
parameterAnomalyGroupId: string;
|
3684
|
+
shapScore: number | null;
|
3685
|
+
}>;
|
3665
3686
|
};
|
3666
3687
|
export interface Text extends Base {
|
3667
3688
|
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,14 @@ 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;
|
3539
|
+
featureReferenceParameterIdArray: Array<{
|
3540
|
+
parameterId: string;
|
3541
|
+
featureReference: string;
|
3542
|
+
}>;
|
3537
3543
|
};
|
3538
3544
|
namespace Create {
|
3539
3545
|
type Params = {
|
@@ -3597,6 +3603,7 @@ declare namespace JUHUU {
|
|
3597
3603
|
nextRunAt: Date | null;
|
3598
3604
|
name: string;
|
3599
3605
|
propertyId: string;
|
3606
|
+
featureReferenceArray: string[];
|
3600
3607
|
};
|
3601
3608
|
namespace Create {
|
3602
3609
|
type Params = {
|
@@ -3652,6 +3659,15 @@ declare namespace JUHUU {
|
|
3652
3659
|
parameterAnomalyGroupTracker: JUHUU.ParameterAnomalyGroupTracker.Object;
|
3653
3660
|
};
|
3654
3661
|
}
|
3662
|
+
namespace Analyze {
|
3663
|
+
type Params = {
|
3664
|
+
parameterAnomalyGroupTrackerId: string;
|
3665
|
+
};
|
3666
|
+
type Options = JUHUU.RequestOptions;
|
3667
|
+
type Response = {
|
3668
|
+
parameterAnomalyGroupTracker: JUHUU.ParameterAnomalyGroupTracker.Object;
|
3669
|
+
};
|
3670
|
+
}
|
3655
3671
|
}
|
3656
3672
|
namespace ParameterHistory {
|
3657
3673
|
type Base = {
|
@@ -3662,6 +3678,11 @@ declare namespace JUHUU {
|
|
3662
3678
|
propertyId: string;
|
3663
3679
|
createdAt: Date;
|
3664
3680
|
reference: string | null;
|
3681
|
+
parameterId: string;
|
3682
|
+
shapAnomalyArray: Array<{
|
3683
|
+
parameterAnomalyGroupId: string;
|
3684
|
+
shapScore: number | null;
|
3685
|
+
}>;
|
3665
3686
|
};
|
3666
3687
|
export interface Text extends Base {
|
3667
3688
|
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
|