@integry/sdk 4.3.9 → 4.3.10
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/umd/index.umd.d.ts
CHANGED
|
@@ -547,6 +547,12 @@ declare class IntegryJS {
|
|
|
547
547
|
versionId?: number;
|
|
548
548
|
viewStyle?: string;
|
|
549
549
|
}) => void;
|
|
550
|
+
renderUI: (functionName: string, functionArguments: any, connectedAccountId: string) => Promise<Record<any, any>>;
|
|
551
|
+
invokeFunction: (functionDetails: any) => Promise<Record<any, any>>;
|
|
552
|
+
/**
|
|
553
|
+
* implement getFunctionDetails to return static example response to test with
|
|
554
|
+
*/
|
|
555
|
+
getFunctionDetails: (functionName: string, connectedAccountId: string) => Promise<Record<any, any>>;
|
|
550
556
|
/**
|
|
551
557
|
* Render the template form we ship
|
|
552
558
|
* @param data
|