@integry/sdk 3.1.0 → 3.1.1-beta.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/esm/index.csm.d.ts
CHANGED
|
@@ -42,7 +42,7 @@ type IntegrySDKEvents = {
|
|
|
42
42
|
"did-add-authorization": (data: {
|
|
43
43
|
identity: string;
|
|
44
44
|
authorizationId: number;
|
|
45
|
-
flowId: number;
|
|
45
|
+
flowId: number | null;
|
|
46
46
|
appId: number;
|
|
47
47
|
alreadyExists: boolean;
|
|
48
48
|
}) => void;
|
|
@@ -285,6 +285,7 @@ declare class IntegryJS {
|
|
|
285
285
|
static Helpers: {
|
|
286
286
|
getAuthHash: (key: string, message: string) => Promise<string>;
|
|
287
287
|
};
|
|
288
|
+
private authModalId;
|
|
288
289
|
constructor(config: ConfigWithObject | ConfigWithUrlParams);
|
|
289
290
|
/**
|
|
290
291
|
*
|
|
@@ -312,6 +313,13 @@ declare class IntegryJS {
|
|
|
312
313
|
flowId?: string;
|
|
313
314
|
flowContainerId: string;
|
|
314
315
|
}) => void;
|
|
316
|
+
/**
|
|
317
|
+
* Render the template form we ship
|
|
318
|
+
* @param data
|
|
319
|
+
*/
|
|
320
|
+
renderAccountConnectionModal: (data?: {
|
|
321
|
+
deploymentId?: string | undefined;
|
|
322
|
+
} | undefined) => void;
|
|
315
323
|
/**
|
|
316
324
|
* Render the template form we ship
|
|
317
325
|
* @param templateId
|