@juhuu/sdk-ts 1.2.320 → 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 +167 -8
- package/dist/index.d.ts +167 -8
- package/dist/index.js +55 -0
- package/dist/index.mjs +55 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -285,6 +285,87 @@ declare const TimeZoneArray: readonly ["Europe/Andorra", "Asia/Dubai", "Asia/Kab
|
|
|
285
285
|
type TimeZone = (typeof TimeZoneArray)[number];
|
|
286
286
|
type StarRating = 1 | 2 | 3 | 4 | 5;
|
|
287
287
|
type Unit = "meter" | "centimeter" | "millimeter" | "kilogram" | "gram" | "milligram" | "liter" | "milliliter" | "percent" | "volt" | "watt" | "ampere" | "joule" | "hertz" | "kelvin" | "celsius" | "fahrenheit" | "byte" | "bit" | "second" | "minute" | "hour" | "day" | "week" | "month" | "year";
|
|
288
|
+
interface PlotData {
|
|
289
|
+
volume: {
|
|
290
|
+
series: Array<{
|
|
291
|
+
groupId: string;
|
|
292
|
+
isOutlier: boolean;
|
|
293
|
+
points: Array<{
|
|
294
|
+
timestamp: string;
|
|
295
|
+
value: number;
|
|
296
|
+
isOutlier: boolean;
|
|
297
|
+
}>;
|
|
298
|
+
}>;
|
|
299
|
+
};
|
|
300
|
+
violin: {
|
|
301
|
+
features: Array<{
|
|
302
|
+
featureName: string;
|
|
303
|
+
outlierGroups: Array<{
|
|
304
|
+
groupId: string;
|
|
305
|
+
values: number[];
|
|
306
|
+
}>;
|
|
307
|
+
normalGroups: Array<{
|
|
308
|
+
groupId: string;
|
|
309
|
+
values: number[];
|
|
310
|
+
}>;
|
|
311
|
+
}>;
|
|
312
|
+
};
|
|
313
|
+
std: {
|
|
314
|
+
series: Array<{
|
|
315
|
+
groupId: string;
|
|
316
|
+
isOutlier: boolean;
|
|
317
|
+
points: Array<{
|
|
318
|
+
period: string;
|
|
319
|
+
stdDev: number;
|
|
320
|
+
}>;
|
|
321
|
+
}>;
|
|
322
|
+
};
|
|
323
|
+
heatmap: {
|
|
324
|
+
data: number[][];
|
|
325
|
+
xLabels: string[];
|
|
326
|
+
yLabels: string[];
|
|
327
|
+
title: string;
|
|
328
|
+
};
|
|
329
|
+
boxPlot: {
|
|
330
|
+
boxes: Array<{
|
|
331
|
+
groupId: string;
|
|
332
|
+
isOutlier: boolean;
|
|
333
|
+
min: number;
|
|
334
|
+
q1: number;
|
|
335
|
+
median: number;
|
|
336
|
+
q3: number;
|
|
337
|
+
max: number;
|
|
338
|
+
outliers: number[];
|
|
339
|
+
}>;
|
|
340
|
+
};
|
|
341
|
+
shapValues: {
|
|
342
|
+
groups: Array<{
|
|
343
|
+
groupId: string;
|
|
344
|
+
isOutlier: boolean;
|
|
345
|
+
features: Array<{
|
|
346
|
+
featureName: string;
|
|
347
|
+
slope: number;
|
|
348
|
+
maxDrop: number;
|
|
349
|
+
derivative: number;
|
|
350
|
+
}>;
|
|
351
|
+
}>;
|
|
352
|
+
};
|
|
353
|
+
scatter: {
|
|
354
|
+
points: Array<{
|
|
355
|
+
groupId: string;
|
|
356
|
+
isOutlier: boolean;
|
|
357
|
+
degradationScore: number;
|
|
358
|
+
zScore: number;
|
|
359
|
+
}>;
|
|
360
|
+
};
|
|
361
|
+
featureImportance: {
|
|
362
|
+
features: Array<{
|
|
363
|
+
featureName: string;
|
|
364
|
+
importance: number;
|
|
365
|
+
outlierCount: number;
|
|
366
|
+
}>;
|
|
367
|
+
};
|
|
368
|
+
}
|
|
288
369
|
type AccessControlListElement = {
|
|
289
370
|
topic: string;
|
|
290
371
|
acc: number;
|
|
@@ -1925,6 +2006,13 @@ declare class ParameterAnomalyGroupTrackersService extends Service {
|
|
|
1925
2006
|
analyze(ParameterAnomalyGroupTrackerAnalyzeParams: JUHUU.ParameterAnomalyGroupTracker.Analyze.Params, ParameterAnomalyGroupTrackerAnalyzeOptions?: JUHUU.ParameterAnomalyGroupTracker.Analyze.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTracker.Analyze.Response>>;
|
|
1926
2007
|
}
|
|
1927
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
|
+
|
|
1928
2016
|
declare class EmzService extends Service {
|
|
1929
2017
|
constructor(config: JUHUU.SetupConfig);
|
|
1930
2018
|
credentials(EmzCredentialsParams: JUHUU.Emz.Credentials.Params, EmzCredentialsOptions?: JUHUU.Emz.Credentials.Options): Promise<JUHUU.HttpResponse<JUHUU.Emz.Credentials.Response>>;
|
|
@@ -2101,6 +2189,7 @@ declare class Juhuu {
|
|
|
2101
2189
|
readonly incidents: IncidentsService;
|
|
2102
2190
|
readonly parameterAnomalyGroups: ParameterAnomalyGroupsService;
|
|
2103
2191
|
readonly parameterAnomalyGroupTrackers: ParameterAnomalyGroupTrackersService;
|
|
2192
|
+
readonly parameterAnomalyGroupTrackerTraces: ParameterAnomalyGroupTrackerTracesService;
|
|
2104
2193
|
readonly emz: EmzService;
|
|
2105
2194
|
readonly flows: FlowsService;
|
|
2106
2195
|
readonly flowTraces: FlowTracesService;
|
|
@@ -4970,16 +5059,66 @@ declare namespace JUHUU {
|
|
|
4970
5059
|
};
|
|
4971
5060
|
}
|
|
4972
5061
|
}
|
|
5062
|
+
namespace ParameterAnomalyGroupTrackerTrace {
|
|
5063
|
+
type Object = {
|
|
5064
|
+
id: string;
|
|
5065
|
+
readonly object: "parameterAnomalyGroupTrackerTrace";
|
|
5066
|
+
parameterAnomalyGroupTrackerId: string;
|
|
5067
|
+
propertyId: string;
|
|
5068
|
+
plotData: PlotData;
|
|
5069
|
+
metadata: {
|
|
5070
|
+
totalGroups: number;
|
|
5071
|
+
outlierGroups: number;
|
|
5072
|
+
normalGroups: number;
|
|
5073
|
+
featuresAnalyzed: number;
|
|
5074
|
+
detectionMethod: string;
|
|
5075
|
+
executionTimeMs: number;
|
|
5076
|
+
};
|
|
5077
|
+
executedAt: Date;
|
|
5078
|
+
};
|
|
5079
|
+
namespace Retrieve {
|
|
5080
|
+
type Params = {
|
|
5081
|
+
parameterAnomalyGroupTrackerTraceId: string;
|
|
5082
|
+
};
|
|
5083
|
+
type Options = {
|
|
5084
|
+
expand?: Array<"property">;
|
|
5085
|
+
} & JUHUU.RequestOptions;
|
|
5086
|
+
type Response = {
|
|
5087
|
+
parameterAnomalyGroupTrackerTrace: JUHUU.ParameterAnomalyGroupTrackerTrace.Object;
|
|
5088
|
+
};
|
|
5089
|
+
}
|
|
5090
|
+
namespace List {
|
|
5091
|
+
type Params = {
|
|
5092
|
+
propertyId?: string;
|
|
5093
|
+
parameterAnomalyGroupTrackerId?: string;
|
|
5094
|
+
};
|
|
5095
|
+
type Options = {
|
|
5096
|
+
skip?: number;
|
|
5097
|
+
limit?: number;
|
|
5098
|
+
} & JUHUU.RequestOptions;
|
|
5099
|
+
type Response = {
|
|
5100
|
+
parameterAnomalyGroupTrackerTraceArray: JUHUU.ParameterAnomalyGroupTrackerTrace.Object[];
|
|
5101
|
+
count: number;
|
|
5102
|
+
hasMore: boolean;
|
|
5103
|
+
};
|
|
5104
|
+
}
|
|
5105
|
+
namespace Delete {
|
|
5106
|
+
type Params = {
|
|
5107
|
+
parameterAnomalyGroupTrackerTraceId: string;
|
|
5108
|
+
};
|
|
5109
|
+
type Options = JUHUU.RequestOptions;
|
|
5110
|
+
type Response = {
|
|
5111
|
+
parameterAnomalyGroupTrackerTrace: JUHUU.ParameterAnomalyGroupTrackerTrace.Object;
|
|
5112
|
+
};
|
|
5113
|
+
}
|
|
5114
|
+
}
|
|
4973
5115
|
namespace ParameterHistory {
|
|
4974
5116
|
type Base = {
|
|
4975
5117
|
id: string;
|
|
4976
5118
|
readonly object: "parameterHistory";
|
|
4977
5119
|
description: string | null;
|
|
4978
5120
|
name: string | null;
|
|
4979
|
-
propertyId: string;
|
|
4980
5121
|
createdAt: Date;
|
|
4981
|
-
reference: string | null;
|
|
4982
|
-
parameterId: string;
|
|
4983
5122
|
isOutlier: boolean;
|
|
4984
5123
|
shapAnomalyArray: Array<{
|
|
4985
5124
|
parameterAnomalyGroupId: string;
|
|
@@ -4987,22 +5126,42 @@ declare namespace JUHUU {
|
|
|
4987
5126
|
}>;
|
|
4988
5127
|
};
|
|
4989
5128
|
export interface Text extends Base {
|
|
4990
|
-
type: "text";
|
|
4991
5129
|
currentValue: string;
|
|
5130
|
+
static: {
|
|
5131
|
+
type: "text";
|
|
5132
|
+
propertyId: string;
|
|
5133
|
+
reference: string | null;
|
|
5134
|
+
parameterId: string;
|
|
5135
|
+
};
|
|
4992
5136
|
}
|
|
4993
5137
|
export interface Number extends Base {
|
|
4994
|
-
type: "number";
|
|
4995
5138
|
unit: Unit | null;
|
|
4996
5139
|
currentValue: number;
|
|
5140
|
+
static: {
|
|
5141
|
+
type: "number";
|
|
5142
|
+
propertyId: string;
|
|
5143
|
+
reference: string | null;
|
|
5144
|
+
parameterId: string;
|
|
5145
|
+
};
|
|
4997
5146
|
}
|
|
4998
5147
|
export interface Enum extends Base {
|
|
4999
|
-
type: "enum";
|
|
5000
5148
|
currentValue: string;
|
|
5001
5149
|
enumArray: string[];
|
|
5150
|
+
static: {
|
|
5151
|
+
type: "enum";
|
|
5152
|
+
propertyId: string;
|
|
5153
|
+
reference: string | null;
|
|
5154
|
+
parameterId: string;
|
|
5155
|
+
};
|
|
5002
5156
|
}
|
|
5003
5157
|
export interface Boolean extends Base {
|
|
5004
|
-
type: "boolean";
|
|
5005
5158
|
currentValue: boolean;
|
|
5159
|
+
static: {
|
|
5160
|
+
type: "boolean";
|
|
5161
|
+
propertyId: string;
|
|
5162
|
+
reference: string | null;
|
|
5163
|
+
parameterId: string;
|
|
5164
|
+
};
|
|
5006
5165
|
}
|
|
5007
5166
|
export type Object = Number | Boolean | Enum | Text;
|
|
5008
5167
|
export namespace Retrieve {
|
|
@@ -6860,4 +7019,4 @@ declare namespace JUHUU {
|
|
|
6860
7019
|
}
|
|
6861
7020
|
}
|
|
6862
7021
|
|
|
6863
|
-
export { type AccessControlListElement, type AdditionalSubscriptionItem, type Address, type ApiKeyScope, type ApiKeyStatus, type AppStatus, type ArrayGetBlock, type ArrayGetBlockInputs, type ArrayLengthBlock, type ArrayLengthBlockInputs, type AutoRenewMode, type BaseBlock, type BenefitCardCopyBlock, type BenefitCardCopyBlockInputs, type BenefitCardListBlock, type BenefitCardListBlockInputs, type BenefitCardRetrieveBlock, type BenefitCardRetrieveBlockInputs, type BenefitCardUpdateBlock, type BenefitCardUpdateBlockInputs, type BlockExecutor, type BusinessType, type Capability, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type ConstBooleanBlock, type ConstNumberBlock, type ConstTextBlock, type ControlEdgeConnection, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DataEdgeConnection, type DeepNullable, type DevicePermission, type DeviceRetrieveBlock, type DeviceRetrieveBlockInputs, type DeviceStatus, type DeviceType, type DeviceUpdateBlock, type DeviceUpdateBlockInputs, type EndCustomBlock, type Environment, type EnvironmentSettings, type ExtractType, type FlowBlock, type FlowBlockInput, type FlowControlEdge, type FlowDataEdge, type FlowEdge, type FlowExecuteBlock, type FlowExecuteBlockInputs, type FlowExecutionEnvironment, type FlowLog, type FlowStatus, type Frontend, type GeneralSettings, type GeoPoint, type GraphNode, type HttpDeleteBlock, type HttpDeleteBlockInputs, type HttpGetBlock, type HttpGetBlockInputs, type HttpPatchBlock, type HttpPostBlock, type HttpPostBlockInputs, type HttpPutBlock, type HttpPutBlockInputs, type HttpsPatchBlockInputs, type IfBlock, type IncidentCreateBlock, type IncidentCreateBlockInputs, type IncidentRetrieveBlock, type IncidentRetrieveBlockInputs, JUHUU, type JsonLogic, Juhuu, type KitStatus, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type LocationRetrieveBlock, type LocationRetrieveBlockInputs, type LocationUpdateBlock, type LocationUpdateBlockInputs, type MapConstructBlock, type MapConstructBlockInputs, type MapDestructureBlock, type MapDestructureBlockInputs, type MapFilter, type MathAddBlock, type MathAddBlockInputs, type MathDivideBlock, type MathDivideBlockInputs, type MathMultiplyBlock, type MathMultiplyBlockInputs, type MathSubtractBlock, type MathSubtractBlockInputs, type Modality, type MqttSendBlock, type MqttSendBlockInputs, Offer, type OfferTime, type PanelDisplay, type ParamDefinition, type ParamType, type ParameterRetrieveBlock, type ParameterRetrieveBlockInputs, type ParameterUpdateBlock, type ParameterUpdateBlockInputs, type Party, type PaymentMethod, type PaymentReason, type PaymentRefundReason, type PaymentRefundStatus, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type Platform, type PlatformString, type PostingRow, type PropertyAgreement, type PropertyRetrieveBlock, type PropertyRetrieveBlockInputs, type PropertyUpdateBlock, type PropertyUpdateBlockInputs, type ProximityStrategy, type Purpose, type QuickAction, type QuickView, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionRetrieveBlock, type SessionRetrieveBlockInputs, type SessionSettings, type SessionStatus, type SessionTerminateBlock, type SessionTerminateBlockInputs, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type StartCustomBlock, type StartLocationUpdateBlock, type StartParameterUpdateBlock, type StartQuickActionLocationBlock, type StartSessionUpdateBlock, type SwitchBlock, type SystemLogBlock, type SystemLogBlockInputs, type TarifType, type TaxCode, type TextMatchBlock, type TextMatchBlockInputs, type TextTemplateBlock, type TextTemplateBlockInputs, type TimeZone, type UiNavigateScreenBlock, type UiNavigateScreenBlockInputs, type Unit, type UserCreateBlock, type UserCreateBlockInputs, type UserGroup, type UserRetrieveBlock, type UserRetrieveBlockInputs, type UserType, type Utilization, type VariableGetBlock, type VariableGetBlockInputs, type VariableSetBlock, type VariableSetBlockInputs, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
|
|
7022
|
+
export { type AccessControlListElement, type AdditionalSubscriptionItem, type Address, type ApiKeyScope, type ApiKeyStatus, type AppStatus, type ArrayGetBlock, type ArrayGetBlockInputs, type ArrayLengthBlock, type ArrayLengthBlockInputs, type AutoRenewMode, type BaseBlock, type BenefitCardCopyBlock, type BenefitCardCopyBlockInputs, type BenefitCardListBlock, type BenefitCardListBlockInputs, type BenefitCardRetrieveBlock, type BenefitCardRetrieveBlockInputs, type BenefitCardUpdateBlock, type BenefitCardUpdateBlockInputs, type BlockExecutor, type BusinessType, type Capability, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type ConstBooleanBlock, type ConstNumberBlock, type ConstTextBlock, type ControlEdgeConnection, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DataEdgeConnection, type DeepNullable, type DevicePermission, type DeviceRetrieveBlock, type DeviceRetrieveBlockInputs, type DeviceStatus, type DeviceType, type DeviceUpdateBlock, type DeviceUpdateBlockInputs, type EndCustomBlock, type Environment, type EnvironmentSettings, type ExtractType, type FlowBlock, type FlowBlockInput, type FlowControlEdge, type FlowDataEdge, type FlowEdge, type FlowExecuteBlock, type FlowExecuteBlockInputs, type FlowExecutionEnvironment, type FlowLog, type FlowStatus, type Frontend, type GeneralSettings, type GeoPoint, type GraphNode, type HttpDeleteBlock, type HttpDeleteBlockInputs, type HttpGetBlock, type HttpGetBlockInputs, type HttpPatchBlock, type HttpPostBlock, type HttpPostBlockInputs, type HttpPutBlock, type HttpPutBlockInputs, type HttpsPatchBlockInputs, type IfBlock, type IncidentCreateBlock, type IncidentCreateBlockInputs, type IncidentRetrieveBlock, type IncidentRetrieveBlockInputs, JUHUU, type JsonLogic, Juhuu, type KitStatus, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type LocationRetrieveBlock, type LocationRetrieveBlockInputs, type LocationUpdateBlock, type LocationUpdateBlockInputs, type MapConstructBlock, type MapConstructBlockInputs, type MapDestructureBlock, type MapDestructureBlockInputs, type MapFilter, type MathAddBlock, type MathAddBlockInputs, type MathDivideBlock, type MathDivideBlockInputs, type MathMultiplyBlock, type MathMultiplyBlockInputs, type MathSubtractBlock, type MathSubtractBlockInputs, type Modality, type MqttSendBlock, type MqttSendBlockInputs, Offer, type OfferTime, type PanelDisplay, type ParamDefinition, type ParamType, type ParameterRetrieveBlock, type ParameterRetrieveBlockInputs, type ParameterUpdateBlock, type ParameterUpdateBlockInputs, type Party, type PaymentMethod, type PaymentReason, type PaymentRefundReason, type PaymentRefundStatus, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type Platform, type PlatformString, type PlotData, type PostingRow, type PropertyAgreement, type PropertyRetrieveBlock, type PropertyRetrieveBlockInputs, type PropertyUpdateBlock, type PropertyUpdateBlockInputs, type ProximityStrategy, type Purpose, type QuickAction, type QuickView, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionRetrieveBlock, type SessionRetrieveBlockInputs, type SessionSettings, type SessionStatus, type SessionTerminateBlock, type SessionTerminateBlockInputs, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type StartCustomBlock, type StartLocationUpdateBlock, type StartParameterUpdateBlock, type StartQuickActionLocationBlock, type StartSessionUpdateBlock, type SwitchBlock, type SystemLogBlock, type SystemLogBlockInputs, type TarifType, type TaxCode, type TextMatchBlock, type TextMatchBlockInputs, type TextTemplateBlock, type TextTemplateBlockInputs, type TimeZone, type UiNavigateScreenBlock, type UiNavigateScreenBlockInputs, type Unit, type UserCreateBlock, type UserCreateBlockInputs, type UserGroup, type UserRetrieveBlock, type UserRetrieveBlockInputs, type UserType, type Utilization, type VariableGetBlock, type VariableGetBlockInputs, type VariableSetBlock, type VariableSetBlockInputs, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
|
package/dist/index.d.ts
CHANGED
|
@@ -285,6 +285,87 @@ declare const TimeZoneArray: readonly ["Europe/Andorra", "Asia/Dubai", "Asia/Kab
|
|
|
285
285
|
type TimeZone = (typeof TimeZoneArray)[number];
|
|
286
286
|
type StarRating = 1 | 2 | 3 | 4 | 5;
|
|
287
287
|
type Unit = "meter" | "centimeter" | "millimeter" | "kilogram" | "gram" | "milligram" | "liter" | "milliliter" | "percent" | "volt" | "watt" | "ampere" | "joule" | "hertz" | "kelvin" | "celsius" | "fahrenheit" | "byte" | "bit" | "second" | "minute" | "hour" | "day" | "week" | "month" | "year";
|
|
288
|
+
interface PlotData {
|
|
289
|
+
volume: {
|
|
290
|
+
series: Array<{
|
|
291
|
+
groupId: string;
|
|
292
|
+
isOutlier: boolean;
|
|
293
|
+
points: Array<{
|
|
294
|
+
timestamp: string;
|
|
295
|
+
value: number;
|
|
296
|
+
isOutlier: boolean;
|
|
297
|
+
}>;
|
|
298
|
+
}>;
|
|
299
|
+
};
|
|
300
|
+
violin: {
|
|
301
|
+
features: Array<{
|
|
302
|
+
featureName: string;
|
|
303
|
+
outlierGroups: Array<{
|
|
304
|
+
groupId: string;
|
|
305
|
+
values: number[];
|
|
306
|
+
}>;
|
|
307
|
+
normalGroups: Array<{
|
|
308
|
+
groupId: string;
|
|
309
|
+
values: number[];
|
|
310
|
+
}>;
|
|
311
|
+
}>;
|
|
312
|
+
};
|
|
313
|
+
std: {
|
|
314
|
+
series: Array<{
|
|
315
|
+
groupId: string;
|
|
316
|
+
isOutlier: boolean;
|
|
317
|
+
points: Array<{
|
|
318
|
+
period: string;
|
|
319
|
+
stdDev: number;
|
|
320
|
+
}>;
|
|
321
|
+
}>;
|
|
322
|
+
};
|
|
323
|
+
heatmap: {
|
|
324
|
+
data: number[][];
|
|
325
|
+
xLabels: string[];
|
|
326
|
+
yLabels: string[];
|
|
327
|
+
title: string;
|
|
328
|
+
};
|
|
329
|
+
boxPlot: {
|
|
330
|
+
boxes: Array<{
|
|
331
|
+
groupId: string;
|
|
332
|
+
isOutlier: boolean;
|
|
333
|
+
min: number;
|
|
334
|
+
q1: number;
|
|
335
|
+
median: number;
|
|
336
|
+
q3: number;
|
|
337
|
+
max: number;
|
|
338
|
+
outliers: number[];
|
|
339
|
+
}>;
|
|
340
|
+
};
|
|
341
|
+
shapValues: {
|
|
342
|
+
groups: Array<{
|
|
343
|
+
groupId: string;
|
|
344
|
+
isOutlier: boolean;
|
|
345
|
+
features: Array<{
|
|
346
|
+
featureName: string;
|
|
347
|
+
slope: number;
|
|
348
|
+
maxDrop: number;
|
|
349
|
+
derivative: number;
|
|
350
|
+
}>;
|
|
351
|
+
}>;
|
|
352
|
+
};
|
|
353
|
+
scatter: {
|
|
354
|
+
points: Array<{
|
|
355
|
+
groupId: string;
|
|
356
|
+
isOutlier: boolean;
|
|
357
|
+
degradationScore: number;
|
|
358
|
+
zScore: number;
|
|
359
|
+
}>;
|
|
360
|
+
};
|
|
361
|
+
featureImportance: {
|
|
362
|
+
features: Array<{
|
|
363
|
+
featureName: string;
|
|
364
|
+
importance: number;
|
|
365
|
+
outlierCount: number;
|
|
366
|
+
}>;
|
|
367
|
+
};
|
|
368
|
+
}
|
|
288
369
|
type AccessControlListElement = {
|
|
289
370
|
topic: string;
|
|
290
371
|
acc: number;
|
|
@@ -1925,6 +2006,13 @@ declare class ParameterAnomalyGroupTrackersService extends Service {
|
|
|
1925
2006
|
analyze(ParameterAnomalyGroupTrackerAnalyzeParams: JUHUU.ParameterAnomalyGroupTracker.Analyze.Params, ParameterAnomalyGroupTrackerAnalyzeOptions?: JUHUU.ParameterAnomalyGroupTracker.Analyze.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTracker.Analyze.Response>>;
|
|
1926
2007
|
}
|
|
1927
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
|
+
|
|
1928
2016
|
declare class EmzService extends Service {
|
|
1929
2017
|
constructor(config: JUHUU.SetupConfig);
|
|
1930
2018
|
credentials(EmzCredentialsParams: JUHUU.Emz.Credentials.Params, EmzCredentialsOptions?: JUHUU.Emz.Credentials.Options): Promise<JUHUU.HttpResponse<JUHUU.Emz.Credentials.Response>>;
|
|
@@ -2101,6 +2189,7 @@ declare class Juhuu {
|
|
|
2101
2189
|
readonly incidents: IncidentsService;
|
|
2102
2190
|
readonly parameterAnomalyGroups: ParameterAnomalyGroupsService;
|
|
2103
2191
|
readonly parameterAnomalyGroupTrackers: ParameterAnomalyGroupTrackersService;
|
|
2192
|
+
readonly parameterAnomalyGroupTrackerTraces: ParameterAnomalyGroupTrackerTracesService;
|
|
2104
2193
|
readonly emz: EmzService;
|
|
2105
2194
|
readonly flows: FlowsService;
|
|
2106
2195
|
readonly flowTraces: FlowTracesService;
|
|
@@ -4970,16 +5059,66 @@ declare namespace JUHUU {
|
|
|
4970
5059
|
};
|
|
4971
5060
|
}
|
|
4972
5061
|
}
|
|
5062
|
+
namespace ParameterAnomalyGroupTrackerTrace {
|
|
5063
|
+
type Object = {
|
|
5064
|
+
id: string;
|
|
5065
|
+
readonly object: "parameterAnomalyGroupTrackerTrace";
|
|
5066
|
+
parameterAnomalyGroupTrackerId: string;
|
|
5067
|
+
propertyId: string;
|
|
5068
|
+
plotData: PlotData;
|
|
5069
|
+
metadata: {
|
|
5070
|
+
totalGroups: number;
|
|
5071
|
+
outlierGroups: number;
|
|
5072
|
+
normalGroups: number;
|
|
5073
|
+
featuresAnalyzed: number;
|
|
5074
|
+
detectionMethod: string;
|
|
5075
|
+
executionTimeMs: number;
|
|
5076
|
+
};
|
|
5077
|
+
executedAt: Date;
|
|
5078
|
+
};
|
|
5079
|
+
namespace Retrieve {
|
|
5080
|
+
type Params = {
|
|
5081
|
+
parameterAnomalyGroupTrackerTraceId: string;
|
|
5082
|
+
};
|
|
5083
|
+
type Options = {
|
|
5084
|
+
expand?: Array<"property">;
|
|
5085
|
+
} & JUHUU.RequestOptions;
|
|
5086
|
+
type Response = {
|
|
5087
|
+
parameterAnomalyGroupTrackerTrace: JUHUU.ParameterAnomalyGroupTrackerTrace.Object;
|
|
5088
|
+
};
|
|
5089
|
+
}
|
|
5090
|
+
namespace List {
|
|
5091
|
+
type Params = {
|
|
5092
|
+
propertyId?: string;
|
|
5093
|
+
parameterAnomalyGroupTrackerId?: string;
|
|
5094
|
+
};
|
|
5095
|
+
type Options = {
|
|
5096
|
+
skip?: number;
|
|
5097
|
+
limit?: number;
|
|
5098
|
+
} & JUHUU.RequestOptions;
|
|
5099
|
+
type Response = {
|
|
5100
|
+
parameterAnomalyGroupTrackerTraceArray: JUHUU.ParameterAnomalyGroupTrackerTrace.Object[];
|
|
5101
|
+
count: number;
|
|
5102
|
+
hasMore: boolean;
|
|
5103
|
+
};
|
|
5104
|
+
}
|
|
5105
|
+
namespace Delete {
|
|
5106
|
+
type Params = {
|
|
5107
|
+
parameterAnomalyGroupTrackerTraceId: string;
|
|
5108
|
+
};
|
|
5109
|
+
type Options = JUHUU.RequestOptions;
|
|
5110
|
+
type Response = {
|
|
5111
|
+
parameterAnomalyGroupTrackerTrace: JUHUU.ParameterAnomalyGroupTrackerTrace.Object;
|
|
5112
|
+
};
|
|
5113
|
+
}
|
|
5114
|
+
}
|
|
4973
5115
|
namespace ParameterHistory {
|
|
4974
5116
|
type Base = {
|
|
4975
5117
|
id: string;
|
|
4976
5118
|
readonly object: "parameterHistory";
|
|
4977
5119
|
description: string | null;
|
|
4978
5120
|
name: string | null;
|
|
4979
|
-
propertyId: string;
|
|
4980
5121
|
createdAt: Date;
|
|
4981
|
-
reference: string | null;
|
|
4982
|
-
parameterId: string;
|
|
4983
5122
|
isOutlier: boolean;
|
|
4984
5123
|
shapAnomalyArray: Array<{
|
|
4985
5124
|
parameterAnomalyGroupId: string;
|
|
@@ -4987,22 +5126,42 @@ declare namespace JUHUU {
|
|
|
4987
5126
|
}>;
|
|
4988
5127
|
};
|
|
4989
5128
|
export interface Text extends Base {
|
|
4990
|
-
type: "text";
|
|
4991
5129
|
currentValue: string;
|
|
5130
|
+
static: {
|
|
5131
|
+
type: "text";
|
|
5132
|
+
propertyId: string;
|
|
5133
|
+
reference: string | null;
|
|
5134
|
+
parameterId: string;
|
|
5135
|
+
};
|
|
4992
5136
|
}
|
|
4993
5137
|
export interface Number extends Base {
|
|
4994
|
-
type: "number";
|
|
4995
5138
|
unit: Unit | null;
|
|
4996
5139
|
currentValue: number;
|
|
5140
|
+
static: {
|
|
5141
|
+
type: "number";
|
|
5142
|
+
propertyId: string;
|
|
5143
|
+
reference: string | null;
|
|
5144
|
+
parameterId: string;
|
|
5145
|
+
};
|
|
4997
5146
|
}
|
|
4998
5147
|
export interface Enum extends Base {
|
|
4999
|
-
type: "enum";
|
|
5000
5148
|
currentValue: string;
|
|
5001
5149
|
enumArray: string[];
|
|
5150
|
+
static: {
|
|
5151
|
+
type: "enum";
|
|
5152
|
+
propertyId: string;
|
|
5153
|
+
reference: string | null;
|
|
5154
|
+
parameterId: string;
|
|
5155
|
+
};
|
|
5002
5156
|
}
|
|
5003
5157
|
export interface Boolean extends Base {
|
|
5004
|
-
type: "boolean";
|
|
5005
5158
|
currentValue: boolean;
|
|
5159
|
+
static: {
|
|
5160
|
+
type: "boolean";
|
|
5161
|
+
propertyId: string;
|
|
5162
|
+
reference: string | null;
|
|
5163
|
+
parameterId: string;
|
|
5164
|
+
};
|
|
5006
5165
|
}
|
|
5007
5166
|
export type Object = Number | Boolean | Enum | Text;
|
|
5008
5167
|
export namespace Retrieve {
|
|
@@ -6860,4 +7019,4 @@ declare namespace JUHUU {
|
|
|
6860
7019
|
}
|
|
6861
7020
|
}
|
|
6862
7021
|
|
|
6863
|
-
export { type AccessControlListElement, type AdditionalSubscriptionItem, type Address, type ApiKeyScope, type ApiKeyStatus, type AppStatus, type ArrayGetBlock, type ArrayGetBlockInputs, type ArrayLengthBlock, type ArrayLengthBlockInputs, type AutoRenewMode, type BaseBlock, type BenefitCardCopyBlock, type BenefitCardCopyBlockInputs, type BenefitCardListBlock, type BenefitCardListBlockInputs, type BenefitCardRetrieveBlock, type BenefitCardRetrieveBlockInputs, type BenefitCardUpdateBlock, type BenefitCardUpdateBlockInputs, type BlockExecutor, type BusinessType, type Capability, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type ConstBooleanBlock, type ConstNumberBlock, type ConstTextBlock, type ControlEdgeConnection, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DataEdgeConnection, type DeepNullable, type DevicePermission, type DeviceRetrieveBlock, type DeviceRetrieveBlockInputs, type DeviceStatus, type DeviceType, type DeviceUpdateBlock, type DeviceUpdateBlockInputs, type EndCustomBlock, type Environment, type EnvironmentSettings, type ExtractType, type FlowBlock, type FlowBlockInput, type FlowControlEdge, type FlowDataEdge, type FlowEdge, type FlowExecuteBlock, type FlowExecuteBlockInputs, type FlowExecutionEnvironment, type FlowLog, type FlowStatus, type Frontend, type GeneralSettings, type GeoPoint, type GraphNode, type HttpDeleteBlock, type HttpDeleteBlockInputs, type HttpGetBlock, type HttpGetBlockInputs, type HttpPatchBlock, type HttpPostBlock, type HttpPostBlockInputs, type HttpPutBlock, type HttpPutBlockInputs, type HttpsPatchBlockInputs, type IfBlock, type IncidentCreateBlock, type IncidentCreateBlockInputs, type IncidentRetrieveBlock, type IncidentRetrieveBlockInputs, JUHUU, type JsonLogic, Juhuu, type KitStatus, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type LocationRetrieveBlock, type LocationRetrieveBlockInputs, type LocationUpdateBlock, type LocationUpdateBlockInputs, type MapConstructBlock, type MapConstructBlockInputs, type MapDestructureBlock, type MapDestructureBlockInputs, type MapFilter, type MathAddBlock, type MathAddBlockInputs, type MathDivideBlock, type MathDivideBlockInputs, type MathMultiplyBlock, type MathMultiplyBlockInputs, type MathSubtractBlock, type MathSubtractBlockInputs, type Modality, type MqttSendBlock, type MqttSendBlockInputs, Offer, type OfferTime, type PanelDisplay, type ParamDefinition, type ParamType, type ParameterRetrieveBlock, type ParameterRetrieveBlockInputs, type ParameterUpdateBlock, type ParameterUpdateBlockInputs, type Party, type PaymentMethod, type PaymentReason, type PaymentRefundReason, type PaymentRefundStatus, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type Platform, type PlatformString, type PostingRow, type PropertyAgreement, type PropertyRetrieveBlock, type PropertyRetrieveBlockInputs, type PropertyUpdateBlock, type PropertyUpdateBlockInputs, type ProximityStrategy, type Purpose, type QuickAction, type QuickView, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionRetrieveBlock, type SessionRetrieveBlockInputs, type SessionSettings, type SessionStatus, type SessionTerminateBlock, type SessionTerminateBlockInputs, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type StartCustomBlock, type StartLocationUpdateBlock, type StartParameterUpdateBlock, type StartQuickActionLocationBlock, type StartSessionUpdateBlock, type SwitchBlock, type SystemLogBlock, type SystemLogBlockInputs, type TarifType, type TaxCode, type TextMatchBlock, type TextMatchBlockInputs, type TextTemplateBlock, type TextTemplateBlockInputs, type TimeZone, type UiNavigateScreenBlock, type UiNavigateScreenBlockInputs, type Unit, type UserCreateBlock, type UserCreateBlockInputs, type UserGroup, type UserRetrieveBlock, type UserRetrieveBlockInputs, type UserType, type Utilization, type VariableGetBlock, type VariableGetBlockInputs, type VariableSetBlock, type VariableSetBlockInputs, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
|
|
7022
|
+
export { type AccessControlListElement, type AdditionalSubscriptionItem, type Address, type ApiKeyScope, type ApiKeyStatus, type AppStatus, type ArrayGetBlock, type ArrayGetBlockInputs, type ArrayLengthBlock, type ArrayLengthBlockInputs, type AutoRenewMode, type BaseBlock, type BenefitCardCopyBlock, type BenefitCardCopyBlockInputs, type BenefitCardListBlock, type BenefitCardListBlockInputs, type BenefitCardRetrieveBlock, type BenefitCardRetrieveBlockInputs, type BenefitCardUpdateBlock, type BenefitCardUpdateBlockInputs, type BlockExecutor, type BusinessType, type Capability, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type ConstBooleanBlock, type ConstNumberBlock, type ConstTextBlock, type ControlEdgeConnection, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DataEdgeConnection, type DeepNullable, type DevicePermission, type DeviceRetrieveBlock, type DeviceRetrieveBlockInputs, type DeviceStatus, type DeviceType, type DeviceUpdateBlock, type DeviceUpdateBlockInputs, type EndCustomBlock, type Environment, type EnvironmentSettings, type ExtractType, type FlowBlock, type FlowBlockInput, type FlowControlEdge, type FlowDataEdge, type FlowEdge, type FlowExecuteBlock, type FlowExecuteBlockInputs, type FlowExecutionEnvironment, type FlowLog, type FlowStatus, type Frontend, type GeneralSettings, type GeoPoint, type GraphNode, type HttpDeleteBlock, type HttpDeleteBlockInputs, type HttpGetBlock, type HttpGetBlockInputs, type HttpPatchBlock, type HttpPostBlock, type HttpPostBlockInputs, type HttpPutBlock, type HttpPutBlockInputs, type HttpsPatchBlockInputs, type IfBlock, type IncidentCreateBlock, type IncidentCreateBlockInputs, type IncidentRetrieveBlock, type IncidentRetrieveBlockInputs, JUHUU, type JsonLogic, Juhuu, type KitStatus, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type LocationRetrieveBlock, type LocationRetrieveBlockInputs, type LocationUpdateBlock, type LocationUpdateBlockInputs, type MapConstructBlock, type MapConstructBlockInputs, type MapDestructureBlock, type MapDestructureBlockInputs, type MapFilter, type MathAddBlock, type MathAddBlockInputs, type MathDivideBlock, type MathDivideBlockInputs, type MathMultiplyBlock, type MathMultiplyBlockInputs, type MathSubtractBlock, type MathSubtractBlockInputs, type Modality, type MqttSendBlock, type MqttSendBlockInputs, Offer, type OfferTime, type PanelDisplay, type ParamDefinition, type ParamType, type ParameterRetrieveBlock, type ParameterRetrieveBlockInputs, type ParameterUpdateBlock, type ParameterUpdateBlockInputs, type Party, type PaymentMethod, type PaymentReason, type PaymentRefundReason, type PaymentRefundStatus, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type Platform, type PlatformString, type PlotData, type PostingRow, type PropertyAgreement, type PropertyRetrieveBlock, type PropertyRetrieveBlockInputs, type PropertyUpdateBlock, type PropertyUpdateBlockInputs, type ProximityStrategy, type Purpose, type QuickAction, type QuickView, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionRetrieveBlock, type SessionRetrieveBlockInputs, type SessionSettings, type SessionStatus, type SessionTerminateBlock, type SessionTerminateBlockInputs, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type StartCustomBlock, type StartLocationUpdateBlock, type StartParameterUpdateBlock, type StartQuickActionLocationBlock, type StartSessionUpdateBlock, type SwitchBlock, type SystemLogBlock, type SystemLogBlockInputs, type TarifType, type TaxCode, type TextMatchBlock, type TextMatchBlockInputs, type TextTemplateBlock, type TextTemplateBlockInputs, type TimeZone, type UiNavigateScreenBlock, type UiNavigateScreenBlockInputs, type Unit, type UserCreateBlock, type UserCreateBlockInputs, type UserGroup, type UserRetrieveBlock, type UserRetrieveBlockInputs, type UserType, type Utilization, type VariableGetBlock, type VariableGetBlockInputs, type VariableSetBlock, type VariableSetBlockInputs, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
|
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;
|