@juhuu/sdk-ts 1.2.322 → 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 +62 -38
- package/dist/index.d.ts +62 -38
- package/dist/index.js +2 -1
- package/dist/index.mjs +2 -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";
|
|
@@ -4993,6 +5022,7 @@ declare namespace JUHUU {
|
|
|
4993
5022
|
propertyId: string;
|
|
4994
5023
|
featureReferenceArray: string[];
|
|
4995
5024
|
description: null | string;
|
|
5025
|
+
dataType: "time-series" | "cross-sectional";
|
|
4996
5026
|
};
|
|
4997
5027
|
namespace Create {
|
|
4998
5028
|
type Params = {
|
|
@@ -5034,6 +5064,7 @@ declare namespace JUHUU {
|
|
|
5034
5064
|
parameterAnomalyGroupTrackerId: string;
|
|
5035
5065
|
name?: string;
|
|
5036
5066
|
description?: string;
|
|
5067
|
+
dataType?: "time-series" | "cross-sectional";
|
|
5037
5068
|
};
|
|
5038
5069
|
type Options = JUHUU.RequestOptions;
|
|
5039
5070
|
type Response = {
|
|
@@ -5116,14 +5147,7 @@ declare namespace JUHUU {
|
|
|
5116
5147
|
type Base = {
|
|
5117
5148
|
id: string;
|
|
5118
5149
|
readonly object: "parameterHistory";
|
|
5119
|
-
description: string | null;
|
|
5120
|
-
name: string | null;
|
|
5121
5150
|
createdAt: Date;
|
|
5122
|
-
isOutlier: boolean;
|
|
5123
|
-
shapAnomalyArray: Array<{
|
|
5124
|
-
parameterAnomalyGroupId: string;
|
|
5125
|
-
shapScore: number | null;
|
|
5126
|
-
}>;
|
|
5127
5151
|
};
|
|
5128
5152
|
export interface Text extends Base {
|
|
5129
5153
|
currentValue: string;
|
|
@@ -7019,4 +7043,4 @@ declare namespace JUHUU {
|
|
|
7019
7043
|
}
|
|
7020
7044
|
}
|
|
7021
7045
|
|
|
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 };
|
|
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";
|
|
@@ -4993,6 +5022,7 @@ declare namespace JUHUU {
|
|
|
4993
5022
|
propertyId: string;
|
|
4994
5023
|
featureReferenceArray: string[];
|
|
4995
5024
|
description: null | string;
|
|
5025
|
+
dataType: "time-series" | "cross-sectional";
|
|
4996
5026
|
};
|
|
4997
5027
|
namespace Create {
|
|
4998
5028
|
type Params = {
|
|
@@ -5034,6 +5064,7 @@ declare namespace JUHUU {
|
|
|
5034
5064
|
parameterAnomalyGroupTrackerId: string;
|
|
5035
5065
|
name?: string;
|
|
5036
5066
|
description?: string;
|
|
5067
|
+
dataType?: "time-series" | "cross-sectional";
|
|
5037
5068
|
};
|
|
5038
5069
|
type Options = JUHUU.RequestOptions;
|
|
5039
5070
|
type Response = {
|
|
@@ -5116,14 +5147,7 @@ declare namespace JUHUU {
|
|
|
5116
5147
|
type Base = {
|
|
5117
5148
|
id: string;
|
|
5118
5149
|
readonly object: "parameterHistory";
|
|
5119
|
-
description: string | null;
|
|
5120
|
-
name: string | null;
|
|
5121
5150
|
createdAt: Date;
|
|
5122
|
-
isOutlier: boolean;
|
|
5123
|
-
shapAnomalyArray: Array<{
|
|
5124
|
-
parameterAnomalyGroupId: string;
|
|
5125
|
-
shapScore: number | null;
|
|
5126
|
-
}>;
|
|
5127
5151
|
};
|
|
5128
5152
|
export interface Text extends Base {
|
|
5129
5153
|
currentValue: string;
|
|
@@ -7019,4 +7043,4 @@ declare namespace JUHUU {
|
|
|
7019
7043
|
}
|
|
7020
7044
|
}
|
|
7021
7045
|
|
|
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 };
|
|
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
|
},
|
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
|
},
|