@shopby/shop-sdk 1.63.14 → 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,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.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
+
5
12
  ### [1.63.14](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.63.13...v1.63.14) (2023-09-06)
6
13
 
7
14
 
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopby/shop-sdk",
3
- "version": "1.63.14",
3
+ "version": "1.63.15",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "types": "build/types/index.d.ts",