@integry/sdk 3.1.1-beta.10 → 3.1.1-beta.11
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 +12 -1
- package/dist/esm/index.csm.js +1 -1
- package/dist/umd/index.umd.d.ts +12 -1
- package/dist/umd/index.umd.js +1 -1
- package/package.json +1 -1
package/dist/esm/index.csm.d.ts
CHANGED
|
@@ -53,6 +53,15 @@ type IntegrySDKEvents = {
|
|
|
53
53
|
appIcon: string;
|
|
54
54
|
alreadyExists: boolean;
|
|
55
55
|
}) => void;
|
|
56
|
+
"did-fail-authorization-verification": (data: {
|
|
57
|
+
identity: string;
|
|
58
|
+
authorizationId: number;
|
|
59
|
+
flowId: number | null;
|
|
60
|
+
appId: number;
|
|
61
|
+
appName: string;
|
|
62
|
+
appIcon: string;
|
|
63
|
+
alreadyExists: boolean;
|
|
64
|
+
}) => void;
|
|
56
65
|
"did-select-authorization": (data: {
|
|
57
66
|
authorizationId: number;
|
|
58
67
|
}) => void;
|
|
@@ -105,7 +114,8 @@ interface SDKConfig {
|
|
|
105
114
|
xIntegryConfig?: {
|
|
106
115
|
isAnonymous?: boolean;
|
|
107
116
|
appAuth?: {
|
|
108
|
-
apiKey
|
|
117
|
+
apiKey?: string;
|
|
118
|
+
authId?: string;
|
|
109
119
|
extras?: Record<string, string | number>;
|
|
110
120
|
};
|
|
111
121
|
};
|
|
@@ -327,6 +337,7 @@ declare class IntegryJS {
|
|
|
327
337
|
*/
|
|
328
338
|
renderAccountConnectionModal: (data?: {
|
|
329
339
|
deploymentId?: string | undefined;
|
|
340
|
+
appId?: number | undefined;
|
|
330
341
|
} | undefined) => void;
|
|
331
342
|
/**
|
|
332
343
|
* Render the template form we ship
|