@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/esm/index.csm.d.ts
CHANGED
|
@@ -38,6 +38,16 @@ type IntegrySDKEvents = {
|
|
|
38
38
|
userIdentity: string;
|
|
39
39
|
isBrandingAppAuth: boolean;
|
|
40
40
|
}[];
|
|
41
|
+
steps: {
|
|
42
|
+
id: number;
|
|
43
|
+
authorization: number | null;
|
|
44
|
+
template_step: number;
|
|
45
|
+
app_user_data: {
|
|
46
|
+
id: number;
|
|
47
|
+
value: string | null;
|
|
48
|
+
template_field: number;
|
|
49
|
+
}[];
|
|
50
|
+
}[];
|
|
41
51
|
}) => void;
|
|
42
52
|
"did-load-preview": (data: {
|
|
43
53
|
flowId: number;
|
|
@@ -56,6 +66,7 @@ type IntegrySDKEvents = {
|
|
|
56
66
|
appName: string;
|
|
57
67
|
appIcon: string;
|
|
58
68
|
alreadyExists: boolean;
|
|
69
|
+
externalId?: string;
|
|
59
70
|
}) => void;
|
|
60
71
|
"did-fail-authorization-verification": (data: {
|
|
61
72
|
identity: string;
|
|
@@ -351,7 +362,7 @@ declare class IntegryJS {
|
|
|
351
362
|
} | undefined) => void;
|
|
352
363
|
/**
|
|
353
364
|
* Render the template form we ship
|
|
354
|
-
* @param
|
|
365
|
+
* @param params
|
|
355
366
|
*/
|
|
356
367
|
renderPreview: (params: PreviewPayload) => void;
|
|
357
368
|
/**
|