@readerseye2/cr_type 1.0.58 → 1.0.59

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.
@@ -130,16 +130,20 @@ export interface DraftMeta {
130
130
  draft_book_title: string;
131
131
  /** 언어 코드 */
132
132
  draft_book_language: 'ko' | 'en';
133
- /** 난이도 레벨 (default: 5) */
133
+ /** 난이도 레벨 (권장 연령, default: 5) */
134
134
  draft_book_level: number;
135
135
  /** 표지 이미지 URL (nullable) */
136
136
  draft_book_cover_url: string | null;
137
+ /** 책 길이 (short/medium/long) */
138
+ draft_book_length: string | null;
139
+ /** 책 종류/장르 (fiction/non-fiction/other) */
140
+ draft_book_genre: string | null;
141
+ /** 영어레벨 (영어책 전용) */
142
+ draft_book_en_level: string | null;
143
+ /** 시리즈명 */
144
+ draft_book_series: string | null;
137
145
  /** 원작자 */
138
146
  draft_book_author: string | null;
139
- /** 연령 등급 */
140
- draft_book_age_grade: string | null;
141
- /** 책 종류/장르 */
142
- draft_book_genre: string | null;
143
147
  /** 태그 배열 */
144
148
  draft_book_tags: string[] | null;
145
149
  /** 설명 */
@@ -148,8 +152,6 @@ export interface DraftMeta {
148
152
  draft_book_original_publish_date: string | null;
149
153
  /** 원출판사 */
150
154
  draft_book_original_publisher: string | null;
151
- /** 판 */
152
- draft_book_edition: string | null;
153
155
  /** ISBN */
154
156
  draft_book_isbn: string | null;
155
157
  /** 총 어절 수 (자동 계산) */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@readerseye2/cr_type",
3
- "version": "1.0.58",
3
+ "version": "1.0.59",
4
4
  "description": "CheckReading shared TypeScript types",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",