@integry/sdk 4.8.33 → 4.8.34
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/esm/index.csm.d.ts
CHANGED
|
@@ -268,6 +268,13 @@ type RenderFlowStepOptions = {
|
|
|
268
268
|
isReadOnly?: boolean;
|
|
269
269
|
showMenuOnLeft?: boolean;
|
|
270
270
|
chatBotUI?: boolean;
|
|
271
|
+
showCustomFunctionsList?: boolean;
|
|
272
|
+
functionListDialogOpened?: (details: {
|
|
273
|
+
container: HTMLDivElement | null;
|
|
274
|
+
containerId: string;
|
|
275
|
+
}) => void;
|
|
276
|
+
functionsListContainerId?: string;
|
|
277
|
+
onCustomFunctionSelect?: (handler: (functionId: number | string) => void | Promise<void>) => void;
|
|
271
278
|
};
|
|
272
279
|
type RenderMappingMenuOptions = {
|
|
273
280
|
containerId: string;
|
|
@@ -658,6 +665,13 @@ interface FunctionFieldType {
|
|
|
658
665
|
isReadOnly?: boolean;
|
|
659
666
|
field: TemplateField;
|
|
660
667
|
tagsTree?: any;
|
|
668
|
+
showCustomFunctionsList?: boolean;
|
|
669
|
+
functionListDialogOpened?: (details: {
|
|
670
|
+
container: HTMLDivElement | null;
|
|
671
|
+
containerId: string;
|
|
672
|
+
}) => void;
|
|
673
|
+
functionsListContainerId?: string;
|
|
674
|
+
onCustomFunctionSelect?: (handler: (functionId: number | string) => void | Promise<void>) => void;
|
|
661
675
|
}
|
|
662
676
|
/**
|
|
663
677
|
*
|