@tsocial/tvweb-sdk 5.34.3 → 5.34.4
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/build/types/index.d.ts
CHANGED
|
@@ -1362,7 +1362,17 @@ type ReadIDCardResult = {
|
|
|
1362
1362
|
];
|
|
1363
1363
|
fullVideo?: any;
|
|
1364
1364
|
capturingVideo?: any;
|
|
1365
|
-
apiResult?:
|
|
1365
|
+
apiResult?: {
|
|
1366
|
+
sanityResult: any;
|
|
1367
|
+
tamperingInfo: any;
|
|
1368
|
+
cardInfo: any;
|
|
1369
|
+
cardImageId: string;
|
|
1370
|
+
qrImageId: string;
|
|
1371
|
+
mp4VideoIds: {
|
|
1372
|
+
full: string;
|
|
1373
|
+
capturing: string;
|
|
1374
|
+
};
|
|
1375
|
+
};
|
|
1366
1376
|
};
|
|
1367
1377
|
type OutputEncryptionSettings = {
|
|
1368
1378
|
key: string;
|
|
@@ -1449,6 +1459,9 @@ type LivenessDetectionDoneResult = {
|
|
|
1449
1459
|
apiCheckPassed?: boolean;
|
|
1450
1460
|
verifyFaceLivenessResult?: any;
|
|
1451
1461
|
verifyFacePortraitResult?: any;
|
|
1462
|
+
uploadFramesResult: Array<{
|
|
1463
|
+
id: string;
|
|
1464
|
+
}>;
|
|
1452
1465
|
};
|
|
1453
1466
|
type VideoFrame = {
|
|
1454
1467
|
index: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsocial/tvweb-sdk",
|
|
3
|
-
"version": "5.34.
|
|
3
|
+
"version": "5.34.4",
|
|
4
4
|
"description": "TV Web SDK - The Standalone SDK",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"author": "Nha Hoang <nha.hoang@trustingsocial.com>",
|
|
@@ -29,14 +29,14 @@
|
|
|
29
29
|
"test": "echo \"Error: run tests from root\" && exit 1"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@tsocial/tvweb-builder": "5.34.
|
|
33
|
-
"@tsocial/tvweb-core": "5.34.
|
|
34
|
-
"@tsocial/tvweb-ui": "5.34.
|
|
32
|
+
"@tsocial/tvweb-builder": "5.34.4",
|
|
33
|
+
"@tsocial/tvweb-core": "5.34.4",
|
|
34
|
+
"@tsocial/tvweb-ui": "5.34.4",
|
|
35
35
|
"invariant": "^2.2.4",
|
|
36
36
|
"react": "^16.14.0",
|
|
37
37
|
"react-app-polyfill": "^2.0.0",
|
|
38
38
|
"react-dom": "^16.14.0",
|
|
39
39
|
"styled-components": "^6.1.12"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "9a9bcf28c76d38d12de2e2b4d8ed3534b3b5c037"
|
|
42
42
|
}
|