@integry/sdk 4.4.32 → 4.4.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/.vscode/launch.json +2 -2
- package/dist/esm/index.csm.d.ts +11 -0
- package/dist/esm/index.csm.js +1 -1
- package/dist/umd/index.umd.d.ts +11 -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
|
@@ -587,6 +587,7 @@ declare class IntegryJS {
|
|
|
587
587
|
eventEmitter: EventEmitter<IntegrySDKEvents>;
|
|
588
588
|
static html: (strings: TemplateStringsArray, ...values: any[]) => import("preact").VNode<{}>;
|
|
589
589
|
static RenderModes: typeof RenderModes;
|
|
590
|
+
static TemplateFormRenderModes: typeof TemplateFormRenderModes;
|
|
590
591
|
static Layouts: typeof Layouts;
|
|
591
592
|
static ViewStyles: typeof ViewStyles;
|
|
592
593
|
static MarketplaceRenderModes: typeof MarketplaceRenderModes;
|
|
@@ -632,9 +633,19 @@ declare class IntegryJS {
|
|
|
632
633
|
showFunctionUI: (functionName: string, functionArguments?: {
|
|
633
634
|
[key: string]: any;
|
|
634
635
|
}, connectedAccountId?: string | undefined) => Promise<Record<any, any>>;
|
|
636
|
+
showFunction: (functionName: string, params?: {
|
|
637
|
+
[key: string]: any;
|
|
638
|
+
}, vars?: {
|
|
639
|
+
[key: string]: any;
|
|
640
|
+
}, autoMapVars?: boolean, connectedAccountId?: string | undefined) => Promise<Record<any, any>>;
|
|
635
641
|
invokeFunction: (functionName: string, params: {
|
|
636
642
|
[key: string]: any;
|
|
637
643
|
}, connectedAccountId: string) => Promise<Record<any, any>>;
|
|
644
|
+
callFunction: (functionName: string, params: {
|
|
645
|
+
[key: string]: any;
|
|
646
|
+
}, vars: {
|
|
647
|
+
[key: string]: any;
|
|
648
|
+
} | undefined, connectedAccountId: string) => Promise<Record<any, any>>;
|
|
638
649
|
connectApp: (appName: string) => Promise<string>;
|
|
639
650
|
disconnectApp: (appName: string, connectedAccountId?: string | undefined) => Promise<any>;
|
|
640
651
|
isAppConnected: (appName: string) => Promise<any>;
|