@readerseye2/cr_type 1.0.124 → 1.0.128
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/book/book-api.type.d.ts +15 -15
- package/dist/book/book-api.type.js +2 -2
- package/dist/book/book-log.type.d.ts +14 -14
- package/dist/book/book-log.type.js +2 -2
- package/dist/book/book.const.d.ts +274 -274
- package/dist/book/book.const.js +119 -119
- package/dist/book/child-reading-progress.type.d.ts +171 -6
- package/dist/book/child-reading-progress.type.js +8 -0
- package/dist/book/legacy.book.type.d.ts +164 -164
- package/dist/book/legacy.book.type.js +41 -41
- package/package.json +27 -27
|
@@ -1,164 +1,164 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @deprecated Legacy 타입 — 신규 코드에서 사용 금지
|
|
3
|
-
* Book 통합 리팩토링 전 타입 백업 (2026-02-02)
|
|
4
|
-
* 신규: Book (book.type.ts), BookDTO (book-api.type.ts), MakeBookState (store.types.ts)
|
|
5
|
-
*/
|
|
6
|
-
import type { BookLanguage, BookLength, BookGenre, BookEnLevel, PublishAgeRating, SectionSummary, SectionSummaryResponse } from './book.type';
|
|
7
|
-
import type { SectionData, SectionId } from '../ast/ast.types';
|
|
8
|
-
/** @deprecated BookLanguage 사용 권장 */
|
|
9
|
-
export declare enum BookLanguageCode {
|
|
10
|
-
KO = "ko",
|
|
11
|
-
EN = "en"
|
|
12
|
-
}
|
|
13
|
-
/** @deprecated BookGenre type 사용 권장 */
|
|
14
|
-
export declare enum BookGenreEnum {
|
|
15
|
-
FICTION = "fiction",
|
|
16
|
-
NON_FICTION = "non-fiction",
|
|
17
|
-
FAIRY_TALE = "fairy-tale",
|
|
18
|
-
EDUCATIONAL = "educational",
|
|
19
|
-
SCIENCE = "science",
|
|
20
|
-
HISTORY = "history",
|
|
21
|
-
BIOGRAPHY = "biography",
|
|
22
|
-
POETRY = "poetry",
|
|
23
|
-
OTHER = "other"
|
|
24
|
-
}
|
|
25
|
-
/** @deprecated PublishAgeRating 사용 권장 */
|
|
26
|
-
export declare enum BookAgeGrade {
|
|
27
|
-
ALL = "all",
|
|
28
|
-
AGE_7 = "7+",
|
|
29
|
-
AGE_12 = "12+",
|
|
30
|
-
AGE_15 = "15+",
|
|
31
|
-
AGE_19 = "19+"
|
|
32
|
-
}
|
|
33
|
-
/** @deprecated BOOK_AGE_MIN/MAX 사용 권장 */
|
|
34
|
-
export declare const BOOK_LEVEL_MIN = 5;
|
|
35
|
-
/** @deprecated BOOK_AGE_MIN/MAX 사용 권장 */
|
|
36
|
-
export declare const BOOK_LEVEL_MAX = 19;
|
|
37
|
-
/** @deprecated Book 인터페이스 사용 권장 */
|
|
38
|
-
export interface DraftBookMeta {
|
|
39
|
-
draft_book_idx: number;
|
|
40
|
-
title: string;
|
|
41
|
-
language: BookLanguage;
|
|
42
|
-
age: number;
|
|
43
|
-
length: BookLength;
|
|
44
|
-
genre?: BookGenre;
|
|
45
|
-
quiz_retry_allowed?: boolean;
|
|
46
|
-
ar_index?: number;
|
|
47
|
-
lexile_index?: number;
|
|
48
|
-
series?: string;
|
|
49
|
-
cover_url?: string;
|
|
50
|
-
en_level?: BookEnLevel;
|
|
51
|
-
tags?: string[];
|
|
52
|
-
description?: string;
|
|
53
|
-
original_author?: string;
|
|
54
|
-
original_publish_date?: string;
|
|
55
|
-
original_publisher?: string;
|
|
56
|
-
isbn?: string;
|
|
57
|
-
updated_at: string;
|
|
58
|
-
}
|
|
59
|
-
/** @deprecated Book 인터페이스 사용 권장 */
|
|
60
|
-
export interface BookMeta extends DraftBookMeta {
|
|
61
|
-
book_idx: number;
|
|
62
|
-
source_draft_book_idx: number;
|
|
63
|
-
creator_idx: number;
|
|
64
|
-
creator_name?: string;
|
|
65
|
-
price_point: number;
|
|
66
|
-
age_rating: PublishAgeRating;
|
|
67
|
-
free_section_arr?: number[];
|
|
68
|
-
word_count?: number;
|
|
69
|
-
sound_minutes?: number;
|
|
70
|
-
section_count?: number;
|
|
71
|
-
published_at: string;
|
|
72
|
-
}
|
|
73
|
-
/** @deprecated BookListItem 사용 권장 */
|
|
74
|
-
export interface BookShort {
|
|
75
|
-
id: string;
|
|
76
|
-
title: string;
|
|
77
|
-
author: string;
|
|
78
|
-
coverUrl: string;
|
|
79
|
-
language: BookLanguageCode;
|
|
80
|
-
level: number;
|
|
81
|
-
genre: string;
|
|
82
|
-
wordCount?: number;
|
|
83
|
-
soundMinutes?: number;
|
|
84
|
-
rating?: number;
|
|
85
|
-
}
|
|
86
|
-
/** @deprecated BookDTO 사용 권장 */
|
|
87
|
-
export interface BookDetail extends BookShort {
|
|
88
|
-
description?: string;
|
|
89
|
-
tags?: string[];
|
|
90
|
-
ageGrade?: BookAgeGrade;
|
|
91
|
-
isbn?: string;
|
|
92
|
-
originalPublisher?: string;
|
|
93
|
-
originalPublishDate?: string;
|
|
94
|
-
edition?: string;
|
|
95
|
-
quizRetryAllowed?: boolean;
|
|
96
|
-
toc?: string[];
|
|
97
|
-
rating?: number;
|
|
98
|
-
publishedAtText?: string;
|
|
99
|
-
priceText?: string;
|
|
100
|
-
sections?: SectionSummary[];
|
|
101
|
-
sectionOrder?: string[];
|
|
102
|
-
}
|
|
103
|
-
/** @deprecated Book 인터페이스 사용 권장 (draft_book_ prefix 제거됨) */
|
|
104
|
-
export interface DraftBookResponse {
|
|
105
|
-
draft_book_idx: number;
|
|
106
|
-
draft_book_title: string;
|
|
107
|
-
draft_book_language: BookLanguageCode;
|
|
108
|
-
draft_book_level: number;
|
|
109
|
-
draft_book_cover_url: string | null;
|
|
110
|
-
draft_book_create_date?: string;
|
|
111
|
-
draft_book_update_date: string;
|
|
112
|
-
draft_book_author?: string | null;
|
|
113
|
-
draft_book_age_grade?: BookAgeGrade | null;
|
|
114
|
-
draft_book_genre?: string | null;
|
|
115
|
-
draft_book_tags?: string[] | null;
|
|
116
|
-
draft_book_description?: string | null;
|
|
117
|
-
draft_book_original_publish_date?: string | null;
|
|
118
|
-
draft_book_original_publisher?: string | null;
|
|
119
|
-
draft_book_edition?: string | null;
|
|
120
|
-
draft_book_isbn?: string | null;
|
|
121
|
-
draft_book_word_count?: number | null;
|
|
122
|
-
draft_book_sound_minutes?: number | null;
|
|
123
|
-
draft_book_quiz_retry_allowed?: boolean;
|
|
124
|
-
draft_book_ar_index?: number | null;
|
|
125
|
-
draft_book_lexile_index?: number | null;
|
|
126
|
-
draft_book_sections?: SectionSummaryResponse[];
|
|
127
|
-
draft_book_section_order?: string[];
|
|
128
|
-
}
|
|
129
|
-
/** @deprecated Book 인터페이스 사용 권장 */
|
|
130
|
-
export interface DraftMeta {
|
|
131
|
-
draft_book_idx: number;
|
|
132
|
-
draft_book_title: string;
|
|
133
|
-
draft_book_language: 'ko' | 'en';
|
|
134
|
-
draft_book_level: number;
|
|
135
|
-
draft_book_cover_url: string | null;
|
|
136
|
-
draft_book_length: string | null;
|
|
137
|
-
draft_book_genre: string | null;
|
|
138
|
-
draft_book_en_level: string | null;
|
|
139
|
-
draft_book_series: string | null;
|
|
140
|
-
draft_book_author: string | null;
|
|
141
|
-
draft_book_tags: string[] | null;
|
|
142
|
-
draft_book_description: string | null;
|
|
143
|
-
draft_book_original_publish_date: string | null;
|
|
144
|
-
draft_book_original_publisher: string | null;
|
|
145
|
-
draft_book_isbn: string | null;
|
|
146
|
-
draft_book_word_count: number | null;
|
|
147
|
-
draft_book_ar_index: number | null;
|
|
148
|
-
draft_book_lexile_index: number | null;
|
|
149
|
-
draft_book_quiz_retry_allowed: boolean;
|
|
150
|
-
draft_book_create_date: string;
|
|
151
|
-
draft_book_update_date: string;
|
|
152
|
-
draft_book_publish_status?: 'draft' | 'pending' | 'rejected';
|
|
153
|
-
}
|
|
154
|
-
/** @deprecated BookDTO 사용 권장 */
|
|
155
|
-
export type DraftSummary = {
|
|
156
|
-
sectionOrder: SectionId[];
|
|
157
|
-
sections?: SectionSummary[];
|
|
158
|
-
};
|
|
159
|
-
/** @deprecated BookDTO 사용 권장 */
|
|
160
|
-
export type BookDraftDTO = {
|
|
161
|
-
meta: DraftMeta;
|
|
162
|
-
summary: DraftSummary;
|
|
163
|
-
content: SectionData[];
|
|
164
|
-
};
|
|
1
|
+
/**
|
|
2
|
+
* @deprecated Legacy 타입 — 신규 코드에서 사용 금지
|
|
3
|
+
* Book 통합 리팩토링 전 타입 백업 (2026-02-02)
|
|
4
|
+
* 신규: Book (book.type.ts), BookDTO (book-api.type.ts), MakeBookState (store.types.ts)
|
|
5
|
+
*/
|
|
6
|
+
import type { BookLanguage, BookLength, BookGenre, BookEnLevel, PublishAgeRating, SectionSummary, SectionSummaryResponse } from './book.type';
|
|
7
|
+
import type { SectionData, SectionId } from '../ast/ast.types';
|
|
8
|
+
/** @deprecated BookLanguage 사용 권장 */
|
|
9
|
+
export declare enum BookLanguageCode {
|
|
10
|
+
KO = "ko",
|
|
11
|
+
EN = "en"
|
|
12
|
+
}
|
|
13
|
+
/** @deprecated BookGenre type 사용 권장 */
|
|
14
|
+
export declare enum BookGenreEnum {
|
|
15
|
+
FICTION = "fiction",
|
|
16
|
+
NON_FICTION = "non-fiction",
|
|
17
|
+
FAIRY_TALE = "fairy-tale",
|
|
18
|
+
EDUCATIONAL = "educational",
|
|
19
|
+
SCIENCE = "science",
|
|
20
|
+
HISTORY = "history",
|
|
21
|
+
BIOGRAPHY = "biography",
|
|
22
|
+
POETRY = "poetry",
|
|
23
|
+
OTHER = "other"
|
|
24
|
+
}
|
|
25
|
+
/** @deprecated PublishAgeRating 사용 권장 */
|
|
26
|
+
export declare enum BookAgeGrade {
|
|
27
|
+
ALL = "all",
|
|
28
|
+
AGE_7 = "7+",
|
|
29
|
+
AGE_12 = "12+",
|
|
30
|
+
AGE_15 = "15+",
|
|
31
|
+
AGE_19 = "19+"
|
|
32
|
+
}
|
|
33
|
+
/** @deprecated BOOK_AGE_MIN/MAX 사용 권장 */
|
|
34
|
+
export declare const BOOK_LEVEL_MIN = 5;
|
|
35
|
+
/** @deprecated BOOK_AGE_MIN/MAX 사용 권장 */
|
|
36
|
+
export declare const BOOK_LEVEL_MAX = 19;
|
|
37
|
+
/** @deprecated Book 인터페이스 사용 권장 */
|
|
38
|
+
export interface DraftBookMeta {
|
|
39
|
+
draft_book_idx: number;
|
|
40
|
+
title: string;
|
|
41
|
+
language: BookLanguage;
|
|
42
|
+
age: number;
|
|
43
|
+
length: BookLength;
|
|
44
|
+
genre?: BookGenre;
|
|
45
|
+
quiz_retry_allowed?: boolean;
|
|
46
|
+
ar_index?: number;
|
|
47
|
+
lexile_index?: number;
|
|
48
|
+
series?: string;
|
|
49
|
+
cover_url?: string;
|
|
50
|
+
en_level?: BookEnLevel;
|
|
51
|
+
tags?: string[];
|
|
52
|
+
description?: string;
|
|
53
|
+
original_author?: string;
|
|
54
|
+
original_publish_date?: string;
|
|
55
|
+
original_publisher?: string;
|
|
56
|
+
isbn?: string;
|
|
57
|
+
updated_at: string;
|
|
58
|
+
}
|
|
59
|
+
/** @deprecated Book 인터페이스 사용 권장 */
|
|
60
|
+
export interface BookMeta extends DraftBookMeta {
|
|
61
|
+
book_idx: number;
|
|
62
|
+
source_draft_book_idx: number;
|
|
63
|
+
creator_idx: number;
|
|
64
|
+
creator_name?: string;
|
|
65
|
+
price_point: number;
|
|
66
|
+
age_rating: PublishAgeRating;
|
|
67
|
+
free_section_arr?: number[];
|
|
68
|
+
word_count?: number;
|
|
69
|
+
sound_minutes?: number;
|
|
70
|
+
section_count?: number;
|
|
71
|
+
published_at: string;
|
|
72
|
+
}
|
|
73
|
+
/** @deprecated BookListItem 사용 권장 */
|
|
74
|
+
export interface BookShort {
|
|
75
|
+
id: string;
|
|
76
|
+
title: string;
|
|
77
|
+
author: string;
|
|
78
|
+
coverUrl: string;
|
|
79
|
+
language: BookLanguageCode;
|
|
80
|
+
level: number;
|
|
81
|
+
genre: string;
|
|
82
|
+
wordCount?: number;
|
|
83
|
+
soundMinutes?: number;
|
|
84
|
+
rating?: number;
|
|
85
|
+
}
|
|
86
|
+
/** @deprecated BookDTO 사용 권장 */
|
|
87
|
+
export interface BookDetail extends BookShort {
|
|
88
|
+
description?: string;
|
|
89
|
+
tags?: string[];
|
|
90
|
+
ageGrade?: BookAgeGrade;
|
|
91
|
+
isbn?: string;
|
|
92
|
+
originalPublisher?: string;
|
|
93
|
+
originalPublishDate?: string;
|
|
94
|
+
edition?: string;
|
|
95
|
+
quizRetryAllowed?: boolean;
|
|
96
|
+
toc?: string[];
|
|
97
|
+
rating?: number;
|
|
98
|
+
publishedAtText?: string;
|
|
99
|
+
priceText?: string;
|
|
100
|
+
sections?: SectionSummary[];
|
|
101
|
+
sectionOrder?: string[];
|
|
102
|
+
}
|
|
103
|
+
/** @deprecated Book 인터페이스 사용 권장 (draft_book_ prefix 제거됨) */
|
|
104
|
+
export interface DraftBookResponse {
|
|
105
|
+
draft_book_idx: number;
|
|
106
|
+
draft_book_title: string;
|
|
107
|
+
draft_book_language: BookLanguageCode;
|
|
108
|
+
draft_book_level: number;
|
|
109
|
+
draft_book_cover_url: string | null;
|
|
110
|
+
draft_book_create_date?: string;
|
|
111
|
+
draft_book_update_date: string;
|
|
112
|
+
draft_book_author?: string | null;
|
|
113
|
+
draft_book_age_grade?: BookAgeGrade | null;
|
|
114
|
+
draft_book_genre?: string | null;
|
|
115
|
+
draft_book_tags?: string[] | null;
|
|
116
|
+
draft_book_description?: string | null;
|
|
117
|
+
draft_book_original_publish_date?: string | null;
|
|
118
|
+
draft_book_original_publisher?: string | null;
|
|
119
|
+
draft_book_edition?: string | null;
|
|
120
|
+
draft_book_isbn?: string | null;
|
|
121
|
+
draft_book_word_count?: number | null;
|
|
122
|
+
draft_book_sound_minutes?: number | null;
|
|
123
|
+
draft_book_quiz_retry_allowed?: boolean;
|
|
124
|
+
draft_book_ar_index?: number | null;
|
|
125
|
+
draft_book_lexile_index?: number | null;
|
|
126
|
+
draft_book_sections?: SectionSummaryResponse[];
|
|
127
|
+
draft_book_section_order?: string[];
|
|
128
|
+
}
|
|
129
|
+
/** @deprecated Book 인터페이스 사용 권장 */
|
|
130
|
+
export interface DraftMeta {
|
|
131
|
+
draft_book_idx: number;
|
|
132
|
+
draft_book_title: string;
|
|
133
|
+
draft_book_language: 'ko' | 'en';
|
|
134
|
+
draft_book_level: number;
|
|
135
|
+
draft_book_cover_url: string | null;
|
|
136
|
+
draft_book_length: string | null;
|
|
137
|
+
draft_book_genre: string | null;
|
|
138
|
+
draft_book_en_level: string | null;
|
|
139
|
+
draft_book_series: string | null;
|
|
140
|
+
draft_book_author: string | null;
|
|
141
|
+
draft_book_tags: string[] | null;
|
|
142
|
+
draft_book_description: string | null;
|
|
143
|
+
draft_book_original_publish_date: string | null;
|
|
144
|
+
draft_book_original_publisher: string | null;
|
|
145
|
+
draft_book_isbn: string | null;
|
|
146
|
+
draft_book_word_count: number | null;
|
|
147
|
+
draft_book_ar_index: number | null;
|
|
148
|
+
draft_book_lexile_index: number | null;
|
|
149
|
+
draft_book_quiz_retry_allowed: boolean;
|
|
150
|
+
draft_book_create_date: string;
|
|
151
|
+
draft_book_update_date: string;
|
|
152
|
+
draft_book_publish_status?: 'draft' | 'pending' | 'rejected';
|
|
153
|
+
}
|
|
154
|
+
/** @deprecated BookDTO 사용 권장 */
|
|
155
|
+
export type DraftSummary = {
|
|
156
|
+
sectionOrder: SectionId[];
|
|
157
|
+
sections?: SectionSummary[];
|
|
158
|
+
};
|
|
159
|
+
/** @deprecated BookDTO 사용 권장 */
|
|
160
|
+
export type BookDraftDTO = {
|
|
161
|
+
meta: DraftMeta;
|
|
162
|
+
summary: DraftSummary;
|
|
163
|
+
content: SectionData[];
|
|
164
|
+
};
|
|
@@ -1,41 +1,41 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* @deprecated Legacy 타입 — 신규 코드에서 사용 금지
|
|
4
|
-
* Book 통합 리팩토링 전 타입 백업 (2026-02-02)
|
|
5
|
-
* 신규: Book (book.type.ts), BookDTO (book-api.type.ts), MakeBookState (store.types.ts)
|
|
6
|
-
*/
|
|
7
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
-
exports.BOOK_LEVEL_MAX = exports.BOOK_LEVEL_MIN = exports.BookAgeGrade = exports.BookGenreEnum = exports.BookLanguageCode = void 0;
|
|
9
|
-
// ========== deprecated enums ==========
|
|
10
|
-
/** @deprecated BookLanguage 사용 권장 */
|
|
11
|
-
var BookLanguageCode;
|
|
12
|
-
(function (BookLanguageCode) {
|
|
13
|
-
BookLanguageCode["KO"] = "ko";
|
|
14
|
-
BookLanguageCode["EN"] = "en";
|
|
15
|
-
})(BookLanguageCode || (exports.BookLanguageCode = BookLanguageCode = {}));
|
|
16
|
-
/** @deprecated BookGenre type 사용 권장 */
|
|
17
|
-
var BookGenreEnum;
|
|
18
|
-
(function (BookGenreEnum) {
|
|
19
|
-
BookGenreEnum["FICTION"] = "fiction";
|
|
20
|
-
BookGenreEnum["NON_FICTION"] = "non-fiction";
|
|
21
|
-
BookGenreEnum["FAIRY_TALE"] = "fairy-tale";
|
|
22
|
-
BookGenreEnum["EDUCATIONAL"] = "educational";
|
|
23
|
-
BookGenreEnum["SCIENCE"] = "science";
|
|
24
|
-
BookGenreEnum["HISTORY"] = "history";
|
|
25
|
-
BookGenreEnum["BIOGRAPHY"] = "biography";
|
|
26
|
-
BookGenreEnum["POETRY"] = "poetry";
|
|
27
|
-
BookGenreEnum["OTHER"] = "other";
|
|
28
|
-
})(BookGenreEnum || (exports.BookGenreEnum = BookGenreEnum = {}));
|
|
29
|
-
/** @deprecated PublishAgeRating 사용 권장 */
|
|
30
|
-
var BookAgeGrade;
|
|
31
|
-
(function (BookAgeGrade) {
|
|
32
|
-
BookAgeGrade["ALL"] = "all";
|
|
33
|
-
BookAgeGrade["AGE_7"] = "7+";
|
|
34
|
-
BookAgeGrade["AGE_12"] = "12+";
|
|
35
|
-
BookAgeGrade["AGE_15"] = "15+";
|
|
36
|
-
BookAgeGrade["AGE_19"] = "19+";
|
|
37
|
-
})(BookAgeGrade || (exports.BookAgeGrade = BookAgeGrade = {}));
|
|
38
|
-
/** @deprecated BOOK_AGE_MIN/MAX 사용 권장 */
|
|
39
|
-
exports.BOOK_LEVEL_MIN = 5;
|
|
40
|
-
/** @deprecated BOOK_AGE_MIN/MAX 사용 권장 */
|
|
41
|
-
exports.BOOK_LEVEL_MAX = 19;
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* @deprecated Legacy 타입 — 신규 코드에서 사용 금지
|
|
4
|
+
* Book 통합 리팩토링 전 타입 백업 (2026-02-02)
|
|
5
|
+
* 신규: Book (book.type.ts), BookDTO (book-api.type.ts), MakeBookState (store.types.ts)
|
|
6
|
+
*/
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.BOOK_LEVEL_MAX = exports.BOOK_LEVEL_MIN = exports.BookAgeGrade = exports.BookGenreEnum = exports.BookLanguageCode = void 0;
|
|
9
|
+
// ========== deprecated enums ==========
|
|
10
|
+
/** @deprecated BookLanguage 사용 권장 */
|
|
11
|
+
var BookLanguageCode;
|
|
12
|
+
(function (BookLanguageCode) {
|
|
13
|
+
BookLanguageCode["KO"] = "ko";
|
|
14
|
+
BookLanguageCode["EN"] = "en";
|
|
15
|
+
})(BookLanguageCode || (exports.BookLanguageCode = BookLanguageCode = {}));
|
|
16
|
+
/** @deprecated BookGenre type 사용 권장 */
|
|
17
|
+
var BookGenreEnum;
|
|
18
|
+
(function (BookGenreEnum) {
|
|
19
|
+
BookGenreEnum["FICTION"] = "fiction";
|
|
20
|
+
BookGenreEnum["NON_FICTION"] = "non-fiction";
|
|
21
|
+
BookGenreEnum["FAIRY_TALE"] = "fairy-tale";
|
|
22
|
+
BookGenreEnum["EDUCATIONAL"] = "educational";
|
|
23
|
+
BookGenreEnum["SCIENCE"] = "science";
|
|
24
|
+
BookGenreEnum["HISTORY"] = "history";
|
|
25
|
+
BookGenreEnum["BIOGRAPHY"] = "biography";
|
|
26
|
+
BookGenreEnum["POETRY"] = "poetry";
|
|
27
|
+
BookGenreEnum["OTHER"] = "other";
|
|
28
|
+
})(BookGenreEnum || (exports.BookGenreEnum = BookGenreEnum = {}));
|
|
29
|
+
/** @deprecated PublishAgeRating 사용 권장 */
|
|
30
|
+
var BookAgeGrade;
|
|
31
|
+
(function (BookAgeGrade) {
|
|
32
|
+
BookAgeGrade["ALL"] = "all";
|
|
33
|
+
BookAgeGrade["AGE_7"] = "7+";
|
|
34
|
+
BookAgeGrade["AGE_12"] = "12+";
|
|
35
|
+
BookAgeGrade["AGE_15"] = "15+";
|
|
36
|
+
BookAgeGrade["AGE_19"] = "19+";
|
|
37
|
+
})(BookAgeGrade || (exports.BookAgeGrade = BookAgeGrade = {}));
|
|
38
|
+
/** @deprecated BOOK_AGE_MIN/MAX 사용 권장 */
|
|
39
|
+
exports.BOOK_LEVEL_MIN = 5;
|
|
40
|
+
/** @deprecated BOOK_AGE_MIN/MAX 사용 권장 */
|
|
41
|
+
exports.BOOK_LEVEL_MAX = 19;
|
package/package.json
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@readerseye2/cr_type",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "CheckReading shared TypeScript types",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"types": "dist/index.d.ts",
|
|
7
|
-
"files": [
|
|
8
|
-
"dist"
|
|
9
|
-
],
|
|
10
|
-
"scripts": {
|
|
11
|
-
"deploy_npm": "npm version patch && npm publish --access public",
|
|
12
|
-
"build": "tsc --project tsconfig.json",
|
|
13
|
-
"prepare": "npm run build"
|
|
14
|
-
},
|
|
15
|
-
"repository": {
|
|
16
|
-
"type": "git",
|
|
17
|
-
"url": "https://github.com/bnri/CR_type.git"
|
|
18
|
-
},
|
|
19
|
-
"author": "guripong",
|
|
20
|
-
"license": "MIT",
|
|
21
|
-
"publishConfig": {
|
|
22
|
-
"access": "public"
|
|
23
|
-
},
|
|
24
|
-
"devDependencies": {
|
|
25
|
-
"typescript": "^5.8.3"
|
|
26
|
-
}
|
|
27
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@readerseye2/cr_type",
|
|
3
|
+
"version": "1.0.128",
|
|
4
|
+
"description": "CheckReading shared TypeScript types",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"scripts": {
|
|
11
|
+
"deploy_npm": "npm version patch && npm publish --access public",
|
|
12
|
+
"build": "tsc --project tsconfig.json",
|
|
13
|
+
"prepare": "npm run build"
|
|
14
|
+
},
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://github.com/bnri/CR_type.git"
|
|
18
|
+
},
|
|
19
|
+
"author": "guripong",
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"publishConfig": {
|
|
22
|
+
"access": "public"
|
|
23
|
+
},
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"typescript": "^5.8.3"
|
|
26
|
+
}
|
|
27
|
+
}
|