@readerseye2/cr_type 1.0.154 → 1.0.157

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.
@@ -116,5 +116,7 @@ export type SectionData = {
116
116
  images?: SectionImage[];
117
117
  audios?: SectionAudio[];
118
118
  quizzes?: SectionQuiz[];
119
+ /** 섹션 단어 수 (SectionSummary.word_count에서 복사) */
120
+ word_count?: number;
119
121
  };
120
122
  export {};
@@ -8,10 +8,10 @@ export declare enum GazeTrackingState {
8
8
  }
9
9
  /** 단일 시선 샘플 (0~1 정규화 좌표) */
10
10
  export interface GazeData {
11
- /** 정규화된 X 좌표 (0~1, 좌→우) */
12
- x: number;
13
- /** 정규화된 Y 좌표 (0~1, 상→하) */
14
- y: number;
11
+ /** 정규화된 X 좌표 (0~1, 좌→우). BLINK/LOST 시 null */
12
+ x: number | null;
13
+ /** 정규화된 Y 좌표 (0~1, 상→하). BLINK/LOST 시 null */
14
+ y: number | null;
15
15
  /** 타임스탬프 (ms, Date.now()) */
16
16
  t: number;
17
17
  /** 모델 신뢰도 (0~1) */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@readerseye2/cr_type",
3
- "version": "1.0.154",
3
+ "version": "1.0.157",
4
4
  "description": "CheckReading shared TypeScript types",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",