squarefi-bff-api-module 1.30.4 → 1.30.6

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.
@@ -1516,6 +1516,7 @@ export declare namespace API {
1516
1516
  fee?: number;
1517
1517
  fee_currency?: string;
1518
1518
  from_currency_id?: string;
1519
+ from_crypto_address?: string | null;
1519
1520
  to_currency_id?: string;
1520
1521
  chain_id?: number | null;
1521
1522
  counterparty_destination_id?: string | null;
@@ -1617,18 +1618,6 @@ export declare namespace API {
1617
1618
  postal_code: string;
1618
1619
  country_code: string;
1619
1620
  }
1620
- interface DepositInstruction {
1621
- instruction_type: string;
1622
- asset_type_id: string;
1623
- account_number: string;
1624
- routing_number?: string;
1625
- account_routing_number?: string;
1626
- institution_name: string;
1627
- account_holder_name?: string;
1628
- memo: string;
1629
- institution_address?: DepositInstructionAddress;
1630
- account_holder_address?: DepositInstructionAddress;
1631
- }
1632
1621
  interface VirtualAccountAccountDetails {
1633
1622
  rail_account_id: string;
1634
1623
  rail_asset_type: string;
@@ -1654,7 +1643,7 @@ export declare namespace API {
1654
1643
  deposit_type: string;
1655
1644
  meta?: Record<string, unknown>;
1656
1645
  account_details: VirtualAccountAccountDetails;
1657
- deposit_instructions?: DepositInstruction[];
1646
+ deposit_instructions?: API.VirtualAccounts.VirtualAccount.DepositInstruction.DepositInstruction[];
1658
1647
  account_currency_details: API.Currencies.SimplifiedCurrency;
1659
1648
  destination_currency_details: API.Currencies.SimplifiedCurrency;
1660
1649
  integration_vendor: IntegrationVendorExtended;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squarefi-bff-api-module",
3
- "version": "1.30.4",
3
+ "version": "1.30.6",
4
4
  "description": "Squarefi BFF API client module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1983,6 +1983,7 @@ export namespace API {
1983
1983
  fee?: number;
1984
1984
  fee_currency?: string;
1985
1985
  from_currency_id?: string;
1986
+ from_crypto_address?: string | null;
1986
1987
  to_currency_id?: string;
1987
1988
  chain_id?: number | null;
1988
1989
  counterparty_destination_id?: string | null;
@@ -2095,19 +2096,6 @@ export namespace API {
2095
2096
  country_code: string;
2096
2097
  }
2097
2098
 
2098
- export interface DepositInstruction {
2099
- instruction_type: string;
2100
- asset_type_id: string;
2101
- account_number: string;
2102
- routing_number?: string;
2103
- account_routing_number?: string;
2104
- institution_name: string;
2105
- account_holder_name?: string;
2106
- memo: string;
2107
- institution_address?: DepositInstructionAddress;
2108
- account_holder_address?: DepositInstructionAddress;
2109
- }
2110
-
2111
2099
  export interface VirtualAccountAccountDetails {
2112
2100
  rail_account_id: string;
2113
2101
  rail_asset_type: string;
@@ -2134,7 +2122,7 @@ export namespace API {
2134
2122
  deposit_type: string;
2135
2123
  meta?: Record<string, unknown>;
2136
2124
  account_details: VirtualAccountAccountDetails;
2137
- deposit_instructions?: DepositInstruction[];
2125
+ deposit_instructions?: API.VirtualAccounts.VirtualAccount.DepositInstruction.DepositInstruction[];
2138
2126
  account_currency_details: API.Currencies.SimplifiedCurrency;
2139
2127
  destination_currency_details: API.Currencies.SimplifiedCurrency;
2140
2128
  integration_vendor: IntegrationVendorExtended;