@gendive/slide 0.1.4 → 0.1.6

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.
@@ -25,6 +25,15 @@ export interface SlideStructureItem {
25
25
  layout: string;
26
26
  purpose: string;
27
27
  }
28
+ /**
29
+ * @description 현재 슬라이드 콘텐츠 타입
30
+ * @Todo vibecode - AI 편집 시 현재 내용 전달용
31
+ */
32
+ export interface CurrentSlideContent {
33
+ title?: string;
34
+ subtitle?: string;
35
+ bodyTexts?: string[];
36
+ }
28
37
  /**
29
38
  * @description 슬라이드 콘텐츠 생성 요청 타입
30
39
  */
@@ -36,6 +45,7 @@ export interface SlideContentRequest {
36
45
  purpose: string;
37
46
  style: string;
38
47
  language: 'ko' | 'en';
48
+ currentContent?: CurrentSlideContent;
39
49
  }
40
50
  /**
41
51
  * @description 개별 슬라이드 콘텐츠 생성
@@ -4,3 +4,4 @@
4
4
  */
5
5
  export { glmProvider, GlmApiError } from './glmProvider';
6
6
  export { devdiveProvider, DevDiveApiError } from './devdiveProvider';
7
+ export type { CurrentSlideContent, SlideContentRequest } from './devdiveProvider';