@juhuu/sdk-ts 1.3.33 → 1.3.34
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 +199 -3
- package/dist/index.d.ts +199 -3
- package/dist/index.js +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -941,6 +941,7 @@ interface BenefitCardUpdateBlock extends BaseBlock {
|
|
|
941
941
|
reference: DataEdgeConnection;
|
|
942
942
|
text: DataEdgeConnection;
|
|
943
943
|
metadata: DataEdgeConnection;
|
|
944
|
+
invalidAt: DataEdgeConnection;
|
|
944
945
|
};
|
|
945
946
|
out: {
|
|
946
947
|
beforeBenefitCard: DataEdgeConnection;
|
|
@@ -954,6 +955,7 @@ interface BenefitCardUpdateBlock extends BaseBlock {
|
|
|
954
955
|
reference?: string | null;
|
|
955
956
|
text?: string | null;
|
|
956
957
|
metadata?: Record<string, any>;
|
|
958
|
+
invalidAt?: Date | null;
|
|
957
959
|
};
|
|
958
960
|
}
|
|
959
961
|
interface BenefitCardUpdateBlockInputs {
|
|
@@ -963,6 +965,7 @@ interface BenefitCardUpdateBlockInputs {
|
|
|
963
965
|
reference?: string | null;
|
|
964
966
|
text?: string | null;
|
|
965
967
|
metadata?: Record<string, any>;
|
|
968
|
+
invalidAt?: Date | null;
|
|
966
969
|
}
|
|
967
970
|
interface TextMatchBlock extends BaseBlock {
|
|
968
971
|
type: "text.match";
|
|
@@ -1755,8 +1758,199 @@ interface PaymentCreateBlockInputs {
|
|
|
1755
1758
|
salesTaxPercentage?: number | null;
|
|
1756
1759
|
postingRowArray?: PostingRow[] | null;
|
|
1757
1760
|
}
|
|
1758
|
-
|
|
1759
|
-
type
|
|
1761
|
+
interface TapkeyUnlockBlock extends BaseBlock {
|
|
1762
|
+
type: "tapkey.unlock";
|
|
1763
|
+
in: {
|
|
1764
|
+
deviceId: DataEdgeConnection;
|
|
1765
|
+
};
|
|
1766
|
+
out: {
|
|
1767
|
+
result: DataEdgeConnection;
|
|
1768
|
+
};
|
|
1769
|
+
data: {
|
|
1770
|
+
deviceId?: string;
|
|
1771
|
+
};
|
|
1772
|
+
}
|
|
1773
|
+
interface TapkeyUnlockBlockInputs {
|
|
1774
|
+
deviceId: string;
|
|
1775
|
+
}
|
|
1776
|
+
interface EmzUnlockBlock extends BaseBlock {
|
|
1777
|
+
type: "emz.unlock";
|
|
1778
|
+
in: {
|
|
1779
|
+
deviceId: DataEdgeConnection;
|
|
1780
|
+
};
|
|
1781
|
+
out: {
|
|
1782
|
+
result: DataEdgeConnection;
|
|
1783
|
+
};
|
|
1784
|
+
data: {
|
|
1785
|
+
deviceId?: string;
|
|
1786
|
+
};
|
|
1787
|
+
}
|
|
1788
|
+
interface EmzUnlockBlockInputs {
|
|
1789
|
+
deviceId: string;
|
|
1790
|
+
}
|
|
1791
|
+
interface UiAlertBlock extends BaseBlock {
|
|
1792
|
+
type: "ui.alert";
|
|
1793
|
+
in: {
|
|
1794
|
+
title: DataEdgeConnection;
|
|
1795
|
+
message: DataEdgeConnection;
|
|
1796
|
+
buttonArray: DataEdgeConnection;
|
|
1797
|
+
};
|
|
1798
|
+
out: {
|
|
1799
|
+
result: DataEdgeConnection;
|
|
1800
|
+
};
|
|
1801
|
+
data: {
|
|
1802
|
+
title?: string;
|
|
1803
|
+
message?: string;
|
|
1804
|
+
buttonArray?: string[];
|
|
1805
|
+
};
|
|
1806
|
+
}
|
|
1807
|
+
interface UiAlertBlockInputs {
|
|
1808
|
+
title: string;
|
|
1809
|
+
message: string;
|
|
1810
|
+
buttonArray: string[];
|
|
1811
|
+
}
|
|
1812
|
+
interface UiBrowserOpenBlock extends BaseBlock {
|
|
1813
|
+
type: "ui.browser.open";
|
|
1814
|
+
in: {
|
|
1815
|
+
url: DataEdgeConnection;
|
|
1816
|
+
};
|
|
1817
|
+
out: Record<string, never>;
|
|
1818
|
+
data: {
|
|
1819
|
+
url?: string;
|
|
1820
|
+
};
|
|
1821
|
+
}
|
|
1822
|
+
interface UiBrowserOpenBlockInputs {
|
|
1823
|
+
url: string;
|
|
1824
|
+
}
|
|
1825
|
+
interface UiPhoneOpenBlock extends BaseBlock {
|
|
1826
|
+
type: "ui.phone.open";
|
|
1827
|
+
in: {
|
|
1828
|
+
phone: DataEdgeConnection;
|
|
1829
|
+
};
|
|
1830
|
+
out: Record<string, never>;
|
|
1831
|
+
data: {
|
|
1832
|
+
phone?: string;
|
|
1833
|
+
};
|
|
1834
|
+
}
|
|
1835
|
+
interface UiPhoneOpenBlockInputs {
|
|
1836
|
+
phone: string;
|
|
1837
|
+
}
|
|
1838
|
+
interface NotificationCreateBlock extends BaseBlock {
|
|
1839
|
+
type: "notification.create";
|
|
1840
|
+
in: {
|
|
1841
|
+
userId: DataEdgeConnection;
|
|
1842
|
+
subject: DataEdgeConnection;
|
|
1843
|
+
message: DataEdgeConnection;
|
|
1844
|
+
};
|
|
1845
|
+
out: {
|
|
1846
|
+
notification: DataEdgeConnection;
|
|
1847
|
+
};
|
|
1848
|
+
data: {
|
|
1849
|
+
userId?: string;
|
|
1850
|
+
subject?: LocaleString;
|
|
1851
|
+
message?: LocaleString;
|
|
1852
|
+
};
|
|
1853
|
+
}
|
|
1854
|
+
interface NotificationCreateBlockInputs {
|
|
1855
|
+
userId: string;
|
|
1856
|
+
subject: LocaleString;
|
|
1857
|
+
message: LocaleString;
|
|
1858
|
+
}
|
|
1859
|
+
interface PaymentRetrieveBlock extends BaseBlock {
|
|
1860
|
+
type: "payment.retrieve";
|
|
1861
|
+
in: {
|
|
1862
|
+
paymentId: DataEdgeConnection;
|
|
1863
|
+
};
|
|
1864
|
+
out: {
|
|
1865
|
+
payment: DataEdgeConnection;
|
|
1866
|
+
};
|
|
1867
|
+
data: {
|
|
1868
|
+
paymentId?: string;
|
|
1869
|
+
};
|
|
1870
|
+
}
|
|
1871
|
+
interface PaymentRetrieveBlockInputs {
|
|
1872
|
+
paymentId: string;
|
|
1873
|
+
}
|
|
1874
|
+
interface PaymentListBlock extends BaseBlock {
|
|
1875
|
+
type: "payment.list";
|
|
1876
|
+
in: {
|
|
1877
|
+
userId: DataEdgeConnection;
|
|
1878
|
+
limit: DataEdgeConnection;
|
|
1879
|
+
skip: DataEdgeConnection;
|
|
1880
|
+
};
|
|
1881
|
+
out: {
|
|
1882
|
+
paymentArray: DataEdgeConnection;
|
|
1883
|
+
count: DataEdgeConnection;
|
|
1884
|
+
hasMore: DataEdgeConnection;
|
|
1885
|
+
};
|
|
1886
|
+
data: {
|
|
1887
|
+
userId?: string;
|
|
1888
|
+
limit?: number;
|
|
1889
|
+
skip?: number;
|
|
1890
|
+
};
|
|
1891
|
+
}
|
|
1892
|
+
interface PaymentListBlockInputs {
|
|
1893
|
+
userId?: string;
|
|
1894
|
+
limit?: number;
|
|
1895
|
+
skip?: number;
|
|
1896
|
+
}
|
|
1897
|
+
interface StartPaymentUpdateBlock extends BaseBlock {
|
|
1898
|
+
type: "start.payment.update";
|
|
1899
|
+
in: Record<string, never>;
|
|
1900
|
+
out: {
|
|
1901
|
+
before: DataEdgeConnection;
|
|
1902
|
+
after: DataEdgeConnection;
|
|
1903
|
+
changedFields: DataEdgeConnection;
|
|
1904
|
+
};
|
|
1905
|
+
}
|
|
1906
|
+
interface UserListBlock extends BaseBlock {
|
|
1907
|
+
type: "user.list";
|
|
1908
|
+
in: {
|
|
1909
|
+
limit: DataEdgeConnection;
|
|
1910
|
+
skip: DataEdgeConnection;
|
|
1911
|
+
};
|
|
1912
|
+
out: {
|
|
1913
|
+
userArray: DataEdgeConnection;
|
|
1914
|
+
count: DataEdgeConnection;
|
|
1915
|
+
hasMore: DataEdgeConnection;
|
|
1916
|
+
};
|
|
1917
|
+
data: {
|
|
1918
|
+
limit?: number;
|
|
1919
|
+
skip?: number;
|
|
1920
|
+
};
|
|
1921
|
+
}
|
|
1922
|
+
interface UserListBlockInputs {
|
|
1923
|
+
limit?: number;
|
|
1924
|
+
skip?: number;
|
|
1925
|
+
}
|
|
1926
|
+
interface SessionListBlock extends BaseBlock {
|
|
1927
|
+
type: "session.list";
|
|
1928
|
+
in: {
|
|
1929
|
+
userId: DataEdgeConnection;
|
|
1930
|
+
locationId: DataEdgeConnection;
|
|
1931
|
+
limit: DataEdgeConnection;
|
|
1932
|
+
skip: DataEdgeConnection;
|
|
1933
|
+
};
|
|
1934
|
+
out: {
|
|
1935
|
+
sessionArray: DataEdgeConnection;
|
|
1936
|
+
count: DataEdgeConnection;
|
|
1937
|
+
hasMore: DataEdgeConnection;
|
|
1938
|
+
};
|
|
1939
|
+
data: {
|
|
1940
|
+
userId?: string;
|
|
1941
|
+
locationId?: string;
|
|
1942
|
+
limit?: number;
|
|
1943
|
+
skip?: number;
|
|
1944
|
+
};
|
|
1945
|
+
}
|
|
1946
|
+
interface SessionListBlockInputs {
|
|
1947
|
+
userId?: string;
|
|
1948
|
+
locationId?: string;
|
|
1949
|
+
limit?: number;
|
|
1950
|
+
skip?: number;
|
|
1951
|
+
}
|
|
1952
|
+
type FlowBlock = StartCustomBlock | StartQuickActionLocationBlock | StartSessionUpdateBlock | StartLocationUpdateBlock | StartParameterUpdateBlock | StartCronBlock | StartMqttReceiveBlock | StartPaymentUpdateBlock | ConstNumberBlock | ConstTextBlock | ConstBooleanBlock | MathAddBlock | MathSubtractBlock | MathMultiplyBlock | MathDivideBlock | MapDestructureBlock | MapConstructBlock | ArrayLengthBlock | ArrayGetBlock | ParameterRetrieveBlock | PropertyRetrieveBlock | LocationRetrieveBlock | SessionRetrieveBlock | SessionCreateBlock | SessionListBlock | DeviceRetrieveBlock | UserRetrieveBlock | UserCreateBlock | UserListBlock | IncidentRetrieveBlock | BenefitCardRetrieveBlock | BenefitCardListBlock | BenefitCardCopyBlock | BenefitCardUpdateBlock | TextMatchBlock | TextTemplateBlock | ParameterUpdateBlock | DeviceUpdateBlock | LocationUpdateBlock | PropertyUpdateBlock | SessionTerminateBlock | SystemLogBlock | UiNavigateScreenBlock | IncidentCreateBlock | IfBlock | SwitchBlock | HttpPatchBlock | HttpGetBlock | HttpPostBlock | HttpDeleteBlock | HttpPutBlock | MqttSendBlock | Rs485SendBlock | Rs485BufferBlock | ModbusReadBlock | ModbusWriteBlock | FlowExecuteBlock | VariableSetBlock | VariableGetBlock | DelaySleepBlock | EndCustomBlock | PaymentCreateBlock | PaymentRetrieveBlock | PaymentListBlock | NotificationCreateBlock | TapkeyUnlockBlock | EmzUnlockBlock | UiAlertBlock | UiBrowserOpenBlock | UiPhoneOpenBlock;
|
|
1953
|
+
type FlowBlockInput = MathAddBlockInputs | MathSubtractBlockInputs | MathMultiplyBlockInputs | MathDivideBlockInputs | ParameterRetrieveBlockInputs | PropertyRetrieveBlockInputs | LocationRetrieveBlockInputs | SessionRetrieveBlockInputs | SessionCreateBlockInputs | SessionListBlockInputs | DeviceRetrieveBlockInputs | UserRetrieveBlockInputs | UserCreateBlockInputs | UserListBlockInputs | IncidentRetrieveBlockInputs | BenefitCardRetrieveBlockInputs | BenefitCardListBlockInputs | BenefitCardCopyBlockInputs | BenefitCardUpdateBlockInputs | TextMatchBlockInputs | TextTemplateBlockInputs | ParameterUpdateBlockInputs | DeviceUpdateBlockInputs | LocationUpdateBlockInputs | PropertyUpdateBlockInputs | SessionTerminateBlockInputs | SystemLogBlockInputs | UiNavigateScreenBlockInputs | IncidentCreateBlockInputs | HttpsPatchBlockInputs | HttpGetBlockInputs | HttpPostBlockInputs | HttpDeleteBlockInputs | HttpPutBlockInputs | MqttSendBlockInputs | Rs485SendBlockInputs | Rs485BufferBlockInputs | ModbusReadBlockInputs | ModbusWriteBlockInputs | FlowExecuteBlockInputs | MapDestructureBlockInputs | MapConstructBlockInputs | ArrayLengthBlockInputs | ArrayGetBlockInputs | VariableSetBlockInputs | VariableGetBlockInputs | DelaySleepBlockInputs | Record<string, unknown> | PaymentCreateBlockInputs | PaymentRetrieveBlockInputs | PaymentListBlockInputs | NotificationCreateBlockInputs | TapkeyUnlockBlockInputs | EmzUnlockBlockInputs | UiAlertBlockInputs | UiBrowserOpenBlockInputs | UiPhoneOpenBlockInputs;
|
|
1760
1954
|
interface FlowDataEdge {
|
|
1761
1955
|
id: string;
|
|
1762
1956
|
type: "data";
|
|
@@ -6482,6 +6676,7 @@ declare namespace JUHUU {
|
|
|
6482
6676
|
reference: string | null;
|
|
6483
6677
|
text: string | null;
|
|
6484
6678
|
metadata: Record<string, any>;
|
|
6679
|
+
invalidAt: Date | null;
|
|
6485
6680
|
};
|
|
6486
6681
|
namespace Create {
|
|
6487
6682
|
type Params = {
|
|
@@ -6534,6 +6729,7 @@ declare namespace JUHUU {
|
|
|
6534
6729
|
reference?: string | null;
|
|
6535
6730
|
text?: string | null;
|
|
6536
6731
|
metadata?: Record<string, any>;
|
|
6732
|
+
invalidAt?: Date | null;
|
|
6537
6733
|
};
|
|
6538
6734
|
type Options = JUHUU.RequestOptions;
|
|
6539
6735
|
type Response = {
|
|
@@ -7616,4 +7812,4 @@ declare namespace JUHUU {
|
|
|
7616
7812
|
}
|
|
7617
7813
|
}
|
|
7618
7814
|
|
|
7619
|
-
export { type AccessControlListElement, type AdditionalSubscriptionItem, type Address, type ApiKeyScope, type ApiKeyStatus, type AppStatus, type AppVersionStatus, type AppVersionType, type ApplicationIcon, type ArrayGetBlock, type ArrayGetBlockInputs, type ArrayLengthBlock, type ArrayLengthBlockInputs, type AuthMethodType, 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 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 ModbusFunctionCode, type ModbusReadBlock, type ModbusReadBlockInputs, type ModbusWriteBlock, type ModbusWriteBlockInputs, type ModbusWriteFunctionCode, type MqttSendBlock, type MqttSendBlockInputs, Offer, type OfferTime, type PanelDisplay, type ParamDefinition, type ParamType, type ParameterRetrieveBlock, type ParameterRetrieveBlockInputs, type ParameterUpdateBlock, type ParameterUpdateBlockInputs, type Party, type PaymentCreateBlock, type PaymentCreateBlockInputs, type PaymentMethod, type PaymentReason, type PaymentRefundReason, type PaymentRefundStatus, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type PhoneCountryCode, 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 Rs485BufferBlock, type Rs485BufferBlockInputs, type Rs485SendBlock, type Rs485SendBlockInputs, type Sector, type SessionCannotTerminateReason, type SessionCreateBlock, type SessionCreateBlockInputs, type SessionRetrieveBlock, type SessionRetrieveBlockInputs, type SessionSettings, type SessionStatus, type SessionTerminateBlock, type SessionTerminateBlockInputs, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type StartCronBlock, type StartCustomBlock, type StartLocationUpdateBlock, type StartMqttReceiveBlock, 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 TimePeriod, 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 };
|
|
7815
|
+
export { type AccessControlListElement, type AdditionalSubscriptionItem, type Address, type ApiKeyScope, type ApiKeyStatus, type AppStatus, type AppVersionStatus, type AppVersionType, type ApplicationIcon, type ArrayGetBlock, type ArrayGetBlockInputs, type ArrayLengthBlock, type ArrayLengthBlockInputs, type AuthMethodType, 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 EmzUnlockBlock, type EmzUnlockBlockInputs, 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 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 ModbusFunctionCode, type ModbusReadBlock, type ModbusReadBlockInputs, type ModbusWriteBlock, type ModbusWriteBlockInputs, type ModbusWriteFunctionCode, type MqttSendBlock, type MqttSendBlockInputs, type NotificationCreateBlock, type NotificationCreateBlockInputs, Offer, type OfferTime, type PanelDisplay, type ParamDefinition, type ParamType, type ParameterRetrieveBlock, type ParameterRetrieveBlockInputs, type ParameterUpdateBlock, type ParameterUpdateBlockInputs, type Party, type PaymentCreateBlock, type PaymentCreateBlockInputs, type PaymentListBlock, type PaymentListBlockInputs, type PaymentMethod, type PaymentReason, type PaymentRefundReason, type PaymentRefundStatus, type PaymentRetrieveBlock, type PaymentRetrieveBlockInputs, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type PhoneCountryCode, 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 Rs485BufferBlock, type Rs485BufferBlockInputs, type Rs485SendBlock, type Rs485SendBlockInputs, type Sector, type SessionCannotTerminateReason, type SessionCreateBlock, type SessionCreateBlockInputs, type SessionListBlock, type SessionListBlockInputs, type SessionRetrieveBlock, type SessionRetrieveBlockInputs, type SessionSettings, type SessionStatus, type SessionTerminateBlock, type SessionTerminateBlockInputs, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type StartCronBlock, type StartCustomBlock, type StartLocationUpdateBlock, type StartMqttReceiveBlock, type StartParameterUpdateBlock, type StartPaymentUpdateBlock, type StartQuickActionLocationBlock, type StartSessionUpdateBlock, type SwitchBlock, type SystemLogBlock, type SystemLogBlockInputs, type TapkeyUnlockBlock, type TapkeyUnlockBlockInputs, type TarifType, type TaxCode, type TextMatchBlock, type TextMatchBlockInputs, type TextTemplateBlock, type TextTemplateBlockInputs, type TimePeriod, type TimeZone, type UiAlertBlock, type UiAlertBlockInputs, type UiBrowserOpenBlock, type UiBrowserOpenBlockInputs, type UiNavigateScreenBlock, type UiNavigateScreenBlockInputs, type UiPhoneOpenBlock, type UiPhoneOpenBlockInputs, type Unit, type UserCreateBlock, type UserCreateBlockInputs, type UserGroup, type UserListBlock, type UserListBlockInputs, 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
|
@@ -941,6 +941,7 @@ interface BenefitCardUpdateBlock extends BaseBlock {
|
|
|
941
941
|
reference: DataEdgeConnection;
|
|
942
942
|
text: DataEdgeConnection;
|
|
943
943
|
metadata: DataEdgeConnection;
|
|
944
|
+
invalidAt: DataEdgeConnection;
|
|
944
945
|
};
|
|
945
946
|
out: {
|
|
946
947
|
beforeBenefitCard: DataEdgeConnection;
|
|
@@ -954,6 +955,7 @@ interface BenefitCardUpdateBlock extends BaseBlock {
|
|
|
954
955
|
reference?: string | null;
|
|
955
956
|
text?: string | null;
|
|
956
957
|
metadata?: Record<string, any>;
|
|
958
|
+
invalidAt?: Date | null;
|
|
957
959
|
};
|
|
958
960
|
}
|
|
959
961
|
interface BenefitCardUpdateBlockInputs {
|
|
@@ -963,6 +965,7 @@ interface BenefitCardUpdateBlockInputs {
|
|
|
963
965
|
reference?: string | null;
|
|
964
966
|
text?: string | null;
|
|
965
967
|
metadata?: Record<string, any>;
|
|
968
|
+
invalidAt?: Date | null;
|
|
966
969
|
}
|
|
967
970
|
interface TextMatchBlock extends BaseBlock {
|
|
968
971
|
type: "text.match";
|
|
@@ -1755,8 +1758,199 @@ interface PaymentCreateBlockInputs {
|
|
|
1755
1758
|
salesTaxPercentage?: number | null;
|
|
1756
1759
|
postingRowArray?: PostingRow[] | null;
|
|
1757
1760
|
}
|
|
1758
|
-
|
|
1759
|
-
type
|
|
1761
|
+
interface TapkeyUnlockBlock extends BaseBlock {
|
|
1762
|
+
type: "tapkey.unlock";
|
|
1763
|
+
in: {
|
|
1764
|
+
deviceId: DataEdgeConnection;
|
|
1765
|
+
};
|
|
1766
|
+
out: {
|
|
1767
|
+
result: DataEdgeConnection;
|
|
1768
|
+
};
|
|
1769
|
+
data: {
|
|
1770
|
+
deviceId?: string;
|
|
1771
|
+
};
|
|
1772
|
+
}
|
|
1773
|
+
interface TapkeyUnlockBlockInputs {
|
|
1774
|
+
deviceId: string;
|
|
1775
|
+
}
|
|
1776
|
+
interface EmzUnlockBlock extends BaseBlock {
|
|
1777
|
+
type: "emz.unlock";
|
|
1778
|
+
in: {
|
|
1779
|
+
deviceId: DataEdgeConnection;
|
|
1780
|
+
};
|
|
1781
|
+
out: {
|
|
1782
|
+
result: DataEdgeConnection;
|
|
1783
|
+
};
|
|
1784
|
+
data: {
|
|
1785
|
+
deviceId?: string;
|
|
1786
|
+
};
|
|
1787
|
+
}
|
|
1788
|
+
interface EmzUnlockBlockInputs {
|
|
1789
|
+
deviceId: string;
|
|
1790
|
+
}
|
|
1791
|
+
interface UiAlertBlock extends BaseBlock {
|
|
1792
|
+
type: "ui.alert";
|
|
1793
|
+
in: {
|
|
1794
|
+
title: DataEdgeConnection;
|
|
1795
|
+
message: DataEdgeConnection;
|
|
1796
|
+
buttonArray: DataEdgeConnection;
|
|
1797
|
+
};
|
|
1798
|
+
out: {
|
|
1799
|
+
result: DataEdgeConnection;
|
|
1800
|
+
};
|
|
1801
|
+
data: {
|
|
1802
|
+
title?: string;
|
|
1803
|
+
message?: string;
|
|
1804
|
+
buttonArray?: string[];
|
|
1805
|
+
};
|
|
1806
|
+
}
|
|
1807
|
+
interface UiAlertBlockInputs {
|
|
1808
|
+
title: string;
|
|
1809
|
+
message: string;
|
|
1810
|
+
buttonArray: string[];
|
|
1811
|
+
}
|
|
1812
|
+
interface UiBrowserOpenBlock extends BaseBlock {
|
|
1813
|
+
type: "ui.browser.open";
|
|
1814
|
+
in: {
|
|
1815
|
+
url: DataEdgeConnection;
|
|
1816
|
+
};
|
|
1817
|
+
out: Record<string, never>;
|
|
1818
|
+
data: {
|
|
1819
|
+
url?: string;
|
|
1820
|
+
};
|
|
1821
|
+
}
|
|
1822
|
+
interface UiBrowserOpenBlockInputs {
|
|
1823
|
+
url: string;
|
|
1824
|
+
}
|
|
1825
|
+
interface UiPhoneOpenBlock extends BaseBlock {
|
|
1826
|
+
type: "ui.phone.open";
|
|
1827
|
+
in: {
|
|
1828
|
+
phone: DataEdgeConnection;
|
|
1829
|
+
};
|
|
1830
|
+
out: Record<string, never>;
|
|
1831
|
+
data: {
|
|
1832
|
+
phone?: string;
|
|
1833
|
+
};
|
|
1834
|
+
}
|
|
1835
|
+
interface UiPhoneOpenBlockInputs {
|
|
1836
|
+
phone: string;
|
|
1837
|
+
}
|
|
1838
|
+
interface NotificationCreateBlock extends BaseBlock {
|
|
1839
|
+
type: "notification.create";
|
|
1840
|
+
in: {
|
|
1841
|
+
userId: DataEdgeConnection;
|
|
1842
|
+
subject: DataEdgeConnection;
|
|
1843
|
+
message: DataEdgeConnection;
|
|
1844
|
+
};
|
|
1845
|
+
out: {
|
|
1846
|
+
notification: DataEdgeConnection;
|
|
1847
|
+
};
|
|
1848
|
+
data: {
|
|
1849
|
+
userId?: string;
|
|
1850
|
+
subject?: LocaleString;
|
|
1851
|
+
message?: LocaleString;
|
|
1852
|
+
};
|
|
1853
|
+
}
|
|
1854
|
+
interface NotificationCreateBlockInputs {
|
|
1855
|
+
userId: string;
|
|
1856
|
+
subject: LocaleString;
|
|
1857
|
+
message: LocaleString;
|
|
1858
|
+
}
|
|
1859
|
+
interface PaymentRetrieveBlock extends BaseBlock {
|
|
1860
|
+
type: "payment.retrieve";
|
|
1861
|
+
in: {
|
|
1862
|
+
paymentId: DataEdgeConnection;
|
|
1863
|
+
};
|
|
1864
|
+
out: {
|
|
1865
|
+
payment: DataEdgeConnection;
|
|
1866
|
+
};
|
|
1867
|
+
data: {
|
|
1868
|
+
paymentId?: string;
|
|
1869
|
+
};
|
|
1870
|
+
}
|
|
1871
|
+
interface PaymentRetrieveBlockInputs {
|
|
1872
|
+
paymentId: string;
|
|
1873
|
+
}
|
|
1874
|
+
interface PaymentListBlock extends BaseBlock {
|
|
1875
|
+
type: "payment.list";
|
|
1876
|
+
in: {
|
|
1877
|
+
userId: DataEdgeConnection;
|
|
1878
|
+
limit: DataEdgeConnection;
|
|
1879
|
+
skip: DataEdgeConnection;
|
|
1880
|
+
};
|
|
1881
|
+
out: {
|
|
1882
|
+
paymentArray: DataEdgeConnection;
|
|
1883
|
+
count: DataEdgeConnection;
|
|
1884
|
+
hasMore: DataEdgeConnection;
|
|
1885
|
+
};
|
|
1886
|
+
data: {
|
|
1887
|
+
userId?: string;
|
|
1888
|
+
limit?: number;
|
|
1889
|
+
skip?: number;
|
|
1890
|
+
};
|
|
1891
|
+
}
|
|
1892
|
+
interface PaymentListBlockInputs {
|
|
1893
|
+
userId?: string;
|
|
1894
|
+
limit?: number;
|
|
1895
|
+
skip?: number;
|
|
1896
|
+
}
|
|
1897
|
+
interface StartPaymentUpdateBlock extends BaseBlock {
|
|
1898
|
+
type: "start.payment.update";
|
|
1899
|
+
in: Record<string, never>;
|
|
1900
|
+
out: {
|
|
1901
|
+
before: DataEdgeConnection;
|
|
1902
|
+
after: DataEdgeConnection;
|
|
1903
|
+
changedFields: DataEdgeConnection;
|
|
1904
|
+
};
|
|
1905
|
+
}
|
|
1906
|
+
interface UserListBlock extends BaseBlock {
|
|
1907
|
+
type: "user.list";
|
|
1908
|
+
in: {
|
|
1909
|
+
limit: DataEdgeConnection;
|
|
1910
|
+
skip: DataEdgeConnection;
|
|
1911
|
+
};
|
|
1912
|
+
out: {
|
|
1913
|
+
userArray: DataEdgeConnection;
|
|
1914
|
+
count: DataEdgeConnection;
|
|
1915
|
+
hasMore: DataEdgeConnection;
|
|
1916
|
+
};
|
|
1917
|
+
data: {
|
|
1918
|
+
limit?: number;
|
|
1919
|
+
skip?: number;
|
|
1920
|
+
};
|
|
1921
|
+
}
|
|
1922
|
+
interface UserListBlockInputs {
|
|
1923
|
+
limit?: number;
|
|
1924
|
+
skip?: number;
|
|
1925
|
+
}
|
|
1926
|
+
interface SessionListBlock extends BaseBlock {
|
|
1927
|
+
type: "session.list";
|
|
1928
|
+
in: {
|
|
1929
|
+
userId: DataEdgeConnection;
|
|
1930
|
+
locationId: DataEdgeConnection;
|
|
1931
|
+
limit: DataEdgeConnection;
|
|
1932
|
+
skip: DataEdgeConnection;
|
|
1933
|
+
};
|
|
1934
|
+
out: {
|
|
1935
|
+
sessionArray: DataEdgeConnection;
|
|
1936
|
+
count: DataEdgeConnection;
|
|
1937
|
+
hasMore: DataEdgeConnection;
|
|
1938
|
+
};
|
|
1939
|
+
data: {
|
|
1940
|
+
userId?: string;
|
|
1941
|
+
locationId?: string;
|
|
1942
|
+
limit?: number;
|
|
1943
|
+
skip?: number;
|
|
1944
|
+
};
|
|
1945
|
+
}
|
|
1946
|
+
interface SessionListBlockInputs {
|
|
1947
|
+
userId?: string;
|
|
1948
|
+
locationId?: string;
|
|
1949
|
+
limit?: number;
|
|
1950
|
+
skip?: number;
|
|
1951
|
+
}
|
|
1952
|
+
type FlowBlock = StartCustomBlock | StartQuickActionLocationBlock | StartSessionUpdateBlock | StartLocationUpdateBlock | StartParameterUpdateBlock | StartCronBlock | StartMqttReceiveBlock | StartPaymentUpdateBlock | ConstNumberBlock | ConstTextBlock | ConstBooleanBlock | MathAddBlock | MathSubtractBlock | MathMultiplyBlock | MathDivideBlock | MapDestructureBlock | MapConstructBlock | ArrayLengthBlock | ArrayGetBlock | ParameterRetrieveBlock | PropertyRetrieveBlock | LocationRetrieveBlock | SessionRetrieveBlock | SessionCreateBlock | SessionListBlock | DeviceRetrieveBlock | UserRetrieveBlock | UserCreateBlock | UserListBlock | IncidentRetrieveBlock | BenefitCardRetrieveBlock | BenefitCardListBlock | BenefitCardCopyBlock | BenefitCardUpdateBlock | TextMatchBlock | TextTemplateBlock | ParameterUpdateBlock | DeviceUpdateBlock | LocationUpdateBlock | PropertyUpdateBlock | SessionTerminateBlock | SystemLogBlock | UiNavigateScreenBlock | IncidentCreateBlock | IfBlock | SwitchBlock | HttpPatchBlock | HttpGetBlock | HttpPostBlock | HttpDeleteBlock | HttpPutBlock | MqttSendBlock | Rs485SendBlock | Rs485BufferBlock | ModbusReadBlock | ModbusWriteBlock | FlowExecuteBlock | VariableSetBlock | VariableGetBlock | DelaySleepBlock | EndCustomBlock | PaymentCreateBlock | PaymentRetrieveBlock | PaymentListBlock | NotificationCreateBlock | TapkeyUnlockBlock | EmzUnlockBlock | UiAlertBlock | UiBrowserOpenBlock | UiPhoneOpenBlock;
|
|
1953
|
+
type FlowBlockInput = MathAddBlockInputs | MathSubtractBlockInputs | MathMultiplyBlockInputs | MathDivideBlockInputs | ParameterRetrieveBlockInputs | PropertyRetrieveBlockInputs | LocationRetrieveBlockInputs | SessionRetrieveBlockInputs | SessionCreateBlockInputs | SessionListBlockInputs | DeviceRetrieveBlockInputs | UserRetrieveBlockInputs | UserCreateBlockInputs | UserListBlockInputs | IncidentRetrieveBlockInputs | BenefitCardRetrieveBlockInputs | BenefitCardListBlockInputs | BenefitCardCopyBlockInputs | BenefitCardUpdateBlockInputs | TextMatchBlockInputs | TextTemplateBlockInputs | ParameterUpdateBlockInputs | DeviceUpdateBlockInputs | LocationUpdateBlockInputs | PropertyUpdateBlockInputs | SessionTerminateBlockInputs | SystemLogBlockInputs | UiNavigateScreenBlockInputs | IncidentCreateBlockInputs | HttpsPatchBlockInputs | HttpGetBlockInputs | HttpPostBlockInputs | HttpDeleteBlockInputs | HttpPutBlockInputs | MqttSendBlockInputs | Rs485SendBlockInputs | Rs485BufferBlockInputs | ModbusReadBlockInputs | ModbusWriteBlockInputs | FlowExecuteBlockInputs | MapDestructureBlockInputs | MapConstructBlockInputs | ArrayLengthBlockInputs | ArrayGetBlockInputs | VariableSetBlockInputs | VariableGetBlockInputs | DelaySleepBlockInputs | Record<string, unknown> | PaymentCreateBlockInputs | PaymentRetrieveBlockInputs | PaymentListBlockInputs | NotificationCreateBlockInputs | TapkeyUnlockBlockInputs | EmzUnlockBlockInputs | UiAlertBlockInputs | UiBrowserOpenBlockInputs | UiPhoneOpenBlockInputs;
|
|
1760
1954
|
interface FlowDataEdge {
|
|
1761
1955
|
id: string;
|
|
1762
1956
|
type: "data";
|
|
@@ -6482,6 +6676,7 @@ declare namespace JUHUU {
|
|
|
6482
6676
|
reference: string | null;
|
|
6483
6677
|
text: string | null;
|
|
6484
6678
|
metadata: Record<string, any>;
|
|
6679
|
+
invalidAt: Date | null;
|
|
6485
6680
|
};
|
|
6486
6681
|
namespace Create {
|
|
6487
6682
|
type Params = {
|
|
@@ -6534,6 +6729,7 @@ declare namespace JUHUU {
|
|
|
6534
6729
|
reference?: string | null;
|
|
6535
6730
|
text?: string | null;
|
|
6536
6731
|
metadata?: Record<string, any>;
|
|
6732
|
+
invalidAt?: Date | null;
|
|
6537
6733
|
};
|
|
6538
6734
|
type Options = JUHUU.RequestOptions;
|
|
6539
6735
|
type Response = {
|
|
@@ -7616,4 +7812,4 @@ declare namespace JUHUU {
|
|
|
7616
7812
|
}
|
|
7617
7813
|
}
|
|
7618
7814
|
|
|
7619
|
-
export { type AccessControlListElement, type AdditionalSubscriptionItem, type Address, type ApiKeyScope, type ApiKeyStatus, type AppStatus, type AppVersionStatus, type AppVersionType, type ApplicationIcon, type ArrayGetBlock, type ArrayGetBlockInputs, type ArrayLengthBlock, type ArrayLengthBlockInputs, type AuthMethodType, 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 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 ModbusFunctionCode, type ModbusReadBlock, type ModbusReadBlockInputs, type ModbusWriteBlock, type ModbusWriteBlockInputs, type ModbusWriteFunctionCode, type MqttSendBlock, type MqttSendBlockInputs, Offer, type OfferTime, type PanelDisplay, type ParamDefinition, type ParamType, type ParameterRetrieveBlock, type ParameterRetrieveBlockInputs, type ParameterUpdateBlock, type ParameterUpdateBlockInputs, type Party, type PaymentCreateBlock, type PaymentCreateBlockInputs, type PaymentMethod, type PaymentReason, type PaymentRefundReason, type PaymentRefundStatus, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type PhoneCountryCode, 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 Rs485BufferBlock, type Rs485BufferBlockInputs, type Rs485SendBlock, type Rs485SendBlockInputs, type Sector, type SessionCannotTerminateReason, type SessionCreateBlock, type SessionCreateBlockInputs, type SessionRetrieveBlock, type SessionRetrieveBlockInputs, type SessionSettings, type SessionStatus, type SessionTerminateBlock, type SessionTerminateBlockInputs, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type StartCronBlock, type StartCustomBlock, type StartLocationUpdateBlock, type StartMqttReceiveBlock, 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 TimePeriod, 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 };
|
|
7815
|
+
export { type AccessControlListElement, type AdditionalSubscriptionItem, type Address, type ApiKeyScope, type ApiKeyStatus, type AppStatus, type AppVersionStatus, type AppVersionType, type ApplicationIcon, type ArrayGetBlock, type ArrayGetBlockInputs, type ArrayLengthBlock, type ArrayLengthBlockInputs, type AuthMethodType, 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 EmzUnlockBlock, type EmzUnlockBlockInputs, 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 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 ModbusFunctionCode, type ModbusReadBlock, type ModbusReadBlockInputs, type ModbusWriteBlock, type ModbusWriteBlockInputs, type ModbusWriteFunctionCode, type MqttSendBlock, type MqttSendBlockInputs, type NotificationCreateBlock, type NotificationCreateBlockInputs, Offer, type OfferTime, type PanelDisplay, type ParamDefinition, type ParamType, type ParameterRetrieveBlock, type ParameterRetrieveBlockInputs, type ParameterUpdateBlock, type ParameterUpdateBlockInputs, type Party, type PaymentCreateBlock, type PaymentCreateBlockInputs, type PaymentListBlock, type PaymentListBlockInputs, type PaymentMethod, type PaymentReason, type PaymentRefundReason, type PaymentRefundStatus, type PaymentRetrieveBlock, type PaymentRetrieveBlockInputs, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type PhoneCountryCode, 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 Rs485BufferBlock, type Rs485BufferBlockInputs, type Rs485SendBlock, type Rs485SendBlockInputs, type Sector, type SessionCannotTerminateReason, type SessionCreateBlock, type SessionCreateBlockInputs, type SessionListBlock, type SessionListBlockInputs, type SessionRetrieveBlock, type SessionRetrieveBlockInputs, type SessionSettings, type SessionStatus, type SessionTerminateBlock, type SessionTerminateBlockInputs, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type StartCronBlock, type StartCustomBlock, type StartLocationUpdateBlock, type StartMqttReceiveBlock, type StartParameterUpdateBlock, type StartPaymentUpdateBlock, type StartQuickActionLocationBlock, type StartSessionUpdateBlock, type SwitchBlock, type SystemLogBlock, type SystemLogBlockInputs, type TapkeyUnlockBlock, type TapkeyUnlockBlockInputs, type TarifType, type TaxCode, type TextMatchBlock, type TextMatchBlockInputs, type TextTemplateBlock, type TextTemplateBlockInputs, type TimePeriod, type TimeZone, type UiAlertBlock, type UiAlertBlockInputs, type UiBrowserOpenBlock, type UiBrowserOpenBlockInputs, type UiNavigateScreenBlock, type UiNavigateScreenBlockInputs, type UiPhoneOpenBlock, type UiPhoneOpenBlockInputs, type Unit, type UserCreateBlock, type UserCreateBlockInputs, type UserGroup, type UserListBlock, type UserListBlockInputs, 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
|
@@ -5201,7 +5201,8 @@ var BenefitCardsService = class extends Service {
|
|
|
5201
5201
|
userId: params.userId,
|
|
5202
5202
|
reference: params.reference,
|
|
5203
5203
|
text: params.text,
|
|
5204
|
-
metadata: params.metadata
|
|
5204
|
+
metadata: params.metadata,
|
|
5205
|
+
invalidAt: params.invalidAt
|
|
5205
5206
|
},
|
|
5206
5207
|
authenticationNotOptional: true
|
|
5207
5208
|
},
|
package/dist/index.mjs
CHANGED
|
@@ -5157,7 +5157,8 @@ var BenefitCardsService = class extends Service {
|
|
|
5157
5157
|
userId: params.userId,
|
|
5158
5158
|
reference: params.reference,
|
|
5159
5159
|
text: params.text,
|
|
5160
|
-
metadata: params.metadata
|
|
5160
|
+
metadata: params.metadata,
|
|
5161
|
+
invalidAt: params.invalidAt
|
|
5161
5162
|
},
|
|
5162
5163
|
authenticationNotOptional: true
|
|
5163
5164
|
},
|