@gendive/slide 0.1.9 → 0.1.11
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.
- package/dist/ai/types/index.d.ts +10 -0
- package/dist/devdive-slide.cjs.js +55 -55
- package/dist/devdive-slide.cjs.js.map +1 -1
- package/dist/devdive-slide.es.js +1073 -1066
- package/dist/devdive-slide.es.js.map +1 -1
- package/dist/index.d.ts +10 -1
- package/dist/theme/index.d.ts +152 -7
- package/package.json +1 -1
package/dist/ai/types/index.d.ts
CHANGED
|
@@ -13,6 +13,16 @@ export interface AiProviderConfig {
|
|
|
13
13
|
apiKey: string;
|
|
14
14
|
baseUrl?: string;
|
|
15
15
|
model?: string;
|
|
16
|
+
/**
|
|
17
|
+
* @description 인증 헤더 전송 비활성화 (내부 프록시 사용 시)
|
|
18
|
+
* @Todo vibecode - true 설정 시 X-API-KEY 헤더 미전송
|
|
19
|
+
*/
|
|
20
|
+
skipAuth?: boolean;
|
|
21
|
+
/**
|
|
22
|
+
* @description 커스텀 헤더 추가
|
|
23
|
+
* @Todo vibecode - 내부 프록시에서 필요한 헤더 추가
|
|
24
|
+
*/
|
|
25
|
+
customHeaders?: Record<string, string>;
|
|
16
26
|
}
|
|
17
27
|
/**
|
|
18
28
|
* @description GLM 설정
|