@shopby/shop-sdk 1.54.6 → 1.54.7
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.54.7](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.54.6...v1.54.7) (2023-03-21)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* get display events 타입 옵셔널로 수정 ([f982c80](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/f982c801b48b532cfcbe80f630ec6a7e0fd594a8))
|
|
11
|
+
|
|
5
12
|
### [1.54.6](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.54.5...v1.54.6) (2023-03-21)
|
|
6
13
|
|
|
7
14
|
### [1.54.5](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.54.4...v1.54.5) (2023-03-21)
|
|
@@ -359,10 +359,10 @@ export interface GetDisplayEventsRequest extends RequestConfig {
|
|
|
359
359
|
'page.number': number;
|
|
360
360
|
'page.size': number;
|
|
361
361
|
categoryNos?: string;
|
|
362
|
-
eventYn
|
|
363
|
-
progressStatus
|
|
364
|
-
'order.by'
|
|
365
|
-
'order.direction'
|
|
362
|
+
eventYn?: Nullable<Yn>;
|
|
363
|
+
progressStatus?: EventProgressStatus;
|
|
364
|
+
'order.by'?: EventOrderBy;
|
|
365
|
+
'order.direction'?: ReviewOrderDirectionType;
|
|
366
366
|
};
|
|
367
367
|
useAccessToken?: boolean;
|
|
368
368
|
}
|
|
@@ -385,7 +385,7 @@ export interface GetDisplayEventsSearchByNosRequest extends RequestConfig {
|
|
|
385
385
|
queryString: {
|
|
386
386
|
eventNos: string;
|
|
387
387
|
countPerEvent?: string;
|
|
388
|
-
soldout
|
|
388
|
+
soldout?: boolean;
|
|
389
389
|
saleStatus?: SaleStatusType;
|
|
390
390
|
};
|
|
391
391
|
}
|