@integry/sdk 4.8.33 → 4.8.35
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/esm/index.csm.d.ts +14 -0
- package/dist/esm/index.csm.js +1 -1
- package/dist/umd/index.umd.d.ts +14 -0
- package/dist/umd/index.umd.js +1 -1
- package/package.json +1 -1
package/dist/umd/index.umd.d.ts
CHANGED
|
@@ -267,6 +267,13 @@ type RenderFlowStepOptions = {
|
|
|
267
267
|
isReadOnly?: boolean;
|
|
268
268
|
showMenuOnLeft?: boolean;
|
|
269
269
|
chatBotUI?: boolean;
|
|
270
|
+
showCustomFunctionsList?: boolean;
|
|
271
|
+
functionListDialogOpened?: (details: {
|
|
272
|
+
container: HTMLDivElement | null;
|
|
273
|
+
containerId: string;
|
|
274
|
+
}) => void;
|
|
275
|
+
functionsListContainerId?: string;
|
|
276
|
+
onCustomFunctionSelect?: (handler: (functionId: number | string) => void | Promise<void>) => void;
|
|
270
277
|
};
|
|
271
278
|
type RenderMappingMenuOptions = {
|
|
272
279
|
containerId: string;
|
|
@@ -657,6 +664,13 @@ interface FunctionFieldType {
|
|
|
657
664
|
isReadOnly?: boolean;
|
|
658
665
|
field: TemplateField;
|
|
659
666
|
tagsTree?: any;
|
|
667
|
+
showCustomFunctionsList?: boolean;
|
|
668
|
+
functionListDialogOpened?: (details: {
|
|
669
|
+
container: HTMLDivElement | null;
|
|
670
|
+
containerId: string;
|
|
671
|
+
}) => void;
|
|
672
|
+
functionsListContainerId?: string;
|
|
673
|
+
onCustomFunctionSelect?: (handler: (functionId: number | string) => void | Promise<void>) => void;
|
|
660
674
|
}
|
|
661
675
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
662
676
|
type EventSet = Record<string, (...args: any[]) => void>;
|