@carsayo/types 1.1.802 → 1.1.804
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.
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { MemberType } from "../member";
|
|
1
2
|
/**
|
|
2
3
|
* @case like: 좋아요
|
|
3
4
|
* @case normal: 기본 (좋아요도 싫어요도 아님)
|
|
@@ -17,13 +18,13 @@ export declare const Post_LikeHateState: {
|
|
|
17
18
|
* @case dealer: 딜러에게만 허용된 컨텐츠
|
|
18
19
|
* @case admin: 어드민에 대하여만 허용된 컨텐츠
|
|
19
20
|
*/
|
|
20
|
-
export type Board_watchableMemberType =
|
|
21
|
+
export type Board_watchableMemberType = null | MemberType;
|
|
21
22
|
/**
|
|
22
23
|
* @description 글을 작성할 수 있는 회원 유형
|
|
23
24
|
* @notice 어드민은 모든 컨텐츠 작성이 가능합니다
|
|
24
|
-
* @case
|
|
25
|
+
* @case null: 모든 회원 타입에 대하여 작성이 허용된 컨텐츠
|
|
25
26
|
* @case customer: 일반 회원에 대하여만 작성이 허용된 컨텐츠
|
|
26
27
|
* @case dealer: 딜러에게 대하여만 작성이 허용된 컨텐츠
|
|
27
28
|
* @case admin: 어드민에 대하여만 작성이 허용된 컨텐츠
|
|
28
29
|
*/
|
|
29
|
-
export type Board_writableMemberType =
|
|
30
|
+
export type Board_writableMemberType = null | MemberType;
|
|
@@ -1,17 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
* @case common: 모든 회원 타입에 대하여 노출되는 배너
|
|
4
|
-
* @case customer: 일반 회원에 대하여 노출되는 배너
|
|
5
|
-
* @case dealer: 딜러에게 노출되는 배너
|
|
6
|
-
* @case admin: 어드민에 대하여 노출되는 배너
|
|
7
|
-
*/
|
|
8
|
-
export declare const ContentTarget: {
|
|
9
|
-
readonly common: "common";
|
|
10
|
-
readonly customer: "customer";
|
|
11
|
-
readonly dealer: "dealer";
|
|
12
|
-
readonly admin: "admin";
|
|
13
|
-
};
|
|
14
|
-
export type ContentTarget = keyof typeof ContentTarget;
|
|
1
|
+
import { MemberType } from "../member";
|
|
2
|
+
export type ContentTarget = null | MemberType;
|
|
15
3
|
export declare const DeviceType: {
|
|
16
4
|
readonly IOS: "IOS";
|
|
17
5
|
readonly Android: "Android";
|
|
@@ -1,19 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.OrderMethod = exports.DeviceType =
|
|
4
|
-
/**
|
|
5
|
-
* @description 배너가 노출되는 대상
|
|
6
|
-
* @case common: 모든 회원 타입에 대하여 노출되는 배너
|
|
7
|
-
* @case customer: 일반 회원에 대하여 노출되는 배너
|
|
8
|
-
* @case dealer: 딜러에게 노출되는 배너
|
|
9
|
-
* @case admin: 어드민에 대하여 노출되는 배너
|
|
10
|
-
*/
|
|
11
|
-
exports.ContentTarget = {
|
|
12
|
-
common: "common",
|
|
13
|
-
customer: "customer",
|
|
14
|
-
dealer: "dealer",
|
|
15
|
-
admin: "admin",
|
|
16
|
-
};
|
|
3
|
+
exports.OrderMethod = exports.DeviceType = void 0;
|
|
17
4
|
exports.DeviceType = {
|
|
18
5
|
IOS: "IOS",
|
|
19
6
|
Android: "Android",
|