@integry/sdk 3.1.4-beta.9 → 3.1.5-beta.10
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/umd/index.umd.d.ts
CHANGED
|
@@ -37,6 +37,16 @@ type IntegrySDKEvents = {
|
|
|
37
37
|
userIdentity: string;
|
|
38
38
|
isBrandingAppAuth: boolean;
|
|
39
39
|
}[];
|
|
40
|
+
steps: {
|
|
41
|
+
id: number;
|
|
42
|
+
authorization: number | null;
|
|
43
|
+
template_step: number;
|
|
44
|
+
app_user_data: {
|
|
45
|
+
id: number;
|
|
46
|
+
value: string | null;
|
|
47
|
+
template_field: number;
|
|
48
|
+
}[];
|
|
49
|
+
}[];
|
|
40
50
|
}) => void;
|
|
41
51
|
"did-load-preview": (data: {
|
|
42
52
|
flowId: number;
|
|
@@ -55,6 +65,7 @@ type IntegrySDKEvents = {
|
|
|
55
65
|
appName: string;
|
|
56
66
|
appIcon: string;
|
|
57
67
|
alreadyExists: boolean;
|
|
68
|
+
externalId?: string;
|
|
58
69
|
}) => void;
|
|
59
70
|
"did-fail-authorization-verification": (data: {
|
|
60
71
|
identity: string;
|
|
@@ -341,7 +352,7 @@ declare class IntegryJS {
|
|
|
341
352
|
} | undefined) => void;
|
|
342
353
|
/**
|
|
343
354
|
* Render the template form we ship
|
|
344
|
-
* @param
|
|
355
|
+
* @param params
|
|
345
356
|
*/
|
|
346
357
|
renderPreview: (params: PreviewPayload) => void;
|
|
347
358
|
/**
|