@juhuu/sdk-ts 1.2.208 → 1.2.210
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 +33 -4
- package/dist/index.d.ts +33 -4
- package/dist/index.js +11 -0
- package/dist/index.mjs +11 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -659,8 +659,9 @@ interface EndBlock extends BaseBlock {
|
|
659
659
|
}
|
660
660
|
type FlowBlock = TriggerManualBlock | TriggerCustomBlock | TriggerQuickActionLocationBlock | ConstNumberBlock | ConstStringBlock | ConstBooleanBlock | MathAddBlock | FlowIfBlock | FlowSwitchBlock | UtilLogBlock | UtilEchoBlock | HttpsPatchBlock | EndBlock;
|
661
661
|
type FlowBlockInput = MathAddBlockInputs | Record<string, unknown>;
|
662
|
-
|
662
|
+
interface FlowDataEdge {
|
663
663
|
id: string;
|
664
|
+
type: "data";
|
664
665
|
from: {
|
665
666
|
blockId: string;
|
666
667
|
output: string;
|
@@ -669,7 +670,19 @@ type FlowEdge = {
|
|
669
670
|
blockId: string;
|
670
671
|
input: string;
|
671
672
|
};
|
672
|
-
}
|
673
|
+
}
|
674
|
+
interface FlowControlEdge {
|
675
|
+
id: string;
|
676
|
+
type: "control";
|
677
|
+
from: {
|
678
|
+
blockId: string;
|
679
|
+
output: string | null;
|
680
|
+
};
|
681
|
+
to: {
|
682
|
+
blockId: string;
|
683
|
+
};
|
684
|
+
}
|
685
|
+
type FlowEdge = FlowDataEdge | FlowControlEdge;
|
673
686
|
type ParamType = "string" | "number" | "boolean" | "null" | "session" | "sessionArray";
|
674
687
|
interface ParamDefinition {
|
675
688
|
name: string;
|
@@ -1036,6 +1049,7 @@ declare class ParameterAnomalyGroupTrackersService extends Service {
|
|
1036
1049
|
retrieve(ParameterAnomalyGroupTrackerRetrieveParams: JUHUU.ParameterAnomalyGroupTracker.Retrieve.Params, ParameterAnomalyGroupTrackerRetrieveOptions?: JUHUU.ParameterAnomalyGroupTracker.Retrieve.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTracker.Retrieve.Response>>;
|
1037
1050
|
update(ParameterAnomalyGroupTrackerUpdateParams: JUHUU.ParameterAnomalyGroupTracker.Update.Params, ParameterAnomalyGroupTrackerUpdateOptions?: JUHUU.ParameterAnomalyGroupTracker.Update.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTracker.Update.Response>>;
|
1038
1051
|
delete(ParameterAnomalyGroupTrackerDeleteParams: JUHUU.ParameterAnomalyGroupTracker.Delete.Params, ParameterAnomalyGroupTrackerDeleteOptions?: JUHUU.ParameterAnomalyGroupTracker.Delete.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTracker.Delete.Response>>;
|
1052
|
+
analyze(ParameterAnomalyGroupTrackerAnalyzeParams: JUHUU.ParameterAnomalyGroupTracker.Analyze.Params, ParameterAnomalyGroupTrackerAnalyzeOptions?: JUHUU.ParameterAnomalyGroupTracker.Analyze.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTracker.Analyze.Response>>;
|
1039
1053
|
}
|
1040
1054
|
|
1041
1055
|
declare class EmzService extends Service {
|
@@ -3518,9 +3532,10 @@ declare namespace JUHUU {
|
|
3518
3532
|
id: string;
|
3519
3533
|
readonly object: "parameterAnomalyGroup";
|
3520
3534
|
parameterAnomalyGroupTrackerId: string | null;
|
3521
|
-
parameterIdArray: string[];
|
3522
3535
|
propertyId: string;
|
3523
3536
|
name: string;
|
3537
|
+
anomalyScore: number | null;
|
3538
|
+
isOutlier: boolean;
|
3524
3539
|
};
|
3525
3540
|
namespace Create {
|
3526
3541
|
type Params = {
|
@@ -3639,6 +3654,15 @@ declare namespace JUHUU {
|
|
3639
3654
|
parameterAnomalyGroupTracker: JUHUU.ParameterAnomalyGroupTracker.Object;
|
3640
3655
|
};
|
3641
3656
|
}
|
3657
|
+
namespace Analyze {
|
3658
|
+
type Params = {
|
3659
|
+
parameterAnomalyGroupTrackerId: string;
|
3660
|
+
};
|
3661
|
+
type Options = JUHUU.RequestOptions;
|
3662
|
+
type Response = {
|
3663
|
+
parameterAnomalyGroupTracker: JUHUU.ParameterAnomalyGroupTracker.Object;
|
3664
|
+
};
|
3665
|
+
}
|
3642
3666
|
}
|
3643
3667
|
namespace ParameterHistory {
|
3644
3668
|
type Base = {
|
@@ -3649,6 +3673,11 @@ declare namespace JUHUU {
|
|
3649
3673
|
propertyId: string;
|
3650
3674
|
createdAt: Date;
|
3651
3675
|
reference: string | null;
|
3676
|
+
parameterId: string;
|
3677
|
+
shapAnomalyArray: Array<{
|
3678
|
+
parameterAnomalyGroupId: string;
|
3679
|
+
shapScore: number;
|
3680
|
+
}>;
|
3652
3681
|
};
|
3653
3682
|
export interface Text extends Base {
|
3654
3683
|
type: "text";
|
@@ -3942,4 +3971,4 @@ declare namespace JUHUU {
|
|
3942
3971
|
}
|
3943
3972
|
}
|
3944
3973
|
|
3945
|
-
export { type AccessControlListElement, type Address, type ApiKeyScope, type ApiKeyStatus, type AutoRenewMode, type BaseBlock, type BusinessType, type Capability, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type ConstBooleanBlock, type ConstNumberBlock, type ConstStringBlock, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DeepNullable, type DevicePermission, type DeviceStatus, type DeviceType, type EndBlock, type Environment, type EnvironmentSettings, type ExtractType, type FlowBlock, type FlowBlockInput, type FlowEdge, type FlowExecutionEnvironment, type FlowIfBlock, type FlowStatus, type FlowSwitchBlock, type Frontend, type GeneralSettings, type GeoPoint, type GraphNode, type HttpsPatchBlock, JUHUU, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type MapFilter, type MathAddBlock, type MathAddBlockInputs, type Modality, type Offer, type OfferTime, type ParamDefinition, type ParamType, type Party, type PaymentMethod, type PaymentReason, type PaymentRefundReason, type PaymentRefundStatus, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type Platform, type PlatformString, type PostingRow, type Purpose, type PushToken, type QuickAction, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionSettings, type SessionStatus, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type TarifType, type TaxCode, type TimeZone, type TriggerCustomBlock, type TriggerManualBlock, type TriggerQuickActionLocationBlock, type Unit, type UserGroup, type UserType, type UtilEchoBlock, type UtilLogBlock, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
|
3974
|
+
export { type AccessControlListElement, type Address, type ApiKeyScope, type ApiKeyStatus, type AutoRenewMode, type BaseBlock, type BusinessType, type Capability, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type ConstBooleanBlock, type ConstNumberBlock, type ConstStringBlock, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DeepNullable, type DevicePermission, type DeviceStatus, type DeviceType, type EndBlock, type Environment, type EnvironmentSettings, type ExtractType, type FlowBlock, type FlowBlockInput, type FlowControlEdge, type FlowDataEdge, type FlowEdge, type FlowExecutionEnvironment, type FlowIfBlock, type FlowStatus, type FlowSwitchBlock, type Frontend, type GeneralSettings, type GeoPoint, type GraphNode, type HttpsPatchBlock, JUHUU, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type MapFilter, type MathAddBlock, type MathAddBlockInputs, type Modality, type Offer, type OfferTime, type ParamDefinition, type ParamType, type Party, type PaymentMethod, type PaymentReason, type PaymentRefundReason, type PaymentRefundStatus, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type Platform, type PlatformString, type PostingRow, type Purpose, type PushToken, type QuickAction, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionSettings, type SessionStatus, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type TarifType, type TaxCode, type TimeZone, type TriggerCustomBlock, type TriggerManualBlock, type TriggerQuickActionLocationBlock, type Unit, type UserGroup, type UserType, type UtilEchoBlock, type UtilLogBlock, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
|
package/dist/index.d.ts
CHANGED
@@ -659,8 +659,9 @@ interface EndBlock extends BaseBlock {
|
|
659
659
|
}
|
660
660
|
type FlowBlock = TriggerManualBlock | TriggerCustomBlock | TriggerQuickActionLocationBlock | ConstNumberBlock | ConstStringBlock | ConstBooleanBlock | MathAddBlock | FlowIfBlock | FlowSwitchBlock | UtilLogBlock | UtilEchoBlock | HttpsPatchBlock | EndBlock;
|
661
661
|
type FlowBlockInput = MathAddBlockInputs | Record<string, unknown>;
|
662
|
-
|
662
|
+
interface FlowDataEdge {
|
663
663
|
id: string;
|
664
|
+
type: "data";
|
664
665
|
from: {
|
665
666
|
blockId: string;
|
666
667
|
output: string;
|
@@ -669,7 +670,19 @@ type FlowEdge = {
|
|
669
670
|
blockId: string;
|
670
671
|
input: string;
|
671
672
|
};
|
672
|
-
}
|
673
|
+
}
|
674
|
+
interface FlowControlEdge {
|
675
|
+
id: string;
|
676
|
+
type: "control";
|
677
|
+
from: {
|
678
|
+
blockId: string;
|
679
|
+
output: string | null;
|
680
|
+
};
|
681
|
+
to: {
|
682
|
+
blockId: string;
|
683
|
+
};
|
684
|
+
}
|
685
|
+
type FlowEdge = FlowDataEdge | FlowControlEdge;
|
673
686
|
type ParamType = "string" | "number" | "boolean" | "null" | "session" | "sessionArray";
|
674
687
|
interface ParamDefinition {
|
675
688
|
name: string;
|
@@ -1036,6 +1049,7 @@ declare class ParameterAnomalyGroupTrackersService extends Service {
|
|
1036
1049
|
retrieve(ParameterAnomalyGroupTrackerRetrieveParams: JUHUU.ParameterAnomalyGroupTracker.Retrieve.Params, ParameterAnomalyGroupTrackerRetrieveOptions?: JUHUU.ParameterAnomalyGroupTracker.Retrieve.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTracker.Retrieve.Response>>;
|
1037
1050
|
update(ParameterAnomalyGroupTrackerUpdateParams: JUHUU.ParameterAnomalyGroupTracker.Update.Params, ParameterAnomalyGroupTrackerUpdateOptions?: JUHUU.ParameterAnomalyGroupTracker.Update.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTracker.Update.Response>>;
|
1038
1051
|
delete(ParameterAnomalyGroupTrackerDeleteParams: JUHUU.ParameterAnomalyGroupTracker.Delete.Params, ParameterAnomalyGroupTrackerDeleteOptions?: JUHUU.ParameterAnomalyGroupTracker.Delete.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTracker.Delete.Response>>;
|
1052
|
+
analyze(ParameterAnomalyGroupTrackerAnalyzeParams: JUHUU.ParameterAnomalyGroupTracker.Analyze.Params, ParameterAnomalyGroupTrackerAnalyzeOptions?: JUHUU.ParameterAnomalyGroupTracker.Analyze.Options): Promise<JUHUU.HttpResponse<JUHUU.ParameterAnomalyGroupTracker.Analyze.Response>>;
|
1039
1053
|
}
|
1040
1054
|
|
1041
1055
|
declare class EmzService extends Service {
|
@@ -3518,9 +3532,10 @@ declare namespace JUHUU {
|
|
3518
3532
|
id: string;
|
3519
3533
|
readonly object: "parameterAnomalyGroup";
|
3520
3534
|
parameterAnomalyGroupTrackerId: string | null;
|
3521
|
-
parameterIdArray: string[];
|
3522
3535
|
propertyId: string;
|
3523
3536
|
name: string;
|
3537
|
+
anomalyScore: number | null;
|
3538
|
+
isOutlier: boolean;
|
3524
3539
|
};
|
3525
3540
|
namespace Create {
|
3526
3541
|
type Params = {
|
@@ -3639,6 +3654,15 @@ declare namespace JUHUU {
|
|
3639
3654
|
parameterAnomalyGroupTracker: JUHUU.ParameterAnomalyGroupTracker.Object;
|
3640
3655
|
};
|
3641
3656
|
}
|
3657
|
+
namespace Analyze {
|
3658
|
+
type Params = {
|
3659
|
+
parameterAnomalyGroupTrackerId: string;
|
3660
|
+
};
|
3661
|
+
type Options = JUHUU.RequestOptions;
|
3662
|
+
type Response = {
|
3663
|
+
parameterAnomalyGroupTracker: JUHUU.ParameterAnomalyGroupTracker.Object;
|
3664
|
+
};
|
3665
|
+
}
|
3642
3666
|
}
|
3643
3667
|
namespace ParameterHistory {
|
3644
3668
|
type Base = {
|
@@ -3649,6 +3673,11 @@ declare namespace JUHUU {
|
|
3649
3673
|
propertyId: string;
|
3650
3674
|
createdAt: Date;
|
3651
3675
|
reference: string | null;
|
3676
|
+
parameterId: string;
|
3677
|
+
shapAnomalyArray: Array<{
|
3678
|
+
parameterAnomalyGroupId: string;
|
3679
|
+
shapScore: number;
|
3680
|
+
}>;
|
3652
3681
|
};
|
3653
3682
|
export interface Text extends Base {
|
3654
3683
|
type: "text";
|
@@ -3942,4 +3971,4 @@ declare namespace JUHUU {
|
|
3942
3971
|
}
|
3943
3972
|
}
|
3944
3973
|
|
3945
|
-
export { type AccessControlListElement, type Address, type ApiKeyScope, type ApiKeyStatus, type AutoRenewMode, type BaseBlock, type BusinessType, type Capability, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type ConstBooleanBlock, type ConstNumberBlock, type ConstStringBlock, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DeepNullable, type DevicePermission, type DeviceStatus, type DeviceType, type EndBlock, type Environment, type EnvironmentSettings, type ExtractType, type FlowBlock, type FlowBlockInput, type FlowEdge, type FlowExecutionEnvironment, type FlowIfBlock, type FlowStatus, type FlowSwitchBlock, type Frontend, type GeneralSettings, type GeoPoint, type GraphNode, type HttpsPatchBlock, JUHUU, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type MapFilter, type MathAddBlock, type MathAddBlockInputs, type Modality, type Offer, type OfferTime, type ParamDefinition, type ParamType, type Party, type PaymentMethod, type PaymentReason, type PaymentRefundReason, type PaymentRefundStatus, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type Platform, type PlatformString, type PostingRow, type Purpose, type PushToken, type QuickAction, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionSettings, type SessionStatus, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type TarifType, type TaxCode, type TimeZone, type TriggerCustomBlock, type TriggerManualBlock, type TriggerQuickActionLocationBlock, type Unit, type UserGroup, type UserType, type UtilEchoBlock, type UtilLogBlock, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
|
3974
|
+
export { type AccessControlListElement, type Address, type ApiKeyScope, type ApiKeyStatus, type AutoRenewMode, type BaseBlock, type BusinessType, type Capability, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type ConstBooleanBlock, type ConstNumberBlock, type ConstStringBlock, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DeepNullable, type DevicePermission, type DeviceStatus, type DeviceType, type EndBlock, type Environment, type EnvironmentSettings, type ExtractType, type FlowBlock, type FlowBlockInput, type FlowControlEdge, type FlowDataEdge, type FlowEdge, type FlowExecutionEnvironment, type FlowIfBlock, type FlowStatus, type FlowSwitchBlock, type Frontend, type GeneralSettings, type GeoPoint, type GraphNode, type HttpsPatchBlock, JUHUU, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type MapFilter, type MathAddBlock, type MathAddBlockInputs, type Modality, type Offer, type OfferTime, type ParamDefinition, type ParamType, type Party, type PaymentMethod, type PaymentReason, type PaymentRefundReason, type PaymentRefundStatus, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type Platform, type PlatformString, type PostingRow, type Purpose, type PushToken, type QuickAction, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionSettings, type SessionStatus, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type TarifType, type TaxCode, type TimeZone, type TriggerCustomBlock, type TriggerManualBlock, type TriggerQuickActionLocationBlock, type Unit, type UserGroup, type UserType, type UtilEchoBlock, type UtilLogBlock, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
|
package/dist/index.js
CHANGED
@@ -3324,6 +3324,17 @@ var ParameterAnomalyGroupTrackersService = class extends Service {
|
|
3324
3324
|
ParameterAnomalyGroupTrackerDeleteOptions
|
3325
3325
|
);
|
3326
3326
|
}
|
3327
|
+
async analyze(ParameterAnomalyGroupTrackerAnalyzeParams, ParameterAnomalyGroupTrackerAnalyzeOptions) {
|
3328
|
+
return await super.sendRequest(
|
3329
|
+
{
|
3330
|
+
method: "POST",
|
3331
|
+
url: "parameterAnomalyGroupTrackers/" + ParameterAnomalyGroupTrackerAnalyzeParams.parameterAnomalyGroupTrackerId,
|
3332
|
+
body: void 0,
|
3333
|
+
authenticationNotOptional: true
|
3334
|
+
},
|
3335
|
+
ParameterAnomalyGroupTrackerAnalyzeOptions
|
3336
|
+
);
|
3337
|
+
}
|
3327
3338
|
};
|
3328
3339
|
|
3329
3340
|
// src/emz/emz.service.ts
|
package/dist/index.mjs
CHANGED
@@ -3280,6 +3280,17 @@ var ParameterAnomalyGroupTrackersService = class extends Service {
|
|
3280
3280
|
ParameterAnomalyGroupTrackerDeleteOptions
|
3281
3281
|
);
|
3282
3282
|
}
|
3283
|
+
async analyze(ParameterAnomalyGroupTrackerAnalyzeParams, ParameterAnomalyGroupTrackerAnalyzeOptions) {
|
3284
|
+
return await super.sendRequest(
|
3285
|
+
{
|
3286
|
+
method: "POST",
|
3287
|
+
url: "parameterAnomalyGroupTrackers/" + ParameterAnomalyGroupTrackerAnalyzeParams.parameterAnomalyGroupTrackerId,
|
3288
|
+
body: void 0,
|
3289
|
+
authenticationNotOptional: true
|
3290
|
+
},
|
3291
|
+
ParameterAnomalyGroupTrackerAnalyzeOptions
|
3292
|
+
);
|
3293
|
+
}
|
3283
3294
|
};
|
3284
3295
|
|
3285
3296
|
// src/emz/emz.service.ts
|