@vanira/sdk 0.0.36 → 0.0.37
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/ui/presets/WidgetPresetRenderer.d.ts +3 -1
- package/dist/vanira-sdk.es.js +117 -53
- package/dist/vanira-sdk.js +98 -34
- package/dist/vanira-sdk.js.map +1 -1
- package/package.json +1 -1
|
@@ -14,7 +14,7 @@ export declare class WidgetPresetRenderer {
|
|
|
14
14
|
private calSelectedTime;
|
|
15
15
|
constructor(_root: ShadowRoot);
|
|
16
16
|
/** Returns true if this tool call contains a known preset_id and was handled */
|
|
17
|
-
handle(toolCall: any, onComplete: OnComplete, onCancel: OnCancel): boolean;
|
|
17
|
+
handle(toolCall: any, onComplete: OnComplete, onCancel: OnCancel, client?: any): boolean;
|
|
18
18
|
/** Force-dismiss the active preset (call on disconnect) */
|
|
19
19
|
dismiss(): void;
|
|
20
20
|
private injectStyles;
|
|
@@ -24,5 +24,7 @@ export declare class WidgetPresetRenderer {
|
|
|
24
24
|
private loadSlots;
|
|
25
25
|
private renderSlots;
|
|
26
26
|
private renderForm;
|
|
27
|
+
private renderCamera;
|
|
28
|
+
private renderUpload;
|
|
27
29
|
}
|
|
28
30
|
export {};
|