@juhuu/sdk-ts 1.2.313 → 1.2.315
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 +79 -1
- package/dist/index.d.ts +79 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1537,6 +1537,7 @@ type QuickView = {
|
|
|
1537
1537
|
visibleCondition: Condition | null;
|
|
1538
1538
|
};
|
|
1539
1539
|
type PanelDisplay = "modal" | "dialog" | "screen";
|
|
1540
|
+
type AppStatus = "active" | "disabled";
|
|
1540
1541
|
interface AdditionalSubscriptionItem {
|
|
1541
1542
|
stripePriceId: string;
|
|
1542
1543
|
quantity: number;
|
|
@@ -6764,6 +6765,83 @@ declare namespace JUHUU {
|
|
|
6764
6765
|
message: string;
|
|
6765
6766
|
};
|
|
6766
6767
|
}
|
|
6768
|
+
namespace Application {
|
|
6769
|
+
type Base = {
|
|
6770
|
+
id: string;
|
|
6771
|
+
version: number;
|
|
6772
|
+
readonly object: "application";
|
|
6773
|
+
readonly objectType: "dto";
|
|
6774
|
+
propertyId: string;
|
|
6775
|
+
colorScheme: ColorScheme | null;
|
|
6776
|
+
appIconLight: string | null;
|
|
6777
|
+
appIconDark: string | null;
|
|
6778
|
+
status: AppStatus;
|
|
6779
|
+
};
|
|
6780
|
+
interface Android extends Base {
|
|
6781
|
+
type: "android";
|
|
6782
|
+
}
|
|
6783
|
+
interface Ios extends Base {
|
|
6784
|
+
type: "ios";
|
|
6785
|
+
}
|
|
6786
|
+
type Object = Android | Ios;
|
|
6787
|
+
namespace Create {
|
|
6788
|
+
type Params = {
|
|
6789
|
+
propertyId: string;
|
|
6790
|
+
colorScheme?: ColorScheme | null;
|
|
6791
|
+
appIconLight?: string | null;
|
|
6792
|
+
appIconDark?: string | null;
|
|
6793
|
+
};
|
|
6794
|
+
type Options = JUHUU.RequestOptions;
|
|
6795
|
+
type Response = {
|
|
6796
|
+
application: JUHUU.Application.Object;
|
|
6797
|
+
};
|
|
6798
|
+
}
|
|
6799
|
+
namespace Retrieve {
|
|
6800
|
+
type Params = {
|
|
6801
|
+
applicationId: string;
|
|
6802
|
+
};
|
|
6803
|
+
type Options = JUHUU.RequestOptions;
|
|
6804
|
+
type Response = {
|
|
6805
|
+
application: JUHUU.Application.Object;
|
|
6806
|
+
};
|
|
6807
|
+
}
|
|
6808
|
+
namespace List {
|
|
6809
|
+
type Params = {
|
|
6810
|
+
propertyId: string;
|
|
6811
|
+
};
|
|
6812
|
+
type Options = {
|
|
6813
|
+
limit?: number;
|
|
6814
|
+
skip?: number;
|
|
6815
|
+
} & JUHUU.RequestOptions;
|
|
6816
|
+
type Response = {
|
|
6817
|
+
applicationArray: JUHUU.Application.Object[];
|
|
6818
|
+
count: number;
|
|
6819
|
+
hasMore: boolean;
|
|
6820
|
+
};
|
|
6821
|
+
}
|
|
6822
|
+
namespace Update {
|
|
6823
|
+
type Params = {
|
|
6824
|
+
applicationId: string;
|
|
6825
|
+
colorScheme?: ColorScheme | null;
|
|
6826
|
+
appIconLight?: string | null;
|
|
6827
|
+
appIconDark?: string | null;
|
|
6828
|
+
status?: AppStatus;
|
|
6829
|
+
};
|
|
6830
|
+
type Options = JUHUU.RequestOptions;
|
|
6831
|
+
type Response = {
|
|
6832
|
+
application: JUHUU.Application.Object;
|
|
6833
|
+
};
|
|
6834
|
+
}
|
|
6835
|
+
namespace Delete {
|
|
6836
|
+
type Params = {
|
|
6837
|
+
applicationId: string;
|
|
6838
|
+
};
|
|
6839
|
+
type Options = JUHUU.RequestOptions;
|
|
6840
|
+
type Response = {
|
|
6841
|
+
application: JUHUU.Application.Object;
|
|
6842
|
+
};
|
|
6843
|
+
}
|
|
6844
|
+
}
|
|
6767
6845
|
}
|
|
6768
6846
|
|
|
6769
|
-
export { type AccessControlListElement, type AdditionalSubscriptionItem, type Address, type ApiKeyScope, type ApiKeyStatus, type ArrayGetBlock, type ArrayGetBlockInputs, type ArrayLengthBlock, type ArrayLengthBlockInputs, type AutoRenewMode, type BaseBlock, type BenefitCardCopyBlock, type BenefitCardCopyBlockInputs, type BenefitCardListBlock, type BenefitCardListBlockInputs, type BenefitCardRetrieveBlock, type BenefitCardRetrieveBlockInputs, type BenefitCardUpdateBlock, type BenefitCardUpdateBlockInputs, type BlockExecutor, type BusinessType, type Capability, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type ConstBooleanBlock, type ConstNumberBlock, type ConstTextBlock, type ControlEdgeConnection, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DataEdgeConnection, type DeepNullable, type DevicePermission, type DeviceRetrieveBlock, type DeviceRetrieveBlockInputs, type DeviceStatus, type DeviceType, type DeviceUpdateBlock, type DeviceUpdateBlockInputs, type EndCustomBlock, type Environment, type EnvironmentSettings, type ExtractType, type FlowBlock, type FlowBlockInput, type FlowControlEdge, type FlowDataEdge, type FlowEdge, type FlowExecuteBlock, type FlowExecuteBlockInputs, type FlowExecutionEnvironment, type FlowLog, type FlowStatus, type Frontend, type GeneralSettings, type GeoPoint, type GraphNode, type HttpDeleteBlock, type HttpDeleteBlockInputs, type HttpGetBlock, type HttpGetBlockInputs, type HttpPatchBlock, type HttpPostBlock, type HttpPostBlockInputs, type HttpPutBlock, type HttpPutBlockInputs, type HttpsPatchBlockInputs, type IfBlock, type IncidentCreateBlock, type IncidentCreateBlockInputs, type IncidentRetrieveBlock, type IncidentRetrieveBlockInputs, JUHUU, type JsonLogic, Juhuu, type KitStatus, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type LocationRetrieveBlock, type LocationRetrieveBlockInputs, type LocationUpdateBlock, type LocationUpdateBlockInputs, type MapConstructBlock, type MapConstructBlockInputs, type MapDestructureBlock, type MapDestructureBlockInputs, type MapFilter, type MathAddBlock, type MathAddBlockInputs, type MathDivideBlock, type MathDivideBlockInputs, type MathMultiplyBlock, type MathMultiplyBlockInputs, type MathSubtractBlock, type MathSubtractBlockInputs, type Modality, type MqttSendBlock, type MqttSendBlockInputs, Offer, type OfferTime, type PanelDisplay, type ParamDefinition, type ParamType, type ParameterRetrieveBlock, type ParameterRetrieveBlockInputs, type ParameterUpdateBlock, type ParameterUpdateBlockInputs, type Party, type PaymentMethod, type PaymentReason, type PaymentRefundReason, type PaymentRefundStatus, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type Platform, type PlatformString, type PostingRow, type PropertyAgreement, type PropertyRetrieveBlock, type PropertyRetrieveBlockInputs, type PropertyUpdateBlock, type PropertyUpdateBlockInputs, type ProximityStrategy, type Purpose, type QuickAction, type QuickView, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionRetrieveBlock, type SessionRetrieveBlockInputs, type SessionSettings, type SessionStatus, type SessionTerminateBlock, type SessionTerminateBlockInputs, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type StartCustomBlock, type StartLocationUpdateBlock, type StartParameterUpdateBlock, type StartQuickActionLocationBlock, type StartSessionUpdateBlock, type SwitchBlock, type SystemLogBlock, type SystemLogBlockInputs, type TarifType, type TaxCode, type TextMatchBlock, type TextMatchBlockInputs, type TextTemplateBlock, type TextTemplateBlockInputs, type TimeZone, type UiNavigateScreenBlock, type UiNavigateScreenBlockInputs, type Unit, type UserCreateBlock, type UserCreateBlockInputs, type UserGroup, type UserRetrieveBlock, type UserRetrieveBlockInputs, type UserType, type Utilization, type VariableGetBlock, type VariableGetBlockInputs, type VariableSetBlock, type VariableSetBlockInputs, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
|
|
6847
|
+
export { type AccessControlListElement, type AdditionalSubscriptionItem, type Address, type ApiKeyScope, type ApiKeyStatus, type AppStatus, type ArrayGetBlock, type ArrayGetBlockInputs, type ArrayLengthBlock, type ArrayLengthBlockInputs, type AutoRenewMode, type BaseBlock, type BenefitCardCopyBlock, type BenefitCardCopyBlockInputs, type BenefitCardListBlock, type BenefitCardListBlockInputs, type BenefitCardRetrieveBlock, type BenefitCardRetrieveBlockInputs, type BenefitCardUpdateBlock, type BenefitCardUpdateBlockInputs, type BlockExecutor, type BusinessType, type Capability, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type ConstBooleanBlock, type ConstNumberBlock, type ConstTextBlock, type ControlEdgeConnection, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DataEdgeConnection, type DeepNullable, type DevicePermission, type DeviceRetrieveBlock, type DeviceRetrieveBlockInputs, type DeviceStatus, type DeviceType, type DeviceUpdateBlock, type DeviceUpdateBlockInputs, type EndCustomBlock, type Environment, type EnvironmentSettings, type ExtractType, type FlowBlock, type FlowBlockInput, type FlowControlEdge, type FlowDataEdge, type FlowEdge, type FlowExecuteBlock, type FlowExecuteBlockInputs, type FlowExecutionEnvironment, type FlowLog, type FlowStatus, type Frontend, type GeneralSettings, type GeoPoint, type GraphNode, type HttpDeleteBlock, type HttpDeleteBlockInputs, type HttpGetBlock, type HttpGetBlockInputs, type HttpPatchBlock, type HttpPostBlock, type HttpPostBlockInputs, type HttpPutBlock, type HttpPutBlockInputs, type HttpsPatchBlockInputs, type IfBlock, type IncidentCreateBlock, type IncidentCreateBlockInputs, type IncidentRetrieveBlock, type IncidentRetrieveBlockInputs, JUHUU, type JsonLogic, Juhuu, type KitStatus, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type LocationRetrieveBlock, type LocationRetrieveBlockInputs, type LocationUpdateBlock, type LocationUpdateBlockInputs, type MapConstructBlock, type MapConstructBlockInputs, type MapDestructureBlock, type MapDestructureBlockInputs, type MapFilter, type MathAddBlock, type MathAddBlockInputs, type MathDivideBlock, type MathDivideBlockInputs, type MathMultiplyBlock, type MathMultiplyBlockInputs, type MathSubtractBlock, type MathSubtractBlockInputs, type Modality, type MqttSendBlock, type MqttSendBlockInputs, Offer, type OfferTime, type PanelDisplay, type ParamDefinition, type ParamType, type ParameterRetrieveBlock, type ParameterRetrieveBlockInputs, type ParameterUpdateBlock, type ParameterUpdateBlockInputs, type Party, type PaymentMethod, type PaymentReason, type PaymentRefundReason, type PaymentRefundStatus, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type Platform, type PlatformString, type PostingRow, type PropertyAgreement, type PropertyRetrieveBlock, type PropertyRetrieveBlockInputs, type PropertyUpdateBlock, type PropertyUpdateBlockInputs, type ProximityStrategy, type Purpose, type QuickAction, type QuickView, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionRetrieveBlock, type SessionRetrieveBlockInputs, type SessionSettings, type SessionStatus, type SessionTerminateBlock, type SessionTerminateBlockInputs, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type StartCustomBlock, type StartLocationUpdateBlock, type StartParameterUpdateBlock, type StartQuickActionLocationBlock, type StartSessionUpdateBlock, type SwitchBlock, type SystemLogBlock, type SystemLogBlockInputs, type TarifType, type TaxCode, type TextMatchBlock, type TextMatchBlockInputs, type TextTemplateBlock, type TextTemplateBlockInputs, type TimeZone, type UiNavigateScreenBlock, type UiNavigateScreenBlockInputs, type Unit, type UserCreateBlock, type UserCreateBlockInputs, type UserGroup, type UserRetrieveBlock, type UserRetrieveBlockInputs, type UserType, type Utilization, type VariableGetBlock, type VariableGetBlockInputs, type VariableSetBlock, type VariableSetBlockInputs, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
|
package/dist/index.d.ts
CHANGED
|
@@ -1537,6 +1537,7 @@ type QuickView = {
|
|
|
1537
1537
|
visibleCondition: Condition | null;
|
|
1538
1538
|
};
|
|
1539
1539
|
type PanelDisplay = "modal" | "dialog" | "screen";
|
|
1540
|
+
type AppStatus = "active" | "disabled";
|
|
1540
1541
|
interface AdditionalSubscriptionItem {
|
|
1541
1542
|
stripePriceId: string;
|
|
1542
1543
|
quantity: number;
|
|
@@ -6764,6 +6765,83 @@ declare namespace JUHUU {
|
|
|
6764
6765
|
message: string;
|
|
6765
6766
|
};
|
|
6766
6767
|
}
|
|
6768
|
+
namespace Application {
|
|
6769
|
+
type Base = {
|
|
6770
|
+
id: string;
|
|
6771
|
+
version: number;
|
|
6772
|
+
readonly object: "application";
|
|
6773
|
+
readonly objectType: "dto";
|
|
6774
|
+
propertyId: string;
|
|
6775
|
+
colorScheme: ColorScheme | null;
|
|
6776
|
+
appIconLight: string | null;
|
|
6777
|
+
appIconDark: string | null;
|
|
6778
|
+
status: AppStatus;
|
|
6779
|
+
};
|
|
6780
|
+
interface Android extends Base {
|
|
6781
|
+
type: "android";
|
|
6782
|
+
}
|
|
6783
|
+
interface Ios extends Base {
|
|
6784
|
+
type: "ios";
|
|
6785
|
+
}
|
|
6786
|
+
type Object = Android | Ios;
|
|
6787
|
+
namespace Create {
|
|
6788
|
+
type Params = {
|
|
6789
|
+
propertyId: string;
|
|
6790
|
+
colorScheme?: ColorScheme | null;
|
|
6791
|
+
appIconLight?: string | null;
|
|
6792
|
+
appIconDark?: string | null;
|
|
6793
|
+
};
|
|
6794
|
+
type Options = JUHUU.RequestOptions;
|
|
6795
|
+
type Response = {
|
|
6796
|
+
application: JUHUU.Application.Object;
|
|
6797
|
+
};
|
|
6798
|
+
}
|
|
6799
|
+
namespace Retrieve {
|
|
6800
|
+
type Params = {
|
|
6801
|
+
applicationId: string;
|
|
6802
|
+
};
|
|
6803
|
+
type Options = JUHUU.RequestOptions;
|
|
6804
|
+
type Response = {
|
|
6805
|
+
application: JUHUU.Application.Object;
|
|
6806
|
+
};
|
|
6807
|
+
}
|
|
6808
|
+
namespace List {
|
|
6809
|
+
type Params = {
|
|
6810
|
+
propertyId: string;
|
|
6811
|
+
};
|
|
6812
|
+
type Options = {
|
|
6813
|
+
limit?: number;
|
|
6814
|
+
skip?: number;
|
|
6815
|
+
} & JUHUU.RequestOptions;
|
|
6816
|
+
type Response = {
|
|
6817
|
+
applicationArray: JUHUU.Application.Object[];
|
|
6818
|
+
count: number;
|
|
6819
|
+
hasMore: boolean;
|
|
6820
|
+
};
|
|
6821
|
+
}
|
|
6822
|
+
namespace Update {
|
|
6823
|
+
type Params = {
|
|
6824
|
+
applicationId: string;
|
|
6825
|
+
colorScheme?: ColorScheme | null;
|
|
6826
|
+
appIconLight?: string | null;
|
|
6827
|
+
appIconDark?: string | null;
|
|
6828
|
+
status?: AppStatus;
|
|
6829
|
+
};
|
|
6830
|
+
type Options = JUHUU.RequestOptions;
|
|
6831
|
+
type Response = {
|
|
6832
|
+
application: JUHUU.Application.Object;
|
|
6833
|
+
};
|
|
6834
|
+
}
|
|
6835
|
+
namespace Delete {
|
|
6836
|
+
type Params = {
|
|
6837
|
+
applicationId: string;
|
|
6838
|
+
};
|
|
6839
|
+
type Options = JUHUU.RequestOptions;
|
|
6840
|
+
type Response = {
|
|
6841
|
+
application: JUHUU.Application.Object;
|
|
6842
|
+
};
|
|
6843
|
+
}
|
|
6844
|
+
}
|
|
6767
6845
|
}
|
|
6768
6846
|
|
|
6769
|
-
export { type AccessControlListElement, type AdditionalSubscriptionItem, type Address, type ApiKeyScope, type ApiKeyStatus, type ArrayGetBlock, type ArrayGetBlockInputs, type ArrayLengthBlock, type ArrayLengthBlockInputs, type AutoRenewMode, type BaseBlock, type BenefitCardCopyBlock, type BenefitCardCopyBlockInputs, type BenefitCardListBlock, type BenefitCardListBlockInputs, type BenefitCardRetrieveBlock, type BenefitCardRetrieveBlockInputs, type BenefitCardUpdateBlock, type BenefitCardUpdateBlockInputs, type BlockExecutor, type BusinessType, type Capability, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type ConstBooleanBlock, type ConstNumberBlock, type ConstTextBlock, type ControlEdgeConnection, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DataEdgeConnection, type DeepNullable, type DevicePermission, type DeviceRetrieveBlock, type DeviceRetrieveBlockInputs, type DeviceStatus, type DeviceType, type DeviceUpdateBlock, type DeviceUpdateBlockInputs, type EndCustomBlock, type Environment, type EnvironmentSettings, type ExtractType, type FlowBlock, type FlowBlockInput, type FlowControlEdge, type FlowDataEdge, type FlowEdge, type FlowExecuteBlock, type FlowExecuteBlockInputs, type FlowExecutionEnvironment, type FlowLog, type FlowStatus, type Frontend, type GeneralSettings, type GeoPoint, type GraphNode, type HttpDeleteBlock, type HttpDeleteBlockInputs, type HttpGetBlock, type HttpGetBlockInputs, type HttpPatchBlock, type HttpPostBlock, type HttpPostBlockInputs, type HttpPutBlock, type HttpPutBlockInputs, type HttpsPatchBlockInputs, type IfBlock, type IncidentCreateBlock, type IncidentCreateBlockInputs, type IncidentRetrieveBlock, type IncidentRetrieveBlockInputs, JUHUU, type JsonLogic, Juhuu, type KitStatus, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type LocationRetrieveBlock, type LocationRetrieveBlockInputs, type LocationUpdateBlock, type LocationUpdateBlockInputs, type MapConstructBlock, type MapConstructBlockInputs, type MapDestructureBlock, type MapDestructureBlockInputs, type MapFilter, type MathAddBlock, type MathAddBlockInputs, type MathDivideBlock, type MathDivideBlockInputs, type MathMultiplyBlock, type MathMultiplyBlockInputs, type MathSubtractBlock, type MathSubtractBlockInputs, type Modality, type MqttSendBlock, type MqttSendBlockInputs, Offer, type OfferTime, type PanelDisplay, type ParamDefinition, type ParamType, type ParameterRetrieveBlock, type ParameterRetrieveBlockInputs, type ParameterUpdateBlock, type ParameterUpdateBlockInputs, type Party, type PaymentMethod, type PaymentReason, type PaymentRefundReason, type PaymentRefundStatus, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type Platform, type PlatformString, type PostingRow, type PropertyAgreement, type PropertyRetrieveBlock, type PropertyRetrieveBlockInputs, type PropertyUpdateBlock, type PropertyUpdateBlockInputs, type ProximityStrategy, type Purpose, type QuickAction, type QuickView, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionRetrieveBlock, type SessionRetrieveBlockInputs, type SessionSettings, type SessionStatus, type SessionTerminateBlock, type SessionTerminateBlockInputs, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type StartCustomBlock, type StartLocationUpdateBlock, type StartParameterUpdateBlock, type StartQuickActionLocationBlock, type StartSessionUpdateBlock, type SwitchBlock, type SystemLogBlock, type SystemLogBlockInputs, type TarifType, type TaxCode, type TextMatchBlock, type TextMatchBlockInputs, type TextTemplateBlock, type TextTemplateBlockInputs, type TimeZone, type UiNavigateScreenBlock, type UiNavigateScreenBlockInputs, type Unit, type UserCreateBlock, type UserCreateBlockInputs, type UserGroup, type UserRetrieveBlock, type UserRetrieveBlockInputs, type UserType, type Utilization, type VariableGetBlock, type VariableGetBlockInputs, type VariableSetBlock, type VariableSetBlockInputs, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
|
|
6847
|
+
export { type AccessControlListElement, type AdditionalSubscriptionItem, type Address, type ApiKeyScope, type ApiKeyStatus, type AppStatus, type ArrayGetBlock, type ArrayGetBlockInputs, type ArrayLengthBlock, type ArrayLengthBlockInputs, type AutoRenewMode, type BaseBlock, type BenefitCardCopyBlock, type BenefitCardCopyBlockInputs, type BenefitCardListBlock, type BenefitCardListBlockInputs, type BenefitCardRetrieveBlock, type BenefitCardRetrieveBlockInputs, type BenefitCardUpdateBlock, type BenefitCardUpdateBlockInputs, type BlockExecutor, type BusinessType, type Capability, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type ConstBooleanBlock, type ConstNumberBlock, type ConstTextBlock, type ControlEdgeConnection, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DataEdgeConnection, type DeepNullable, type DevicePermission, type DeviceRetrieveBlock, type DeviceRetrieveBlockInputs, type DeviceStatus, type DeviceType, type DeviceUpdateBlock, type DeviceUpdateBlockInputs, type EndCustomBlock, type Environment, type EnvironmentSettings, type ExtractType, type FlowBlock, type FlowBlockInput, type FlowControlEdge, type FlowDataEdge, type FlowEdge, type FlowExecuteBlock, type FlowExecuteBlockInputs, type FlowExecutionEnvironment, type FlowLog, type FlowStatus, type Frontend, type GeneralSettings, type GeoPoint, type GraphNode, type HttpDeleteBlock, type HttpDeleteBlockInputs, type HttpGetBlock, type HttpGetBlockInputs, type HttpPatchBlock, type HttpPostBlock, type HttpPostBlockInputs, type HttpPutBlock, type HttpPutBlockInputs, type HttpsPatchBlockInputs, type IfBlock, type IncidentCreateBlock, type IncidentCreateBlockInputs, type IncidentRetrieveBlock, type IncidentRetrieveBlockInputs, JUHUU, type JsonLogic, Juhuu, type KitStatus, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type LocationRetrieveBlock, type LocationRetrieveBlockInputs, type LocationUpdateBlock, type LocationUpdateBlockInputs, type MapConstructBlock, type MapConstructBlockInputs, type MapDestructureBlock, type MapDestructureBlockInputs, type MapFilter, type MathAddBlock, type MathAddBlockInputs, type MathDivideBlock, type MathDivideBlockInputs, type MathMultiplyBlock, type MathMultiplyBlockInputs, type MathSubtractBlock, type MathSubtractBlockInputs, type Modality, type MqttSendBlock, type MqttSendBlockInputs, Offer, type OfferTime, type PanelDisplay, type ParamDefinition, type ParamType, type ParameterRetrieveBlock, type ParameterRetrieveBlockInputs, type ParameterUpdateBlock, type ParameterUpdateBlockInputs, type Party, type PaymentMethod, type PaymentReason, type PaymentRefundReason, type PaymentRefundStatus, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type Platform, type PlatformString, type PostingRow, type PropertyAgreement, type PropertyRetrieveBlock, type PropertyRetrieveBlockInputs, type PropertyUpdateBlock, type PropertyUpdateBlockInputs, type ProximityStrategy, type Purpose, type QuickAction, type QuickView, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionRetrieveBlock, type SessionRetrieveBlockInputs, type SessionSettings, type SessionStatus, type SessionTerminateBlock, type SessionTerminateBlockInputs, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type StartCustomBlock, type StartLocationUpdateBlock, type StartParameterUpdateBlock, type StartQuickActionLocationBlock, type StartSessionUpdateBlock, type SwitchBlock, type SystemLogBlock, type SystemLogBlockInputs, type TarifType, type TaxCode, type TextMatchBlock, type TextMatchBlockInputs, type TextTemplateBlock, type TextTemplateBlockInputs, type TimeZone, type UiNavigateScreenBlock, type UiNavigateScreenBlockInputs, type Unit, type UserCreateBlock, type UserCreateBlockInputs, type UserGroup, type UserRetrieveBlock, type UserRetrieveBlockInputs, type UserType, type Utilization, type VariableGetBlock, type VariableGetBlockInputs, type VariableSetBlock, type VariableSetBlockInputs, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
|