@integry/sdk 4.8.3 → 4.8.5
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
CHANGED
|
@@ -236,6 +236,7 @@ type RenderFlowStepOptions = {
|
|
|
236
236
|
hideMappingMenu?: boolean;
|
|
237
237
|
isReadOnly?: boolean;
|
|
238
238
|
showMenuOnLeft?: boolean;
|
|
239
|
+
chatBotUI?: boolean;
|
|
239
240
|
};
|
|
240
241
|
type RenderMappingMenuOptions = {
|
|
241
242
|
containerId: string;
|
|
@@ -711,7 +712,7 @@ declare class IntegryJS {
|
|
|
711
712
|
showFunctionUI: (functionName: string, functionArguments?: {
|
|
712
713
|
[key: string]: any;
|
|
713
714
|
}, connectedAccountId?: string | undefined, isReadOnly?: boolean) => Promise<Record<any, any>>;
|
|
714
|
-
showFunction: (functionName: string, options?: ShowFunctionOptions, renderMode?: RenderModes, containerId?: string | undefined) => Promise<Record<any, any>>;
|
|
715
|
+
showFunction: (functionName: string, options?: ShowFunctionOptions, renderMode?: RenderModes, containerId?: string | undefined, chatBotUI?: boolean) => Promise<Record<any, any>>;
|
|
715
716
|
invokeFunction: (functionName: string, params: {
|
|
716
717
|
[key: string]: any;
|
|
717
718
|
}, connectedAccountId: string) => Promise<Record<any, any>>;
|