@juhuu/sdk-ts 1.2.321 → 1.2.322
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 +32 -7
- package/dist/index.d.ts +32 -7
- package/dist/index.js +55 -0
- package/dist/index.mjs +55 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2006,6 +2006,13 @@ declare class ParameterAnomalyGroupTrackersService extends Service {
|
|
|
2006
2006
|
analyze(ParameterAnomalyGroupTrackerAnalyzeParams: JUHUU.ParameterAnomalyGroupTracker.Analyze.Params, ParameterAnomalyGroupTrackerAnalyzeOptions?: JUHUU.ParameterAnomalyGroupTracker.Analyze.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTracker.Analyze.Response>>;
|
|
2007
2007
|
}
|
|
2008
2008
|
|
|
2009
|
+
declare class ParameterAnomalyGroupTrackerTracesService extends Service {
|
|
2010
|
+
constructor(config: JUHUU.SetupConfig);
|
|
2011
|
+
list(ParameterAnomalyGroupTrackerTraceListParams: JUHUU.ParameterAnomalyGroupTrackerTrace.List.Params, ParameterAnomalyGroupTrackerTraceListOptions?: JUHUU.ParameterAnomalyGroupTrackerTrace.List.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTrackerTrace.List.Response>>;
|
|
2012
|
+
retrieve(ParameterAnomalyGroupTrackerTraceRetrieveParams: JUHUU.ParameterAnomalyGroupTrackerTrace.Retrieve.Params, ParameterAnomalyGroupTrackerTraceRetrieveOptions?: JUHUU.ParameterAnomalyGroupTrackerTrace.Retrieve.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTrackerTrace.Retrieve.Response>>;
|
|
2013
|
+
delete(ParameterAnomalyGroupTrackerTraceDeleteParams: JUHUU.ParameterAnomalyGroupTrackerTrace.Delete.Params, ParameterAnomalyGroupTrackerTraceDeleteOptions?: JUHUU.ParameterAnomalyGroupTrackerTrace.Delete.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTrackerTrace.Delete.Response>>;
|
|
2014
|
+
}
|
|
2015
|
+
|
|
2009
2016
|
declare class EmzService extends Service {
|
|
2010
2017
|
constructor(config: JUHUU.SetupConfig);
|
|
2011
2018
|
credentials(EmzCredentialsParams: JUHUU.Emz.Credentials.Params, EmzCredentialsOptions?: JUHUU.Emz.Credentials.Options): Promise<JUHUU.HttpResponse<JUHUU.Emz.Credentials.Response>>;
|
|
@@ -2182,6 +2189,7 @@ declare class Juhuu {
|
|
|
2182
2189
|
readonly incidents: IncidentsService;
|
|
2183
2190
|
readonly parameterAnomalyGroups: ParameterAnomalyGroupsService;
|
|
2184
2191
|
readonly parameterAnomalyGroupTrackers: ParameterAnomalyGroupTrackersService;
|
|
2192
|
+
readonly parameterAnomalyGroupTrackerTraces: ParameterAnomalyGroupTrackerTracesService;
|
|
2185
2193
|
readonly emz: EmzService;
|
|
2186
2194
|
readonly flows: FlowsService;
|
|
2187
2195
|
readonly flowTraces: FlowTracesService;
|
|
@@ -5110,10 +5118,7 @@ declare namespace JUHUU {
|
|
|
5110
5118
|
readonly object: "parameterHistory";
|
|
5111
5119
|
description: string | null;
|
|
5112
5120
|
name: string | null;
|
|
5113
|
-
propertyId: string;
|
|
5114
5121
|
createdAt: Date;
|
|
5115
|
-
reference: string | null;
|
|
5116
|
-
parameterId: string;
|
|
5117
5122
|
isOutlier: boolean;
|
|
5118
5123
|
shapAnomalyArray: Array<{
|
|
5119
5124
|
parameterAnomalyGroupId: string;
|
|
@@ -5121,22 +5126,42 @@ declare namespace JUHUU {
|
|
|
5121
5126
|
}>;
|
|
5122
5127
|
};
|
|
5123
5128
|
export interface Text extends Base {
|
|
5124
|
-
type: "text";
|
|
5125
5129
|
currentValue: string;
|
|
5130
|
+
static: {
|
|
5131
|
+
type: "text";
|
|
5132
|
+
propertyId: string;
|
|
5133
|
+
reference: string | null;
|
|
5134
|
+
parameterId: string;
|
|
5135
|
+
};
|
|
5126
5136
|
}
|
|
5127
5137
|
export interface Number extends Base {
|
|
5128
|
-
type: "number";
|
|
5129
5138
|
unit: Unit | null;
|
|
5130
5139
|
currentValue: number;
|
|
5140
|
+
static: {
|
|
5141
|
+
type: "number";
|
|
5142
|
+
propertyId: string;
|
|
5143
|
+
reference: string | null;
|
|
5144
|
+
parameterId: string;
|
|
5145
|
+
};
|
|
5131
5146
|
}
|
|
5132
5147
|
export interface Enum extends Base {
|
|
5133
|
-
type: "enum";
|
|
5134
5148
|
currentValue: string;
|
|
5135
5149
|
enumArray: string[];
|
|
5150
|
+
static: {
|
|
5151
|
+
type: "enum";
|
|
5152
|
+
propertyId: string;
|
|
5153
|
+
reference: string | null;
|
|
5154
|
+
parameterId: string;
|
|
5155
|
+
};
|
|
5136
5156
|
}
|
|
5137
5157
|
export interface Boolean extends Base {
|
|
5138
|
-
type: "boolean";
|
|
5139
5158
|
currentValue: boolean;
|
|
5159
|
+
static: {
|
|
5160
|
+
type: "boolean";
|
|
5161
|
+
propertyId: string;
|
|
5162
|
+
reference: string | null;
|
|
5163
|
+
parameterId: string;
|
|
5164
|
+
};
|
|
5140
5165
|
}
|
|
5141
5166
|
export type Object = Number | Boolean | Enum | Text;
|
|
5142
5167
|
export namespace Retrieve {
|
package/dist/index.d.ts
CHANGED
|
@@ -2006,6 +2006,13 @@ declare class ParameterAnomalyGroupTrackersService extends Service {
|
|
|
2006
2006
|
analyze(ParameterAnomalyGroupTrackerAnalyzeParams: JUHUU.ParameterAnomalyGroupTracker.Analyze.Params, ParameterAnomalyGroupTrackerAnalyzeOptions?: JUHUU.ParameterAnomalyGroupTracker.Analyze.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTracker.Analyze.Response>>;
|
|
2007
2007
|
}
|
|
2008
2008
|
|
|
2009
|
+
declare class ParameterAnomalyGroupTrackerTracesService extends Service {
|
|
2010
|
+
constructor(config: JUHUU.SetupConfig);
|
|
2011
|
+
list(ParameterAnomalyGroupTrackerTraceListParams: JUHUU.ParameterAnomalyGroupTrackerTrace.List.Params, ParameterAnomalyGroupTrackerTraceListOptions?: JUHUU.ParameterAnomalyGroupTrackerTrace.List.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTrackerTrace.List.Response>>;
|
|
2012
|
+
retrieve(ParameterAnomalyGroupTrackerTraceRetrieveParams: JUHUU.ParameterAnomalyGroupTrackerTrace.Retrieve.Params, ParameterAnomalyGroupTrackerTraceRetrieveOptions?: JUHUU.ParameterAnomalyGroupTrackerTrace.Retrieve.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTrackerTrace.Retrieve.Response>>;
|
|
2013
|
+
delete(ParameterAnomalyGroupTrackerTraceDeleteParams: JUHUU.ParameterAnomalyGroupTrackerTrace.Delete.Params, ParameterAnomalyGroupTrackerTraceDeleteOptions?: JUHUU.ParameterAnomalyGroupTrackerTrace.Delete.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTrackerTrace.Delete.Response>>;
|
|
2014
|
+
}
|
|
2015
|
+
|
|
2009
2016
|
declare class EmzService extends Service {
|
|
2010
2017
|
constructor(config: JUHUU.SetupConfig);
|
|
2011
2018
|
credentials(EmzCredentialsParams: JUHUU.Emz.Credentials.Params, EmzCredentialsOptions?: JUHUU.Emz.Credentials.Options): Promise<JUHUU.HttpResponse<JUHUU.Emz.Credentials.Response>>;
|
|
@@ -2182,6 +2189,7 @@ declare class Juhuu {
|
|
|
2182
2189
|
readonly incidents: IncidentsService;
|
|
2183
2190
|
readonly parameterAnomalyGroups: ParameterAnomalyGroupsService;
|
|
2184
2191
|
readonly parameterAnomalyGroupTrackers: ParameterAnomalyGroupTrackersService;
|
|
2192
|
+
readonly parameterAnomalyGroupTrackerTraces: ParameterAnomalyGroupTrackerTracesService;
|
|
2185
2193
|
readonly emz: EmzService;
|
|
2186
2194
|
readonly flows: FlowsService;
|
|
2187
2195
|
readonly flowTraces: FlowTracesService;
|
|
@@ -5110,10 +5118,7 @@ declare namespace JUHUU {
|
|
|
5110
5118
|
readonly object: "parameterHistory";
|
|
5111
5119
|
description: string | null;
|
|
5112
5120
|
name: string | null;
|
|
5113
|
-
propertyId: string;
|
|
5114
5121
|
createdAt: Date;
|
|
5115
|
-
reference: string | null;
|
|
5116
|
-
parameterId: string;
|
|
5117
5122
|
isOutlier: boolean;
|
|
5118
5123
|
shapAnomalyArray: Array<{
|
|
5119
5124
|
parameterAnomalyGroupId: string;
|
|
@@ -5121,22 +5126,42 @@ declare namespace JUHUU {
|
|
|
5121
5126
|
}>;
|
|
5122
5127
|
};
|
|
5123
5128
|
export interface Text extends Base {
|
|
5124
|
-
type: "text";
|
|
5125
5129
|
currentValue: string;
|
|
5130
|
+
static: {
|
|
5131
|
+
type: "text";
|
|
5132
|
+
propertyId: string;
|
|
5133
|
+
reference: string | null;
|
|
5134
|
+
parameterId: string;
|
|
5135
|
+
};
|
|
5126
5136
|
}
|
|
5127
5137
|
export interface Number extends Base {
|
|
5128
|
-
type: "number";
|
|
5129
5138
|
unit: Unit | null;
|
|
5130
5139
|
currentValue: number;
|
|
5140
|
+
static: {
|
|
5141
|
+
type: "number";
|
|
5142
|
+
propertyId: string;
|
|
5143
|
+
reference: string | null;
|
|
5144
|
+
parameterId: string;
|
|
5145
|
+
};
|
|
5131
5146
|
}
|
|
5132
5147
|
export interface Enum extends Base {
|
|
5133
|
-
type: "enum";
|
|
5134
5148
|
currentValue: string;
|
|
5135
5149
|
enumArray: string[];
|
|
5150
|
+
static: {
|
|
5151
|
+
type: "enum";
|
|
5152
|
+
propertyId: string;
|
|
5153
|
+
reference: string | null;
|
|
5154
|
+
parameterId: string;
|
|
5155
|
+
};
|
|
5136
5156
|
}
|
|
5137
5157
|
export interface Boolean extends Base {
|
|
5138
|
-
type: "boolean";
|
|
5139
5158
|
currentValue: boolean;
|
|
5159
|
+
static: {
|
|
5160
|
+
type: "boolean";
|
|
5161
|
+
propertyId: string;
|
|
5162
|
+
reference: string | null;
|
|
5163
|
+
parameterId: string;
|
|
5164
|
+
};
|
|
5140
5165
|
}
|
|
5141
5166
|
export type Object = Number | Boolean | Enum | Text;
|
|
5142
5167
|
export namespace Retrieve {
|
package/dist/index.js
CHANGED
|
@@ -3649,6 +3649,59 @@ var ParameterAnomalyGroupTrackersService = class extends Service {
|
|
|
3649
3649
|
}
|
|
3650
3650
|
};
|
|
3651
3651
|
|
|
3652
|
+
// src/parameterAnomalyGroupTrackerTraces/parameterAnomalyGroupTrackerTraces.service.ts
|
|
3653
|
+
var ParameterAnomalyGroupTrackerTracesService = class extends Service {
|
|
3654
|
+
constructor(config) {
|
|
3655
|
+
super(config);
|
|
3656
|
+
}
|
|
3657
|
+
async list(ParameterAnomalyGroupTrackerTraceListParams, ParameterAnomalyGroupTrackerTraceListOptions) {
|
|
3658
|
+
const queryArray = [];
|
|
3659
|
+
if (ParameterAnomalyGroupTrackerTraceListParams?.propertyId !== void 0) {
|
|
3660
|
+
queryArray.push("propertyId=" + ParameterAnomalyGroupTrackerTraceListParams.propertyId);
|
|
3661
|
+
}
|
|
3662
|
+
if (ParameterAnomalyGroupTrackerTraceListParams?.parameterAnomalyGroupTrackerId !== void 0) {
|
|
3663
|
+
queryArray.push("parameterAnomalyGroupTrackerId=" + ParameterAnomalyGroupTrackerTraceListParams.parameterAnomalyGroupTrackerId);
|
|
3664
|
+
}
|
|
3665
|
+
if (ParameterAnomalyGroupTrackerTraceListOptions?.limit !== void 0) {
|
|
3666
|
+
queryArray.push("limit=" + ParameterAnomalyGroupTrackerTraceListOptions.limit);
|
|
3667
|
+
}
|
|
3668
|
+
if (ParameterAnomalyGroupTrackerTraceListOptions?.skip !== void 0) {
|
|
3669
|
+
queryArray.push("skip=" + ParameterAnomalyGroupTrackerTraceListOptions.skip);
|
|
3670
|
+
}
|
|
3671
|
+
return await super.sendRequest(
|
|
3672
|
+
{
|
|
3673
|
+
method: "GET",
|
|
3674
|
+
url: "parameterAnomalyGroupTrackerTraces?" + queryArray.join("&"),
|
|
3675
|
+
body: void 0,
|
|
3676
|
+
authenticationNotOptional: false
|
|
3677
|
+
},
|
|
3678
|
+
ParameterAnomalyGroupTrackerTraceListOptions
|
|
3679
|
+
);
|
|
3680
|
+
}
|
|
3681
|
+
async retrieve(ParameterAnomalyGroupTrackerTraceRetrieveParams, ParameterAnomalyGroupTrackerTraceRetrieveOptions) {
|
|
3682
|
+
return await super.sendRequest(
|
|
3683
|
+
{
|
|
3684
|
+
method: "GET",
|
|
3685
|
+
url: "parameterAnomalyGroupTrackerTraces/" + ParameterAnomalyGroupTrackerTraceRetrieveParams.parameterAnomalyGroupTrackerTraceId,
|
|
3686
|
+
body: void 0,
|
|
3687
|
+
authenticationNotOptional: false
|
|
3688
|
+
},
|
|
3689
|
+
ParameterAnomalyGroupTrackerTraceRetrieveOptions
|
|
3690
|
+
);
|
|
3691
|
+
}
|
|
3692
|
+
async delete(ParameterAnomalyGroupTrackerTraceDeleteParams, ParameterAnomalyGroupTrackerTraceDeleteOptions) {
|
|
3693
|
+
return await super.sendRequest(
|
|
3694
|
+
{
|
|
3695
|
+
method: "DELETE",
|
|
3696
|
+
url: "parameterAnomalyGroupTrackerTraces/" + ParameterAnomalyGroupTrackerTraceDeleteParams.parameterAnomalyGroupTrackerTraceId,
|
|
3697
|
+
body: void 0,
|
|
3698
|
+
authenticationNotOptional: false
|
|
3699
|
+
},
|
|
3700
|
+
ParameterAnomalyGroupTrackerTraceDeleteOptions
|
|
3701
|
+
);
|
|
3702
|
+
}
|
|
3703
|
+
};
|
|
3704
|
+
|
|
3652
3705
|
// src/emz/emz.service.ts
|
|
3653
3706
|
var EmzService = class extends Service {
|
|
3654
3707
|
constructor(config) {
|
|
@@ -5731,6 +5784,7 @@ var Juhuu = class {
|
|
|
5731
5784
|
this.incidents = new IncidentsService(config);
|
|
5732
5785
|
this.parameterAnomalyGroups = new ParameterAnomalyGroupsService(config);
|
|
5733
5786
|
this.parameterAnomalyGroupTrackers = new ParameterAnomalyGroupTrackersService(config);
|
|
5787
|
+
this.parameterAnomalyGroupTrackerTraces = new ParameterAnomalyGroupTrackerTracesService(config);
|
|
5734
5788
|
this.emz = new EmzService(config);
|
|
5735
5789
|
this.flows = new FlowsService(config);
|
|
5736
5790
|
this.flowTraces = new FlowTracesService(config);
|
|
@@ -5783,6 +5837,7 @@ var Juhuu = class {
|
|
|
5783
5837
|
incidents;
|
|
5784
5838
|
parameterAnomalyGroups;
|
|
5785
5839
|
parameterAnomalyGroupTrackers;
|
|
5840
|
+
parameterAnomalyGroupTrackerTraces;
|
|
5786
5841
|
emz;
|
|
5787
5842
|
flows;
|
|
5788
5843
|
flowTraces;
|
package/dist/index.mjs
CHANGED
|
@@ -3605,6 +3605,59 @@ var ParameterAnomalyGroupTrackersService = class extends Service {
|
|
|
3605
3605
|
}
|
|
3606
3606
|
};
|
|
3607
3607
|
|
|
3608
|
+
// src/parameterAnomalyGroupTrackerTraces/parameterAnomalyGroupTrackerTraces.service.ts
|
|
3609
|
+
var ParameterAnomalyGroupTrackerTracesService = class extends Service {
|
|
3610
|
+
constructor(config) {
|
|
3611
|
+
super(config);
|
|
3612
|
+
}
|
|
3613
|
+
async list(ParameterAnomalyGroupTrackerTraceListParams, ParameterAnomalyGroupTrackerTraceListOptions) {
|
|
3614
|
+
const queryArray = [];
|
|
3615
|
+
if (ParameterAnomalyGroupTrackerTraceListParams?.propertyId !== void 0) {
|
|
3616
|
+
queryArray.push("propertyId=" + ParameterAnomalyGroupTrackerTraceListParams.propertyId);
|
|
3617
|
+
}
|
|
3618
|
+
if (ParameterAnomalyGroupTrackerTraceListParams?.parameterAnomalyGroupTrackerId !== void 0) {
|
|
3619
|
+
queryArray.push("parameterAnomalyGroupTrackerId=" + ParameterAnomalyGroupTrackerTraceListParams.parameterAnomalyGroupTrackerId);
|
|
3620
|
+
}
|
|
3621
|
+
if (ParameterAnomalyGroupTrackerTraceListOptions?.limit !== void 0) {
|
|
3622
|
+
queryArray.push("limit=" + ParameterAnomalyGroupTrackerTraceListOptions.limit);
|
|
3623
|
+
}
|
|
3624
|
+
if (ParameterAnomalyGroupTrackerTraceListOptions?.skip !== void 0) {
|
|
3625
|
+
queryArray.push("skip=" + ParameterAnomalyGroupTrackerTraceListOptions.skip);
|
|
3626
|
+
}
|
|
3627
|
+
return await super.sendRequest(
|
|
3628
|
+
{
|
|
3629
|
+
method: "GET",
|
|
3630
|
+
url: "parameterAnomalyGroupTrackerTraces?" + queryArray.join("&"),
|
|
3631
|
+
body: void 0,
|
|
3632
|
+
authenticationNotOptional: false
|
|
3633
|
+
},
|
|
3634
|
+
ParameterAnomalyGroupTrackerTraceListOptions
|
|
3635
|
+
);
|
|
3636
|
+
}
|
|
3637
|
+
async retrieve(ParameterAnomalyGroupTrackerTraceRetrieveParams, ParameterAnomalyGroupTrackerTraceRetrieveOptions) {
|
|
3638
|
+
return await super.sendRequest(
|
|
3639
|
+
{
|
|
3640
|
+
method: "GET",
|
|
3641
|
+
url: "parameterAnomalyGroupTrackerTraces/" + ParameterAnomalyGroupTrackerTraceRetrieveParams.parameterAnomalyGroupTrackerTraceId,
|
|
3642
|
+
body: void 0,
|
|
3643
|
+
authenticationNotOptional: false
|
|
3644
|
+
},
|
|
3645
|
+
ParameterAnomalyGroupTrackerTraceRetrieveOptions
|
|
3646
|
+
);
|
|
3647
|
+
}
|
|
3648
|
+
async delete(ParameterAnomalyGroupTrackerTraceDeleteParams, ParameterAnomalyGroupTrackerTraceDeleteOptions) {
|
|
3649
|
+
return await super.sendRequest(
|
|
3650
|
+
{
|
|
3651
|
+
method: "DELETE",
|
|
3652
|
+
url: "parameterAnomalyGroupTrackerTraces/" + ParameterAnomalyGroupTrackerTraceDeleteParams.parameterAnomalyGroupTrackerTraceId,
|
|
3653
|
+
body: void 0,
|
|
3654
|
+
authenticationNotOptional: false
|
|
3655
|
+
},
|
|
3656
|
+
ParameterAnomalyGroupTrackerTraceDeleteOptions
|
|
3657
|
+
);
|
|
3658
|
+
}
|
|
3659
|
+
};
|
|
3660
|
+
|
|
3608
3661
|
// src/emz/emz.service.ts
|
|
3609
3662
|
var EmzService = class extends Service {
|
|
3610
3663
|
constructor(config) {
|
|
@@ -5687,6 +5740,7 @@ var Juhuu = class {
|
|
|
5687
5740
|
this.incidents = new IncidentsService(config);
|
|
5688
5741
|
this.parameterAnomalyGroups = new ParameterAnomalyGroupsService(config);
|
|
5689
5742
|
this.parameterAnomalyGroupTrackers = new ParameterAnomalyGroupTrackersService(config);
|
|
5743
|
+
this.parameterAnomalyGroupTrackerTraces = new ParameterAnomalyGroupTrackerTracesService(config);
|
|
5690
5744
|
this.emz = new EmzService(config);
|
|
5691
5745
|
this.flows = new FlowsService(config);
|
|
5692
5746
|
this.flowTraces = new FlowTracesService(config);
|
|
@@ -5739,6 +5793,7 @@ var Juhuu = class {
|
|
|
5739
5793
|
incidents;
|
|
5740
5794
|
parameterAnomalyGroups;
|
|
5741
5795
|
parameterAnomalyGroupTrackers;
|
|
5796
|
+
parameterAnomalyGroupTrackerTraces;
|
|
5742
5797
|
emz;
|
|
5743
5798
|
flows;
|
|
5744
5799
|
flowTraces;
|