@shopby/shop-sdk 1.63.12 → 1.63.15

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,27 @@
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.63.15](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.63.14...v1.63.15) (2023-09-08)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * 스킨 배너그룹 조회 API 수정 ([63154e8](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/63154e8903ab881eb822c1035b33ed6647a36f14))
11
+
12
+ ### [1.63.14](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.63.13...v1.63.14) (2023-09-06)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * 빌드 오류 수정 ([a484b0c](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/a484b0c6049e9bb4a701cd555f8bec380f04e118))
18
+
19
+ ### [1.63.13](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.63.12...v1.63.13) (2023-09-06)
20
+
21
+
22
+ ### Bug Fixes
23
+
24
+ * 주문 예약하기 request에 약관 추가항목 추가 ([4e1b87d](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/4e1b87d27cfc65fcfc1bd02e692516a5f8f0efd2))
25
+
5
26
  ### [1.63.12](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.63.11...v1.63.12) (2023-09-04)
6
27
 
7
28
 
@@ -1238,11 +1238,20 @@ export interface GetSkinBannersGroupsBySkinRequest extends RequestConfig {
1238
1238
  isPreview: boolean;
1239
1239
  };
1240
1240
  }
1241
+ export interface SkinDecorationConfiguration {
1242
+ backgroundColor: string;
1243
+ mainColor: string;
1244
+ }
1241
1245
  export interface GetSkinBannersGroupsBySkinResponse {
1242
1246
  skinCode: string;
1243
1247
  platformType: string;
1244
1248
  skinName: string;
1245
1249
  bannerGroups: Array<SkinBannersGroupsBySkinBannerGroup>;
1250
+ appIcon: string;
1251
+ decorationConfig: SkinDecorationConfiguration;
1252
+ updateDateTime: string;
1253
+ isLiveSkin: boolean;
1254
+ isWorkSkin: boolean;
1246
1255
  }
1247
1256
  export interface SkinBannersGroupsBySkinBannerGroup {
1248
1257
  groupType?: string;
@@ -5,6 +5,7 @@ import { ClaimAddress, ClaimReasonTypeInfo, ExchangePayInfo } from '../../domain
5
5
  import { OptionalAccessTokenRequest } from '../../http';
6
6
  import { OptionSelectType } from '../product/option/unions';
7
7
  import { RentalInfo } from '../../domain/product';
8
+ import { TermsType } from '../manage';
8
9
  export * from './unions';
9
10
  export * from './guest';
10
11
  export * from './naverPay';
@@ -602,6 +603,8 @@ export interface PostPaymentsReserveRequest extends OptionalAccessTokenRequest {
602
603
  cashReceipt?: CashReceipt;
603
604
  shippingAddresses?: ShippingAddressesItem[];
604
605
  myPayInfo: Nullable<UpdateMyPayInfo>;
606
+ customTermsNos?: Array<number>;
607
+ agreementTypes?: TermsType[];
605
608
  };
606
609
  }
607
610
  export interface PostPaymentsReserveResponse {
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/domain/order/index.ts"],"names":[],"mappings":"AAuDA,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/domain/order/index.ts"],"names":[],"mappings":"AAwDA,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopby/shop-sdk",
3
- "version": "1.63.12",
3
+ "version": "1.63.15",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "types": "build/types/index.d.ts",