@shopby/shop-sdk 1.77.4 → 1.77.5
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.77.5](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.77.4...v1.77.5) (2024-08-26)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* trackingKey 옵셔널 처리 ([16fdb57](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/16fdb5793f390f7727c01147c2a780203b623ccf))
|
|
11
|
+
|
|
5
12
|
### [1.77.4](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.77.2...v1.77.4) (2024-08-26)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -75,7 +75,7 @@ export interface OauthOpenIdRequest extends RequestConfig {
|
|
|
75
75
|
declare type OauthProviderType = 'ncp_naver' | 'ncp_kakao' | 'ncp_kakao-sync' | 'ncp_line' | 'ncp_facebook' | 'ncp_payco' | string;
|
|
76
76
|
export interface PostOauthOpenIdRequest extends RequestConfig {
|
|
77
77
|
queryString: {
|
|
78
|
-
trackingKey
|
|
78
|
+
trackingKey?: string;
|
|
79
79
|
};
|
|
80
80
|
requestBody: {
|
|
81
81
|
redirectUri: Nullable<string>;
|
|
@@ -105,7 +105,7 @@ export interface OauthOpenIdResponse {
|
|
|
105
105
|
}
|
|
106
106
|
export interface PostOauthTokenRequest extends RequestConfig {
|
|
107
107
|
queryString: {
|
|
108
|
-
trackingKey
|
|
108
|
+
trackingKey?: string;
|
|
109
109
|
};
|
|
110
110
|
requestBody: {
|
|
111
111
|
password: string;
|