@integry/sdk 3.1.3-beta.7 → 3.1.4-beta.2
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/esm/index.csm.d.ts
CHANGED
|
@@ -22,6 +22,10 @@ type IntegrySDKEvents = {
|
|
|
22
22
|
templateTitle: string;
|
|
23
23
|
templateDescription: string;
|
|
24
24
|
}) => void;
|
|
25
|
+
"did-load-integration": (data: {
|
|
26
|
+
flowId: number;
|
|
27
|
+
integrationId: number;
|
|
28
|
+
}) => void;
|
|
25
29
|
"did-save-integration": (data: {
|
|
26
30
|
integrationId: number;
|
|
27
31
|
name: string;
|
|
@@ -332,6 +336,7 @@ declare class IntegryJS {
|
|
|
332
336
|
*/
|
|
333
337
|
renderFlowSetupForm: (data: {
|
|
334
338
|
flowId?: string;
|
|
339
|
+
integrationId?: number;
|
|
335
340
|
flowContainerId: string;
|
|
336
341
|
}) => void;
|
|
337
342
|
/**
|