squarefi-bff-api-module 1.30.1 → 1.30.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.
@@ -1555,7 +1555,6 @@ export declare namespace API {
1555
1555
  interface Request {
1556
1556
  order_uuid: string;
1557
1557
  }
1558
- type OrderMetaExtended = Omit<API.Orders.V2.List.ByWallet.OrderMeta, 'to_crypto_address' | 'sub_account_id' | 'to_address' | 'sub_account_currency' | 'crypto_transaction_hash'>;
1559
1558
  interface CounterpartyAccount {
1560
1559
  id: string;
1561
1560
  name: string;
@@ -1647,9 +1646,7 @@ export declare namespace API {
1647
1646
  destination_currency_details: API.Currencies.SimplifiedCurrency;
1648
1647
  integration_vendor: IntegrationVendorExtended;
1649
1648
  }
1650
- type OrderDetails = Omit<API.Orders.V2.List.ByWallet.OrderItem, 'id' | 'meta'> & {
1651
- id: string;
1652
- meta: OrderMetaExtended;
1649
+ type OrderDetails = API.Orders.V2.List.ByWallet.OrderItem & {
1653
1650
  request_id: string;
1654
1651
  updated_at: string;
1655
1652
  wallet: API.Wallets.SimplifiedWallet;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squarefi-bff-api-module",
3
- "version": "1.30.1",
3
+ "version": "1.30.2",
4
4
  "description": "Squarefi BFF API client module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -2024,11 +2024,6 @@ export namespace API {
2024
2024
  order_uuid: string;
2025
2025
  }
2026
2026
 
2027
- export type OrderMetaExtended = Omit<
2028
- API.Orders.V2.List.ByWallet.OrderMeta,
2029
- 'to_crypto_address' | 'sub_account_id' | 'to_address' | 'sub_account_currency' | 'crypto_transaction_hash'
2030
- >;
2031
-
2032
2027
  export interface CounterpartyAccount {
2033
2028
  id: string;
2034
2029
  name: string;
@@ -2129,9 +2124,7 @@ export namespace API {
2129
2124
  integration_vendor: IntegrationVendorExtended;
2130
2125
  }
2131
2126
 
2132
- export type OrderDetails = Omit<API.Orders.V2.List.ByWallet.OrderItem, 'id' | 'meta'> & {
2133
- id: string;
2134
- meta: OrderMetaExtended;
2127
+ export type OrderDetails = API.Orders.V2.List.ByWallet.OrderItem & {
2135
2128
  request_id: string;
2136
2129
  updated_at: string;
2137
2130
  wallet: API.Wallets.SimplifiedWallet;