@juhuu/sdk-ts 1.2.321 → 1.2.323
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 +94 -45
- package/dist/index.d.ts +94 -45
- package/dist/index.js +57 -1
- package/dist/index.mjs +57 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -296,48 +296,48 @@ interface PlotData {
|
|
|
296
296
|
isOutlier: boolean;
|
|
297
297
|
}>;
|
|
298
298
|
}>;
|
|
299
|
-
};
|
|
299
|
+
} | null;
|
|
300
300
|
violin: {
|
|
301
301
|
features: Array<{
|
|
302
302
|
featureName: string;
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
}>;
|
|
307
|
-
normalGroups: Array<{
|
|
308
|
-
groupId: string;
|
|
309
|
-
values: number[];
|
|
310
|
-
}>;
|
|
303
|
+
color: string;
|
|
304
|
+
values: number[];
|
|
305
|
+
outlierFlags: boolean[];
|
|
311
306
|
}>;
|
|
312
|
-
};
|
|
307
|
+
} | null;
|
|
313
308
|
std: {
|
|
314
309
|
series: Array<{
|
|
315
310
|
groupId: string;
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
}>;
|
|
311
|
+
groupName: string;
|
|
312
|
+
color: string;
|
|
313
|
+
lineWidth: number;
|
|
314
|
+
dataPoints: Array<[number, number]>;
|
|
321
315
|
}>;
|
|
322
|
-
};
|
|
316
|
+
} | null;
|
|
323
317
|
heatmap: {
|
|
324
318
|
data: number[][];
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
319
|
+
rowLabels: string[];
|
|
320
|
+
columnLabels: string[];
|
|
321
|
+
colorScale: {
|
|
322
|
+
min: number;
|
|
323
|
+
max: number;
|
|
324
|
+
colors: string[];
|
|
325
|
+
};
|
|
326
|
+
} | null;
|
|
329
327
|
boxPlot: {
|
|
330
328
|
boxes: Array<{
|
|
331
329
|
groupId: string;
|
|
332
|
-
|
|
330
|
+
groupName: string;
|
|
331
|
+
color: string;
|
|
333
332
|
min: number;
|
|
334
333
|
q1: number;
|
|
335
334
|
median: number;
|
|
336
335
|
q3: number;
|
|
337
336
|
max: number;
|
|
337
|
+
mean: number;
|
|
338
338
|
outliers: number[];
|
|
339
339
|
}>;
|
|
340
|
-
};
|
|
340
|
+
} | null;
|
|
341
341
|
shapValues: {
|
|
342
342
|
groups: Array<{
|
|
343
343
|
groupId: string;
|
|
@@ -349,22 +349,36 @@ interface PlotData {
|
|
|
349
349
|
derivative: number;
|
|
350
350
|
}>;
|
|
351
351
|
}>;
|
|
352
|
-
};
|
|
352
|
+
} | null;
|
|
353
353
|
scatter: {
|
|
354
354
|
points: Array<{
|
|
355
355
|
groupId: string;
|
|
356
|
+
groupName: string;
|
|
357
|
+
x: number;
|
|
358
|
+
y: number;
|
|
359
|
+
color: string;
|
|
360
|
+
size: number;
|
|
356
361
|
isOutlier: boolean;
|
|
357
|
-
degradationScore: number;
|
|
358
|
-
zScore: number;
|
|
359
362
|
}>;
|
|
360
|
-
|
|
363
|
+
axisLabels?: {
|
|
364
|
+
x: string;
|
|
365
|
+
y: string;
|
|
366
|
+
};
|
|
367
|
+
} | null;
|
|
361
368
|
featureImportance: {
|
|
362
369
|
features: Array<{
|
|
363
370
|
featureName: string;
|
|
364
371
|
importance: number;
|
|
365
|
-
|
|
372
|
+
color: string;
|
|
373
|
+
affectedGroups: number;
|
|
366
374
|
}>;
|
|
367
|
-
};
|
|
375
|
+
} | null;
|
|
376
|
+
distribution: {
|
|
377
|
+
scores: number[];
|
|
378
|
+
groupIds: string[];
|
|
379
|
+
isOutlier: boolean[];
|
|
380
|
+
threshold: number;
|
|
381
|
+
} | null;
|
|
368
382
|
}
|
|
369
383
|
type AccessControlListElement = {
|
|
370
384
|
topic: string;
|
|
@@ -1552,6 +1566,21 @@ interface VariableGetBlock extends BaseBlock {
|
|
|
1552
1566
|
interface VariableGetBlockInputs {
|
|
1553
1567
|
key: string;
|
|
1554
1568
|
}
|
|
1569
|
+
interface DelaySleepBlock extends BaseBlock {
|
|
1570
|
+
type: "delay.sleep";
|
|
1571
|
+
in: {
|
|
1572
|
+
milliseconds: DataEdgeConnection;
|
|
1573
|
+
};
|
|
1574
|
+
out: {
|
|
1575
|
+
done: DataEdgeConnection;
|
|
1576
|
+
};
|
|
1577
|
+
data: {
|
|
1578
|
+
milliseconds?: number;
|
|
1579
|
+
};
|
|
1580
|
+
}
|
|
1581
|
+
interface DelaySleepBlockInputs {
|
|
1582
|
+
milliseconds: number;
|
|
1583
|
+
}
|
|
1555
1584
|
interface EndCustomBlock extends BaseBlock {
|
|
1556
1585
|
type: "end.custom";
|
|
1557
1586
|
in: Record<string, DataEdgeConnection>;
|
|
@@ -1560,8 +1589,8 @@ interface EndCustomBlock extends BaseBlock {
|
|
|
1560
1589
|
outputParamDefinitionArray: ParamDefinition[];
|
|
1561
1590
|
};
|
|
1562
1591
|
}
|
|
1563
|
-
type FlowBlock = StartCustomBlock | StartQuickActionLocationBlock | StartSessionUpdateBlock | StartLocationUpdateBlock | StartParameterUpdateBlock | ConstNumberBlock | ConstTextBlock | ConstBooleanBlock | MathAddBlock | MathSubtractBlock | MathMultiplyBlock | MathDivideBlock | MapDestructureBlock | MapConstructBlock | ArrayLengthBlock | ArrayGetBlock | ParameterRetrieveBlock | PropertyRetrieveBlock | LocationRetrieveBlock | SessionRetrieveBlock | DeviceRetrieveBlock | UserRetrieveBlock | UserCreateBlock | IncidentRetrieveBlock | BenefitCardRetrieveBlock | BenefitCardListBlock | BenefitCardCopyBlock | BenefitCardUpdateBlock | TextMatchBlock | TextTemplateBlock | ParameterUpdateBlock | DeviceUpdateBlock | LocationUpdateBlock | PropertyUpdateBlock | SessionTerminateBlock | SystemLogBlock | UiNavigateScreenBlock | IncidentCreateBlock | IfBlock | SwitchBlock | HttpPatchBlock | HttpGetBlock | HttpPostBlock | HttpDeleteBlock | HttpPutBlock | MqttSendBlock | FlowExecuteBlock | VariableSetBlock | VariableGetBlock | EndCustomBlock;
|
|
1564
|
-
type FlowBlockInput = MathAddBlockInputs | MathSubtractBlockInputs | MathMultiplyBlockInputs | MathDivideBlockInputs | ParameterRetrieveBlockInputs | PropertyRetrieveBlockInputs | LocationRetrieveBlockInputs | SessionRetrieveBlockInputs | DeviceRetrieveBlockInputs | UserRetrieveBlockInputs | UserCreateBlockInputs | IncidentRetrieveBlockInputs | BenefitCardRetrieveBlockInputs | BenefitCardListBlockInputs | BenefitCardCopyBlockInputs | BenefitCardUpdateBlockInputs | TextMatchBlockInputs | TextTemplateBlockInputs | ParameterUpdateBlockInputs | DeviceUpdateBlockInputs | LocationUpdateBlockInputs | PropertyUpdateBlockInputs | SessionTerminateBlockInputs | SystemLogBlockInputs | UiNavigateScreenBlockInputs | IncidentCreateBlockInputs | HttpsPatchBlockInputs | HttpGetBlockInputs | HttpPostBlockInputs | HttpDeleteBlockInputs | HttpPutBlockInputs | MqttSendBlockInputs | FlowExecuteBlockInputs | MapDestructureBlockInputs | MapConstructBlockInputs | ArrayLengthBlockInputs | ArrayGetBlockInputs | VariableSetBlockInputs | VariableGetBlockInputs | Record<string, unknown>;
|
|
1592
|
+
type FlowBlock = StartCustomBlock | StartQuickActionLocationBlock | StartSessionUpdateBlock | StartLocationUpdateBlock | StartParameterUpdateBlock | ConstNumberBlock | ConstTextBlock | ConstBooleanBlock | MathAddBlock | MathSubtractBlock | MathMultiplyBlock | MathDivideBlock | MapDestructureBlock | MapConstructBlock | ArrayLengthBlock | ArrayGetBlock | ParameterRetrieveBlock | PropertyRetrieveBlock | LocationRetrieveBlock | SessionRetrieveBlock | DeviceRetrieveBlock | UserRetrieveBlock | UserCreateBlock | IncidentRetrieveBlock | BenefitCardRetrieveBlock | BenefitCardListBlock | BenefitCardCopyBlock | BenefitCardUpdateBlock | TextMatchBlock | TextTemplateBlock | ParameterUpdateBlock | DeviceUpdateBlock | LocationUpdateBlock | PropertyUpdateBlock | SessionTerminateBlock | SystemLogBlock | UiNavigateScreenBlock | IncidentCreateBlock | IfBlock | SwitchBlock | HttpPatchBlock | HttpGetBlock | HttpPostBlock | HttpDeleteBlock | HttpPutBlock | MqttSendBlock | FlowExecuteBlock | VariableSetBlock | VariableGetBlock | DelaySleepBlock | EndCustomBlock;
|
|
1593
|
+
type FlowBlockInput = MathAddBlockInputs | MathSubtractBlockInputs | MathMultiplyBlockInputs | MathDivideBlockInputs | ParameterRetrieveBlockInputs | PropertyRetrieveBlockInputs | LocationRetrieveBlockInputs | SessionRetrieveBlockInputs | DeviceRetrieveBlockInputs | UserRetrieveBlockInputs | UserCreateBlockInputs | IncidentRetrieveBlockInputs | BenefitCardRetrieveBlockInputs | BenefitCardListBlockInputs | BenefitCardCopyBlockInputs | BenefitCardUpdateBlockInputs | TextMatchBlockInputs | TextTemplateBlockInputs | ParameterUpdateBlockInputs | DeviceUpdateBlockInputs | LocationUpdateBlockInputs | PropertyUpdateBlockInputs | SessionTerminateBlockInputs | SystemLogBlockInputs | UiNavigateScreenBlockInputs | IncidentCreateBlockInputs | HttpsPatchBlockInputs | HttpGetBlockInputs | HttpPostBlockInputs | HttpDeleteBlockInputs | HttpPutBlockInputs | MqttSendBlockInputs | FlowExecuteBlockInputs | MapDestructureBlockInputs | MapConstructBlockInputs | ArrayLengthBlockInputs | ArrayGetBlockInputs | VariableSetBlockInputs | VariableGetBlockInputs | DelaySleepBlockInputs | Record<string, unknown>;
|
|
1565
1594
|
interface FlowDataEdge {
|
|
1566
1595
|
id: string;
|
|
1567
1596
|
type: "data";
|
|
@@ -2006,6 +2035,13 @@ declare class ParameterAnomalyGroupTrackersService extends Service {
|
|
|
2006
2035
|
analyze(ParameterAnomalyGroupTrackerAnalyzeParams: JUHUU.ParameterAnomalyGroupTracker.Analyze.Params, ParameterAnomalyGroupTrackerAnalyzeOptions?: JUHUU.ParameterAnomalyGroupTracker.Analyze.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTracker.Analyze.Response>>;
|
|
2007
2036
|
}
|
|
2008
2037
|
|
|
2038
|
+
declare class ParameterAnomalyGroupTrackerTracesService extends Service {
|
|
2039
|
+
constructor(config: JUHUU.SetupConfig);
|
|
2040
|
+
list(ParameterAnomalyGroupTrackerTraceListParams: JUHUU.ParameterAnomalyGroupTrackerTrace.List.Params, ParameterAnomalyGroupTrackerTraceListOptions?: JUHUU.ParameterAnomalyGroupTrackerTrace.List.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTrackerTrace.List.Response>>;
|
|
2041
|
+
retrieve(ParameterAnomalyGroupTrackerTraceRetrieveParams: JUHUU.ParameterAnomalyGroupTrackerTrace.Retrieve.Params, ParameterAnomalyGroupTrackerTraceRetrieveOptions?: JUHUU.ParameterAnomalyGroupTrackerTrace.Retrieve.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTrackerTrace.Retrieve.Response>>;
|
|
2042
|
+
delete(ParameterAnomalyGroupTrackerTraceDeleteParams: JUHUU.ParameterAnomalyGroupTrackerTrace.Delete.Params, ParameterAnomalyGroupTrackerTraceDeleteOptions?: JUHUU.ParameterAnomalyGroupTrackerTrace.Delete.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTrackerTrace.Delete.Response>>;
|
|
2043
|
+
}
|
|
2044
|
+
|
|
2009
2045
|
declare class EmzService extends Service {
|
|
2010
2046
|
constructor(config: JUHUU.SetupConfig);
|
|
2011
2047
|
credentials(EmzCredentialsParams: JUHUU.Emz.Credentials.Params, EmzCredentialsOptions?: JUHUU.Emz.Credentials.Options): Promise<JUHUU.HttpResponse<JUHUU.Emz.Credentials.Response>>;
|
|
@@ -2182,6 +2218,7 @@ declare class Juhuu {
|
|
|
2182
2218
|
readonly incidents: IncidentsService;
|
|
2183
2219
|
readonly parameterAnomalyGroups: ParameterAnomalyGroupsService;
|
|
2184
2220
|
readonly parameterAnomalyGroupTrackers: ParameterAnomalyGroupTrackersService;
|
|
2221
|
+
readonly parameterAnomalyGroupTrackerTraces: ParameterAnomalyGroupTrackerTracesService;
|
|
2185
2222
|
readonly emz: EmzService;
|
|
2186
2223
|
readonly flows: FlowsService;
|
|
2187
2224
|
readonly flowTraces: FlowTracesService;
|
|
@@ -4985,6 +5022,7 @@ declare namespace JUHUU {
|
|
|
4985
5022
|
propertyId: string;
|
|
4986
5023
|
featureReferenceArray: string[];
|
|
4987
5024
|
description: null | string;
|
|
5025
|
+
dataType: "time-series" | "cross-sectional";
|
|
4988
5026
|
};
|
|
4989
5027
|
namespace Create {
|
|
4990
5028
|
type Params = {
|
|
@@ -5026,6 +5064,7 @@ declare namespace JUHUU {
|
|
|
5026
5064
|
parameterAnomalyGroupTrackerId: string;
|
|
5027
5065
|
name?: string;
|
|
5028
5066
|
description?: string;
|
|
5067
|
+
dataType?: "time-series" | "cross-sectional";
|
|
5029
5068
|
};
|
|
5030
5069
|
type Options = JUHUU.RequestOptions;
|
|
5031
5070
|
type Response = {
|
|
@@ -5108,35 +5147,45 @@ declare namespace JUHUU {
|
|
|
5108
5147
|
type Base = {
|
|
5109
5148
|
id: string;
|
|
5110
5149
|
readonly object: "parameterHistory";
|
|
5111
|
-
description: string | null;
|
|
5112
|
-
name: string | null;
|
|
5113
|
-
propertyId: string;
|
|
5114
5150
|
createdAt: Date;
|
|
5115
|
-
reference: string | null;
|
|
5116
|
-
parameterId: string;
|
|
5117
|
-
isOutlier: boolean;
|
|
5118
|
-
shapAnomalyArray: Array<{
|
|
5119
|
-
parameterAnomalyGroupId: string;
|
|
5120
|
-
shapScore: number | null;
|
|
5121
|
-
}>;
|
|
5122
5151
|
};
|
|
5123
5152
|
export interface Text extends Base {
|
|
5124
|
-
type: "text";
|
|
5125
5153
|
currentValue: string;
|
|
5154
|
+
static: {
|
|
5155
|
+
type: "text";
|
|
5156
|
+
propertyId: string;
|
|
5157
|
+
reference: string | null;
|
|
5158
|
+
parameterId: string;
|
|
5159
|
+
};
|
|
5126
5160
|
}
|
|
5127
5161
|
export interface Number extends Base {
|
|
5128
|
-
type: "number";
|
|
5129
5162
|
unit: Unit | null;
|
|
5130
5163
|
currentValue: number;
|
|
5164
|
+
static: {
|
|
5165
|
+
type: "number";
|
|
5166
|
+
propertyId: string;
|
|
5167
|
+
reference: string | null;
|
|
5168
|
+
parameterId: string;
|
|
5169
|
+
};
|
|
5131
5170
|
}
|
|
5132
5171
|
export interface Enum extends Base {
|
|
5133
|
-
type: "enum";
|
|
5134
5172
|
currentValue: string;
|
|
5135
5173
|
enumArray: string[];
|
|
5174
|
+
static: {
|
|
5175
|
+
type: "enum";
|
|
5176
|
+
propertyId: string;
|
|
5177
|
+
reference: string | null;
|
|
5178
|
+
parameterId: string;
|
|
5179
|
+
};
|
|
5136
5180
|
}
|
|
5137
5181
|
export interface Boolean extends Base {
|
|
5138
|
-
type: "boolean";
|
|
5139
5182
|
currentValue: boolean;
|
|
5183
|
+
static: {
|
|
5184
|
+
type: "boolean";
|
|
5185
|
+
propertyId: string;
|
|
5186
|
+
reference: string | null;
|
|
5187
|
+
parameterId: string;
|
|
5188
|
+
};
|
|
5140
5189
|
}
|
|
5141
5190
|
export type Object = Number | Boolean | Enum | Text;
|
|
5142
5191
|
export namespace Retrieve {
|
|
@@ -6994,4 +7043,4 @@ declare namespace JUHUU {
|
|
|
6994
7043
|
}
|
|
6995
7044
|
}
|
|
6996
7045
|
|
|
6997
|
-
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 };
|
|
7046
|
+
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 DelaySleepBlock, type DelaySleepBlockInputs, 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
|
@@ -296,48 +296,48 @@ interface PlotData {
|
|
|
296
296
|
isOutlier: boolean;
|
|
297
297
|
}>;
|
|
298
298
|
}>;
|
|
299
|
-
};
|
|
299
|
+
} | null;
|
|
300
300
|
violin: {
|
|
301
301
|
features: Array<{
|
|
302
302
|
featureName: string;
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
}>;
|
|
307
|
-
normalGroups: Array<{
|
|
308
|
-
groupId: string;
|
|
309
|
-
values: number[];
|
|
310
|
-
}>;
|
|
303
|
+
color: string;
|
|
304
|
+
values: number[];
|
|
305
|
+
outlierFlags: boolean[];
|
|
311
306
|
}>;
|
|
312
|
-
};
|
|
307
|
+
} | null;
|
|
313
308
|
std: {
|
|
314
309
|
series: Array<{
|
|
315
310
|
groupId: string;
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
}>;
|
|
311
|
+
groupName: string;
|
|
312
|
+
color: string;
|
|
313
|
+
lineWidth: number;
|
|
314
|
+
dataPoints: Array<[number, number]>;
|
|
321
315
|
}>;
|
|
322
|
-
};
|
|
316
|
+
} | null;
|
|
323
317
|
heatmap: {
|
|
324
318
|
data: number[][];
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
319
|
+
rowLabels: string[];
|
|
320
|
+
columnLabels: string[];
|
|
321
|
+
colorScale: {
|
|
322
|
+
min: number;
|
|
323
|
+
max: number;
|
|
324
|
+
colors: string[];
|
|
325
|
+
};
|
|
326
|
+
} | null;
|
|
329
327
|
boxPlot: {
|
|
330
328
|
boxes: Array<{
|
|
331
329
|
groupId: string;
|
|
332
|
-
|
|
330
|
+
groupName: string;
|
|
331
|
+
color: string;
|
|
333
332
|
min: number;
|
|
334
333
|
q1: number;
|
|
335
334
|
median: number;
|
|
336
335
|
q3: number;
|
|
337
336
|
max: number;
|
|
337
|
+
mean: number;
|
|
338
338
|
outliers: number[];
|
|
339
339
|
}>;
|
|
340
|
-
};
|
|
340
|
+
} | null;
|
|
341
341
|
shapValues: {
|
|
342
342
|
groups: Array<{
|
|
343
343
|
groupId: string;
|
|
@@ -349,22 +349,36 @@ interface PlotData {
|
|
|
349
349
|
derivative: number;
|
|
350
350
|
}>;
|
|
351
351
|
}>;
|
|
352
|
-
};
|
|
352
|
+
} | null;
|
|
353
353
|
scatter: {
|
|
354
354
|
points: Array<{
|
|
355
355
|
groupId: string;
|
|
356
|
+
groupName: string;
|
|
357
|
+
x: number;
|
|
358
|
+
y: number;
|
|
359
|
+
color: string;
|
|
360
|
+
size: number;
|
|
356
361
|
isOutlier: boolean;
|
|
357
|
-
degradationScore: number;
|
|
358
|
-
zScore: number;
|
|
359
362
|
}>;
|
|
360
|
-
|
|
363
|
+
axisLabels?: {
|
|
364
|
+
x: string;
|
|
365
|
+
y: string;
|
|
366
|
+
};
|
|
367
|
+
} | null;
|
|
361
368
|
featureImportance: {
|
|
362
369
|
features: Array<{
|
|
363
370
|
featureName: string;
|
|
364
371
|
importance: number;
|
|
365
|
-
|
|
372
|
+
color: string;
|
|
373
|
+
affectedGroups: number;
|
|
366
374
|
}>;
|
|
367
|
-
};
|
|
375
|
+
} | null;
|
|
376
|
+
distribution: {
|
|
377
|
+
scores: number[];
|
|
378
|
+
groupIds: string[];
|
|
379
|
+
isOutlier: boolean[];
|
|
380
|
+
threshold: number;
|
|
381
|
+
} | null;
|
|
368
382
|
}
|
|
369
383
|
type AccessControlListElement = {
|
|
370
384
|
topic: string;
|
|
@@ -1552,6 +1566,21 @@ interface VariableGetBlock extends BaseBlock {
|
|
|
1552
1566
|
interface VariableGetBlockInputs {
|
|
1553
1567
|
key: string;
|
|
1554
1568
|
}
|
|
1569
|
+
interface DelaySleepBlock extends BaseBlock {
|
|
1570
|
+
type: "delay.sleep";
|
|
1571
|
+
in: {
|
|
1572
|
+
milliseconds: DataEdgeConnection;
|
|
1573
|
+
};
|
|
1574
|
+
out: {
|
|
1575
|
+
done: DataEdgeConnection;
|
|
1576
|
+
};
|
|
1577
|
+
data: {
|
|
1578
|
+
milliseconds?: number;
|
|
1579
|
+
};
|
|
1580
|
+
}
|
|
1581
|
+
interface DelaySleepBlockInputs {
|
|
1582
|
+
milliseconds: number;
|
|
1583
|
+
}
|
|
1555
1584
|
interface EndCustomBlock extends BaseBlock {
|
|
1556
1585
|
type: "end.custom";
|
|
1557
1586
|
in: Record<string, DataEdgeConnection>;
|
|
@@ -1560,8 +1589,8 @@ interface EndCustomBlock extends BaseBlock {
|
|
|
1560
1589
|
outputParamDefinitionArray: ParamDefinition[];
|
|
1561
1590
|
};
|
|
1562
1591
|
}
|
|
1563
|
-
type FlowBlock = StartCustomBlock | StartQuickActionLocationBlock | StartSessionUpdateBlock | StartLocationUpdateBlock | StartParameterUpdateBlock | ConstNumberBlock | ConstTextBlock | ConstBooleanBlock | MathAddBlock | MathSubtractBlock | MathMultiplyBlock | MathDivideBlock | MapDestructureBlock | MapConstructBlock | ArrayLengthBlock | ArrayGetBlock | ParameterRetrieveBlock | PropertyRetrieveBlock | LocationRetrieveBlock | SessionRetrieveBlock | DeviceRetrieveBlock | UserRetrieveBlock | UserCreateBlock | IncidentRetrieveBlock | BenefitCardRetrieveBlock | BenefitCardListBlock | BenefitCardCopyBlock | BenefitCardUpdateBlock | TextMatchBlock | TextTemplateBlock | ParameterUpdateBlock | DeviceUpdateBlock | LocationUpdateBlock | PropertyUpdateBlock | SessionTerminateBlock | SystemLogBlock | UiNavigateScreenBlock | IncidentCreateBlock | IfBlock | SwitchBlock | HttpPatchBlock | HttpGetBlock | HttpPostBlock | HttpDeleteBlock | HttpPutBlock | MqttSendBlock | FlowExecuteBlock | VariableSetBlock | VariableGetBlock | EndCustomBlock;
|
|
1564
|
-
type FlowBlockInput = MathAddBlockInputs | MathSubtractBlockInputs | MathMultiplyBlockInputs | MathDivideBlockInputs | ParameterRetrieveBlockInputs | PropertyRetrieveBlockInputs | LocationRetrieveBlockInputs | SessionRetrieveBlockInputs | DeviceRetrieveBlockInputs | UserRetrieveBlockInputs | UserCreateBlockInputs | IncidentRetrieveBlockInputs | BenefitCardRetrieveBlockInputs | BenefitCardListBlockInputs | BenefitCardCopyBlockInputs | BenefitCardUpdateBlockInputs | TextMatchBlockInputs | TextTemplateBlockInputs | ParameterUpdateBlockInputs | DeviceUpdateBlockInputs | LocationUpdateBlockInputs | PropertyUpdateBlockInputs | SessionTerminateBlockInputs | SystemLogBlockInputs | UiNavigateScreenBlockInputs | IncidentCreateBlockInputs | HttpsPatchBlockInputs | HttpGetBlockInputs | HttpPostBlockInputs | HttpDeleteBlockInputs | HttpPutBlockInputs | MqttSendBlockInputs | FlowExecuteBlockInputs | MapDestructureBlockInputs | MapConstructBlockInputs | ArrayLengthBlockInputs | ArrayGetBlockInputs | VariableSetBlockInputs | VariableGetBlockInputs | Record<string, unknown>;
|
|
1592
|
+
type FlowBlock = StartCustomBlock | StartQuickActionLocationBlock | StartSessionUpdateBlock | StartLocationUpdateBlock | StartParameterUpdateBlock | ConstNumberBlock | ConstTextBlock | ConstBooleanBlock | MathAddBlock | MathSubtractBlock | MathMultiplyBlock | MathDivideBlock | MapDestructureBlock | MapConstructBlock | ArrayLengthBlock | ArrayGetBlock | ParameterRetrieveBlock | PropertyRetrieveBlock | LocationRetrieveBlock | SessionRetrieveBlock | DeviceRetrieveBlock | UserRetrieveBlock | UserCreateBlock | IncidentRetrieveBlock | BenefitCardRetrieveBlock | BenefitCardListBlock | BenefitCardCopyBlock | BenefitCardUpdateBlock | TextMatchBlock | TextTemplateBlock | ParameterUpdateBlock | DeviceUpdateBlock | LocationUpdateBlock | PropertyUpdateBlock | SessionTerminateBlock | SystemLogBlock | UiNavigateScreenBlock | IncidentCreateBlock | IfBlock | SwitchBlock | HttpPatchBlock | HttpGetBlock | HttpPostBlock | HttpDeleteBlock | HttpPutBlock | MqttSendBlock | FlowExecuteBlock | VariableSetBlock | VariableGetBlock | DelaySleepBlock | EndCustomBlock;
|
|
1593
|
+
type FlowBlockInput = MathAddBlockInputs | MathSubtractBlockInputs | MathMultiplyBlockInputs | MathDivideBlockInputs | ParameterRetrieveBlockInputs | PropertyRetrieveBlockInputs | LocationRetrieveBlockInputs | SessionRetrieveBlockInputs | DeviceRetrieveBlockInputs | UserRetrieveBlockInputs | UserCreateBlockInputs | IncidentRetrieveBlockInputs | BenefitCardRetrieveBlockInputs | BenefitCardListBlockInputs | BenefitCardCopyBlockInputs | BenefitCardUpdateBlockInputs | TextMatchBlockInputs | TextTemplateBlockInputs | ParameterUpdateBlockInputs | DeviceUpdateBlockInputs | LocationUpdateBlockInputs | PropertyUpdateBlockInputs | SessionTerminateBlockInputs | SystemLogBlockInputs | UiNavigateScreenBlockInputs | IncidentCreateBlockInputs | HttpsPatchBlockInputs | HttpGetBlockInputs | HttpPostBlockInputs | HttpDeleteBlockInputs | HttpPutBlockInputs | MqttSendBlockInputs | FlowExecuteBlockInputs | MapDestructureBlockInputs | MapConstructBlockInputs | ArrayLengthBlockInputs | ArrayGetBlockInputs | VariableSetBlockInputs | VariableGetBlockInputs | DelaySleepBlockInputs | Record<string, unknown>;
|
|
1565
1594
|
interface FlowDataEdge {
|
|
1566
1595
|
id: string;
|
|
1567
1596
|
type: "data";
|
|
@@ -2006,6 +2035,13 @@ declare class ParameterAnomalyGroupTrackersService extends Service {
|
|
|
2006
2035
|
analyze(ParameterAnomalyGroupTrackerAnalyzeParams: JUHUU.ParameterAnomalyGroupTracker.Analyze.Params, ParameterAnomalyGroupTrackerAnalyzeOptions?: JUHUU.ParameterAnomalyGroupTracker.Analyze.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTracker.Analyze.Response>>;
|
|
2007
2036
|
}
|
|
2008
2037
|
|
|
2038
|
+
declare class ParameterAnomalyGroupTrackerTracesService extends Service {
|
|
2039
|
+
constructor(config: JUHUU.SetupConfig);
|
|
2040
|
+
list(ParameterAnomalyGroupTrackerTraceListParams: JUHUU.ParameterAnomalyGroupTrackerTrace.List.Params, ParameterAnomalyGroupTrackerTraceListOptions?: JUHUU.ParameterAnomalyGroupTrackerTrace.List.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTrackerTrace.List.Response>>;
|
|
2041
|
+
retrieve(ParameterAnomalyGroupTrackerTraceRetrieveParams: JUHUU.ParameterAnomalyGroupTrackerTrace.Retrieve.Params, ParameterAnomalyGroupTrackerTraceRetrieveOptions?: JUHUU.ParameterAnomalyGroupTrackerTrace.Retrieve.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTrackerTrace.Retrieve.Response>>;
|
|
2042
|
+
delete(ParameterAnomalyGroupTrackerTraceDeleteParams: JUHUU.ParameterAnomalyGroupTrackerTrace.Delete.Params, ParameterAnomalyGroupTrackerTraceDeleteOptions?: JUHUU.ParameterAnomalyGroupTrackerTrace.Delete.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTrackerTrace.Delete.Response>>;
|
|
2043
|
+
}
|
|
2044
|
+
|
|
2009
2045
|
declare class EmzService extends Service {
|
|
2010
2046
|
constructor(config: JUHUU.SetupConfig);
|
|
2011
2047
|
credentials(EmzCredentialsParams: JUHUU.Emz.Credentials.Params, EmzCredentialsOptions?: JUHUU.Emz.Credentials.Options): Promise<JUHUU.HttpResponse<JUHUU.Emz.Credentials.Response>>;
|
|
@@ -2182,6 +2218,7 @@ declare class Juhuu {
|
|
|
2182
2218
|
readonly incidents: IncidentsService;
|
|
2183
2219
|
readonly parameterAnomalyGroups: ParameterAnomalyGroupsService;
|
|
2184
2220
|
readonly parameterAnomalyGroupTrackers: ParameterAnomalyGroupTrackersService;
|
|
2221
|
+
readonly parameterAnomalyGroupTrackerTraces: ParameterAnomalyGroupTrackerTracesService;
|
|
2185
2222
|
readonly emz: EmzService;
|
|
2186
2223
|
readonly flows: FlowsService;
|
|
2187
2224
|
readonly flowTraces: FlowTracesService;
|
|
@@ -4985,6 +5022,7 @@ declare namespace JUHUU {
|
|
|
4985
5022
|
propertyId: string;
|
|
4986
5023
|
featureReferenceArray: string[];
|
|
4987
5024
|
description: null | string;
|
|
5025
|
+
dataType: "time-series" | "cross-sectional";
|
|
4988
5026
|
};
|
|
4989
5027
|
namespace Create {
|
|
4990
5028
|
type Params = {
|
|
@@ -5026,6 +5064,7 @@ declare namespace JUHUU {
|
|
|
5026
5064
|
parameterAnomalyGroupTrackerId: string;
|
|
5027
5065
|
name?: string;
|
|
5028
5066
|
description?: string;
|
|
5067
|
+
dataType?: "time-series" | "cross-sectional";
|
|
5029
5068
|
};
|
|
5030
5069
|
type Options = JUHUU.RequestOptions;
|
|
5031
5070
|
type Response = {
|
|
@@ -5108,35 +5147,45 @@ declare namespace JUHUU {
|
|
|
5108
5147
|
type Base = {
|
|
5109
5148
|
id: string;
|
|
5110
5149
|
readonly object: "parameterHistory";
|
|
5111
|
-
description: string | null;
|
|
5112
|
-
name: string | null;
|
|
5113
|
-
propertyId: string;
|
|
5114
5150
|
createdAt: Date;
|
|
5115
|
-
reference: string | null;
|
|
5116
|
-
parameterId: string;
|
|
5117
|
-
isOutlier: boolean;
|
|
5118
|
-
shapAnomalyArray: Array<{
|
|
5119
|
-
parameterAnomalyGroupId: string;
|
|
5120
|
-
shapScore: number | null;
|
|
5121
|
-
}>;
|
|
5122
5151
|
};
|
|
5123
5152
|
export interface Text extends Base {
|
|
5124
|
-
type: "text";
|
|
5125
5153
|
currentValue: string;
|
|
5154
|
+
static: {
|
|
5155
|
+
type: "text";
|
|
5156
|
+
propertyId: string;
|
|
5157
|
+
reference: string | null;
|
|
5158
|
+
parameterId: string;
|
|
5159
|
+
};
|
|
5126
5160
|
}
|
|
5127
5161
|
export interface Number extends Base {
|
|
5128
|
-
type: "number";
|
|
5129
5162
|
unit: Unit | null;
|
|
5130
5163
|
currentValue: number;
|
|
5164
|
+
static: {
|
|
5165
|
+
type: "number";
|
|
5166
|
+
propertyId: string;
|
|
5167
|
+
reference: string | null;
|
|
5168
|
+
parameterId: string;
|
|
5169
|
+
};
|
|
5131
5170
|
}
|
|
5132
5171
|
export interface Enum extends Base {
|
|
5133
|
-
type: "enum";
|
|
5134
5172
|
currentValue: string;
|
|
5135
5173
|
enumArray: string[];
|
|
5174
|
+
static: {
|
|
5175
|
+
type: "enum";
|
|
5176
|
+
propertyId: string;
|
|
5177
|
+
reference: string | null;
|
|
5178
|
+
parameterId: string;
|
|
5179
|
+
};
|
|
5136
5180
|
}
|
|
5137
5181
|
export interface Boolean extends Base {
|
|
5138
|
-
type: "boolean";
|
|
5139
5182
|
currentValue: boolean;
|
|
5183
|
+
static: {
|
|
5184
|
+
type: "boolean";
|
|
5185
|
+
propertyId: string;
|
|
5186
|
+
reference: string | null;
|
|
5187
|
+
parameterId: string;
|
|
5188
|
+
};
|
|
5140
5189
|
}
|
|
5141
5190
|
export type Object = Number | Boolean | Enum | Text;
|
|
5142
5191
|
export namespace Retrieve {
|
|
@@ -6994,4 +7043,4 @@ declare namespace JUHUU {
|
|
|
6994
7043
|
}
|
|
6995
7044
|
}
|
|
6996
7045
|
|
|
6997
|
-
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 };
|
|
7046
|
+
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 DelaySleepBlock, type DelaySleepBlockInputs, 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
|
@@ -3618,7 +3618,8 @@ var ParameterAnomalyGroupTrackersService = class extends Service {
|
|
|
3618
3618
|
url: "parameterAnomalyGroupTrackers/" + ParameterAnomalyGroupTrackerUpdateParams.parameterAnomalyGroupTrackerId,
|
|
3619
3619
|
body: {
|
|
3620
3620
|
name: ParameterAnomalyGroupTrackerUpdateParams.name,
|
|
3621
|
-
description: ParameterAnomalyGroupTrackerUpdateParams.description
|
|
3621
|
+
description: ParameterAnomalyGroupTrackerUpdateParams.description,
|
|
3622
|
+
dataType: ParameterAnomalyGroupTrackerUpdateParams.dataType
|
|
3622
3623
|
},
|
|
3623
3624
|
authenticationNotOptional: true
|
|
3624
3625
|
},
|
|
@@ -3649,6 +3650,59 @@ var ParameterAnomalyGroupTrackersService = class extends Service {
|
|
|
3649
3650
|
}
|
|
3650
3651
|
};
|
|
3651
3652
|
|
|
3653
|
+
// src/parameterAnomalyGroupTrackerTraces/parameterAnomalyGroupTrackerTraces.service.ts
|
|
3654
|
+
var ParameterAnomalyGroupTrackerTracesService = class extends Service {
|
|
3655
|
+
constructor(config) {
|
|
3656
|
+
super(config);
|
|
3657
|
+
}
|
|
3658
|
+
async list(ParameterAnomalyGroupTrackerTraceListParams, ParameterAnomalyGroupTrackerTraceListOptions) {
|
|
3659
|
+
const queryArray = [];
|
|
3660
|
+
if (ParameterAnomalyGroupTrackerTraceListParams?.propertyId !== void 0) {
|
|
3661
|
+
queryArray.push("propertyId=" + ParameterAnomalyGroupTrackerTraceListParams.propertyId);
|
|
3662
|
+
}
|
|
3663
|
+
if (ParameterAnomalyGroupTrackerTraceListParams?.parameterAnomalyGroupTrackerId !== void 0) {
|
|
3664
|
+
queryArray.push("parameterAnomalyGroupTrackerId=" + ParameterAnomalyGroupTrackerTraceListParams.parameterAnomalyGroupTrackerId);
|
|
3665
|
+
}
|
|
3666
|
+
if (ParameterAnomalyGroupTrackerTraceListOptions?.limit !== void 0) {
|
|
3667
|
+
queryArray.push("limit=" + ParameterAnomalyGroupTrackerTraceListOptions.limit);
|
|
3668
|
+
}
|
|
3669
|
+
if (ParameterAnomalyGroupTrackerTraceListOptions?.skip !== void 0) {
|
|
3670
|
+
queryArray.push("skip=" + ParameterAnomalyGroupTrackerTraceListOptions.skip);
|
|
3671
|
+
}
|
|
3672
|
+
return await super.sendRequest(
|
|
3673
|
+
{
|
|
3674
|
+
method: "GET",
|
|
3675
|
+
url: "parameterAnomalyGroupTrackerTraces?" + queryArray.join("&"),
|
|
3676
|
+
body: void 0,
|
|
3677
|
+
authenticationNotOptional: false
|
|
3678
|
+
},
|
|
3679
|
+
ParameterAnomalyGroupTrackerTraceListOptions
|
|
3680
|
+
);
|
|
3681
|
+
}
|
|
3682
|
+
async retrieve(ParameterAnomalyGroupTrackerTraceRetrieveParams, ParameterAnomalyGroupTrackerTraceRetrieveOptions) {
|
|
3683
|
+
return await super.sendRequest(
|
|
3684
|
+
{
|
|
3685
|
+
method: "GET",
|
|
3686
|
+
url: "parameterAnomalyGroupTrackerTraces/" + ParameterAnomalyGroupTrackerTraceRetrieveParams.parameterAnomalyGroupTrackerTraceId,
|
|
3687
|
+
body: void 0,
|
|
3688
|
+
authenticationNotOptional: false
|
|
3689
|
+
},
|
|
3690
|
+
ParameterAnomalyGroupTrackerTraceRetrieveOptions
|
|
3691
|
+
);
|
|
3692
|
+
}
|
|
3693
|
+
async delete(ParameterAnomalyGroupTrackerTraceDeleteParams, ParameterAnomalyGroupTrackerTraceDeleteOptions) {
|
|
3694
|
+
return await super.sendRequest(
|
|
3695
|
+
{
|
|
3696
|
+
method: "DELETE",
|
|
3697
|
+
url: "parameterAnomalyGroupTrackerTraces/" + ParameterAnomalyGroupTrackerTraceDeleteParams.parameterAnomalyGroupTrackerTraceId,
|
|
3698
|
+
body: void 0,
|
|
3699
|
+
authenticationNotOptional: false
|
|
3700
|
+
},
|
|
3701
|
+
ParameterAnomalyGroupTrackerTraceDeleteOptions
|
|
3702
|
+
);
|
|
3703
|
+
}
|
|
3704
|
+
};
|
|
3705
|
+
|
|
3652
3706
|
// src/emz/emz.service.ts
|
|
3653
3707
|
var EmzService = class extends Service {
|
|
3654
3708
|
constructor(config) {
|
|
@@ -5731,6 +5785,7 @@ var Juhuu = class {
|
|
|
5731
5785
|
this.incidents = new IncidentsService(config);
|
|
5732
5786
|
this.parameterAnomalyGroups = new ParameterAnomalyGroupsService(config);
|
|
5733
5787
|
this.parameterAnomalyGroupTrackers = new ParameterAnomalyGroupTrackersService(config);
|
|
5788
|
+
this.parameterAnomalyGroupTrackerTraces = new ParameterAnomalyGroupTrackerTracesService(config);
|
|
5734
5789
|
this.emz = new EmzService(config);
|
|
5735
5790
|
this.flows = new FlowsService(config);
|
|
5736
5791
|
this.flowTraces = new FlowTracesService(config);
|
|
@@ -5783,6 +5838,7 @@ var Juhuu = class {
|
|
|
5783
5838
|
incidents;
|
|
5784
5839
|
parameterAnomalyGroups;
|
|
5785
5840
|
parameterAnomalyGroupTrackers;
|
|
5841
|
+
parameterAnomalyGroupTrackerTraces;
|
|
5786
5842
|
emz;
|
|
5787
5843
|
flows;
|
|
5788
5844
|
flowTraces;
|
package/dist/index.mjs
CHANGED
|
@@ -3574,7 +3574,8 @@ var ParameterAnomalyGroupTrackersService = class extends Service {
|
|
|
3574
3574
|
url: "parameterAnomalyGroupTrackers/" + ParameterAnomalyGroupTrackerUpdateParams.parameterAnomalyGroupTrackerId,
|
|
3575
3575
|
body: {
|
|
3576
3576
|
name: ParameterAnomalyGroupTrackerUpdateParams.name,
|
|
3577
|
-
description: ParameterAnomalyGroupTrackerUpdateParams.description
|
|
3577
|
+
description: ParameterAnomalyGroupTrackerUpdateParams.description,
|
|
3578
|
+
dataType: ParameterAnomalyGroupTrackerUpdateParams.dataType
|
|
3578
3579
|
},
|
|
3579
3580
|
authenticationNotOptional: true
|
|
3580
3581
|
},
|
|
@@ -3605,6 +3606,59 @@ var ParameterAnomalyGroupTrackersService = class extends Service {
|
|
|
3605
3606
|
}
|
|
3606
3607
|
};
|
|
3607
3608
|
|
|
3609
|
+
// src/parameterAnomalyGroupTrackerTraces/parameterAnomalyGroupTrackerTraces.service.ts
|
|
3610
|
+
var ParameterAnomalyGroupTrackerTracesService = class extends Service {
|
|
3611
|
+
constructor(config) {
|
|
3612
|
+
super(config);
|
|
3613
|
+
}
|
|
3614
|
+
async list(ParameterAnomalyGroupTrackerTraceListParams, ParameterAnomalyGroupTrackerTraceListOptions) {
|
|
3615
|
+
const queryArray = [];
|
|
3616
|
+
if (ParameterAnomalyGroupTrackerTraceListParams?.propertyId !== void 0) {
|
|
3617
|
+
queryArray.push("propertyId=" + ParameterAnomalyGroupTrackerTraceListParams.propertyId);
|
|
3618
|
+
}
|
|
3619
|
+
if (ParameterAnomalyGroupTrackerTraceListParams?.parameterAnomalyGroupTrackerId !== void 0) {
|
|
3620
|
+
queryArray.push("parameterAnomalyGroupTrackerId=" + ParameterAnomalyGroupTrackerTraceListParams.parameterAnomalyGroupTrackerId);
|
|
3621
|
+
}
|
|
3622
|
+
if (ParameterAnomalyGroupTrackerTraceListOptions?.limit !== void 0) {
|
|
3623
|
+
queryArray.push("limit=" + ParameterAnomalyGroupTrackerTraceListOptions.limit);
|
|
3624
|
+
}
|
|
3625
|
+
if (ParameterAnomalyGroupTrackerTraceListOptions?.skip !== void 0) {
|
|
3626
|
+
queryArray.push("skip=" + ParameterAnomalyGroupTrackerTraceListOptions.skip);
|
|
3627
|
+
}
|
|
3628
|
+
return await super.sendRequest(
|
|
3629
|
+
{
|
|
3630
|
+
method: "GET",
|
|
3631
|
+
url: "parameterAnomalyGroupTrackerTraces?" + queryArray.join("&"),
|
|
3632
|
+
body: void 0,
|
|
3633
|
+
authenticationNotOptional: false
|
|
3634
|
+
},
|
|
3635
|
+
ParameterAnomalyGroupTrackerTraceListOptions
|
|
3636
|
+
);
|
|
3637
|
+
}
|
|
3638
|
+
async retrieve(ParameterAnomalyGroupTrackerTraceRetrieveParams, ParameterAnomalyGroupTrackerTraceRetrieveOptions) {
|
|
3639
|
+
return await super.sendRequest(
|
|
3640
|
+
{
|
|
3641
|
+
method: "GET",
|
|
3642
|
+
url: "parameterAnomalyGroupTrackerTraces/" + ParameterAnomalyGroupTrackerTraceRetrieveParams.parameterAnomalyGroupTrackerTraceId,
|
|
3643
|
+
body: void 0,
|
|
3644
|
+
authenticationNotOptional: false
|
|
3645
|
+
},
|
|
3646
|
+
ParameterAnomalyGroupTrackerTraceRetrieveOptions
|
|
3647
|
+
);
|
|
3648
|
+
}
|
|
3649
|
+
async delete(ParameterAnomalyGroupTrackerTraceDeleteParams, ParameterAnomalyGroupTrackerTraceDeleteOptions) {
|
|
3650
|
+
return await super.sendRequest(
|
|
3651
|
+
{
|
|
3652
|
+
method: "DELETE",
|
|
3653
|
+
url: "parameterAnomalyGroupTrackerTraces/" + ParameterAnomalyGroupTrackerTraceDeleteParams.parameterAnomalyGroupTrackerTraceId,
|
|
3654
|
+
body: void 0,
|
|
3655
|
+
authenticationNotOptional: false
|
|
3656
|
+
},
|
|
3657
|
+
ParameterAnomalyGroupTrackerTraceDeleteOptions
|
|
3658
|
+
);
|
|
3659
|
+
}
|
|
3660
|
+
};
|
|
3661
|
+
|
|
3608
3662
|
// src/emz/emz.service.ts
|
|
3609
3663
|
var EmzService = class extends Service {
|
|
3610
3664
|
constructor(config) {
|
|
@@ -5687,6 +5741,7 @@ var Juhuu = class {
|
|
|
5687
5741
|
this.incidents = new IncidentsService(config);
|
|
5688
5742
|
this.parameterAnomalyGroups = new ParameterAnomalyGroupsService(config);
|
|
5689
5743
|
this.parameterAnomalyGroupTrackers = new ParameterAnomalyGroupTrackersService(config);
|
|
5744
|
+
this.parameterAnomalyGroupTrackerTraces = new ParameterAnomalyGroupTrackerTracesService(config);
|
|
5690
5745
|
this.emz = new EmzService(config);
|
|
5691
5746
|
this.flows = new FlowsService(config);
|
|
5692
5747
|
this.flowTraces = new FlowTracesService(config);
|
|
@@ -5739,6 +5794,7 @@ var Juhuu = class {
|
|
|
5739
5794
|
incidents;
|
|
5740
5795
|
parameterAnomalyGroups;
|
|
5741
5796
|
parameterAnomalyGroupTrackers;
|
|
5797
|
+
parameterAnomalyGroupTrackerTraces;
|
|
5742
5798
|
emz;
|
|
5743
5799
|
flows;
|
|
5744
5800
|
flowTraces;
|