@shopby/shop-sdk 1.77.7 → 1.77.9

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.77.9](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.77.8...v1.77.9) (2024-09-24)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * profile/orders 파라미터 추가 ([48276f2](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/48276f2a3798cb1252f23e5b7c2401f77223bd27))
11
+
12
+ ### [1.77.8](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.77.7...v1.77.8) (2024-09-11)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * optionType REQUIRED 추가 및 option 에 isRequiredOption값 추가 ([3ea4b0e](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/3ea4b0ee31b0ce00929d4682fdc6e0dabf798059))
18
+
5
19
  ### [1.77.7](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.77.6...v1.77.7) (2024-08-27)
6
20
 
7
21
 
@@ -735,6 +735,8 @@ export interface GetProfileOrdersRequest {
735
735
  hasTotalCount?: boolean;
736
736
  startYmd?: DateYmd;
737
737
  endYmd?: DateYmd;
738
+ searchType?: string;
739
+ keyword?: string;
738
740
  };
739
741
  }
740
742
  export interface GetProfileOrdersResponse {
@@ -85,6 +85,7 @@ export interface GetProductsProductNoOptionsResponse {
85
85
  labels: string[];
86
86
  productSalePrice: number;
87
87
  immediateDiscountAmt: number;
88
+ isRequiredOption?: boolean;
88
89
  }
89
90
  export interface GetGuestRecentProductsRequest {
90
91
  queryString: {
@@ -21,6 +21,7 @@ export interface ProductOption extends ProductOptionBase {
21
21
  optionManagementCd: string;
22
22
  optionNo: number;
23
23
  forcedSoldOut: boolean;
24
+ isRequiredOption?: boolean;
24
25
  }
25
26
  export interface ProductNestedOpiton extends ProductOption {
26
27
  children: ProductNestedOpiton[] | null;
@@ -1,4 +1,4 @@
1
- export declare type OptionType = 'STANDARD' | 'COMBINATION' | 'DEFAULT' | 'MAPPING';
1
+ export declare type OptionType = 'STANDARD' | 'COMBINATION' | 'DEFAULT' | 'MAPPING' | 'REQUIRED';
2
2
  export declare type OptionSelectType = 'FLAT' | 'MULTI';
3
3
  export declare type OptionInputMatchingType = 'OPTION' | 'PRODUCT' | 'AMOUNT';
4
4
  export declare type OptionSaleType = 'AVAILABLE' | 'SOLD_OUT';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopby/shop-sdk",
3
- "version": "1.77.7",
3
+ "version": "1.77.9",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "types": "build/types/index.d.ts",