@shopby/shop-sdk 1.78.32 → 1.78.34

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,20 @@
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.78.34](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.78.33...v1.78.34) (2025-01-12)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * get terms used 응답 값 변경 ([ab49cdb](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/ab49cdb93a607d8831ccc326d0870cc1f9a984d5))
11
+
12
+ ### [1.78.33](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.78.32...v1.78.33) (2025-01-09)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * terms used 인터페이스 변경 ([3aa56d4](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/3aa56d44d8cf620432ea30ab0e2d835a879f35cc))
18
+
5
19
  ### [1.78.32](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.78.31...v1.78.32) (2025-01-09)
6
20
 
7
21
 
@@ -531,14 +531,11 @@ export interface TermsKey {
531
531
  }
532
532
  export interface GetTermsUsedRequest extends RequestConfig {
533
533
  queryString: {
534
- termsTypes: TermsType;
535
- usedOnly: boolean;
534
+ termsTypes: TermsType | Array<TermsType>;
536
535
  };
537
536
  }
538
537
  export declare type GetTermsUsedResponse = {
539
- [key in TermsType]: {
540
- used: boolean;
541
- };
538
+ termsList: Array<TermsType>;
542
539
  };
543
540
  export interface PostTermsRequest extends RequestConfig {
544
541
  requestBody: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopby/shop-sdk",
3
- "version": "1.78.32",
3
+ "version": "1.78.34",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "types": "build/types/index.d.ts",