@shopby/shop-sdk 1.55.1 → 1.55.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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
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.55.2](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.55.1...v1.55.2) (2023-03-22)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * [클레임] ClaimDefaultRequestBody 타입 일부 옵셔널로 수정 & exchange api requestBody 타입 수정 ([#197](https://gitlab.e-ncp.com/ncp-client/shop-sdk/issues/197)) ([dbedf9a](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/dbedf9a39e4eb30552d7c95c224fbd8a2cc437af))
11
+
5
12
  ### [1.55.1](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.55.0...v1.55.1) (2023-03-22)
6
13
 
7
14
 
@@ -1,5 +1,5 @@
1
1
  import { ClaimClassType, ClaimOptionType, ClaimReasonLabel, ClaimReasonType, ClaimStatusType, ClaimStatusTypeLabel, ClaimType, ClaimWithdrawValidationType, ExchangePayInfoPayType, NextActionType, RefundType, ResponsibleObjectType, ReturnWayType } from './unions';
2
- import { Bank, BankAccountInfo, BankCdAndLabel, DefaultOrderStatusType, DeliveryAmtInfo, DeliveryCompanyType, DeliveryCompanyTypeLabel, OptionInputResponse, OrderOptionPrice, OrderStatusDate, PayType, PgType, ProductAmtInfo, SubtractionAmtInfo } from '../../domain/order';
2
+ import { Bank, BankAccountInfo, BankCdAndLabel, BankLabel, DefaultOrderStatusType, DeliveryAmtInfo, DeliveryCompanyType, DeliveryCompanyTypeLabel, OptionInputResponse, OrderOptionPrice, OrderStatusDate, PayType, PgType, ProductAmtInfo, SubtractionAmtInfo } from '../../domain/order';
3
3
  import { CountryCode, DateYmdt, Yn } from '../../common';
4
4
  export * from './unions';
5
5
  export * from './guest/index';
@@ -59,7 +59,7 @@ export interface PostProfileClaimsReturnRequestBody extends ClaimDefaultRequestB
59
59
  }
60
60
  export interface ClaimDefaultRequestBody {
61
61
  claimReasonDetail: string;
62
- responsibleObjectType: ResponsibleObjectType;
62
+ responsibleObjectType?: ResponsibleObjectType;
63
63
  bankAccountInfo?: BankAccountInfo;
64
64
  productCnt: number;
65
65
  claimReasonType: ClaimReasonType;
@@ -68,7 +68,7 @@ export interface ClaimDefaultRequestBody {
68
68
  claimImageUrls: string[];
69
69
  returnAddress?: ClaimRequestAddress;
70
70
  claimType: ClaimType;
71
- saveBankAccountInfo: boolean;
71
+ saveBankAccountInfo?: boolean;
72
72
  invoiceNo?: string;
73
73
  }
74
74
  export interface ClaimAddress {
@@ -325,6 +325,13 @@ export interface PostProfileOrderOptionsOrderOptionNoClaimsExchangeRequestBody e
325
325
  exchangeAddress: ExchangeAddress;
326
326
  exchangeOption: ExchangeOption;
327
327
  additionalPayRemitter?: string;
328
+ additionalPayBankAccount?: AdditionalPayBankAccount;
329
+ }
330
+ export interface AdditionalPayBankAccount {
331
+ bank?: Bank;
332
+ bankName: BankLabel;
333
+ account?: string;
334
+ depositorName?: string;
328
335
  }
329
336
  export interface ExchangeAddress {
330
337
  addressView: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopby/shop-sdk",
3
- "version": "1.55.1",
3
+ "version": "1.55.2",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "types": "build/types/index.d.ts",