@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/umd/index.umd.d.ts
CHANGED
|
@@ -41,7 +41,7 @@ type IntegrySDKEvents = {
|
|
|
41
41
|
"did-add-authorization": (data: {
|
|
42
42
|
identity: string;
|
|
43
43
|
authorizationId: number;
|
|
44
|
-
flowId: number;
|
|
44
|
+
flowId: number | null;
|
|
45
45
|
appId: number;
|
|
46
46
|
alreadyExists: boolean;
|
|
47
47
|
}) => void;
|
|
@@ -275,6 +275,7 @@ declare class IntegryJS {
|
|
|
275
275
|
static Helpers: {
|
|
276
276
|
getAuthHash: (key: string, message: string) => Promise<string>;
|
|
277
277
|
};
|
|
278
|
+
private authModalId;
|
|
278
279
|
constructor(config: ConfigWithObject | ConfigWithUrlParams);
|
|
279
280
|
/**
|
|
280
281
|
*
|
|
@@ -302,6 +303,13 @@ declare class IntegryJS {
|
|
|
302
303
|
flowId?: string;
|
|
303
304
|
flowContainerId: string;
|
|
304
305
|
}) => void;
|
|
306
|
+
/**
|
|
307
|
+
* Render the template form we ship
|
|
308
|
+
* @param data
|
|
309
|
+
*/
|
|
310
|
+
renderAccountConnectionModal: (data?: {
|
|
311
|
+
deploymentId?: string | undefined;
|
|
312
|
+
} | undefined) => void;
|
|
305
313
|
/**
|
|
306
314
|
* Render the template form we ship
|
|
307
315
|
* @param templateId
|