@integry/sdk 3.1.3-beta.7 → 3.1.3
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
|
@@ -21,6 +21,10 @@ type IntegrySDKEvents = {
|
|
|
21
21
|
templateTitle: string;
|
|
22
22
|
templateDescription: string;
|
|
23
23
|
}) => void;
|
|
24
|
+
"did-load-integration": (data: {
|
|
25
|
+
flowId: number;
|
|
26
|
+
integrationId: number;
|
|
27
|
+
}) => void;
|
|
24
28
|
"did-save-integration": (data: {
|
|
25
29
|
integrationId: number;
|
|
26
30
|
name: string;
|
|
@@ -322,6 +326,7 @@ declare class IntegryJS {
|
|
|
322
326
|
*/
|
|
323
327
|
renderFlowSetupForm: (data: {
|
|
324
328
|
flowId?: string;
|
|
329
|
+
integrationId?: number;
|
|
325
330
|
flowContainerId: string;
|
|
326
331
|
}) => void;
|
|
327
332
|
/**
|