@redplanethq/sdk 0.1.16 → 0.1.17
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/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -394,6 +394,8 @@ interface WidgetRenderContext {
|
|
|
394
394
|
name?: string;
|
|
395
395
|
}>;
|
|
396
396
|
baseUrl: string;
|
|
397
|
+
/** Call to trigger a TUI re-render after updating internal state (TUI only) */
|
|
398
|
+
requestRender?: () => void;
|
|
397
399
|
}
|
|
398
400
|
/** Metadata only — used in integration Spec (no render function) */
|
|
399
401
|
interface WidgetMeta {
|
package/dist/index.d.ts
CHANGED
|
@@ -394,6 +394,8 @@ interface WidgetRenderContext {
|
|
|
394
394
|
name?: string;
|
|
395
395
|
}>;
|
|
396
396
|
baseUrl: string;
|
|
397
|
+
/** Call to trigger a TUI re-render after updating internal state (TUI only) */
|
|
398
|
+
requestRender?: () => void;
|
|
397
399
|
}
|
|
398
400
|
/** Metadata only — used in integration Spec (no render function) */
|
|
399
401
|
interface WidgetMeta {
|