squarefi-bff-api-module 1.30.5 → 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.
@@ -1618,18 +1618,6 @@ export declare namespace API {
1618
1618
  postal_code: string;
1619
1619
  country_code: string;
1620
1620
  }
1621
- interface DepositInstruction {
1622
- instruction_type: string;
1623
- asset_type_id: string;
1624
- account_number: string;
1625
- routing_number?: string;
1626
- account_routing_number?: string;
1627
- institution_name: string;
1628
- account_holder_name?: string;
1629
- memo: string;
1630
- institution_address?: DepositInstructionAddress;
1631
- account_holder_address?: DepositInstructionAddress;
1632
- }
1633
1621
  interface VirtualAccountAccountDetails {
1634
1622
  rail_account_id: string;
1635
1623
  rail_asset_type: string;
@@ -1655,7 +1643,7 @@ export declare namespace API {
1655
1643
  deposit_type: string;
1656
1644
  meta?: Record<string, unknown>;
1657
1645
  account_details: VirtualAccountAccountDetails;
1658
- deposit_instructions?: DepositInstruction[];
1646
+ deposit_instructions?: API.VirtualAccounts.VirtualAccount.DepositInstruction.DepositInstruction[];
1659
1647
  account_currency_details: API.Currencies.SimplifiedCurrency;
1660
1648
  destination_currency_details: API.Currencies.SimplifiedCurrency;
1661
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.5",
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",
@@ -2096,19 +2096,6 @@ export namespace API {
2096
2096
  country_code: string;
2097
2097
  }
2098
2098
 
2099
- export interface DepositInstruction {
2100
- instruction_type: string;
2101
- asset_type_id: string;
2102
- account_number: string;
2103
- routing_number?: string;
2104
- account_routing_number?: string;
2105
- institution_name: string;
2106
- account_holder_name?: string;
2107
- memo: string;
2108
- institution_address?: DepositInstructionAddress;
2109
- account_holder_address?: DepositInstructionAddress;
2110
- }
2111
-
2112
2099
  export interface VirtualAccountAccountDetails {
2113
2100
  rail_account_id: string;
2114
2101
  rail_asset_type: string;
@@ -2135,7 +2122,7 @@ export namespace API {
2135
2122
  deposit_type: string;
2136
2123
  meta?: Record<string, unknown>;
2137
2124
  account_details: VirtualAccountAccountDetails;
2138
- deposit_instructions?: DepositInstruction[];
2125
+ deposit_instructions?: API.VirtualAccounts.VirtualAccount.DepositInstruction.DepositInstruction[];
2139
2126
  account_currency_details: API.Currencies.SimplifiedCurrency;
2140
2127
  destination_currency_details: API.Currencies.SimplifiedCurrency;
2141
2128
  integration_vendor: IntegrationVendorExtended;