@shopby/shop-sdk 1.73.3 → 1.73.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,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.73.5](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.73.4...v1.73.5) (2024-06-04)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * oauth2 토큰 관련 변경된 응답 타입 추가 ([a2da109](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/a2da1092d4cdf32759b765225c3251e692d22dce))
11
+
12
+ ### [1.73.4](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.73.3...v1.73.4) (2024-05-13)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * openid post api duplicateKey 컬럼 추가 ([77392df](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/77392df2e06c7e598e29266d058bd0919579af20))
18
+
5
19
  ### [1.73.3](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.73.2...v1.73.3) (2024-04-30)
6
20
 
7
21
 
@@ -91,6 +91,7 @@ export interface DormantMemberResponse {
91
91
  export interface OrdinaryMemberResponse {
92
92
  signUpDateTime: string;
93
93
  email: string;
94
+ duplicateKey: string;
94
95
  }
95
96
  export interface OauthOpenIdResponse {
96
97
  provider: string;
@@ -360,6 +360,9 @@ export interface PostProfileSynchronizeRequest {
360
360
  export interface PostProfileSynchronizeResponse {
361
361
  expiresIn: number;
362
362
  accessToken: string;
363
+ tokenType: Nullable<string>;
364
+ refreshToken: Nullable<string>;
365
+ refreshTokenExpiresIn: Nullable<number>;
363
366
  }
364
367
  export interface PostProfileFindIdRequest {
365
368
  requestBody: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopby/shop-sdk",
3
- "version": "1.73.3",
3
+ "version": "1.73.5",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "types": "build/types/index.d.ts",