@shopby/shop-sdk 1.22.0 → 1.23.0
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
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [1.23.0](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.21.0...v1.23.0) (2022-06-30)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* update deleteSpacesMapping ([d9bee0b](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/d9bee0b663fd2c91bf3530c64ad95246e9edc72f))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* modify ClaimDefaultRequestBody type ([b292bca](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/b292bca21bde2061230fc4edf7c39e2bef90f11f))
|
|
16
|
+
* template ([c51a41a](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/c51a41acaadda32ebab2bcb403c845912f48c108))
|
|
17
|
+
|
|
5
18
|
## [1.22.0](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.21.0...v1.22.0) (2022-06-22)
|
|
6
19
|
|
|
7
20
|
|
|
@@ -291,7 +291,7 @@ export interface CancelRequestDefaultRequestBody {
|
|
|
291
291
|
responsibleObjectType: ResponsibleObjectType;
|
|
292
292
|
claimType: ClaimType;
|
|
293
293
|
saveBankAccountInfo: boolean;
|
|
294
|
-
bankAccountInfo
|
|
294
|
+
bankAccountInfo?: BankAccountInfo;
|
|
295
295
|
claimReasonType: ClaimReasonType;
|
|
296
296
|
refundsImmediately: boolean;
|
|
297
297
|
}
|
|
@@ -771,8 +771,8 @@ export interface OrderNextAction {
|
|
|
771
771
|
export interface BankAccountInfo {
|
|
772
772
|
bankAccount?: string;
|
|
773
773
|
bankDepositorName?: string;
|
|
774
|
-
bank
|
|
775
|
-
bankName
|
|
774
|
+
bank?: Bank;
|
|
775
|
+
bankName?: BankLabel;
|
|
776
776
|
}
|
|
777
777
|
export interface ReceiptInfo {
|
|
778
778
|
receiptType: ReceiptType;
|