@readerseye2/cr_type 1.0.88 → 1.0.90
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.
|
@@ -149,6 +149,8 @@ export interface RecordingStartedPayload {
|
|
|
149
149
|
};
|
|
150
150
|
/** 현재 활성 세그먼트 (뷰어가 열려있으면, 여기에 책/섹션 정보 포함) */
|
|
151
151
|
currentSegment: SegmentMeta | null;
|
|
152
|
+
/** 현재 세그먼트의 초기 뷰어 스냅샷 (즉시 렌더링용) */
|
|
153
|
+
initialSnapshot: ViewerSnapshot | null;
|
|
152
154
|
}
|
|
153
155
|
/** 녹화 종료됨 */
|
|
154
156
|
export interface RecordingStoppedPayload {
|
|
@@ -178,6 +180,8 @@ export interface RecordingLiveEventsPayload {
|
|
|
178
180
|
export interface SegmentStartedPayload {
|
|
179
181
|
recordingId: string;
|
|
180
182
|
segment: SegmentMeta;
|
|
183
|
+
/** 세그먼트 시작 시점의 뷰어 스냅샷 (즉시 렌더링용) */
|
|
184
|
+
initialSnapshot: ViewerSnapshot | null;
|
|
181
185
|
}
|
|
182
186
|
/** 세그먼트 종료됨 (뷰어 닫힘) */
|
|
183
187
|
export interface SegmentEndedPayload {
|