@juhuu/sdk-ts 1.3.33 → 1.3.35
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 +208 -4
- package/dist/index.d.ts +208 -4
- package/dist/index.js +5 -3
- package/dist/index.mjs +5 -3
- 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";
|
|
@@ -1730,6 +1733,9 @@ interface PaymentCreateBlock extends BaseBlock {
|
|
|
1730
1733
|
isOffSession: DataEdgeConnection;
|
|
1731
1734
|
salesTaxPercentage: DataEdgeConnection;
|
|
1732
1735
|
postingRowArray: DataEdgeConnection;
|
|
1736
|
+
confirmationDeadlineAt: DataEdgeConnection;
|
|
1737
|
+
defaultPaymentMethodConfigurationId: DataEdgeConnection;
|
|
1738
|
+
delayedPaymentMethodConfigurationId: DataEdgeConnection;
|
|
1733
1739
|
};
|
|
1734
1740
|
out: {
|
|
1735
1741
|
payment: DataEdgeConnection;
|
|
@@ -1743,6 +1749,9 @@ interface PaymentCreateBlock extends BaseBlock {
|
|
|
1743
1749
|
isOffSession?: boolean | null;
|
|
1744
1750
|
salesTaxPercentage?: number | null;
|
|
1745
1751
|
postingRowArray?: PostingRow[] | null;
|
|
1752
|
+
confirmationDeadlineAt?: Date | null;
|
|
1753
|
+
defaultPaymentMethodConfigurationId?: string | null;
|
|
1754
|
+
delayedPaymentMethodConfigurationId?: string | null;
|
|
1746
1755
|
};
|
|
1747
1756
|
}
|
|
1748
1757
|
interface PaymentCreateBlockInputs {
|
|
@@ -1755,8 +1764,199 @@ interface PaymentCreateBlockInputs {
|
|
|
1755
1764
|
salesTaxPercentage?: number | null;
|
|
1756
1765
|
postingRowArray?: PostingRow[] | null;
|
|
1757
1766
|
}
|
|
1758
|
-
|
|
1759
|
-
type
|
|
1767
|
+
interface TapkeyUnlockBlock extends BaseBlock {
|
|
1768
|
+
type: "tapkey.unlock";
|
|
1769
|
+
in: {
|
|
1770
|
+
deviceId: DataEdgeConnection;
|
|
1771
|
+
};
|
|
1772
|
+
out: {
|
|
1773
|
+
result: DataEdgeConnection;
|
|
1774
|
+
};
|
|
1775
|
+
data: {
|
|
1776
|
+
deviceId?: string;
|
|
1777
|
+
};
|
|
1778
|
+
}
|
|
1779
|
+
interface TapkeyUnlockBlockInputs {
|
|
1780
|
+
deviceId: string;
|
|
1781
|
+
}
|
|
1782
|
+
interface EmzUnlockBlock extends BaseBlock {
|
|
1783
|
+
type: "emz.unlock";
|
|
1784
|
+
in: {
|
|
1785
|
+
deviceId: DataEdgeConnection;
|
|
1786
|
+
};
|
|
1787
|
+
out: {
|
|
1788
|
+
result: DataEdgeConnection;
|
|
1789
|
+
};
|
|
1790
|
+
data: {
|
|
1791
|
+
deviceId?: string;
|
|
1792
|
+
};
|
|
1793
|
+
}
|
|
1794
|
+
interface EmzUnlockBlockInputs {
|
|
1795
|
+
deviceId: string;
|
|
1796
|
+
}
|
|
1797
|
+
interface UiAlertBlock extends BaseBlock {
|
|
1798
|
+
type: "ui.alert";
|
|
1799
|
+
in: {
|
|
1800
|
+
title: DataEdgeConnection;
|
|
1801
|
+
message: DataEdgeConnection;
|
|
1802
|
+
buttonArray: DataEdgeConnection;
|
|
1803
|
+
};
|
|
1804
|
+
out: {
|
|
1805
|
+
result: DataEdgeConnection;
|
|
1806
|
+
};
|
|
1807
|
+
data: {
|
|
1808
|
+
title?: string;
|
|
1809
|
+
message?: string;
|
|
1810
|
+
buttonArray?: string[];
|
|
1811
|
+
};
|
|
1812
|
+
}
|
|
1813
|
+
interface UiAlertBlockInputs {
|
|
1814
|
+
title: string;
|
|
1815
|
+
message: string;
|
|
1816
|
+
buttonArray: string[];
|
|
1817
|
+
}
|
|
1818
|
+
interface UiBrowserOpenBlock extends BaseBlock {
|
|
1819
|
+
type: "ui.browser.open";
|
|
1820
|
+
in: {
|
|
1821
|
+
url: DataEdgeConnection;
|
|
1822
|
+
};
|
|
1823
|
+
out: Record<string, never>;
|
|
1824
|
+
data: {
|
|
1825
|
+
url?: string;
|
|
1826
|
+
};
|
|
1827
|
+
}
|
|
1828
|
+
interface UiBrowserOpenBlockInputs {
|
|
1829
|
+
url: string;
|
|
1830
|
+
}
|
|
1831
|
+
interface UiPhoneOpenBlock extends BaseBlock {
|
|
1832
|
+
type: "ui.phone.open";
|
|
1833
|
+
in: {
|
|
1834
|
+
phone: DataEdgeConnection;
|
|
1835
|
+
};
|
|
1836
|
+
out: Record<string, never>;
|
|
1837
|
+
data: {
|
|
1838
|
+
phone?: string;
|
|
1839
|
+
};
|
|
1840
|
+
}
|
|
1841
|
+
interface UiPhoneOpenBlockInputs {
|
|
1842
|
+
phone: string;
|
|
1843
|
+
}
|
|
1844
|
+
interface NotificationCreateBlock extends BaseBlock {
|
|
1845
|
+
type: "notification.create";
|
|
1846
|
+
in: {
|
|
1847
|
+
userId: DataEdgeConnection;
|
|
1848
|
+
subject: DataEdgeConnection;
|
|
1849
|
+
message: DataEdgeConnection;
|
|
1850
|
+
};
|
|
1851
|
+
out: {
|
|
1852
|
+
notification: DataEdgeConnection;
|
|
1853
|
+
};
|
|
1854
|
+
data: {
|
|
1855
|
+
userId?: string;
|
|
1856
|
+
subject?: LocaleString;
|
|
1857
|
+
message?: LocaleString;
|
|
1858
|
+
};
|
|
1859
|
+
}
|
|
1860
|
+
interface NotificationCreateBlockInputs {
|
|
1861
|
+
userId: string;
|
|
1862
|
+
subject: LocaleString;
|
|
1863
|
+
message: LocaleString;
|
|
1864
|
+
}
|
|
1865
|
+
interface PaymentRetrieveBlock extends BaseBlock {
|
|
1866
|
+
type: "payment.retrieve";
|
|
1867
|
+
in: {
|
|
1868
|
+
paymentId: DataEdgeConnection;
|
|
1869
|
+
};
|
|
1870
|
+
out: {
|
|
1871
|
+
payment: DataEdgeConnection;
|
|
1872
|
+
};
|
|
1873
|
+
data: {
|
|
1874
|
+
paymentId?: string;
|
|
1875
|
+
};
|
|
1876
|
+
}
|
|
1877
|
+
interface PaymentRetrieveBlockInputs {
|
|
1878
|
+
paymentId: string;
|
|
1879
|
+
}
|
|
1880
|
+
interface PaymentListBlock extends BaseBlock {
|
|
1881
|
+
type: "payment.list";
|
|
1882
|
+
in: {
|
|
1883
|
+
userId: DataEdgeConnection;
|
|
1884
|
+
limit: DataEdgeConnection;
|
|
1885
|
+
skip: DataEdgeConnection;
|
|
1886
|
+
};
|
|
1887
|
+
out: {
|
|
1888
|
+
paymentArray: DataEdgeConnection;
|
|
1889
|
+
count: DataEdgeConnection;
|
|
1890
|
+
hasMore: DataEdgeConnection;
|
|
1891
|
+
};
|
|
1892
|
+
data: {
|
|
1893
|
+
userId?: string;
|
|
1894
|
+
limit?: number;
|
|
1895
|
+
skip?: number;
|
|
1896
|
+
};
|
|
1897
|
+
}
|
|
1898
|
+
interface PaymentListBlockInputs {
|
|
1899
|
+
userId?: string;
|
|
1900
|
+
limit?: number;
|
|
1901
|
+
skip?: number;
|
|
1902
|
+
}
|
|
1903
|
+
interface StartPaymentUpdateBlock extends BaseBlock {
|
|
1904
|
+
type: "start.payment.update";
|
|
1905
|
+
in: Record<string, never>;
|
|
1906
|
+
out: {
|
|
1907
|
+
before: DataEdgeConnection;
|
|
1908
|
+
after: DataEdgeConnection;
|
|
1909
|
+
changedFields: DataEdgeConnection;
|
|
1910
|
+
};
|
|
1911
|
+
}
|
|
1912
|
+
interface UserListBlock extends BaseBlock {
|
|
1913
|
+
type: "user.list";
|
|
1914
|
+
in: {
|
|
1915
|
+
limit: DataEdgeConnection;
|
|
1916
|
+
skip: DataEdgeConnection;
|
|
1917
|
+
};
|
|
1918
|
+
out: {
|
|
1919
|
+
userArray: DataEdgeConnection;
|
|
1920
|
+
count: DataEdgeConnection;
|
|
1921
|
+
hasMore: DataEdgeConnection;
|
|
1922
|
+
};
|
|
1923
|
+
data: {
|
|
1924
|
+
limit?: number;
|
|
1925
|
+
skip?: number;
|
|
1926
|
+
};
|
|
1927
|
+
}
|
|
1928
|
+
interface UserListBlockInputs {
|
|
1929
|
+
limit?: number;
|
|
1930
|
+
skip?: number;
|
|
1931
|
+
}
|
|
1932
|
+
interface SessionListBlock extends BaseBlock {
|
|
1933
|
+
type: "session.list";
|
|
1934
|
+
in: {
|
|
1935
|
+
userId: DataEdgeConnection;
|
|
1936
|
+
locationId: DataEdgeConnection;
|
|
1937
|
+
limit: DataEdgeConnection;
|
|
1938
|
+
skip: DataEdgeConnection;
|
|
1939
|
+
};
|
|
1940
|
+
out: {
|
|
1941
|
+
sessionArray: DataEdgeConnection;
|
|
1942
|
+
count: DataEdgeConnection;
|
|
1943
|
+
hasMore: DataEdgeConnection;
|
|
1944
|
+
};
|
|
1945
|
+
data: {
|
|
1946
|
+
userId?: string;
|
|
1947
|
+
locationId?: string;
|
|
1948
|
+
limit?: number;
|
|
1949
|
+
skip?: number;
|
|
1950
|
+
};
|
|
1951
|
+
}
|
|
1952
|
+
interface SessionListBlockInputs {
|
|
1953
|
+
userId?: string;
|
|
1954
|
+
locationId?: string;
|
|
1955
|
+
limit?: number;
|
|
1956
|
+
skip?: number;
|
|
1957
|
+
}
|
|
1958
|
+
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;
|
|
1959
|
+
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
1960
|
interface FlowDataEdge {
|
|
1761
1961
|
id: string;
|
|
1762
1962
|
type: "data";
|
|
@@ -3955,6 +4155,7 @@ declare namespace JUHUU {
|
|
|
3955
4155
|
longDescription: LocaleString | null;
|
|
3956
4156
|
secondsToPay: number;
|
|
3957
4157
|
defaultPaymentMethodConfigurationId: string;
|
|
4158
|
+
delayedPaymentMethodConfigurationId: string;
|
|
3958
4159
|
maximumScheduledReadyAtSeconds: number;
|
|
3959
4160
|
};
|
|
3960
4161
|
namespace Create {
|
|
@@ -4459,8 +4660,9 @@ declare namespace JUHUU {
|
|
|
4459
4660
|
salesTaxPercentage: number;
|
|
4460
4661
|
userId: string;
|
|
4461
4662
|
postingRowArray: PostingRow[];
|
|
4462
|
-
|
|
4663
|
+
confirmationDeadlineAt: Date;
|
|
4463
4664
|
defaultPaymentMethodConfigurationId?: string;
|
|
4665
|
+
delayedPaymentMethodConfigurationId?: string;
|
|
4464
4666
|
};
|
|
4465
4667
|
type Options = JUHUU.RequestOptions;
|
|
4466
4668
|
type Response = {
|
|
@@ -6482,6 +6684,7 @@ declare namespace JUHUU {
|
|
|
6482
6684
|
reference: string | null;
|
|
6483
6685
|
text: string | null;
|
|
6484
6686
|
metadata: Record<string, any>;
|
|
6687
|
+
invalidAt: Date | null;
|
|
6485
6688
|
};
|
|
6486
6689
|
namespace Create {
|
|
6487
6690
|
type Params = {
|
|
@@ -6534,6 +6737,7 @@ declare namespace JUHUU {
|
|
|
6534
6737
|
reference?: string | null;
|
|
6535
6738
|
text?: string | null;
|
|
6536
6739
|
metadata?: Record<string, any>;
|
|
6740
|
+
invalidAt?: Date | null;
|
|
6537
6741
|
};
|
|
6538
6742
|
type Options = JUHUU.RequestOptions;
|
|
6539
6743
|
type Response = {
|
|
@@ -7616,4 +7820,4 @@ declare namespace JUHUU {
|
|
|
7616
7820
|
}
|
|
7617
7821
|
}
|
|
7618
7822
|
|
|
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 };
|
|
7823
|
+
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";
|
|
@@ -1730,6 +1733,9 @@ interface PaymentCreateBlock extends BaseBlock {
|
|
|
1730
1733
|
isOffSession: DataEdgeConnection;
|
|
1731
1734
|
salesTaxPercentage: DataEdgeConnection;
|
|
1732
1735
|
postingRowArray: DataEdgeConnection;
|
|
1736
|
+
confirmationDeadlineAt: DataEdgeConnection;
|
|
1737
|
+
defaultPaymentMethodConfigurationId: DataEdgeConnection;
|
|
1738
|
+
delayedPaymentMethodConfigurationId: DataEdgeConnection;
|
|
1733
1739
|
};
|
|
1734
1740
|
out: {
|
|
1735
1741
|
payment: DataEdgeConnection;
|
|
@@ -1743,6 +1749,9 @@ interface PaymentCreateBlock extends BaseBlock {
|
|
|
1743
1749
|
isOffSession?: boolean | null;
|
|
1744
1750
|
salesTaxPercentage?: number | null;
|
|
1745
1751
|
postingRowArray?: PostingRow[] | null;
|
|
1752
|
+
confirmationDeadlineAt?: Date | null;
|
|
1753
|
+
defaultPaymentMethodConfigurationId?: string | null;
|
|
1754
|
+
delayedPaymentMethodConfigurationId?: string | null;
|
|
1746
1755
|
};
|
|
1747
1756
|
}
|
|
1748
1757
|
interface PaymentCreateBlockInputs {
|
|
@@ -1755,8 +1764,199 @@ interface PaymentCreateBlockInputs {
|
|
|
1755
1764
|
salesTaxPercentage?: number | null;
|
|
1756
1765
|
postingRowArray?: PostingRow[] | null;
|
|
1757
1766
|
}
|
|
1758
|
-
|
|
1759
|
-
type
|
|
1767
|
+
interface TapkeyUnlockBlock extends BaseBlock {
|
|
1768
|
+
type: "tapkey.unlock";
|
|
1769
|
+
in: {
|
|
1770
|
+
deviceId: DataEdgeConnection;
|
|
1771
|
+
};
|
|
1772
|
+
out: {
|
|
1773
|
+
result: DataEdgeConnection;
|
|
1774
|
+
};
|
|
1775
|
+
data: {
|
|
1776
|
+
deviceId?: string;
|
|
1777
|
+
};
|
|
1778
|
+
}
|
|
1779
|
+
interface TapkeyUnlockBlockInputs {
|
|
1780
|
+
deviceId: string;
|
|
1781
|
+
}
|
|
1782
|
+
interface EmzUnlockBlock extends BaseBlock {
|
|
1783
|
+
type: "emz.unlock";
|
|
1784
|
+
in: {
|
|
1785
|
+
deviceId: DataEdgeConnection;
|
|
1786
|
+
};
|
|
1787
|
+
out: {
|
|
1788
|
+
result: DataEdgeConnection;
|
|
1789
|
+
};
|
|
1790
|
+
data: {
|
|
1791
|
+
deviceId?: string;
|
|
1792
|
+
};
|
|
1793
|
+
}
|
|
1794
|
+
interface EmzUnlockBlockInputs {
|
|
1795
|
+
deviceId: string;
|
|
1796
|
+
}
|
|
1797
|
+
interface UiAlertBlock extends BaseBlock {
|
|
1798
|
+
type: "ui.alert";
|
|
1799
|
+
in: {
|
|
1800
|
+
title: DataEdgeConnection;
|
|
1801
|
+
message: DataEdgeConnection;
|
|
1802
|
+
buttonArray: DataEdgeConnection;
|
|
1803
|
+
};
|
|
1804
|
+
out: {
|
|
1805
|
+
result: DataEdgeConnection;
|
|
1806
|
+
};
|
|
1807
|
+
data: {
|
|
1808
|
+
title?: string;
|
|
1809
|
+
message?: string;
|
|
1810
|
+
buttonArray?: string[];
|
|
1811
|
+
};
|
|
1812
|
+
}
|
|
1813
|
+
interface UiAlertBlockInputs {
|
|
1814
|
+
title: string;
|
|
1815
|
+
message: string;
|
|
1816
|
+
buttonArray: string[];
|
|
1817
|
+
}
|
|
1818
|
+
interface UiBrowserOpenBlock extends BaseBlock {
|
|
1819
|
+
type: "ui.browser.open";
|
|
1820
|
+
in: {
|
|
1821
|
+
url: DataEdgeConnection;
|
|
1822
|
+
};
|
|
1823
|
+
out: Record<string, never>;
|
|
1824
|
+
data: {
|
|
1825
|
+
url?: string;
|
|
1826
|
+
};
|
|
1827
|
+
}
|
|
1828
|
+
interface UiBrowserOpenBlockInputs {
|
|
1829
|
+
url: string;
|
|
1830
|
+
}
|
|
1831
|
+
interface UiPhoneOpenBlock extends BaseBlock {
|
|
1832
|
+
type: "ui.phone.open";
|
|
1833
|
+
in: {
|
|
1834
|
+
phone: DataEdgeConnection;
|
|
1835
|
+
};
|
|
1836
|
+
out: Record<string, never>;
|
|
1837
|
+
data: {
|
|
1838
|
+
phone?: string;
|
|
1839
|
+
};
|
|
1840
|
+
}
|
|
1841
|
+
interface UiPhoneOpenBlockInputs {
|
|
1842
|
+
phone: string;
|
|
1843
|
+
}
|
|
1844
|
+
interface NotificationCreateBlock extends BaseBlock {
|
|
1845
|
+
type: "notification.create";
|
|
1846
|
+
in: {
|
|
1847
|
+
userId: DataEdgeConnection;
|
|
1848
|
+
subject: DataEdgeConnection;
|
|
1849
|
+
message: DataEdgeConnection;
|
|
1850
|
+
};
|
|
1851
|
+
out: {
|
|
1852
|
+
notification: DataEdgeConnection;
|
|
1853
|
+
};
|
|
1854
|
+
data: {
|
|
1855
|
+
userId?: string;
|
|
1856
|
+
subject?: LocaleString;
|
|
1857
|
+
message?: LocaleString;
|
|
1858
|
+
};
|
|
1859
|
+
}
|
|
1860
|
+
interface NotificationCreateBlockInputs {
|
|
1861
|
+
userId: string;
|
|
1862
|
+
subject: LocaleString;
|
|
1863
|
+
message: LocaleString;
|
|
1864
|
+
}
|
|
1865
|
+
interface PaymentRetrieveBlock extends BaseBlock {
|
|
1866
|
+
type: "payment.retrieve";
|
|
1867
|
+
in: {
|
|
1868
|
+
paymentId: DataEdgeConnection;
|
|
1869
|
+
};
|
|
1870
|
+
out: {
|
|
1871
|
+
payment: DataEdgeConnection;
|
|
1872
|
+
};
|
|
1873
|
+
data: {
|
|
1874
|
+
paymentId?: string;
|
|
1875
|
+
};
|
|
1876
|
+
}
|
|
1877
|
+
interface PaymentRetrieveBlockInputs {
|
|
1878
|
+
paymentId: string;
|
|
1879
|
+
}
|
|
1880
|
+
interface PaymentListBlock extends BaseBlock {
|
|
1881
|
+
type: "payment.list";
|
|
1882
|
+
in: {
|
|
1883
|
+
userId: DataEdgeConnection;
|
|
1884
|
+
limit: DataEdgeConnection;
|
|
1885
|
+
skip: DataEdgeConnection;
|
|
1886
|
+
};
|
|
1887
|
+
out: {
|
|
1888
|
+
paymentArray: DataEdgeConnection;
|
|
1889
|
+
count: DataEdgeConnection;
|
|
1890
|
+
hasMore: DataEdgeConnection;
|
|
1891
|
+
};
|
|
1892
|
+
data: {
|
|
1893
|
+
userId?: string;
|
|
1894
|
+
limit?: number;
|
|
1895
|
+
skip?: number;
|
|
1896
|
+
};
|
|
1897
|
+
}
|
|
1898
|
+
interface PaymentListBlockInputs {
|
|
1899
|
+
userId?: string;
|
|
1900
|
+
limit?: number;
|
|
1901
|
+
skip?: number;
|
|
1902
|
+
}
|
|
1903
|
+
interface StartPaymentUpdateBlock extends BaseBlock {
|
|
1904
|
+
type: "start.payment.update";
|
|
1905
|
+
in: Record<string, never>;
|
|
1906
|
+
out: {
|
|
1907
|
+
before: DataEdgeConnection;
|
|
1908
|
+
after: DataEdgeConnection;
|
|
1909
|
+
changedFields: DataEdgeConnection;
|
|
1910
|
+
};
|
|
1911
|
+
}
|
|
1912
|
+
interface UserListBlock extends BaseBlock {
|
|
1913
|
+
type: "user.list";
|
|
1914
|
+
in: {
|
|
1915
|
+
limit: DataEdgeConnection;
|
|
1916
|
+
skip: DataEdgeConnection;
|
|
1917
|
+
};
|
|
1918
|
+
out: {
|
|
1919
|
+
userArray: DataEdgeConnection;
|
|
1920
|
+
count: DataEdgeConnection;
|
|
1921
|
+
hasMore: DataEdgeConnection;
|
|
1922
|
+
};
|
|
1923
|
+
data: {
|
|
1924
|
+
limit?: number;
|
|
1925
|
+
skip?: number;
|
|
1926
|
+
};
|
|
1927
|
+
}
|
|
1928
|
+
interface UserListBlockInputs {
|
|
1929
|
+
limit?: number;
|
|
1930
|
+
skip?: number;
|
|
1931
|
+
}
|
|
1932
|
+
interface SessionListBlock extends BaseBlock {
|
|
1933
|
+
type: "session.list";
|
|
1934
|
+
in: {
|
|
1935
|
+
userId: DataEdgeConnection;
|
|
1936
|
+
locationId: DataEdgeConnection;
|
|
1937
|
+
limit: DataEdgeConnection;
|
|
1938
|
+
skip: DataEdgeConnection;
|
|
1939
|
+
};
|
|
1940
|
+
out: {
|
|
1941
|
+
sessionArray: DataEdgeConnection;
|
|
1942
|
+
count: DataEdgeConnection;
|
|
1943
|
+
hasMore: DataEdgeConnection;
|
|
1944
|
+
};
|
|
1945
|
+
data: {
|
|
1946
|
+
userId?: string;
|
|
1947
|
+
locationId?: string;
|
|
1948
|
+
limit?: number;
|
|
1949
|
+
skip?: number;
|
|
1950
|
+
};
|
|
1951
|
+
}
|
|
1952
|
+
interface SessionListBlockInputs {
|
|
1953
|
+
userId?: string;
|
|
1954
|
+
locationId?: string;
|
|
1955
|
+
limit?: number;
|
|
1956
|
+
skip?: number;
|
|
1957
|
+
}
|
|
1958
|
+
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;
|
|
1959
|
+
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
1960
|
interface FlowDataEdge {
|
|
1761
1961
|
id: string;
|
|
1762
1962
|
type: "data";
|
|
@@ -3955,6 +4155,7 @@ declare namespace JUHUU {
|
|
|
3955
4155
|
longDescription: LocaleString | null;
|
|
3956
4156
|
secondsToPay: number;
|
|
3957
4157
|
defaultPaymentMethodConfigurationId: string;
|
|
4158
|
+
delayedPaymentMethodConfigurationId: string;
|
|
3958
4159
|
maximumScheduledReadyAtSeconds: number;
|
|
3959
4160
|
};
|
|
3960
4161
|
namespace Create {
|
|
@@ -4459,8 +4660,9 @@ declare namespace JUHUU {
|
|
|
4459
4660
|
salesTaxPercentage: number;
|
|
4460
4661
|
userId: string;
|
|
4461
4662
|
postingRowArray: PostingRow[];
|
|
4462
|
-
|
|
4663
|
+
confirmationDeadlineAt: Date;
|
|
4463
4664
|
defaultPaymentMethodConfigurationId?: string;
|
|
4665
|
+
delayedPaymentMethodConfigurationId?: string;
|
|
4464
4666
|
};
|
|
4465
4667
|
type Options = JUHUU.RequestOptions;
|
|
4466
4668
|
type Response = {
|
|
@@ -6482,6 +6684,7 @@ declare namespace JUHUU {
|
|
|
6482
6684
|
reference: string | null;
|
|
6483
6685
|
text: string | null;
|
|
6484
6686
|
metadata: Record<string, any>;
|
|
6687
|
+
invalidAt: Date | null;
|
|
6485
6688
|
};
|
|
6486
6689
|
namespace Create {
|
|
6487
6690
|
type Params = {
|
|
@@ -6534,6 +6737,7 @@ declare namespace JUHUU {
|
|
|
6534
6737
|
reference?: string | null;
|
|
6535
6738
|
text?: string | null;
|
|
6536
6739
|
metadata?: Record<string, any>;
|
|
6740
|
+
invalidAt?: Date | null;
|
|
6537
6741
|
};
|
|
6538
6742
|
type Options = JUHUU.RequestOptions;
|
|
6539
6743
|
type Response = {
|
|
@@ -7616,4 +7820,4 @@ declare namespace JUHUU {
|
|
|
7616
7820
|
}
|
|
7617
7821
|
}
|
|
7618
7822
|
|
|
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 };
|
|
7823
|
+
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
|
@@ -1281,8 +1281,9 @@ var PaymentsService = class extends Service {
|
|
|
1281
1281
|
salesTaxPercentage: PaymentCreateParams.salesTaxPercentage,
|
|
1282
1282
|
userId: PaymentCreateParams.userId,
|
|
1283
1283
|
postingRowArray: PaymentCreateParams.postingRowArray,
|
|
1284
|
-
|
|
1285
|
-
defaultPaymentMethodConfigurationId: PaymentCreateParams.defaultPaymentMethodConfigurationId
|
|
1284
|
+
confirmationDeadlineAt: PaymentCreateParams.confirmationDeadlineAt,
|
|
1285
|
+
defaultPaymentMethodConfigurationId: PaymentCreateParams.defaultPaymentMethodConfigurationId,
|
|
1286
|
+
delayedPaymentMethodConfigurationId: PaymentCreateParams.delayedPaymentMethodConfigurationId
|
|
1286
1287
|
},
|
|
1287
1288
|
authenticationNotOptional: true
|
|
1288
1289
|
},
|
|
@@ -5201,7 +5202,8 @@ var BenefitCardsService = class extends Service {
|
|
|
5201
5202
|
userId: params.userId,
|
|
5202
5203
|
reference: params.reference,
|
|
5203
5204
|
text: params.text,
|
|
5204
|
-
metadata: params.metadata
|
|
5205
|
+
metadata: params.metadata,
|
|
5206
|
+
invalidAt: params.invalidAt
|
|
5205
5207
|
},
|
|
5206
5208
|
authenticationNotOptional: true
|
|
5207
5209
|
},
|
package/dist/index.mjs
CHANGED
|
@@ -1237,8 +1237,9 @@ var PaymentsService = class extends Service {
|
|
|
1237
1237
|
salesTaxPercentage: PaymentCreateParams.salesTaxPercentage,
|
|
1238
1238
|
userId: PaymentCreateParams.userId,
|
|
1239
1239
|
postingRowArray: PaymentCreateParams.postingRowArray,
|
|
1240
|
-
|
|
1241
|
-
defaultPaymentMethodConfigurationId: PaymentCreateParams.defaultPaymentMethodConfigurationId
|
|
1240
|
+
confirmationDeadlineAt: PaymentCreateParams.confirmationDeadlineAt,
|
|
1241
|
+
defaultPaymentMethodConfigurationId: PaymentCreateParams.defaultPaymentMethodConfigurationId,
|
|
1242
|
+
delayedPaymentMethodConfigurationId: PaymentCreateParams.delayedPaymentMethodConfigurationId
|
|
1242
1243
|
},
|
|
1243
1244
|
authenticationNotOptional: true
|
|
1244
1245
|
},
|
|
@@ -5157,7 +5158,8 @@ var BenefitCardsService = class extends Service {
|
|
|
5157
5158
|
userId: params.userId,
|
|
5158
5159
|
reference: params.reference,
|
|
5159
5160
|
text: params.text,
|
|
5160
|
-
metadata: params.metadata
|
|
5161
|
+
metadata: params.metadata,
|
|
5162
|
+
invalidAt: params.invalidAt
|
|
5161
5163
|
},
|
|
5162
5164
|
authenticationNotOptional: true
|
|
5163
5165
|
},
|