onfido-sdk-ui 14.37.0 → 14.38.0
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/LICENSE +1 -1
- package/package.json +1 -1
- package/types/shared/Types.d.ts +2 -0
package/LICENSE
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "onfido-sdk-ui",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.38.0",
|
|
4
4
|
"description": "JavaScript SDK view layer for Onfido identity verification",
|
|
5
5
|
"author": "Onfido Customer Support <support@onfido.com> (https://documentation.onfido.com/sdk/web/)",
|
|
6
6
|
"repository": {
|
package/types/shared/Types.d.ts
CHANGED
|
@@ -123,6 +123,7 @@ export type SdkToken = {
|
|
|
123
123
|
authUrl: URL;
|
|
124
124
|
onfidoApiUrl: URL;
|
|
125
125
|
telephonyUrl: URL;
|
|
126
|
+
crossDeviceUrl?: URL;
|
|
126
127
|
};
|
|
127
128
|
type: 'studio' | 'sdk';
|
|
128
129
|
};
|
|
@@ -171,6 +172,7 @@ export type JWT = {
|
|
|
171
172
|
auth_url: URL;
|
|
172
173
|
onfido_api_url: URL;
|
|
173
174
|
telephony_url: URL;
|
|
175
|
+
cross_device_url?: URL;
|
|
174
176
|
};
|
|
175
177
|
};
|
|
176
178
|
export type TrackedEventTypes = 'screen' | 'action' | 'flow' | 'view';
|