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 +12 -0
- package/dist/api/types.d.ts +5 -6
- package/package.json +1 -1
- package/src/api/types.ts +5 -6
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
|
package/dist/api/types.d.ts
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
|
|
389
|
-
country_id
|
|
390
|
-
postcode
|
|
391
|
-
street1
|
|
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
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
|
|
450
|
-
country_id
|
|
451
|
-
postcode
|
|
452
|
-
street1
|
|
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
|
|