@imtbl/checkout-sdk 2.10.4-alpha.0 → 2.10.4

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.
@@ -803,7 +803,7 @@ var it = {
803
803
  };
804
804
 
805
805
  // src/env/env.ts
806
- var No = "2.10.4-alpha.0";
806
+ var No = "2.10.4";
807
807
  var me = () => No;
808
808
 
809
809
  // src/availability/availability.ts
@@ -1893,7 +1893,8 @@ var Me = class {
1893
1893
  disable_payment_methods: "",
1894
1894
  products_availed: "buy",
1895
1895
  exchange_screen_title: e.customSubTitle === "" ? " " : e.customSubTitle ?? "Buy",
1896
- theme_color: "0D0D0D",
1896
+ theme_color: "FFFFFF",
1897
+ // this only controls the background colour of the Buy button
1897
1898
  default_crypto_currency: e.tokenSymbol || "IMX",
1898
1899
  hide_menu: !(e.showMenu ?? true)
1899
1900
  };
@@ -803,7 +803,7 @@ var ot = {
803
803
  };
804
804
 
805
805
  // src/env/env.ts
806
- var kn = "2.10.4-alpha.0";
806
+ var kn = "2.10.4";
807
807
  var pe = () => kn;
808
808
 
809
809
  // src/availability/availability.ts
@@ -1893,7 +1893,8 @@ var Be = class {
1893
1893
  disable_payment_methods: "",
1894
1894
  products_availed: "buy",
1895
1895
  exchange_screen_title: e.customSubTitle === "" ? " " : _nullishCoalesce(e.customSubTitle, () => ( "Buy")),
1896
- theme_color: "0D0D0D",
1896
+ theme_color: "FFFFFF",
1897
+ // this only controls the background colour of the Buy button
1897
1898
  default_crypto_currency: e.tokenSymbol || "IMX",
1898
1899
  hide_menu: !(_nullishCoalesce(e.showMenu, () => ( true)))
1899
1900
  };
@@ -803,7 +803,7 @@ var ot = {
803
803
  };
804
804
 
805
805
  // src/env/env.ts
806
- var kn = "2.10.4-alpha.0";
806
+ var kn = "2.10.4";
807
807
  var pe = () => kn;
808
808
 
809
809
  // src/availability/availability.ts
@@ -1893,7 +1893,8 @@ var Be = class {
1893
1893
  disable_payment_methods: "",
1894
1894
  products_availed: "buy",
1895
1895
  exchange_screen_title: e.customSubTitle === "" ? " " : e.customSubTitle ?? "Buy",
1896
- theme_color: "0D0D0D",
1896
+ theme_color: "FFFFFF",
1897
+ // this only controls the background colour of the Buy button
1897
1898
  default_crypto_currency: e.tokenSymbol || "IMX",
1898
1899
  hide_menu: !(e.showMenu ?? true)
1899
1900
  };
@@ -5,13 +5,13 @@ import { HttpClient } from '../api/http';
5
5
  export interface FiatRampWidgetParams {
6
6
  exchangeType: ExchangeType;
7
7
  isPassport: boolean;
8
- walletAddress?: string;
9
- tokenAmount?: string;
10
- tokenSymbol?: string;
11
- email?: string;
12
- allowedTokens?: string[];
13
- showMenu?: boolean;
14
- customSubTitle?: string;
8
+ walletAddress: string | undefined;
9
+ tokenAmount: string | undefined;
10
+ tokenSymbol: string | undefined;
11
+ email: string | undefined;
12
+ allowedTokens: string[] | undefined;
13
+ showMenu: boolean | undefined;
14
+ customSubTitle: string | undefined;
15
15
  }
16
16
  export declare class FiatRampService {
17
17
  readonly config: CheckoutConfiguration;
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.10.4-alpha.0",
4
+ "version": "2.10.4",
5
5
  "author": "immutable",
6
6
  "bugs": "https://github.com/immutable/ts-immutable-sdk/issues",
7
7
  "dependencies": {
8
- "@imtbl/blockchain-data": "2.10.4-alpha.0",
9
- "@imtbl/bridge-sdk": "2.10.4-alpha.0",
10
- "@imtbl/config": "2.10.4-alpha.0",
11
- "@imtbl/dex-sdk": "2.10.4-alpha.0",
12
- "@imtbl/generated-clients": "2.10.4-alpha.0",
13
- "@imtbl/metrics": "2.10.4-alpha.0",
14
- "@imtbl/orderbook": "2.10.4-alpha.0",
15
- "@imtbl/passport": "2.10.4-alpha.0",
8
+ "@imtbl/blockchain-data": "2.10.4",
9
+ "@imtbl/bridge-sdk": "2.10.4",
10
+ "@imtbl/config": "2.10.4",
11
+ "@imtbl/dex-sdk": "2.10.4",
12
+ "@imtbl/generated-clients": "2.10.4",
13
+ "@imtbl/metrics": "2.10.4",
14
+ "@imtbl/orderbook": "2.10.4",
15
+ "@imtbl/passport": "2.10.4",
16
16
  "@metamask/detect-provider": "^2.0.0",
17
17
  "axios": "^1.6.5",
18
18
  "ethers": "^6.13.4",