squarefi-bff-api-module 1.17.10 → 1.17.12

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,18 @@ 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.12] - 2025-04-23
9
+
10
+ ### Fixed
11
+
12
+ - Enforced required fields in DestinationListItemExternalBankingData type address object
13
+
14
+ ## [1.17.11] - 2025-04-23
15
+
16
+ ### Changed
17
+
18
+ - Removed unused memo field from DestinationListItemExternalBankingData type
19
+
8
20
  ## [1.17.10] - 2025-04-23
9
21
 
10
22
  ### Changed
@@ -384,13 +384,12 @@ export declare namespace API {
384
384
  bank_name: string;
385
385
  note: string;
386
386
  swift_bic: string;
387
- address?: {
388
- city?: string;
389
- country_id?: number;
390
- postcode?: string;
391
- street1?: string;
387
+ address: {
388
+ city: string;
389
+ country_id: number;
390
+ postcode: string;
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.12",
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
@@ -445,13 +445,12 @@ export namespace API {
445
445
  bank_name: string;
446
446
  note: string;
447
447
  swift_bic: string;
448
- address?: {
449
- city?: string;
450
- country_id?: number;
451
- postcode?: string;
452
- street1?: string;
448
+ address: {
449
+ city: string;
450
+ country_id: number;
451
+ postcode: string;
452
+ street1: string;
453
453
  street2?: string;
454
- memo?: string;
455
454
  };
456
455
  }
457
456