@regulaforensics/facesdk-webclient 4.1.4 → 4.1.6
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/cjs-es5/api/matching-api.js +88 -5
- package/dist/cjs-es5/models/faces-response-all-of.js +16 -0
- package/dist/cjs-es5/models/faces-response.js +16 -0
- package/dist/cjs-es5/models/index.js +12 -2
- package/dist/cjs-es5/models/match-and-search-request-all-of-images.js +16 -0
- package/dist/cjs-es5/models/match-and-search-request-all-of.js +16 -0
- package/dist/cjs-es5/models/match-and-search-request.js +16 -0
- package/dist/cjs-es5/models/match-and-search-response-all-of-detections.js +16 -0
- package/dist/cjs-es5/models/match-and-search-response-all-of.js +16 -0
- package/dist/cjs-es5/models/match-and-search-response.js +16 -0
- package/dist/cjs-es5/models/person-with-images-all-of.js +16 -0
- package/dist/cjs-es5/models/person-with-images.js +16 -0
- package/dist/cjs-es5/models/search-parameters.js +16 -0
- package/dist/esm-es5/api/matching-api.js +88 -5
- package/dist/esm-es5/models/faces-response-all-of.js +14 -0
- package/dist/esm-es5/models/faces-response.js +14 -0
- package/dist/esm-es5/models/index.js +12 -2
- package/dist/esm-es5/models/match-and-search-request-all-of-images.js +14 -0
- package/dist/esm-es5/models/match-and-search-request-all-of.js +14 -0
- package/dist/esm-es5/models/match-and-search-request.js +14 -0
- package/dist/esm-es5/models/match-and-search-response-all-of-detections.js +14 -0
- package/dist/esm-es5/models/match-and-search-response-all-of.js +14 -0
- package/dist/esm-es5/models/match-and-search-response.js +14 -0
- package/dist/esm-es5/models/person-with-images-all-of.js +14 -0
- package/dist/esm-es5/models/person-with-images.js +14 -0
- package/dist/esm-es5/models/search-parameters.js +14 -0
- package/package.json +1 -1
- package/src/api/matching-api.ts +85 -4
- package/src/models/crop.ts +1 -1
- package/src/models/faces-response-all-of.ts +37 -0
- package/src/models/faces-response.ts +26 -0
- package/src/models/image.ts +12 -0
- package/src/models/index.ts +11 -1
- package/src/models/match-and-search-request-all-of-images.ts +38 -0
- package/src/models/match-and-search-request-all-of.ts +31 -0
- package/src/models/match-and-search-request.ts +26 -0
- package/src/models/match-and-search-response-all-of-detections.ts +44 -0
- package/src/models/match-and-search-response-all-of.ts +50 -0
- package/src/models/match-and-search-response.ts +28 -0
- package/src/models/person-with-images-all-of.ts +31 -0
- package/src/models/person-with-images.ts +26 -0
- package/src/models/recognize-image-all-of.ts +6 -0
- package/src/models/search-parameters.ts +42 -0
- package/src/models/search-request.ts +2 -2
|
@@ -13,6 +13,8 @@ export * from './face-quality-config-name';
|
|
|
13
13
|
export * from './face-quality-scenarios';
|
|
14
14
|
export * from './face-sdkresult';
|
|
15
15
|
export * from './face-sdkresult-code';
|
|
16
|
+
export * from './faces-response';
|
|
17
|
+
export * from './faces-response-all-of';
|
|
16
18
|
export * from './group';
|
|
17
19
|
export * from './group-all-of';
|
|
18
20
|
export * from './group-page';
|
|
@@ -24,6 +26,12 @@ export * from './image-fields-image';
|
|
|
24
26
|
export * from './image-page';
|
|
25
27
|
export * from './image-page-all-of';
|
|
26
28
|
export * from './image-source';
|
|
29
|
+
export * from './match-and-search-request';
|
|
30
|
+
export * from './match-and-search-request-all-of';
|
|
31
|
+
export * from './match-and-search-request-all-of-images';
|
|
32
|
+
export * from './match-and-search-response';
|
|
33
|
+
export * from './match-and-search-response-all-of';
|
|
34
|
+
export * from './match-and-search-response-all-of-detections';
|
|
27
35
|
export * from './match-image';
|
|
28
36
|
export * from './match-image-detection';
|
|
29
37
|
export * from './match-image-result';
|
|
@@ -36,6 +44,8 @@ export * from './page';
|
|
|
36
44
|
export * from './person';
|
|
37
45
|
export * from './person-all-of';
|
|
38
46
|
export * from './person-fields';
|
|
47
|
+
export * from './person-with-images';
|
|
48
|
+
export * from './person-with-images-all-of';
|
|
39
49
|
export * from './persons-page';
|
|
40
50
|
export * from './persons-page-all-of';
|
|
41
51
|
export * from './process-param';
|
|
@@ -45,10 +55,10 @@ export * from './quality-details-groups';
|
|
|
45
55
|
export * from './quality-request';
|
|
46
56
|
export * from './recognize-image';
|
|
47
57
|
export * from './recognize-image-all-of';
|
|
58
|
+
export * from './search-parameters';
|
|
48
59
|
export * from './search-person';
|
|
49
60
|
export * from './search-person-all-of';
|
|
50
61
|
export * from './search-request';
|
|
51
|
-
export * from './search-request-all-of';
|
|
52
62
|
export * from './search-result';
|
|
53
63
|
export * from './update-group';
|
|
54
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
64
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvbW9kZWxzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsUUFBUSxDQUFDO0FBQ3ZCLGNBQWMsa0JBQWtCLENBQUM7QUFDakMsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMsaUJBQWlCLENBQUM7QUFDaEMsY0FBYyxhQUFhLENBQUM7QUFDNUIsY0FBYyxrQkFBa0IsQ0FBQztBQUNqQyxjQUFjLHFCQUFxQixDQUFDO0FBQ3BDLGNBQWMsaUNBQWlDLENBQUM7QUFDaEQsY0FBYyw2QkFBNkIsQ0FBQztBQUM1QyxjQUFjLDZCQUE2QixDQUFDO0FBQzVDLGNBQWMsNEJBQTRCLENBQUM7QUFDM0MsY0FBYywwQkFBMEIsQ0FBQztBQUN6QyxjQUFjLGtCQUFrQixDQUFDO0FBQ2pDLGNBQWMsdUJBQXVCLENBQUM7QUFDdEMsY0FBYyxrQkFBa0IsQ0FBQztBQUNqQyxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMsU0FBUyxDQUFDO0FBQ3hCLGNBQWMsZ0JBQWdCLENBQUM7QUFDL0IsY0FBYyxjQUFjLENBQUM7QUFDN0IsY0FBYyxxQkFBcUIsQ0FBQztBQUNwQyxjQUFjLG1CQUFtQixDQUFDO0FBQ2xDLGNBQWMsU0FBUyxDQUFDO0FBQ3hCLGNBQWMsZ0JBQWdCLENBQUM7QUFDL0IsY0FBYyxzQkFBc0IsQ0FBQztBQUNyQyxjQUFjLGNBQWMsQ0FBQztBQUM3QixjQUFjLHFCQUFxQixDQUFDO0FBQ3BDLGNBQWMsZ0JBQWdCLENBQUM7QUFDL0IsY0FBYyw0QkFBNEIsQ0FBQztBQUMzQyxjQUFjLG1DQUFtQyxDQUFDO0FBQ2xELGNBQWMsMENBQTBDLENBQUM7QUFDekQsY0FBYyw2QkFBNkIsQ0FBQztBQUM1QyxjQUFjLG9DQUFvQyxDQUFDO0FBQ25ELGNBQWMsK0NBQStDLENBQUM7QUFDOUQsY0FBYyxlQUFlLENBQUM7QUFDOUIsY0FBYyx5QkFBeUIsQ0FBQztBQUN4QyxjQUFjLHNCQUFzQixDQUFDO0FBQ3JDLGNBQWMsaUJBQWlCLENBQUM7QUFDaEMsY0FBYyxrQkFBa0IsQ0FBQztBQUNqQyxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMsaUJBQWlCLENBQUM7QUFDaEMsY0FBYyx1QkFBdUIsQ0FBQztBQUN0QyxjQUFjLFFBQVEsQ0FBQztBQUN2QixjQUFjLFVBQVUsQ0FBQztBQUN6QixjQUFjLGlCQUFpQixDQUFDO0FBQ2hDLGNBQWMsaUJBQWlCLENBQUM7QUFDaEMsY0FBYyxzQkFBc0IsQ0FBQztBQUNyQyxjQUFjLDZCQUE2QixDQUFDO0FBQzVDLGNBQWMsZ0JBQWdCLENBQUM7QUFDL0IsY0FBYyx1QkFBdUIsQ0FBQztBQUN0QyxjQUFjLGlCQUFpQixDQUFDO0FBQ2hDLGNBQWMsa0JBQWtCLENBQUM7QUFDakMsY0FBYyxrQkFBa0IsQ0FBQztBQUNqQyxjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMsbUJBQW1CLENBQUM7QUFDbEMsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMscUJBQXFCLENBQUM7QUFDcEMsY0FBYyxpQkFBaUIsQ0FBQztBQUNoQyxjQUFjLHdCQUF3QixDQUFDO0FBQ3ZDLGNBQWMsa0JBQWtCLENBQUM7QUFDakMsY0FBYyxpQkFBaUIsQ0FBQztBQUNoQyxjQUFjLGdCQUFnQixDQUFDIn0=
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Regula FaceSDK Web API
|
|
5
|
+
* Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 4.1.3
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWF0Y2gtYW5kLXNlYXJjaC1yZXF1ZXN0LWFsbC1vZi1pbWFnZXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvbW9kZWxzL21hdGNoLWFuZC1zZWFyY2gtcmVxdWVzdC1hbGwtb2YtaW1hZ2VzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLG9CQUFvQjtBQUNwQixvQkFBb0I7QUFDcEI7Ozs7Ozs7Ozs7R0FVRyJ9
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Regula FaceSDK Web API
|
|
5
|
+
* Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 4.1.3
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWF0Y2gtYW5kLXNlYXJjaC1yZXF1ZXN0LWFsbC1vZi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9tb2RlbHMvbWF0Y2gtYW5kLXNlYXJjaC1yZXF1ZXN0LWFsbC1vZi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxvQkFBb0I7QUFDcEIsb0JBQW9CO0FBQ3BCOzs7Ozs7Ozs7O0dBVUcifQ==
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Regula FaceSDK Web API
|
|
5
|
+
* Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 4.1.3
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWF0Y2gtYW5kLXNlYXJjaC1yZXF1ZXN0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL21vZGVscy9tYXRjaC1hbmQtc2VhcmNoLXJlcXVlc3QudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsb0JBQW9CO0FBQ3BCLG9CQUFvQjtBQUNwQjs7Ozs7Ozs7OztHQVVHIn0=
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Regula FaceSDK Web API
|
|
5
|
+
* Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 4.1.3
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWF0Y2gtYW5kLXNlYXJjaC1yZXNwb25zZS1hbGwtb2YtZGV0ZWN0aW9ucy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9tb2RlbHMvbWF0Y2gtYW5kLXNlYXJjaC1yZXNwb25zZS1hbGwtb2YtZGV0ZWN0aW9ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxvQkFBb0I7QUFDcEIsb0JBQW9CO0FBQ3BCOzs7Ozs7Ozs7O0dBVUcifQ==
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Regula FaceSDK Web API
|
|
5
|
+
* Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 4.1.3
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWF0Y2gtYW5kLXNlYXJjaC1yZXNwb25zZS1hbGwtb2YuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvbW9kZWxzL21hdGNoLWFuZC1zZWFyY2gtcmVzcG9uc2UtYWxsLW9mLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLG9CQUFvQjtBQUNwQixvQkFBb0I7QUFDcEI7Ozs7Ozs7Ozs7R0FVRyJ9
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Regula FaceSDK Web API
|
|
5
|
+
* Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 4.1.3
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWF0Y2gtYW5kLXNlYXJjaC1yZXNwb25zZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9tb2RlbHMvbWF0Y2gtYW5kLXNlYXJjaC1yZXNwb25zZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxvQkFBb0I7QUFDcEIsb0JBQW9CO0FBQ3BCOzs7Ozs7Ozs7O0dBVUcifQ==
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Regula FaceSDK Web API
|
|
5
|
+
* Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 4.1.3
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGVyc29uLXdpdGgtaW1hZ2VzLWFsbC1vZi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9tb2RlbHMvcGVyc29uLXdpdGgtaW1hZ2VzLWFsbC1vZi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxvQkFBb0I7QUFDcEIsb0JBQW9CO0FBQ3BCOzs7Ozs7Ozs7O0dBVUcifQ==
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Regula FaceSDK Web API
|
|
5
|
+
* Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 4.1.3
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGVyc29uLXdpdGgtaW1hZ2VzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL21vZGVscy9wZXJzb24td2l0aC1pbWFnZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsb0JBQW9CO0FBQ3BCLG9CQUFvQjtBQUNwQjs7Ozs7Ozs7OztHQVVHIn0=
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Regula FaceSDK Web API
|
|
5
|
+
* Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 4.1.3
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VhcmNoLXBhcmFtZXRlcnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvbW9kZWxzL3NlYXJjaC1wYXJhbWV0ZXJzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLG9CQUFvQjtBQUNwQixvQkFBb0I7QUFDcEI7Ozs7Ozs7Ozs7R0FVRyJ9
|
package/package.json
CHANGED
package/src/api/matching-api.ts
CHANGED
|
@@ -25,6 +25,10 @@ import { DetectRequest } from '../models';
|
|
|
25
25
|
// @ts-ignore
|
|
26
26
|
import { DetectResponse } from '../models';
|
|
27
27
|
// @ts-ignore
|
|
28
|
+
import { MatchAndSearchRequest } from '../models';
|
|
29
|
+
// @ts-ignore
|
|
30
|
+
import { MatchAndSearchResponse } from '../models';
|
|
31
|
+
// @ts-ignore
|
|
28
32
|
import { MatchRequest } from '../models';
|
|
29
33
|
// @ts-ignore
|
|
30
34
|
import { MatchResponse } from '../models';
|
|
@@ -77,7 +81,7 @@ export const MatchingApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
77
81
|
},
|
|
78
82
|
/**
|
|
79
83
|
*
|
|
80
|
-
* @summary Compare provided face images in all combinations and return similarity score for each pair.
|
|
84
|
+
* @summary Compare provided face images in all combinations and return the similarity score for each pair.
|
|
81
85
|
* @param {MatchRequest} matchRequest
|
|
82
86
|
* @param {string} [xRequestID]
|
|
83
87
|
* @param {*} [options] Override http request option.
|
|
@@ -111,6 +115,47 @@ export const MatchingApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
111
115
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
112
116
|
localVarRequestOptions.data = serializeDataIfNeeded(matchRequest, localVarRequestOptions, configuration)
|
|
113
117
|
|
|
118
|
+
return {
|
|
119
|
+
url: toPathString(localVarUrlObj),
|
|
120
|
+
options: localVarRequestOptions,
|
|
121
|
+
};
|
|
122
|
+
},
|
|
123
|
+
/**
|
|
124
|
+
*
|
|
125
|
+
* @summary Match and Search in one request
|
|
126
|
+
* @param {MatchAndSearchRequest} matchAndSearchRequest
|
|
127
|
+
* @param {string} [xRequestID]
|
|
128
|
+
* @param {*} [options] Override http request option.
|
|
129
|
+
* @throws {RequiredError}
|
|
130
|
+
*/
|
|
131
|
+
matchAndSearch: async (matchAndSearchRequest: MatchAndSearchRequest, xRequestID?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
132
|
+
// verify required parameter 'matchAndSearchRequest' is not null or undefined
|
|
133
|
+
assertParamExists('matchAndSearch', 'matchAndSearchRequest', matchAndSearchRequest)
|
|
134
|
+
const localVarPath = `/api/match_and_search`;
|
|
135
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
136
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
137
|
+
let baseOptions;
|
|
138
|
+
if (configuration) {
|
|
139
|
+
baseOptions = configuration.baseOptions;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
143
|
+
const localVarHeaderParameter = {} as any;
|
|
144
|
+
const localVarQueryParameter = {} as any;
|
|
145
|
+
|
|
146
|
+
if (xRequestID !== undefined && xRequestID !== null) {
|
|
147
|
+
localVarHeaderParameter['X-RequestID'] = String(xRequestID);
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
153
|
+
|
|
154
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
155
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
156
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
157
|
+
localVarRequestOptions.data = serializeDataIfNeeded(matchAndSearchRequest, localVarRequestOptions, configuration)
|
|
158
|
+
|
|
114
159
|
return {
|
|
115
160
|
url: toPathString(localVarUrlObj),
|
|
116
161
|
options: localVarRequestOptions,
|
|
@@ -140,7 +185,7 @@ export const MatchingApiFp = function(configuration?: Configuration) {
|
|
|
140
185
|
},
|
|
141
186
|
/**
|
|
142
187
|
*
|
|
143
|
-
* @summary Compare provided face images in all combinations and return similarity score for each pair.
|
|
188
|
+
* @summary Compare provided face images in all combinations and return the similarity score for each pair.
|
|
144
189
|
* @param {MatchRequest} matchRequest
|
|
145
190
|
* @param {string} [xRequestID]
|
|
146
191
|
* @param {*} [options] Override http request option.
|
|
@@ -150,6 +195,18 @@ export const MatchingApiFp = function(configuration?: Configuration) {
|
|
|
150
195
|
const localVarAxiosArgs = await localVarAxiosParamCreator.match(matchRequest, xRequestID, options);
|
|
151
196
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
152
197
|
},
|
|
198
|
+
/**
|
|
199
|
+
*
|
|
200
|
+
* @summary Match and Search in one request
|
|
201
|
+
* @param {MatchAndSearchRequest} matchAndSearchRequest
|
|
202
|
+
* @param {string} [xRequestID]
|
|
203
|
+
* @param {*} [options] Override http request option.
|
|
204
|
+
* @throws {RequiredError}
|
|
205
|
+
*/
|
|
206
|
+
async matchAndSearch(matchAndSearchRequest: MatchAndSearchRequest, xRequestID?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MatchAndSearchResponse>> {
|
|
207
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.matchAndSearch(matchAndSearchRequest, xRequestID, options);
|
|
208
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
209
|
+
},
|
|
153
210
|
}
|
|
154
211
|
};
|
|
155
212
|
|
|
@@ -173,7 +230,7 @@ export const MatchingApiFactory = function (configuration?: Configuration, baseP
|
|
|
173
230
|
},
|
|
174
231
|
/**
|
|
175
232
|
*
|
|
176
|
-
* @summary Compare provided face images in all combinations and return similarity score for each pair.
|
|
233
|
+
* @summary Compare provided face images in all combinations and return the similarity score for each pair.
|
|
177
234
|
* @param {MatchRequest} matchRequest
|
|
178
235
|
* @param {string} [xRequestID]
|
|
179
236
|
* @param {*} [options] Override http request option.
|
|
@@ -182,6 +239,17 @@ export const MatchingApiFactory = function (configuration?: Configuration, baseP
|
|
|
182
239
|
match(matchRequest: MatchRequest, xRequestID?: string, options?: any): AxiosPromise<MatchResponse> {
|
|
183
240
|
return localVarFp.match(matchRequest, xRequestID, options).then((request) => request(axios, basePath));
|
|
184
241
|
},
|
|
242
|
+
/**
|
|
243
|
+
*
|
|
244
|
+
* @summary Match and Search in one request
|
|
245
|
+
* @param {MatchAndSearchRequest} matchAndSearchRequest
|
|
246
|
+
* @param {string} [xRequestID]
|
|
247
|
+
* @param {*} [options] Override http request option.
|
|
248
|
+
* @throws {RequiredError}
|
|
249
|
+
*/
|
|
250
|
+
matchAndSearch(matchAndSearchRequest: MatchAndSearchRequest, xRequestID?: string, options?: any): AxiosPromise<MatchAndSearchResponse> {
|
|
251
|
+
return localVarFp.matchAndSearch(matchAndSearchRequest, xRequestID, options).then((request) => request(axios, basePath));
|
|
252
|
+
},
|
|
185
253
|
};
|
|
186
254
|
};
|
|
187
255
|
|
|
@@ -207,7 +275,7 @@ export class MatchingApi extends BaseAPI {
|
|
|
207
275
|
|
|
208
276
|
/**
|
|
209
277
|
*
|
|
210
|
-
* @summary Compare provided face images in all combinations and return similarity score for each pair.
|
|
278
|
+
* @summary Compare provided face images in all combinations and return the similarity score for each pair.
|
|
211
279
|
* @param {MatchRequest} matchRequest
|
|
212
280
|
* @param {string} [xRequestID]
|
|
213
281
|
* @param {*} [options] Override http request option.
|
|
@@ -217,4 +285,17 @@ export class MatchingApi extends BaseAPI {
|
|
|
217
285
|
public match(matchRequest: MatchRequest, xRequestID?: string, options?: AxiosRequestConfig) {
|
|
218
286
|
return MatchingApiFp(this.configuration).match(matchRequest, xRequestID, options).then((request) => request(this.axios, this.basePath));
|
|
219
287
|
}
|
|
288
|
+
|
|
289
|
+
/**
|
|
290
|
+
*
|
|
291
|
+
* @summary Match and Search in one request
|
|
292
|
+
* @param {MatchAndSearchRequest} matchAndSearchRequest
|
|
293
|
+
* @param {string} [xRequestID]
|
|
294
|
+
* @param {*} [options] Override http request option.
|
|
295
|
+
* @throws {RequiredError}
|
|
296
|
+
* @memberof MatchingApi
|
|
297
|
+
*/
|
|
298
|
+
public matchAndSearch(matchAndSearchRequest: MatchAndSearchRequest, xRequestID?: string, options?: AxiosRequestConfig) {
|
|
299
|
+
return MatchingApiFp(this.configuration).matchAndSearch(matchAndSearchRequest, xRequestID, options).then((request) => request(this.axios, this.basePath));
|
|
300
|
+
}
|
|
220
301
|
}
|
package/src/models/crop.ts
CHANGED
|
@@ -34,7 +34,7 @@ export interface Crop {
|
|
|
34
34
|
*/
|
|
35
35
|
'padColor'?: Array<number>;
|
|
36
36
|
/**
|
|
37
|
-
* The resize value in case type matches this value.
|
|
37
|
+
* The resize value in case type matches this value. If it doesn\'t, no resize is done.
|
|
38
38
|
* @type {Array<number>}
|
|
39
39
|
* @memberof Crop
|
|
40
40
|
*/
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Regula FaceSDK Web API
|
|
5
|
+
* Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 4.1.3
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { PersonWithImages } from './person-with-images';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface FacesResponseAllOf
|
|
22
|
+
*/
|
|
23
|
+
export interface FacesResponseAllOf {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {Array<PersonWithImages>}
|
|
27
|
+
* @memberof FacesResponseAllOf
|
|
28
|
+
*/
|
|
29
|
+
'persons'?: Array<PersonWithImages>;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof FacesResponseAllOf
|
|
34
|
+
*/
|
|
35
|
+
'rotationAngle'?: number;
|
|
36
|
+
}
|
|
37
|
+
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Regula FaceSDK Web API
|
|
5
|
+
* Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 4.1.3
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { DetectionFace } from './detection-face';
|
|
17
|
+
import { FacesResponseAllOf } from './faces-response-all-of';
|
|
18
|
+
import { PersonWithImages } from './person-with-images';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* @type FacesResponse
|
|
22
|
+
* @export
|
|
23
|
+
*/
|
|
24
|
+
export type FacesResponse = DetectionFace & FacesResponseAllOf;
|
|
25
|
+
|
|
26
|
+
|
package/src/models/image.ts
CHANGED
|
@@ -38,6 +38,12 @@ export interface Image {
|
|
|
38
38
|
* @memberof Image
|
|
39
39
|
*/
|
|
40
40
|
'created_at'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* The returned image update date.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof Image
|
|
45
|
+
*/
|
|
46
|
+
'updated_at'?: string;
|
|
41
47
|
/**
|
|
42
48
|
* The returned image S3 path.
|
|
43
49
|
* @type {string}
|
|
@@ -50,5 +56,11 @@ export interface Image {
|
|
|
50
56
|
* @memberof Image
|
|
51
57
|
*/
|
|
52
58
|
'url'?: string;
|
|
59
|
+
/**
|
|
60
|
+
* A free-form object containing person\'s extended attributes.
|
|
61
|
+
* @type {{ [key: string]: object; }}
|
|
62
|
+
* @memberof Image
|
|
63
|
+
*/
|
|
64
|
+
'metadata'?: { [key: string]: object; };
|
|
53
65
|
}
|
|
54
66
|
|
package/src/models/index.ts
CHANGED
|
@@ -13,6 +13,8 @@ export * from './face-quality-config-name';
|
|
|
13
13
|
export * from './face-quality-scenarios';
|
|
14
14
|
export * from './face-sdkresult';
|
|
15
15
|
export * from './face-sdkresult-code';
|
|
16
|
+
export * from './faces-response';
|
|
17
|
+
export * from './faces-response-all-of';
|
|
16
18
|
export * from './group';
|
|
17
19
|
export * from './group-all-of';
|
|
18
20
|
export * from './group-page';
|
|
@@ -24,6 +26,12 @@ export * from './image-fields-image';
|
|
|
24
26
|
export * from './image-page';
|
|
25
27
|
export * from './image-page-all-of';
|
|
26
28
|
export * from './image-source';
|
|
29
|
+
export * from './match-and-search-request';
|
|
30
|
+
export * from './match-and-search-request-all-of';
|
|
31
|
+
export * from './match-and-search-request-all-of-images';
|
|
32
|
+
export * from './match-and-search-response';
|
|
33
|
+
export * from './match-and-search-response-all-of';
|
|
34
|
+
export * from './match-and-search-response-all-of-detections';
|
|
27
35
|
export * from './match-image';
|
|
28
36
|
export * from './match-image-detection';
|
|
29
37
|
export * from './match-image-result';
|
|
@@ -36,6 +44,8 @@ export * from './page';
|
|
|
36
44
|
export * from './person';
|
|
37
45
|
export * from './person-all-of';
|
|
38
46
|
export * from './person-fields';
|
|
47
|
+
export * from './person-with-images';
|
|
48
|
+
export * from './person-with-images-all-of';
|
|
39
49
|
export * from './persons-page';
|
|
40
50
|
export * from './persons-page-all-of';
|
|
41
51
|
export * from './process-param';
|
|
@@ -45,9 +55,9 @@ export * from './quality-details-groups';
|
|
|
45
55
|
export * from './quality-request';
|
|
46
56
|
export * from './recognize-image';
|
|
47
57
|
export * from './recognize-image-all-of';
|
|
58
|
+
export * from './search-parameters';
|
|
48
59
|
export * from './search-person';
|
|
49
60
|
export * from './search-person-all-of';
|
|
50
61
|
export * from './search-request';
|
|
51
|
-
export * from './search-request-all-of';
|
|
52
62
|
export * from './search-result';
|
|
53
63
|
export * from './update-group';
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Regula FaceSDK Web API
|
|
5
|
+
* Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 4.1.3
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { ImageSource } from './image-source';
|
|
17
|
+
import { ImageData } from './image-data';
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @export
|
|
22
|
+
* @interface MatchAndSearchRequestAllOfImages
|
|
23
|
+
*/
|
|
24
|
+
export interface MatchAndSearchRequestAllOfImages {
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {ImageData}
|
|
28
|
+
* @memberof MatchAndSearchRequestAllOfImages
|
|
29
|
+
*/
|
|
30
|
+
'content'?: ImageData;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {ImageSource}
|
|
34
|
+
* @memberof MatchAndSearchRequestAllOfImages
|
|
35
|
+
*/
|
|
36
|
+
'type'?: ImageSource;
|
|
37
|
+
}
|
|
38
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Regula FaceSDK Web API
|
|
5
|
+
* Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 4.1.3
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { MatchAndSearchRequestAllOfImages } from './match-and-search-request-all-of-images';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface MatchAndSearchRequestAllOf
|
|
22
|
+
*/
|
|
23
|
+
export interface MatchAndSearchRequestAllOf {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {Array<MatchAndSearchRequestAllOfImages>}
|
|
27
|
+
* @memberof MatchAndSearchRequestAllOf
|
|
28
|
+
*/
|
|
29
|
+
'images'?: Array<MatchAndSearchRequestAllOfImages>;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Regula FaceSDK Web API
|
|
5
|
+
* Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 4.1.3
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { MatchAndSearchRequestAllOf } from './match-and-search-request-all-of';
|
|
17
|
+
import { MatchAndSearchRequestAllOfImages } from './match-and-search-request-all-of-images';
|
|
18
|
+
import { SearchParameters } from './search-parameters';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* @type MatchAndSearchRequest
|
|
22
|
+
* @export
|
|
23
|
+
*/
|
|
24
|
+
export type MatchAndSearchRequest = MatchAndSearchRequestAllOf & SearchParameters;
|
|
25
|
+
|
|
26
|
+
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Regula FaceSDK Web API
|
|
5
|
+
* Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 4.1.3
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { FaceSDKResultCode } from './face-sdkresult-code';
|
|
17
|
+
import { FacesResponse } from './faces-response';
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @export
|
|
22
|
+
* @interface MatchAndSearchResponseAllOfDetections
|
|
23
|
+
*/
|
|
24
|
+
export interface MatchAndSearchResponseAllOfDetections {
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {Array<FacesResponse>}
|
|
28
|
+
* @memberof MatchAndSearchResponseAllOfDetections
|
|
29
|
+
*/
|
|
30
|
+
'faces'?: Array<FacesResponse>;
|
|
31
|
+
/**
|
|
32
|
+
* Image index used to identify input photos between themselves. If not specified, than input list index is used.
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof MatchAndSearchResponseAllOfDetections
|
|
35
|
+
*/
|
|
36
|
+
'imageIndex'?: number;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {FaceSDKResultCode}
|
|
40
|
+
* @memberof MatchAndSearchResponseAllOfDetections
|
|
41
|
+
*/
|
|
42
|
+
'status'?: FaceSDKResultCode;
|
|
43
|
+
}
|
|
44
|
+
|