@imtbl/checkout-sdk 2.7.1-alpha.0 → 2.7.1-alpha.2
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/browser/index.js +1 -1
- package/dist/node/index.cjs +1 -1
- package/dist/node/index.js +1 -1
- package/dist/types/widgets/definitions/configurations/commerce.d.ts +2 -0
- package/dist/types/widgets/definitions/configurations/swap.d.ts +4 -1
- package/dist/types/widgets/definitions/configurations/transfer.d.ts +3 -1
- package/package.json +9 -9
package/dist/browser/index.js
CHANGED
package/dist/node/index.cjs
CHANGED
package/dist/node/index.js
CHANGED
|
@@ -5,6 +5,7 @@ import { SwapWidgetConfiguration } from './swap';
|
|
|
5
5
|
import { OnrampWidgetConfiguration } from './onramp';
|
|
6
6
|
import { SaleWidgetConfiguration } from './sale';
|
|
7
7
|
import { AddTokensWidgetConfiguration } from './addTokens';
|
|
8
|
+
import { TransferWidgetConfiguration } from './transfer';
|
|
8
9
|
import { WidgetConfiguration } from './widget';
|
|
9
10
|
export type CommerceWidgetConfiguration = {
|
|
10
11
|
CONNECT?: Omit<ConnectWidgetConfiguration, keyof WidgetConfiguration>;
|
|
@@ -14,4 +15,5 @@ export type CommerceWidgetConfiguration = {
|
|
|
14
15
|
ONRAMP?: Omit<OnrampWidgetConfiguration, keyof WidgetConfiguration>;
|
|
15
16
|
SALE?: Omit<SaleWidgetConfiguration, keyof WidgetConfiguration>;
|
|
16
17
|
ADD_TOKENS?: Omit<AddTokensWidgetConfiguration, keyof WidgetConfiguration>;
|
|
18
|
+
TRANSFER?: Omit<TransferWidgetConfiguration, keyof WidgetConfiguration>;
|
|
17
19
|
} & Omit<WidgetConfiguration, 'walletConnect'>;
|
|
@@ -2,4 +2,7 @@ import { WidgetConfiguration } from './widget';
|
|
|
2
2
|
/**
|
|
3
3
|
* Swap Widget Configuration represents the configuration options for the Swap Widget.
|
|
4
4
|
*/
|
|
5
|
-
export type SwapWidgetConfiguration = {
|
|
5
|
+
export type SwapWidgetConfiguration = {
|
|
6
|
+
customTitle?: string;
|
|
7
|
+
customSubTitle?: string;
|
|
8
|
+
} & WidgetConfiguration;
|
|
@@ -2,4 +2,6 @@ import { WidgetConfiguration } from './widget';
|
|
|
2
2
|
/**
|
|
3
3
|
* Transfer Widget Configuration represents the configuration options for the Transfer Widget.
|
|
4
4
|
*/
|
|
5
|
-
export type TransferWidgetConfiguration = {
|
|
5
|
+
export type TransferWidgetConfiguration = {
|
|
6
|
+
customTitle?: string;
|
|
7
|
+
} & WidgetConfiguration;
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@imtbl/checkout-sdk",
|
|
3
3
|
"description": "Immutable Checkout SDK",
|
|
4
|
-
"version": "2.7.1-alpha.
|
|
4
|
+
"version": "2.7.1-alpha.2",
|
|
5
5
|
"author": "immutable",
|
|
6
6
|
"bugs": "https://github.com/immutable/ts-immutable-sdk/issues",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@imtbl/blockchain-data": "2.7.1-alpha.
|
|
9
|
-
"@imtbl/bridge-sdk": "2.7.1-alpha.
|
|
10
|
-
"@imtbl/config": "2.7.1-alpha.
|
|
11
|
-
"@imtbl/dex-sdk": "2.7.1-alpha.
|
|
12
|
-
"@imtbl/generated-clients": "2.7.1-alpha.
|
|
13
|
-
"@imtbl/metrics": "2.7.1-alpha.
|
|
14
|
-
"@imtbl/orderbook": "2.7.1-alpha.
|
|
15
|
-
"@imtbl/passport": "2.7.1-alpha.
|
|
8
|
+
"@imtbl/blockchain-data": "2.7.1-alpha.2",
|
|
9
|
+
"@imtbl/bridge-sdk": "2.7.1-alpha.2",
|
|
10
|
+
"@imtbl/config": "2.7.1-alpha.2",
|
|
11
|
+
"@imtbl/dex-sdk": "2.7.1-alpha.2",
|
|
12
|
+
"@imtbl/generated-clients": "2.7.1-alpha.2",
|
|
13
|
+
"@imtbl/metrics": "2.7.1-alpha.2",
|
|
14
|
+
"@imtbl/orderbook": "2.7.1-alpha.2",
|
|
15
|
+
"@imtbl/passport": "2.7.1-alpha.2",
|
|
16
16
|
"@metamask/detect-provider": "^2.0.0",
|
|
17
17
|
"axios": "^1.6.5",
|
|
18
18
|
"ethers": "^6.13.4",
|