@regulaforensics/facesdk-webclient 4.1.4 → 4.1.5
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/index.js +10 -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/index.js +10 -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/image.ts +12 -0
- package/src/models/index.ts +9 -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 +45 -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
|
@@ -0,0 +1,42 @@
|
|
|
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
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Request search data.
|
|
19
|
+
* @export
|
|
20
|
+
* @interface SearchParameters
|
|
21
|
+
*/
|
|
22
|
+
export interface SearchParameters {
|
|
23
|
+
/**
|
|
24
|
+
* The number of returned Persons limit.
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof SearchParameters
|
|
27
|
+
*/
|
|
28
|
+
'limit'?: number;
|
|
29
|
+
/**
|
|
30
|
+
* The similarity distance threshold.
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof SearchParameters
|
|
33
|
+
*/
|
|
34
|
+
'threshold'?: number;
|
|
35
|
+
/**
|
|
36
|
+
* The IDs of the groups in which the search is performed.
|
|
37
|
+
* @type {Array<number>}
|
|
38
|
+
* @memberof SearchParameters
|
|
39
|
+
*/
|
|
40
|
+
'group_ids'?: Array<number>;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -15,12 +15,12 @@
|
|
|
15
15
|
|
|
16
16
|
import { ImageFields } from './image-fields';
|
|
17
17
|
import { ImageFieldsImage } from './image-fields-image';
|
|
18
|
-
import {
|
|
18
|
+
import { SearchParameters } from './search-parameters';
|
|
19
19
|
|
|
20
20
|
/**
|
|
21
21
|
* @type SearchRequest
|
|
22
22
|
* @export
|
|
23
23
|
*/
|
|
24
|
-
export type SearchRequest = ImageFields &
|
|
24
|
+
export type SearchRequest = ImageFields & SearchParameters;
|
|
25
25
|
|
|
26
26
|
|