@shopby/shop-sdk 1.56.5 → 1.56.6

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.56.6](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.56.5...v1.56.6) (2023-03-29)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * mall > intro redirection type 추가 ([1781df2](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/1781df2c1105e2646b66b12d0a7364d9ce64a5db))
11
+
5
12
  ### [1.56.5](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.56.4...v1.56.5) (2023-03-28)
6
13
 
7
14
 
@@ -0,0 +1,6 @@
1
+ export declare const INTRO_REDIRECTION_TYPE_MAP: {
2
+ readonly NONE: "사용안함";
3
+ readonly NO_ACCESS: "접속 불가";
4
+ readonly ONLY_MEMBER: "회원 인증";
5
+ readonly ONLY_ADULT: "성인 인증";
6
+ };
@@ -0,0 +1,7 @@
1
+ export var INTRO_REDIRECTION_TYPE_MAP = {
2
+ NONE: '사용안함',
3
+ NO_ACCESS: '접속 불가',
4
+ ONLY_MEMBER: '회원 인증',
5
+ ONLY_ADULT: '성인 인증',
6
+ };
7
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/domain/admin/maps/index.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,IAAM,0BAA0B,GAAG;IACxC,IAAI,EAAE,MAAM;IACZ,SAAS,EAAE,OAAO;IAClB,WAAW,EAAE,OAAO;IACpB,UAAU,EAAE,OAAO;CACV,CAAC"}
@@ -1,3 +1,4 @@
1
+ import { IntroRedirectionType } from './unions';
1
2
  export interface Mall {
2
3
  memberJoinConfig?: MallsMemberJoinConfig;
3
4
  inquiryType?: MallsInquiryType[];
@@ -197,8 +198,8 @@ export interface MallsMallGrades {
197
198
  reserveBenefit?: MallsMallReserveBenefit;
198
199
  }
199
200
  export interface MallsMallIntroRedirection {
200
- pc?: string;
201
- mobile?: string;
201
+ pc?: IntroRedirectionType;
202
+ mobile?: IntroRedirectionType;
202
203
  }
203
204
  export interface MallsMallJoinConfig {
204
205
  authenticationType?: string;
@@ -0,0 +1,2 @@
1
+ import { INTRO_REDIRECTION_TYPE_MAP } from '../../../src/domain/admin/maps';
2
+ export declare type IntroRedirectionType = keyof typeof INTRO_REDIRECTION_TYPE_MAP;
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=unions.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"unions.js","sourceRoot":"","sources":["../../../../types/domain/admin/unions.ts"],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopby/shop-sdk",
3
- "version": "1.56.5",
3
+ "version": "1.56.6",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "types": "build/types/index.d.ts",