@juhuu/sdk-ts 1.2.312 → 1.2.314
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 +82 -3
- package/dist/index.d.ts +82 -3
- package/dist/index.js +3 -0
- package/dist/index.mjs +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -11,7 +11,7 @@ type ProximityStrategy = {
|
|
|
11
11
|
type: "location";
|
|
12
12
|
radius: number | null;
|
|
13
13
|
};
|
|
14
|
-
type KitStatus = "setupComplete" | "waitingForSetup";
|
|
14
|
+
type KitStatus = "setupComplete" | "waitingForAssignmentToProperty" | "waitingForSetup";
|
|
15
15
|
type Platform = "ios" | "android" | "windows" | "macos" | "web";
|
|
16
16
|
type DeviceStatus = "running" | "sleeping" | "shutdown";
|
|
17
17
|
type ExtractType<T> = T extends {
|
|
@@ -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;
|
|
@@ -5215,7 +5216,7 @@ declare namespace JUHUU {
|
|
|
5215
5216
|
provider: "1nce" | null;
|
|
5216
5217
|
countryCode: CountryCode | null;
|
|
5217
5218
|
imei: string | null;
|
|
5218
|
-
propertyId: string;
|
|
5219
|
+
propertyId: string | null;
|
|
5219
5220
|
description: string | null;
|
|
5220
5221
|
name: string;
|
|
5221
5222
|
dataQuotaMax: number | null;
|
|
@@ -5839,6 +5840,7 @@ declare namespace JUHUU {
|
|
|
5839
5840
|
type Params = {
|
|
5840
5841
|
propertyId?: string;
|
|
5841
5842
|
userId?: string;
|
|
5843
|
+
text?: string;
|
|
5842
5844
|
};
|
|
5843
5845
|
type Options = {
|
|
5844
5846
|
limit?: number;
|
|
@@ -6763,6 +6765,83 @@ declare namespace JUHUU {
|
|
|
6763
6765
|
message: string;
|
|
6764
6766
|
};
|
|
6765
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
|
+
}
|
|
6766
6845
|
}
|
|
6767
6846
|
|
|
6768
|
-
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
|
@@ -11,7 +11,7 @@ type ProximityStrategy = {
|
|
|
11
11
|
type: "location";
|
|
12
12
|
radius: number | null;
|
|
13
13
|
};
|
|
14
|
-
type KitStatus = "setupComplete" | "waitingForSetup";
|
|
14
|
+
type KitStatus = "setupComplete" | "waitingForAssignmentToProperty" | "waitingForSetup";
|
|
15
15
|
type Platform = "ios" | "android" | "windows" | "macos" | "web";
|
|
16
16
|
type DeviceStatus = "running" | "sleeping" | "shutdown";
|
|
17
17
|
type ExtractType<T> = T extends {
|
|
@@ -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;
|
|
@@ -5215,7 +5216,7 @@ declare namespace JUHUU {
|
|
|
5215
5216
|
provider: "1nce" | null;
|
|
5216
5217
|
countryCode: CountryCode | null;
|
|
5217
5218
|
imei: string | null;
|
|
5218
|
-
propertyId: string;
|
|
5219
|
+
propertyId: string | null;
|
|
5219
5220
|
description: string | null;
|
|
5220
5221
|
name: string;
|
|
5221
5222
|
dataQuotaMax: number | null;
|
|
@@ -5839,6 +5840,7 @@ declare namespace JUHUU {
|
|
|
5839
5840
|
type Params = {
|
|
5840
5841
|
propertyId?: string;
|
|
5841
5842
|
userId?: string;
|
|
5843
|
+
text?: string;
|
|
5842
5844
|
};
|
|
5843
5845
|
type Options = {
|
|
5844
5846
|
limit?: number;
|
|
@@ -6763,6 +6765,83 @@ declare namespace JUHUU {
|
|
|
6763
6765
|
message: string;
|
|
6764
6766
|
};
|
|
6765
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
|
+
}
|
|
6766
6845
|
}
|
|
6767
6846
|
|
|
6768
|
-
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.js
CHANGED
|
@@ -4714,6 +4714,9 @@ var BenefitCardsService = class extends Service {
|
|
|
4714
4714
|
if (params?.userId !== void 0) {
|
|
4715
4715
|
queryArray.push("userId=" + params.userId);
|
|
4716
4716
|
}
|
|
4717
|
+
if (params?.text !== void 0) {
|
|
4718
|
+
queryArray.push("text=" + params.text);
|
|
4719
|
+
}
|
|
4717
4720
|
if (options?.limit !== void 0) {
|
|
4718
4721
|
queryArray.push("limit=" + options.limit);
|
|
4719
4722
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -4670,6 +4670,9 @@ var BenefitCardsService = class extends Service {
|
|
|
4670
4670
|
if (params?.userId !== void 0) {
|
|
4671
4671
|
queryArray.push("userId=" + params.userId);
|
|
4672
4672
|
}
|
|
4673
|
+
if (params?.text !== void 0) {
|
|
4674
|
+
queryArray.push("text=" + params.text);
|
|
4675
|
+
}
|
|
4673
4676
|
if (options?.limit !== void 0) {
|
|
4674
4677
|
queryArray.push("limit=" + options.limit);
|
|
4675
4678
|
}
|