@shopby/shop-sdk 1.46.0 → 1.46.2

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.46.2](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.46.1...v1.46.2) (2023-02-28)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * 계정 조회하기 api 리스폰스 값 수정 ([f47312d](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/f47312d09cd358fa69b543273365fb62e56c6d24))
11
+
12
+ ### [1.46.1](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.46.0...v1.46.1) (2023-02-28)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * 아이디찾기 api 리스폰스타입 수정 ([8f23960](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/8f239603f8c8bb981c82cabe95758efec4508fc0))
18
+
5
19
  ## [1.46.0](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.45.3...v1.46.0) (2023-02-27)
6
20
 
7
21
 
@@ -353,21 +353,21 @@ export interface PostProfileFindIdRequest {
353
353
  email?: string;
354
354
  };
355
355
  }
356
- export interface PostProfileFindIdResponse {
356
+ export declare type PostProfileFindIdResponse = Array<{
357
357
  memberName: string;
358
358
  joinYmdt: string;
359
359
  mobileNo: string;
360
360
  id: string;
361
361
  email: string;
362
362
  status: ProfileStatusType;
363
- }
363
+ }>;
364
364
  export interface GetProfilePasswordSearchAccountRequest {
365
365
  queryString: {
366
366
  memberId: string;
367
367
  };
368
368
  }
369
369
  export interface GetProfilePasswordSearchAccountResponse {
370
- memberNo: string;
370
+ memberNo: number;
371
371
  hasCI: boolean;
372
372
  name: string;
373
373
  mobileNo: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopby/shop-sdk",
3
- "version": "1.46.0",
3
+ "version": "1.46.2",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "types": "build/types/index.d.ts",