@readerseye2/cr_type 1.0.112 → 1.0.113
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.
|
@@ -235,9 +235,13 @@ export interface SessionHistoryListResult {
|
|
|
235
235
|
total: number;
|
|
236
236
|
hasMore: boolean;
|
|
237
237
|
}
|
|
238
|
-
/** 세션 이력 상세 결과 */
|
|
238
|
+
/** 세션 이력 상세 결과 (재생용 — 전체 청크 포함) */
|
|
239
239
|
export interface SessionHistoryGetResult {
|
|
240
240
|
manifest: UnifiedSessionManifest;
|
|
241
|
+
/** 세그먼트별 전체 청크 (재생용) */
|
|
242
|
+
chunks?: UnifiedChunkFile[];
|
|
243
|
+
/** 청크에서 추출한 전체 이벤트 (편의용) */
|
|
244
|
+
events?: ViewerEvent[];
|
|
241
245
|
}
|
|
242
246
|
/** 청크 조회 결과 */
|
|
243
247
|
export interface UnifiedChunksResult {
|