@juhuu/sdk-ts 1.2.208 → 1.2.209
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 +16 -3
- package/dist/index.d.ts +16 -3
- 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;
|
@@ -3942,4 +3955,4 @@ declare namespace JUHUU {
|
|
3942
3955
|
}
|
3943
3956
|
}
|
3944
3957
|
|
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 };
|
3958
|
+
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;
|
@@ -3942,4 +3955,4 @@ declare namespace JUHUU {
|
|
3942
3955
|
}
|
3943
3956
|
}
|
3944
3957
|
|
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 };
|
3958
|
+
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 };
|