@carsayo/types 1.1.800 → 1.1.802
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/dist/data/banner.d.ts +4 -4
- package/dist/data/banner.js +4 -4
- package/dist/data/board.d.ts +2 -2
- package/dist/data/board.js +2 -2
- package/package.json +1 -1
package/dist/data/banner.d.ts
CHANGED
|
@@ -7,28 +7,28 @@ export declare const BannerCategoryData: readonly [{
|
|
|
7
7
|
readonly id: 10001000;
|
|
8
8
|
readonly name: "앱 메인페이지 최상단";
|
|
9
9
|
readonly description: "앱 메인페이지 최상단에 노출됩니다";
|
|
10
|
-
readonly target:
|
|
10
|
+
readonly target: any;
|
|
11
11
|
readonly proper_width: 375;
|
|
12
12
|
readonly proper_height: 140;
|
|
13
13
|
}, {
|
|
14
14
|
readonly id: 20001000;
|
|
15
15
|
readonly name: "앱 메인페이지 중단";
|
|
16
16
|
readonly description: "앱 메인페이지 중단에 노출됩니다";
|
|
17
|
-
readonly target:
|
|
17
|
+
readonly target: any;
|
|
18
18
|
readonly proper_width: 375;
|
|
19
19
|
readonly proper_height: 92;
|
|
20
20
|
}, {
|
|
21
21
|
readonly id: 20002000;
|
|
22
22
|
readonly name: "앱 메인페이지 하단";
|
|
23
23
|
readonly description: "앱 메인페이지 하단에 노출됩니다";
|
|
24
|
-
readonly target:
|
|
24
|
+
readonly target: any;
|
|
25
25
|
readonly proper_width: 375;
|
|
26
26
|
readonly proper_height: 92;
|
|
27
27
|
}, {
|
|
28
28
|
readonly id: 30001000;
|
|
29
29
|
readonly name: "차량 구매 후 내차팔기";
|
|
30
30
|
readonly description: "차량 구매 완료 후 내차팔기로 유도하는 배너";
|
|
31
|
-
readonly target:
|
|
31
|
+
readonly target: any;
|
|
32
32
|
readonly proper_width: 375;
|
|
33
33
|
readonly proper_height: 92;
|
|
34
34
|
}];
|
package/dist/data/banner.js
CHANGED
|
@@ -11,7 +11,7 @@ exports.BannerCategoryData = [
|
|
|
11
11
|
id: 10001000,
|
|
12
12
|
name: "앱 메인페이지 최상단",
|
|
13
13
|
description: "앱 메인페이지 최상단에 노출됩니다",
|
|
14
|
-
target:
|
|
14
|
+
target: undefined,
|
|
15
15
|
proper_width: 375,
|
|
16
16
|
proper_height: 140,
|
|
17
17
|
},
|
|
@@ -19,7 +19,7 @@ exports.BannerCategoryData = [
|
|
|
19
19
|
id: 20001000,
|
|
20
20
|
name: "앱 메인페이지 중단",
|
|
21
21
|
description: "앱 메인페이지 중단에 노출됩니다",
|
|
22
|
-
target:
|
|
22
|
+
target: undefined,
|
|
23
23
|
proper_width: 375,
|
|
24
24
|
proper_height: 92,
|
|
25
25
|
},
|
|
@@ -27,7 +27,7 @@ exports.BannerCategoryData = [
|
|
|
27
27
|
id: 20002000,
|
|
28
28
|
name: "앱 메인페이지 하단",
|
|
29
29
|
description: "앱 메인페이지 하단에 노출됩니다",
|
|
30
|
-
target:
|
|
30
|
+
target: undefined,
|
|
31
31
|
proper_width: 375,
|
|
32
32
|
proper_height: 92,
|
|
33
33
|
},
|
|
@@ -35,7 +35,7 @@ exports.BannerCategoryData = [
|
|
|
35
35
|
id: 30001000,
|
|
36
36
|
name: "차량 구매 후 내차팔기",
|
|
37
37
|
description: "차량 구매 완료 후 내차팔기로 유도하는 배너",
|
|
38
|
-
target:
|
|
38
|
+
target: undefined,
|
|
39
39
|
proper_width: 375,
|
|
40
40
|
proper_height: 92,
|
|
41
41
|
},
|
package/dist/data/board.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ export declare const BoardData: readonly [{
|
|
|
8
8
|
readonly key: "notice";
|
|
9
9
|
readonly name: "공지사항";
|
|
10
10
|
readonly description: "카사요 공지사항";
|
|
11
|
-
readonly watchableMemberType:
|
|
11
|
+
readonly watchableMemberType: any;
|
|
12
12
|
readonly writableMemberType: "admin";
|
|
13
13
|
readonly commentAble: false;
|
|
14
14
|
readonly reportAble: false;
|
|
@@ -19,7 +19,7 @@ export declare const BoardData: readonly [{
|
|
|
19
19
|
readonly key: "faq";
|
|
20
20
|
readonly name: "자주찾는 질문";
|
|
21
21
|
readonly description: "카사요 자주찾는 질문";
|
|
22
|
-
readonly watchableMemberType:
|
|
22
|
+
readonly watchableMemberType: any;
|
|
23
23
|
readonly writableMemberType: "admin";
|
|
24
24
|
readonly commentAble: false;
|
|
25
25
|
readonly reportAble: false;
|
package/dist/data/board.js
CHANGED
|
@@ -12,7 +12,7 @@ exports.BoardData = [
|
|
|
12
12
|
key: "notice",
|
|
13
13
|
name: "공지사항",
|
|
14
14
|
description: "카사요 공지사항",
|
|
15
|
-
watchableMemberType:
|
|
15
|
+
watchableMemberType: undefined,
|
|
16
16
|
writableMemberType: "admin",
|
|
17
17
|
commentAble: false,
|
|
18
18
|
reportAble: false,
|
|
@@ -24,7 +24,7 @@ exports.BoardData = [
|
|
|
24
24
|
key: "faq",
|
|
25
25
|
name: "자주찾는 질문",
|
|
26
26
|
description: "카사요 자주찾는 질문",
|
|
27
|
-
watchableMemberType:
|
|
27
|
+
watchableMemberType: undefined,
|
|
28
28
|
writableMemberType: "admin",
|
|
29
29
|
commentAble: false,
|
|
30
30
|
reportAble: false,
|