@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/.vscode/launch.json
CHANGED
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
// "url": "file:////Users/yasir/Downloads/Flows%20-%20Integry%20SDK%20sample-23.html",
|
|
14
14
|
// "url": "file:////Users/yasir/Downloads/Flows%20-%20Integry%20SDK%20sample%20(33).html",
|
|
15
15
|
// "url": "file:////Users/yasir/Downloads/Integry SDK sample code (17).html",
|
|
16
|
-
|
|
17
|
-
"url": "file:////Users/yasir/Downloads/Node-webhook-object-not-used-as-source.html",
|
|
16
|
+
"url": "file:////Users/yasir/Downloads/Flows - Integry SDK sample (41).html",
|
|
17
|
+
// "url": "file:////Users/yasir/Downloads/Node-webhook-object-not-used-as-source.html",
|
|
18
18
|
"webRoot": "${workspaceFolder}/src"
|
|
19
19
|
}
|
|
20
20
|
]
|
package/dist/esm/index.csm.d.ts
CHANGED
|
@@ -632,9 +632,19 @@ declare class IntegryJS {
|
|
|
632
632
|
showFunctionUI: (functionName: string, functionArguments?: {
|
|
633
633
|
[key: string]: any;
|
|
634
634
|
}, connectedAccountId?: string | undefined) => Promise<Record<any, any>>;
|
|
635
|
+
showFunction: (functionName: string, params?: {
|
|
636
|
+
[key: string]: any;
|
|
637
|
+
}, vars?: {
|
|
638
|
+
[key: string]: any;
|
|
639
|
+
}, autoMapVars?: boolean, connectedAccountId?: string | undefined) => Promise<Record<any, any>>;
|
|
635
640
|
invokeFunction: (functionName: string, params: {
|
|
636
641
|
[key: string]: any;
|
|
637
642
|
}, connectedAccountId: string) => Promise<Record<any, any>>;
|
|
643
|
+
callFunction: (functionName: string, params: {
|
|
644
|
+
[key: string]: any;
|
|
645
|
+
}, vars: {
|
|
646
|
+
[key: string]: any;
|
|
647
|
+
} | undefined, connectedAccountId: string) => Promise<Record<any, any>>;
|
|
638
648
|
connectApp: (appName: string) => Promise<string>;
|
|
639
649
|
disconnectApp: (appName: string, connectedAccountId?: string | undefined) => Promise<any>;
|
|
640
650
|
isAppConnected: (appName: string) => Promise<any>;
|