squarefi-bff-api-module 1.17.10 → 1.17.11

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/CHANGELOG.md CHANGED
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.17.11] - 2025-04-23
9
+
10
+ ### Changed
11
+
12
+ - Removed unused memo field from DestinationListItemExternalBankingData type
13
+
8
14
  ## [1.17.10] - 2025-04-23
9
15
 
10
16
  ### Changed
@@ -390,7 +390,6 @@ export declare namespace API {
390
390
  postcode?: string;
391
391
  street1?: string;
392
392
  street2?: string;
393
- memo?: string;
394
393
  };
395
394
  }
396
395
  interface DestinationListItemExternalCryptoData {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squarefi-bff-api-module",
3
- "version": "1.17.10",
3
+ "version": "1.17.11",
4
4
  "description": "Squarefi BFF API client module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/api/types.ts CHANGED
@@ -451,7 +451,6 @@ export namespace API {
451
451
  postcode?: string;
452
452
  street1?: string;
453
453
  street2?: string;
454
- memo?: string;
455
454
  };
456
455
  }
457
456