From f5b7ca2ce861d8ac5b37c069f1721c94cc500510 Mon Sep 17 00:00:00 2001 From: Tate Date: Fri, 13 Mar 2026 16:32:04 +1300 Subject: [PATCH] Update panel functions and text editable extension --- src/index.d.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/index.d.ts b/src/index.d.ts index 0e00b5f..cb6c90f 100644 --- a/src/index.d.ts +++ b/src/index.d.ts @@ -4,7 +4,6 @@ import type { Input, InputType, RichTextInput, - SnippetConfig, Structure, StructureValue, UrlInput, @@ -609,10 +608,12 @@ export interface CloudCannonJavaScriptV1API { elementType?: string; editableType?: string; inputConfig?: RichTextInput; + extension?: string; } ): Promise; - createCustomDataPanel(options: CreateCustomDataPanelOptions): Promise; + createCustomDataPanel(options: CreateCustomDataPanelOptions): Promise; + destroyCustomDataPanel(id: string): Promise; getPreviewUrl(originalUrl: string, inputConfig?: Input): Promise; }