@readerseye2/cr_type 1.0.84 → 1.0.85

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,4 +1,4 @@
1
- import type { CRViewerState, ViewerEvent } from './viewer-events.types';
1
+ import type { CRViewerState, ViewerEvent, AudioSnapshot } from './viewer-events.types';
2
2
  /** 뷰어 스냅샷 (소켓 통신용 - 현재 읽기 상태) */
3
3
  export interface ViewerSnapshot {
4
4
  viewMode: 'scroll' | 'page';
@@ -9,6 +9,9 @@ export interface ViewerSnapshot {
9
9
  viewportWidth?: number;
10
10
  viewportHeight?: number;
11
11
  viewerState?: Partial<CRViewerState>;
12
+ anchorGI?: number;
13
+ anchorOffsetRatio?: number;
14
+ audio?: AudioSnapshot;
12
15
  }
13
16
  /** 책/섹션 메타데이터 */
14
17
  export interface SessionMeta {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@readerseye2/cr_type",
3
- "version": "1.0.84",
3
+ "version": "1.0.85",
4
4
  "description": "CheckReading shared TypeScript types",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",