@integry/sdk 4.4.32 → 4.4.33
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/.vscode/launch.json +2 -2
- package/dist/esm/index.csm.d.ts +10 -0
- package/dist/esm/index.csm.js +1 -1
- package/dist/umd/index.umd.d.ts +10 -0
- package/dist/umd/index.umd.js +1 -1
- package/package.json +1 -1
package/dist/umd/index.umd.d.ts
CHANGED
|
@@ -622,9 +622,19 @@ declare class IntegryJS {
|
|
|
622
622
|
showFunctionUI: (functionName: string, functionArguments?: {
|
|
623
623
|
[key: string]: any;
|
|
624
624
|
}, connectedAccountId?: string | undefined) => Promise<Record<any, any>>;
|
|
625
|
+
showFunction: (functionName: string, params?: {
|
|
626
|
+
[key: string]: any;
|
|
627
|
+
}, vars?: {
|
|
628
|
+
[key: string]: any;
|
|
629
|
+
}, autoMapVars?: boolean, connectedAccountId?: string | undefined) => Promise<Record<any, any>>;
|
|
625
630
|
invokeFunction: (functionName: string, params: {
|
|
626
631
|
[key: string]: any;
|
|
627
632
|
}, connectedAccountId: string) => Promise<Record<any, any>>;
|
|
633
|
+
callFunction: (functionName: string, params: {
|
|
634
|
+
[key: string]: any;
|
|
635
|
+
}, vars: {
|
|
636
|
+
[key: string]: any;
|
|
637
|
+
} | undefined, connectedAccountId: string) => Promise<Record<any, any>>;
|
|
628
638
|
connectApp: (appName: string) => Promise<string>;
|
|
629
639
|
disconnectApp: (appName: string, connectedAccountId?: string | undefined) => Promise<any>;
|
|
630
640
|
isAppConnected: (appName: string) => Promise<any>;
|