@regulaforensics/facesdk-webclient 3.1.2 → 4.1.2
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/group-api.js +695 -0
- package/dist/cjs-es5/api/matching-api.js +101 -127
- package/dist/cjs-es5/api/person-api.js +952 -0
- package/dist/cjs-es5/api/search-api.js +200 -0
- package/dist/cjs-es5/api.js +6 -3
- package/dist/cjs-es5/base.js +3 -3
- package/dist/cjs-es5/common.js +235 -0
- package/dist/cjs-es5/configuration.js +18 -3
- package/dist/cjs-es5/ext/face-sdk.js +7 -1
- package/dist/cjs-es5/ext/group-api.js +47 -0
- package/dist/cjs-es5/ext/index.js +1 -2
- package/dist/cjs-es5/ext/matching-api.js +3 -7
- package/dist/cjs-es5/ext/person-api.js +61 -0
- package/dist/cjs-es5/ext/search-api.js +33 -0
- package/dist/cjs-es5/index.js +1 -2
- package/dist/cjs-es5/models/crop.js +16 -0
- package/dist/cjs-es5/models/detect-request.js +2 -2
- package/dist/cjs-es5/models/detect-response-all-of.js +2 -2
- package/dist/cjs-es5/models/detect-response.js +2 -2
- package/dist/cjs-es5/models/detect-result.js +2 -2
- package/dist/cjs-es5/models/detection-face.js +2 -2
- package/dist/cjs-es5/models/detection-quality.js +16 -0
- package/dist/cjs-es5/models/detection.js +2 -2
- package/dist/cjs-es5/models/face-align-type-quality.js +29 -0
- package/dist/cjs-es5/models/face-image-quality-groups.js +32 -0
- package/dist/cjs-es5/models/face-quality-config-name.js +70 -0
- package/dist/cjs-es5/models/face-quality-scenarios.js +31 -0
- package/dist/cjs-es5/models/face-quality-status.js +27 -0
- package/dist/cjs-es5/models/face-recognition-result-code.js +1 -6
- package/dist/cjs-es5/models/face-sdkresult-code.js +36 -37
- package/dist/cjs-es5/models/face-sdkresult.js +2 -2
- package/dist/cjs-es5/models/group-all-of.js +16 -0
- package/dist/cjs-es5/models/group-page-all-of.js +16 -0
- package/dist/cjs-es5/models/group-page.js +16 -0
- package/dist/cjs-es5/models/group-to-create.js +16 -0
- package/dist/cjs-es5/models/group.js +16 -0
- package/dist/cjs-es5/models/image-fields-image.js +16 -0
- package/dist/cjs-es5/models/image-fields.js +16 -0
- package/dist/cjs-es5/models/image-page-all-of.js +16 -0
- package/dist/cjs-es5/models/image-page.js +16 -0
- package/dist/cjs-es5/models/image-source.js +11 -12
- package/dist/cjs-es5/models/image.js +16 -0
- package/dist/cjs-es5/models/index.js +54 -16
- package/dist/cjs-es5/models/match-image-detection.js +2 -2
- package/dist/cjs-es5/models/match-image-result.js +2 -2
- package/dist/cjs-es5/models/match-image.js +2 -2
- package/dist/cjs-es5/models/match-request.js +2 -2
- package/dist/cjs-es5/models/match-response-all-of.js +2 -2
- package/dist/cjs-es5/models/match-response.js +2 -2
- package/dist/cjs-es5/models/operation-log.js +16 -0
- package/dist/cjs-es5/models/output-image-params.js +16 -0
- package/dist/cjs-es5/models/page.js +16 -0
- package/dist/cjs-es5/models/person-all-of.js +16 -0
- package/dist/cjs-es5/models/person-fields.js +16 -0
- package/dist/cjs-es5/models/person.js +16 -0
- package/dist/cjs-es5/models/persons-page-all-of.js +16 -0
- package/dist/cjs-es5/models/persons-page.js +16 -0
- package/dist/cjs-es5/models/process-param.js +16 -0
- package/dist/cjs-es5/models/quality-config.js +16 -0
- package/dist/cjs-es5/models/quality-detail.js +16 -0
- package/dist/cjs-es5/models/quality-details-groups.js +16 -0
- package/dist/cjs-es5/models/quality-request.js +16 -0
- package/dist/cjs-es5/models/recognize-image-all-of.js +16 -0
- package/dist/cjs-es5/models/recognize-image.js +16 -0
- package/dist/cjs-es5/models/search-person-all-of.js +16 -0
- package/dist/cjs-es5/models/search-person.js +16 -0
- package/dist/cjs-es5/models/search-request-all-of.js +16 -0
- package/dist/cjs-es5/models/search-request.js +16 -0
- package/dist/cjs-es5/models/search-result-all-of.js +16 -0
- package/dist/cjs-es5/models/search-result.js +16 -0
- package/dist/cjs-es5/models/update-group.js +16 -0
- package/dist/esm-es5/api/group-api.js +692 -0
- package/dist/esm-es5/api/matching-api.js +100 -126
- package/dist/esm-es5/api/person-api.js +949 -0
- package/dist/esm-es5/api/search-api.js +197 -0
- package/dist/esm-es5/api.js +6 -3
- package/dist/esm-es5/base.js +3 -3
- package/dist/esm-es5/common.js +232 -0
- package/dist/esm-es5/configuration.js +18 -3
- package/dist/esm-es5/ext/face-sdk.js +7 -1
- package/dist/esm-es5/ext/group-api.js +44 -0
- package/dist/esm-es5/ext/index.js +1 -2
- package/dist/esm-es5/ext/matching-api.js +3 -7
- package/dist/esm-es5/ext/person-api.js +58 -0
- package/dist/esm-es5/ext/search-api.js +30 -0
- package/dist/esm-es5/index.js +1 -2
- package/dist/esm-es5/models/crop.js +14 -0
- package/dist/esm-es5/models/detect-request.js +2 -2
- package/dist/esm-es5/models/detect-response-all-of.js +2 -2
- package/dist/esm-es5/models/detect-response.js +2 -2
- package/dist/esm-es5/models/detect-result.js +2 -2
- package/dist/esm-es5/models/detection-face.js +2 -2
- package/dist/esm-es5/models/detection-quality.js +14 -0
- package/dist/esm-es5/models/detection.js +2 -2
- package/dist/esm-es5/models/face-align-type-quality.js +26 -0
- package/dist/esm-es5/models/face-image-quality-groups.js +29 -0
- package/dist/esm-es5/models/face-quality-config-name.js +67 -0
- package/dist/esm-es5/models/face-quality-scenarios.js +28 -0
- package/dist/esm-es5/models/face-quality-status.js +24 -0
- package/dist/esm-es5/models/face-recognition-result-code.js +1 -3
- package/dist/esm-es5/models/face-sdkresult-code.js +36 -37
- package/dist/esm-es5/models/face-sdkresult.js +2 -2
- package/dist/esm-es5/models/group-all-of.js +14 -0
- package/dist/esm-es5/models/group-page-all-of.js +14 -0
- package/dist/esm-es5/models/group-page.js +14 -0
- package/dist/esm-es5/models/group-to-create.js +14 -0
- package/dist/esm-es5/models/group.js +14 -0
- package/dist/esm-es5/models/image-fields-image.js +14 -0
- package/dist/esm-es5/models/image-fields.js +14 -0
- package/dist/esm-es5/models/image-page-all-of.js +14 -0
- package/dist/esm-es5/models/image-page.js +14 -0
- package/dist/esm-es5/models/image-source.js +11 -12
- package/dist/esm-es5/models/image.js +14 -0
- package/dist/esm-es5/models/index.js +54 -16
- package/dist/esm-es5/models/match-image-detection.js +2 -2
- package/dist/esm-es5/models/match-image-result.js +2 -2
- package/dist/esm-es5/models/match-image.js +2 -2
- package/dist/esm-es5/models/match-request.js +2 -2
- package/dist/esm-es5/models/match-response-all-of.js +2 -2
- package/dist/esm-es5/models/match-response.js +2 -2
- package/dist/esm-es5/models/operation-log.js +14 -0
- package/dist/esm-es5/models/output-image-params.js +14 -0
- package/dist/esm-es5/models/page.js +14 -0
- package/dist/esm-es5/models/person-all-of.js +14 -0
- package/dist/esm-es5/models/person-fields.js +14 -0
- package/dist/esm-es5/models/person.js +14 -0
- package/dist/esm-es5/models/persons-page-all-of.js +14 -0
- package/dist/esm-es5/models/persons-page.js +14 -0
- package/dist/esm-es5/models/process-param.js +14 -0
- package/dist/esm-es5/models/quality-config.js +14 -0
- package/dist/esm-es5/models/quality-detail.js +14 -0
- package/dist/esm-es5/models/quality-details-groups.js +14 -0
- package/dist/esm-es5/models/quality-request.js +14 -0
- package/dist/esm-es5/models/recognize-image-all-of.js +14 -0
- package/dist/esm-es5/models/recognize-image.js +14 -0
- package/dist/esm-es5/models/search-person-all-of.js +14 -0
- package/dist/esm-es5/models/search-person.js +14 -0
- package/dist/esm-es5/models/search-request-all-of.js +14 -0
- package/dist/esm-es5/models/search-request.js +14 -0
- package/dist/esm-es5/models/search-result-all-of.js +14 -0
- package/dist/esm-es5/models/search-result.js +14 -0
- package/dist/esm-es5/models/update-group.js +14 -0
- package/package.json +1 -1
- package/src/api/group-api.ts +592 -0
- package/src/api/matching-api.ts +152 -172
- package/src/api/person-api.ts +831 -0
- package/src/api/search-api.ts +133 -0
- package/src/api.ts +5 -2
- package/src/base.ts +4 -4
- package/src/common.ts +138 -0
- package/src/configuration.ts +27 -2
- package/src/ext/face-sdk.ts +10 -0
- package/src/ext/group-api.ts +34 -0
- package/src/ext/index.ts +0 -1
- package/src/ext/matching-api.ts +5 -9
- package/src/ext/person-api.ts +51 -0
- package/src/ext/search-api.ts +14 -0
- package/src/index.ts +0 -1
- package/src/models/crop.ts +49 -0
- package/src/models/detect-request.ts +18 -12
- package/src/models/detect-response-all-of.ts +3 -4
- package/src/models/detect-response.ts +2 -3
- package/src/models/detect-result.ts +18 -6
- package/src/models/detection-face.ts +8 -9
- package/src/models/detection-quality.ts +57 -0
- package/src/models/detection.ts +22 -9
- package/src/models/face-align-type-quality.ts +34 -0
- package/src/models/face-image-quality-groups.ts +37 -0
- package/src/models/face-quality-config-name.ts +75 -0
- package/src/models/face-quality-scenarios.ts +36 -0
- package/src/models/face-quality-status.ts +32 -0
- package/src/models/face-recognition-result-code.ts +0 -4
- package/src/models/face-sdkresult-code.ts +38 -35
- package/src/models/face-sdkresult.ts +3 -4
- package/src/models/group-all-of.ts +36 -0
- package/src/models/group-page-all-of.ts +31 -0
- package/src/models/group-page.ts +26 -0
- package/src/models/group-to-create.ts +36 -0
- package/src/models/group.ts +25 -0
- package/src/models/image-fields-image.ts +37 -0
- package/src/models/image-fields.ts +31 -0
- package/src/models/image-page-all-of.ts +31 -0
- package/src/models/image-page.ts +26 -0
- package/src/models/image-source.ts +13 -10
- package/src/models/image.ts +54 -0
- package/src/models/index.ts +53 -15
- package/src/models/match-image-detection.ts +6 -7
- package/src/models/match-image-result.ts +15 -16
- package/src/models/match-image.ts +6 -7
- package/src/models/match-request.ts +8 -9
- package/src/models/match-response-all-of.ts +5 -6
- package/src/models/match-response.ts +2 -3
- package/src/models/operation-log.ts +42 -0
- package/src/models/output-image-params.ts +37 -0
- package/src/models/page.ts +36 -0
- package/src/models/person-all-of.ts +42 -0
- package/src/models/person-fields.ts +36 -0
- package/src/models/person.ts +26 -0
- package/src/models/persons-page-all-of.ts +31 -0
- package/src/models/persons-page.ts +26 -0
- package/src/models/process-param.ts +51 -0
- package/src/models/quality-config.ts +37 -0
- package/src/models/quality-detail.ts +57 -0
- package/src/models/quality-details-groups.ts +50 -0
- package/src/models/quality-request.ts +37 -0
- package/src/models/recognize-image-all-of.ts +30 -0
- package/src/models/recognize-image.ts +25 -0
- package/src/models/search-person-all-of.ts +31 -0
- package/src/models/search-person.ts +26 -0
- package/src/models/search-request-all-of.ts +42 -0
- package/src/models/search-request.ts +26 -0
- package/src/models/search-result-all-of.ts +30 -0
- package/src/models/search-result.ts +37 -0
- package/src/models/update-group.ts +36 -0
- package/update-models.sh +2 -3
|
@@ -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.0
|
|
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 { Group } from './group';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GroupPageAllOf
|
|
22
|
+
*/
|
|
23
|
+
export interface GroupPageAllOf {
|
|
24
|
+
/**
|
|
25
|
+
* The array of Groups that are found during the search.
|
|
26
|
+
* @type {Array<Group>}
|
|
27
|
+
* @memberof GroupPageAllOf
|
|
28
|
+
*/
|
|
29
|
+
'items'?: Array<Group>;
|
|
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.0
|
|
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 { Group } from './group';
|
|
17
|
+
import { GroupPageAllOf } from './group-page-all-of';
|
|
18
|
+
import { Page } from './page';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* @type GroupPage
|
|
22
|
+
* @export
|
|
23
|
+
*/
|
|
24
|
+
export type GroupPage = GroupPageAllOf & Page;
|
|
25
|
+
|
|
26
|
+
|
|
@@ -0,0 +1,36 @@
|
|
|
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.0
|
|
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
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Request body of the group to create data, includes name and metadata.
|
|
19
|
+
* @export
|
|
20
|
+
* @interface GroupToCreate
|
|
21
|
+
*/
|
|
22
|
+
export interface GroupToCreate {
|
|
23
|
+
/**
|
|
24
|
+
* Group to create name.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof GroupToCreate
|
|
27
|
+
*/
|
|
28
|
+
'name'?: string;
|
|
29
|
+
/**
|
|
30
|
+
* A free-form object containing group\'s extended attributes.
|
|
31
|
+
* @type {{ [key: string]: object; }}
|
|
32
|
+
* @memberof GroupToCreate
|
|
33
|
+
*/
|
|
34
|
+
'metadata'?: { [key: string]: object; };
|
|
35
|
+
}
|
|
36
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
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.0
|
|
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 { GroupAllOf } from './group-all-of';
|
|
17
|
+
import { GroupToCreate } from './group-to-create';
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* @type Group
|
|
21
|
+
* @export
|
|
22
|
+
*/
|
|
23
|
+
export type Group = GroupAllOf & GroupToCreate;
|
|
24
|
+
|
|
25
|
+
|
|
@@ -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.0
|
|
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 { ImageData } from './image-data';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* The uploaded image.
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ImageFieldsImage
|
|
22
|
+
*/
|
|
23
|
+
export interface ImageFieldsImage {
|
|
24
|
+
/**
|
|
25
|
+
* The original media type of the uploaded image.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ImageFieldsImage
|
|
28
|
+
*/
|
|
29
|
+
'content_type'?: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {ImageData}
|
|
33
|
+
* @memberof ImageFieldsImage
|
|
34
|
+
*/
|
|
35
|
+
'content'?: ImageData;
|
|
36
|
+
}
|
|
37
|
+
|
|
@@ -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.0
|
|
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 { ImageFieldsImage } from './image-fields-image';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* Image in the request data, includes image and content_type.
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ImageFields
|
|
22
|
+
*/
|
|
23
|
+
export interface ImageFields {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {ImageFieldsImage}
|
|
27
|
+
* @memberof ImageFields
|
|
28
|
+
*/
|
|
29
|
+
'image'?: ImageFieldsImage;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -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.0
|
|
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 { Image } from './image';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* Image page.
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ImagePageAllOf
|
|
22
|
+
*/
|
|
23
|
+
export interface ImagePageAllOf {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {Array<Image>}
|
|
27
|
+
* @memberof ImagePageAllOf
|
|
28
|
+
*/
|
|
29
|
+
'items'?: Array<Image>;
|
|
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.0
|
|
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 { Image } from './image';
|
|
17
|
+
import { ImagePageAllOf } from './image-page-all-of';
|
|
18
|
+
import { Page } from './page';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* @type ImagePage
|
|
22
|
+
* @export
|
|
23
|
+
*/
|
|
24
|
+
export type ImagePage = ImagePageAllOf & Page;
|
|
25
|
+
|
|
26
|
+
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Regula FaceSDK Web API
|
|
5
|
-
* 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
6
|
*
|
|
7
|
-
* The version of the OpenAPI document:
|
|
7
|
+
* The version of the OpenAPI document: 4.1.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -15,17 +15,20 @@
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
/**
|
|
18
|
-
* Face photo image source
|
|
18
|
+
* Face photo image source.
|
|
19
19
|
* @export
|
|
20
20
|
* @enum {string}
|
|
21
21
|
*/
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
22
|
+
|
|
23
|
+
export const ImageSource = {
|
|
24
|
+
DOCUMENT_PRINTED: 1,
|
|
25
|
+
DOCUMENT_RFID: 2,
|
|
26
|
+
LIVE: 3,
|
|
27
|
+
DOCUMENT_WITH_LIVE: 4,
|
|
28
|
+
EXTERNAL: 5
|
|
29
|
+
} as const;
|
|
30
|
+
|
|
31
|
+
export type ImageSource = typeof ImageSource[keyof typeof ImageSource];
|
|
29
32
|
|
|
30
33
|
|
|
31
34
|
|
|
@@ -0,0 +1,54 @@
|
|
|
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.0
|
|
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
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Image in the response.
|
|
19
|
+
* @export
|
|
20
|
+
* @interface Image
|
|
21
|
+
*/
|
|
22
|
+
export interface Image {
|
|
23
|
+
/**
|
|
24
|
+
* Response image ID.
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof Image
|
|
27
|
+
*/
|
|
28
|
+
'id'?: number;
|
|
29
|
+
/**
|
|
30
|
+
* The original media type of the returned image.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof Image
|
|
33
|
+
*/
|
|
34
|
+
'content_type'?: string;
|
|
35
|
+
/**
|
|
36
|
+
* The returned image creation date.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof Image
|
|
39
|
+
*/
|
|
40
|
+
'created_at'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* The returned image S3 path.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof Image
|
|
45
|
+
*/
|
|
46
|
+
'path'?: string;
|
|
47
|
+
/**
|
|
48
|
+
* The returned image URL.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof Image
|
|
51
|
+
*/
|
|
52
|
+
'url'?: string;
|
|
53
|
+
}
|
|
54
|
+
|
package/src/models/index.ts
CHANGED
|
@@ -1,15 +1,53 @@
|
|
|
1
|
-
export * from './
|
|
2
|
-
export * from './detect-
|
|
3
|
-
export * from './detect-response
|
|
4
|
-
export * from './detect-
|
|
5
|
-
export * from './
|
|
6
|
-
export * from './detection
|
|
7
|
-
export * from './face
|
|
8
|
-
export * from './
|
|
9
|
-
export * from './
|
|
10
|
-
export * from './
|
|
11
|
-
export * from './
|
|
12
|
-
export * from './
|
|
13
|
-
export * from './
|
|
14
|
-
export * from './
|
|
15
|
-
export * from './
|
|
1
|
+
export * from './crop';
|
|
2
|
+
export * from './detect-request';
|
|
3
|
+
export * from './detect-response';
|
|
4
|
+
export * from './detect-response-all-of';
|
|
5
|
+
export * from './detect-result';
|
|
6
|
+
export * from './detection';
|
|
7
|
+
export * from './detection-face';
|
|
8
|
+
export * from './detection-quality';
|
|
9
|
+
export * from './face-align-type-quality';
|
|
10
|
+
export * from './face-image-quality-groups';
|
|
11
|
+
export * from './face-quality-config-name';
|
|
12
|
+
export * from './face-quality-scenarios';
|
|
13
|
+
export * from './face-quality-status';
|
|
14
|
+
export * from './face-sdkresult';
|
|
15
|
+
export * from './face-sdkresult-code';
|
|
16
|
+
export * from './group';
|
|
17
|
+
export * from './group-all-of';
|
|
18
|
+
export * from './group-page';
|
|
19
|
+
export * from './group-page-all-of';
|
|
20
|
+
export * from './group-to-create';
|
|
21
|
+
export * from './image';
|
|
22
|
+
export * from './image-fields';
|
|
23
|
+
export * from './image-fields-image';
|
|
24
|
+
export * from './image-page';
|
|
25
|
+
export * from './image-page-all-of';
|
|
26
|
+
export * from './image-source';
|
|
27
|
+
export * from './match-image';
|
|
28
|
+
export * from './match-image-detection';
|
|
29
|
+
export * from './match-image-result';
|
|
30
|
+
export * from './match-request';
|
|
31
|
+
export * from './match-response';
|
|
32
|
+
export * from './match-response-all-of';
|
|
33
|
+
export * from './operation-log';
|
|
34
|
+
export * from './output-image-params';
|
|
35
|
+
export * from './page';
|
|
36
|
+
export * from './person';
|
|
37
|
+
export * from './person-all-of';
|
|
38
|
+
export * from './person-fields';
|
|
39
|
+
export * from './persons-page';
|
|
40
|
+
export * from './persons-page-all-of';
|
|
41
|
+
export * from './process-param';
|
|
42
|
+
export * from './quality-config';
|
|
43
|
+
export * from './quality-detail';
|
|
44
|
+
export * from './quality-details-groups';
|
|
45
|
+
export * from './quality-request';
|
|
46
|
+
export * from './recognize-image';
|
|
47
|
+
export * from './recognize-image-all-of';
|
|
48
|
+
export * from './search-person';
|
|
49
|
+
export * from './search-person-all-of';
|
|
50
|
+
export * from './search-request';
|
|
51
|
+
export * from './search-request-all-of';
|
|
52
|
+
export * from './search-result';
|
|
53
|
+
export * from './update-group';
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Regula FaceSDK Web API
|
|
5
|
-
* 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
6
|
*
|
|
7
|
-
* The version of the OpenAPI document:
|
|
7
|
+
* The version of the OpenAPI document: 4.1.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -27,19 +27,18 @@ export interface MatchImageDetection {
|
|
|
27
27
|
* @type {Array<DetectionFace>}
|
|
28
28
|
* @memberof MatchImageDetection
|
|
29
29
|
*/
|
|
30
|
-
faces?: Array<DetectionFace>;
|
|
30
|
+
'faces'?: Array<DetectionFace>;
|
|
31
31
|
/**
|
|
32
|
-
* Image index used to identify input photos between themselves. If not specified, than input list index is used
|
|
32
|
+
* Image index used to identify input photos between themselves. If not specified, than input list index is used.
|
|
33
33
|
* @type {number}
|
|
34
34
|
* @memberof MatchImageDetection
|
|
35
35
|
*/
|
|
36
|
-
imageIndex: number;
|
|
36
|
+
'imageIndex': number;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
39
|
* @type {FaceSDKResultCode}
|
|
40
40
|
* @memberof MatchImageDetection
|
|
41
41
|
*/
|
|
42
|
-
status: FaceSDKResultCode;
|
|
42
|
+
'status': FaceSDKResultCode;
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
-
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Regula FaceSDK Web API
|
|
5
|
-
* 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
6
|
*
|
|
7
|
-
* The version of the OpenAPI document:
|
|
7
|
+
* The version of the OpenAPI document: 4.1.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -22,53 +22,52 @@ import { FaceSDKResultCode } from './face-sdkresult-code';
|
|
|
22
22
|
*/
|
|
23
23
|
export interface MatchImageResult {
|
|
24
24
|
/**
|
|
25
|
-
* Image index used to identify input photos between themselves. If not specified, than input list index is used
|
|
25
|
+
* Image index used to identify input photos between themselves. If not specified, than input list index is used.
|
|
26
26
|
* @type {number}
|
|
27
27
|
* @memberof MatchImageResult
|
|
28
28
|
*/
|
|
29
|
-
firstIndex: number;
|
|
29
|
+
'firstIndex': number;
|
|
30
30
|
/**
|
|
31
31
|
* Faces index used to identify faces in scope of one photo.
|
|
32
32
|
* @type {number}
|
|
33
33
|
* @memberof MatchImageResult
|
|
34
34
|
*/
|
|
35
|
-
firstFaceIndex?: number;
|
|
35
|
+
'firstFaceIndex'?: number;
|
|
36
36
|
/**
|
|
37
|
-
* Image index used to identify input photos between themselves. If not specified, than input list index is used
|
|
37
|
+
* Image index used to identify input photos between themselves. If not specified, than input list index is used.
|
|
38
38
|
* @type {number}
|
|
39
39
|
* @memberof MatchImageResult
|
|
40
40
|
*/
|
|
41
|
-
secondIndex: number;
|
|
41
|
+
'secondIndex': number;
|
|
42
42
|
/**
|
|
43
43
|
* Faces index used to identify faces in scope of one photo.
|
|
44
44
|
* @type {number}
|
|
45
45
|
* @memberof MatchImageResult
|
|
46
46
|
*/
|
|
47
|
-
secondFaceIndex?: number;
|
|
47
|
+
'secondFaceIndex'?: number;
|
|
48
48
|
/**
|
|
49
|
-
*
|
|
49
|
+
* The matching score.
|
|
50
50
|
* @type {number}
|
|
51
51
|
* @memberof MatchImageResult
|
|
52
52
|
*/
|
|
53
|
-
score?: number;
|
|
53
|
+
'score'?: number;
|
|
54
54
|
/**
|
|
55
|
-
*
|
|
55
|
+
* The similarity score.
|
|
56
56
|
* @type {number}
|
|
57
57
|
* @memberof MatchImageResult
|
|
58
58
|
*/
|
|
59
|
-
similarity?: number;
|
|
59
|
+
'similarity'?: number;
|
|
60
60
|
/**
|
|
61
61
|
*
|
|
62
62
|
* @type {FaceSDKResultCode}
|
|
63
63
|
* @memberof MatchImageResult
|
|
64
64
|
*/
|
|
65
|
-
errorCode?: FaceSDKResultCode;
|
|
65
|
+
'errorCode'?: FaceSDKResultCode;
|
|
66
66
|
/**
|
|
67
|
-
*
|
|
67
|
+
* The error message if any.
|
|
68
68
|
* @type {string}
|
|
69
69
|
* @memberof MatchImageResult
|
|
70
70
|
*/
|
|
71
|
-
errorMsg?: string;
|
|
71
|
+
'errorMsg'?: string;
|
|
72
72
|
}
|
|
73
73
|
|
|
74
|
-
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Regula FaceSDK Web API
|
|
5
|
-
* 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
6
|
*
|
|
7
|
-
* The version of the OpenAPI document:
|
|
7
|
+
* The version of the OpenAPI document: 4.1.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -23,23 +23,22 @@ import { ImageData } from './image-data';
|
|
|
23
23
|
*/
|
|
24
24
|
export interface MatchImage {
|
|
25
25
|
/**
|
|
26
|
-
* Image index used to identify input photos between themselves. If not specified, than input list index is used
|
|
26
|
+
* Image index used to identify input photos between themselves. If not specified, than input list index is used.
|
|
27
27
|
* @type {number}
|
|
28
28
|
* @memberof MatchImage
|
|
29
29
|
*/
|
|
30
|
-
index?: number;
|
|
30
|
+
'index'?: number;
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
33
|
* @type {ImageSource}
|
|
34
34
|
* @memberof MatchImage
|
|
35
35
|
*/
|
|
36
|
-
type?: ImageSource;
|
|
36
|
+
'type'?: ImageSource;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
39
|
* @type {ImageData}
|
|
40
40
|
* @memberof MatchImage
|
|
41
41
|
*/
|
|
42
|
-
data: ImageData;
|
|
42
|
+
'data': ImageData;
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
-
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Regula FaceSDK Web API
|
|
5
|
-
* 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
6
|
*
|
|
7
|
-
* The version of the OpenAPI document:
|
|
7
|
+
* The version of the OpenAPI document: 4.1.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -22,23 +22,22 @@ import { MatchImage } from './match-image';
|
|
|
22
22
|
*/
|
|
23
23
|
export interface MatchRequest {
|
|
24
24
|
/**
|
|
25
|
-
*
|
|
25
|
+
* Session identificator.
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof MatchRequest
|
|
28
28
|
*/
|
|
29
|
-
tag?: string;
|
|
29
|
+
'tag'?: string;
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
* Whether to return cropped portraits of the detected people.
|
|
32
32
|
* @type {boolean}
|
|
33
33
|
* @memberof MatchRequest
|
|
34
34
|
*/
|
|
35
|
-
thumbnails?: boolean;
|
|
35
|
+
'thumbnails'?: boolean;
|
|
36
36
|
/**
|
|
37
|
-
*
|
|
37
|
+
* Base64 images.
|
|
38
38
|
* @type {Array<MatchImage>}
|
|
39
39
|
* @memberof MatchRequest
|
|
40
40
|
*/
|
|
41
|
-
images: Array<MatchImage>;
|
|
41
|
+
'images': Array<MatchImage>;
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
-
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Regula FaceSDK Web API
|
|
5
|
-
* 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
6
|
*
|
|
7
|
-
* The version of the OpenAPI document:
|
|
7
|
+
* The version of the OpenAPI document: 4.1.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -23,17 +23,16 @@ import { MatchImageResult } from './match-image-result';
|
|
|
23
23
|
*/
|
|
24
24
|
export interface MatchResponseAllOf {
|
|
25
25
|
/**
|
|
26
|
-
*
|
|
26
|
+
* The array of matching results.
|
|
27
27
|
* @type {Array<MatchImageResult>}
|
|
28
28
|
* @memberof MatchResponseAllOf
|
|
29
29
|
*/
|
|
30
|
-
results?: Array<MatchImageResult>;
|
|
30
|
+
'results'?: Array<MatchImageResult>;
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
33
|
* @type {Array<MatchImageDetection>}
|
|
34
34
|
* @memberof MatchResponseAllOf
|
|
35
35
|
*/
|
|
36
|
-
detections?: Array<MatchImageDetection>;
|
|
36
|
+
'detections'?: Array<MatchImageDetection>;
|
|
37
37
|
}
|
|
38
38
|
|
|
39
|
-
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Regula FaceSDK Web API
|
|
5
|
-
* 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
6
|
*
|
|
7
|
-
* The version of the OpenAPI document:
|
|
7
|
+
* The version of the OpenAPI document: 4.1.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -26,4 +26,3 @@ import { MatchResponseAllOf } from './match-response-all-of';
|
|
|
26
26
|
export type MatchResponse = FaceSDKResult & MatchResponseAllOf;
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
|