diff --git a/src/.openapi-generator/FILES b/src/.openapi-generator/FILES index baae464..28647ad 100755 --- a/src/.openapi-generator/FILES +++ b/src/.openapi-generator/FILES @@ -1,9 +1,9 @@ api.ts api/diagnostics-api.ts +api/face-identification-api.ts api/group-api.ts api/liveness20-api.ts api/matching-api.ts -api/person-api.ts api/search-api.ts base.ts common.ts diff --git a/src/api.ts b/src/api.ts index 9a664fa..3effbf5 100644 --- a/src/api.ts +++ b/src/api.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * @@ -15,9 +15,9 @@ export * from './api/diagnostics-api'; +export * from './api/face-identification-api'; export * from './api/group-api'; export * from './api/liveness20-api'; export * from './api/matching-api'; -export * from './api/person-api'; export * from './api/search-api'; diff --git a/src/api/diagnostics-api.ts b/src/api/diagnostics-api.ts index c774331..c34f591 100644 --- a/src/api/diagnostics-api.ts +++ b/src/api/diagnostics-api.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/api/face-identification-api.ts b/src/api/face-identification-api.ts new file mode 100644 index 0000000..43ab661 --- /dev/null +++ b/src/api/face-identification-api.ts @@ -0,0 +1,815 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 + * + * The version of the OpenAPI document: 6.1.0 + * + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +import globalAxios, { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios'; +import { Configuration } from '../configuration'; +// Some imports not used depending on template conditions +// @ts-ignore +import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from '../common'; +// @ts-ignore +import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base'; +// @ts-ignore +import { AddImageToPersonRequest } from '../models'; +// @ts-ignore +import { AddImageToPersonResponse } from '../models'; +// @ts-ignore +import { GroupPage } from '../models'; +// @ts-ignore +import { ImagePage } from '../models'; +// @ts-ignore +import { OperationLog } from '../models'; +// @ts-ignore +import { Person } from '../models'; +// @ts-ignore +import { PersonFields } from '../models'; +// @ts-ignore +import { PersonToUpdateFields } from '../models'; +/** + * FaceIdentificationApi - axios parameter creator + * @export + */ +export const FaceIdentificationApiAxiosParamCreator = function (configuration?: Configuration) { + return { + /** + * + * @summary Add person image + * @param {string} personId Person ID. + * @param {AddImageToPersonRequest} addImageToPersonRequest Image to add. + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + addImageToPerson: async (personId: string, addImageToPersonRequest: AddImageToPersonRequest, xRequestID?: string, options: AxiosRequestConfig = {}): Promise => { + // verify required parameter 'personId' is not null or undefined + assertParamExists('addImageToPerson', 'personId', personId) + // verify required parameter 'addImageToPersonRequest' is not null or undefined + assertParamExists('addImageToPerson', 'addImageToPersonRequest', addImageToPersonRequest) + const localVarPath = `/api/persons/{personId}/images` + .replace(`{${"personId"}}`, encodeURIComponent(String(personId))); + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + + const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options}; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + if (xRequestID !== undefined && xRequestID !== null) { + localVarHeaderParameter['X-RequestID'] = String(xRequestID); + } + + + + localVarHeaderParameter['Content-Type'] = 'application/json'; + + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; + localVarRequestOptions.data = serializeDataIfNeeded(addImageToPersonRequest, localVarRequestOptions, configuration) + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, + /** + * + * @summary Create person + * @param {PersonFields} personFields + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + createPerson: async (personFields: PersonFields, xRequestID?: string, options: AxiosRequestConfig = {}): Promise => { + // verify required parameter 'personFields' is not null or undefined + assertParamExists('createPerson', 'personFields', personFields) + const localVarPath = `/api/persons`; + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + + const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options}; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + if (xRequestID !== undefined && xRequestID !== null) { + localVarHeaderParameter['X-RequestID'] = String(xRequestID); + } + + + + localVarHeaderParameter['Content-Type'] = 'application/json'; + + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; + localVarRequestOptions.data = serializeDataIfNeeded(personFields, localVarRequestOptions, configuration) + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, + /** + * + * @summary Delete image of person + * @param {string} imageId Image ID. + * @param {string} personId Person ID. + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + deleteImageOfPerson: async (imageId: string, personId: string, xRequestID?: string, options: AxiosRequestConfig = {}): Promise => { + // verify required parameter 'imageId' is not null or undefined + assertParamExists('deleteImageOfPerson', 'imageId', imageId) + // verify required parameter 'personId' is not null or undefined + assertParamExists('deleteImageOfPerson', 'personId', personId) + const localVarPath = `/api/persons/{personId}/images/{imageId}` + .replace(`{${"imageId"}}`, encodeURIComponent(String(imageId))) + .replace(`{${"personId"}}`, encodeURIComponent(String(personId))); + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + + const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options}; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + if (xRequestID !== undefined && xRequestID !== null) { + localVarHeaderParameter['X-RequestID'] = String(xRequestID); + } + + + + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, + /** + * + * @summary Delete person + * @param {string} personId Person ID. + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + deletePerson: async (personId: string, xRequestID?: string, options: AxiosRequestConfig = {}): Promise => { + // verify required parameter 'personId' is not null or undefined + assertParamExists('deletePerson', 'personId', personId) + const localVarPath = `/api/persons/{personId}` + .replace(`{${"personId"}}`, encodeURIComponent(String(personId))); + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + + const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options}; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + if (xRequestID !== undefined && xRequestID !== null) { + localVarHeaderParameter['X-RequestID'] = String(xRequestID); + } + + + + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, + /** + * + * @summary Get person groups + * @param {string} personId Person ID. + * @param {number} [page] The page number to get a list of persons or groups. + * @param {number} [size] The page size with a list of persons or groups, items. + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + getAllGroupsByPersonId: async (personId: string, page?: number, size?: number, xRequestID?: string, options: AxiosRequestConfig = {}): Promise => { + // verify required parameter 'personId' is not null or undefined + assertParamExists('getAllGroupsByPersonId', 'personId', personId) + const localVarPath = `/api/persons/{personId}/groups` + .replace(`{${"personId"}}`, encodeURIComponent(String(personId))); + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + + const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options}; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + if (page !== undefined) { + localVarQueryParameter['page'] = page; + } + + if (size !== undefined) { + localVarQueryParameter['size'] = size; + } + + if (xRequestID !== undefined && xRequestID !== null) { + localVarHeaderParameter['X-RequestID'] = String(xRequestID); + } + + + + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, + /** + * + * @summary Get person images + * @param {string} personId Person ID. + * @param {number} [page] The page number to get a list of persons or groups. + * @param {number} [size] The page size with a list of persons or groups, items. + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + getAllImagesByPersonId: async (personId: string, page?: number, size?: number, xRequestID?: string, options: AxiosRequestConfig = {}): Promise => { + // verify required parameter 'personId' is not null or undefined + assertParamExists('getAllImagesByPersonId', 'personId', personId) + const localVarPath = `/api/persons/{personId}/images` + .replace(`{${"personId"}}`, encodeURIComponent(String(personId))); + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + + const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options}; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + if (page !== undefined) { + localVarQueryParameter['page'] = page; + } + + if (size !== undefined) { + localVarQueryParameter['size'] = size; + } + + if (xRequestID !== undefined && xRequestID !== null) { + localVarHeaderParameter['X-RequestID'] = String(xRequestID); + } + + + + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, + /** + * + * @summary Get person image by id + * @param {string} imageId Image ID. + * @param {string} personId Person ID. + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + getImageOfPerson: async (imageId: string, personId: string, xRequestID?: string, options: AxiosRequestConfig = {}): Promise => { + // verify required parameter 'imageId' is not null or undefined + assertParamExists('getImageOfPerson', 'imageId', imageId) + // verify required parameter 'personId' is not null or undefined + assertParamExists('getImageOfPerson', 'personId', personId) + const localVarPath = `/api/persons/{personId}/images/{imageId}` + .replace(`{${"imageId"}}`, encodeURIComponent(String(imageId))) + .replace(`{${"personId"}}`, encodeURIComponent(String(personId))); + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + + const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options}; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + if (xRequestID !== undefined && xRequestID !== null) { + localVarHeaderParameter['X-RequestID'] = String(xRequestID); + } + + + + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, + /** + * + * @summary Get person + * @param {string} personId Person ID. + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + getPerson: async (personId: string, xRequestID?: string, options: AxiosRequestConfig = {}): Promise => { + // verify required parameter 'personId' is not null or undefined + assertParamExists('getPerson', 'personId', personId) + const localVarPath = `/api/persons/{personId}` + .replace(`{${"personId"}}`, encodeURIComponent(String(personId))); + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + + const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options}; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + if (xRequestID !== undefined && xRequestID !== null) { + localVarHeaderParameter['X-RequestID'] = String(xRequestID); + } + + + + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, + /** + * + * @summary Update person + * @param {string} personId Person ID. + * @param {PersonToUpdateFields} personToUpdateFields Request body for the Person to update. + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + updatePerson: async (personId: string, personToUpdateFields: PersonToUpdateFields, xRequestID?: string, options: AxiosRequestConfig = {}): Promise => { + // verify required parameter 'personId' is not null or undefined + assertParamExists('updatePerson', 'personId', personId) + // verify required parameter 'personToUpdateFields' is not null or undefined + assertParamExists('updatePerson', 'personToUpdateFields', personToUpdateFields) + const localVarPath = `/api/persons/{personId}` + .replace(`{${"personId"}}`, encodeURIComponent(String(personId))); + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + + const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options}; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + if (xRequestID !== undefined && xRequestID !== null) { + localVarHeaderParameter['X-RequestID'] = String(xRequestID); + } + + + + localVarHeaderParameter['Content-Type'] = 'application/json'; + + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; + localVarRequestOptions.data = serializeDataIfNeeded(personToUpdateFields, localVarRequestOptions, configuration) + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, + } +}; + +/** + * FaceIdentificationApi - functional programming interface + * @export + */ +export const FaceIdentificationApiFp = function(configuration?: Configuration) { + const localVarAxiosParamCreator = FaceIdentificationApiAxiosParamCreator(configuration) + return { + /** + * + * @summary Add person image + * @param {string} personId Person ID. + * @param {AddImageToPersonRequest} addImageToPersonRequest Image to add. + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + async addImageToPerson(personId: string, addImageToPersonRequest: AddImageToPersonRequest, xRequestID?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.addImageToPerson(personId, addImageToPersonRequest, xRequestID, options); + return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); + }, + /** + * + * @summary Create person + * @param {PersonFields} personFields + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + async createPerson(personFields: PersonFields, xRequestID?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.createPerson(personFields, xRequestID, options); + return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); + }, + /** + * + * @summary Delete image of person + * @param {string} imageId Image ID. + * @param {string} personId Person ID. + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + async deleteImageOfPerson(imageId: string, personId: string, xRequestID?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.deleteImageOfPerson(imageId, personId, xRequestID, options); + return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); + }, + /** + * + * @summary Delete person + * @param {string} personId Person ID. + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + async deletePerson(personId: string, xRequestID?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.deletePerson(personId, xRequestID, options); + return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); + }, + /** + * + * @summary Get person groups + * @param {string} personId Person ID. + * @param {number} [page] The page number to get a list of persons or groups. + * @param {number} [size] The page size with a list of persons or groups, items. + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + async getAllGroupsByPersonId(personId: string, page?: number, size?: number, xRequestID?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.getAllGroupsByPersonId(personId, page, size, xRequestID, options); + return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); + }, + /** + * + * @summary Get person images + * @param {string} personId Person ID. + * @param {number} [page] The page number to get a list of persons or groups. + * @param {number} [size] The page size with a list of persons or groups, items. + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + async getAllImagesByPersonId(personId: string, page?: number, size?: number, xRequestID?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.getAllImagesByPersonId(personId, page, size, xRequestID, options); + return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); + }, + /** + * + * @summary Get person image by id + * @param {string} imageId Image ID. + * @param {string} personId Person ID. + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + async getImageOfPerson(imageId: string, personId: string, xRequestID?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.getImageOfPerson(imageId, personId, xRequestID, options); + return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); + }, + /** + * + * @summary Get person + * @param {string} personId Person ID. + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + async getPerson(personId: string, xRequestID?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.getPerson(personId, xRequestID, options); + return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); + }, + /** + * + * @summary Update person + * @param {string} personId Person ID. + * @param {PersonToUpdateFields} personToUpdateFields Request body for the Person to update. + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + async updatePerson(personId: string, personToUpdateFields: PersonToUpdateFields, xRequestID?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.updatePerson(personId, personToUpdateFields, xRequestID, options); + return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); + }, + } +}; + +/** + * FaceIdentificationApi - factory interface + * @export + */ +export const FaceIdentificationApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) { + const localVarFp = FaceIdentificationApiFp(configuration) + return { + /** + * + * @summary Add person image + * @param {string} personId Person ID. + * @param {AddImageToPersonRequest} addImageToPersonRequest Image to add. + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + addImageToPerson(personId: string, addImageToPersonRequest: AddImageToPersonRequest, xRequestID?: string, options?: any): AxiosPromise { + return localVarFp.addImageToPerson(personId, addImageToPersonRequest, xRequestID, options).then((request) => request(axios, basePath)); + }, + /** + * + * @summary Create person + * @param {PersonFields} personFields + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + createPerson(personFields: PersonFields, xRequestID?: string, options?: any): AxiosPromise { + return localVarFp.createPerson(personFields, xRequestID, options).then((request) => request(axios, basePath)); + }, + /** + * + * @summary Delete image of person + * @param {string} imageId Image ID. + * @param {string} personId Person ID. + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + deleteImageOfPerson(imageId: string, personId: string, xRequestID?: string, options?: any): AxiosPromise { + return localVarFp.deleteImageOfPerson(imageId, personId, xRequestID, options).then((request) => request(axios, basePath)); + }, + /** + * + * @summary Delete person + * @param {string} personId Person ID. + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + deletePerson(personId: string, xRequestID?: string, options?: any): AxiosPromise { + return localVarFp.deletePerson(personId, xRequestID, options).then((request) => request(axios, basePath)); + }, + /** + * + * @summary Get person groups + * @param {string} personId Person ID. + * @param {number} [page] The page number to get a list of persons or groups. + * @param {number} [size] The page size with a list of persons or groups, items. + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + getAllGroupsByPersonId(personId: string, page?: number, size?: number, xRequestID?: string, options?: any): AxiosPromise { + return localVarFp.getAllGroupsByPersonId(personId, page, size, xRequestID, options).then((request) => request(axios, basePath)); + }, + /** + * + * @summary Get person images + * @param {string} personId Person ID. + * @param {number} [page] The page number to get a list of persons or groups. + * @param {number} [size] The page size with a list of persons or groups, items. + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + getAllImagesByPersonId(personId: string, page?: number, size?: number, xRequestID?: string, options?: any): AxiosPromise { + return localVarFp.getAllImagesByPersonId(personId, page, size, xRequestID, options).then((request) => request(axios, basePath)); + }, + /** + * + * @summary Get person image by id + * @param {string} imageId Image ID. + * @param {string} personId Person ID. + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + getImageOfPerson(imageId: string, personId: string, xRequestID?: string, options?: any): AxiosPromise { + return localVarFp.getImageOfPerson(imageId, personId, xRequestID, options).then((request) => request(axios, basePath)); + }, + /** + * + * @summary Get person + * @param {string} personId Person ID. + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + getPerson(personId: string, xRequestID?: string, options?: any): AxiosPromise { + return localVarFp.getPerson(personId, xRequestID, options).then((request) => request(axios, basePath)); + }, + /** + * + * @summary Update person + * @param {string} personId Person ID. + * @param {PersonToUpdateFields} personToUpdateFields Request body for the Person to update. + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + updatePerson(personId: string, personToUpdateFields: PersonToUpdateFields, xRequestID?: string, options?: any): AxiosPromise { + return localVarFp.updatePerson(personId, personToUpdateFields, xRequestID, options).then((request) => request(axios, basePath)); + }, + }; +}; + +/** + * FaceIdentificationApi - object-oriented interface + * @export + * @class FaceIdentificationApi + * @extends {BaseAPI} + */ +export class FaceIdentificationApi extends BaseAPI { + /** + * + * @summary Add person image + * @param {string} personId Person ID. + * @param {AddImageToPersonRequest} addImageToPersonRequest Image to add. + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof FaceIdentificationApi + */ + public addImageToPerson(personId: string, addImageToPersonRequest: AddImageToPersonRequest, xRequestID?: string, options?: AxiosRequestConfig) { + return FaceIdentificationApiFp(this.configuration).addImageToPerson(personId, addImageToPersonRequest, xRequestID, options).then((request) => request(this.axios, this.basePath)); + } + + /** + * + * @summary Create person + * @param {PersonFields} personFields + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof FaceIdentificationApi + */ + public createPerson(personFields: PersonFields, xRequestID?: string, options?: AxiosRequestConfig) { + return FaceIdentificationApiFp(this.configuration).createPerson(personFields, xRequestID, options).then((request) => request(this.axios, this.basePath)); + } + + /** + * + * @summary Delete image of person + * @param {string} imageId Image ID. + * @param {string} personId Person ID. + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof FaceIdentificationApi + */ + public deleteImageOfPerson(imageId: string, personId: string, xRequestID?: string, options?: AxiosRequestConfig) { + return FaceIdentificationApiFp(this.configuration).deleteImageOfPerson(imageId, personId, xRequestID, options).then((request) => request(this.axios, this.basePath)); + } + + /** + * + * @summary Delete person + * @param {string} personId Person ID. + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof FaceIdentificationApi + */ + public deletePerson(personId: string, xRequestID?: string, options?: AxiosRequestConfig) { + return FaceIdentificationApiFp(this.configuration).deletePerson(personId, xRequestID, options).then((request) => request(this.axios, this.basePath)); + } + + /** + * + * @summary Get person groups + * @param {string} personId Person ID. + * @param {number} [page] The page number to get a list of persons or groups. + * @param {number} [size] The page size with a list of persons or groups, items. + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof FaceIdentificationApi + */ + public getAllGroupsByPersonId(personId: string, page?: number, size?: number, xRequestID?: string, options?: AxiosRequestConfig) { + return FaceIdentificationApiFp(this.configuration).getAllGroupsByPersonId(personId, page, size, xRequestID, options).then((request) => request(this.axios, this.basePath)); + } + + /** + * + * @summary Get person images + * @param {string} personId Person ID. + * @param {number} [page] The page number to get a list of persons or groups. + * @param {number} [size] The page size with a list of persons or groups, items. + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof FaceIdentificationApi + */ + public getAllImagesByPersonId(personId: string, page?: number, size?: number, xRequestID?: string, options?: AxiosRequestConfig) { + return FaceIdentificationApiFp(this.configuration).getAllImagesByPersonId(personId, page, size, xRequestID, options).then((request) => request(this.axios, this.basePath)); + } + + /** + * + * @summary Get person image by id + * @param {string} imageId Image ID. + * @param {string} personId Person ID. + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof FaceIdentificationApi + */ + public getImageOfPerson(imageId: string, personId: string, xRequestID?: string, options?: AxiosRequestConfig) { + return FaceIdentificationApiFp(this.configuration).getImageOfPerson(imageId, personId, xRequestID, options).then((request) => request(this.axios, this.basePath)); + } + + /** + * + * @summary Get person + * @param {string} personId Person ID. + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof FaceIdentificationApi + */ + public getPerson(personId: string, xRequestID?: string, options?: AxiosRequestConfig) { + return FaceIdentificationApiFp(this.configuration).getPerson(personId, xRequestID, options).then((request) => request(this.axios, this.basePath)); + } + + /** + * + * @summary Update person + * @param {string} personId Person ID. + * @param {PersonToUpdateFields} personToUpdateFields Request body for the Person to update. + * @param {string} [xRequestID] Request header label. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof FaceIdentificationApi + */ + public updatePerson(personId: string, personToUpdateFields: PersonToUpdateFields, xRequestID?: string, options?: AxiosRequestConfig) { + return FaceIdentificationApiFp(this.configuration).updatePerson(personId, personToUpdateFields, xRequestID, options).then((request) => request(this.axios, this.basePath)); + } +} diff --git a/src/api/group-api.ts b/src/api/group-api.ts index f34dd30..c7f9e01 100644 --- a/src/api/group-api.ts +++ b/src/api/group-api.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/api/liveness20-api.ts b/src/api/liveness20-api.ts index c368628..37cffb2 100644 --- a/src/api/liveness20-api.ts +++ b/src/api/liveness20-api.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/api/matching-api.ts b/src/api/matching-api.ts index 5166982..cd1db6d 100755 --- a/src/api/matching-api.ts +++ b/src/api/matching-api.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * @@ -39,8 +39,8 @@ import { MatchResponse } from '../models'; export const MatchingApiAxiosParamCreator = function (configuration?: Configuration) { return { /** - * - * @summary Detect face, evaluate attributes, assess the portrait quality + * Detect face, evaluate attributes, assess the portrait quality + * @summary detect faces * @param {DetectRequest} detectRequest * @param {string} [xRequestID] Request header label. * @param {*} [options] Override http request option. @@ -80,8 +80,8 @@ export const MatchingApiAxiosParamCreator = function (configuration?: Configurat }; }, /** - * - * @summary Compare faces in all combinations + * To perform a comparison of faces in the same image or in two different images, use POST `/api/match`. It\'s possible to compare faces in the same image or in two different images, this is defined by the `images.type` parameter.

The face detection result is displayed in the `detections` field. Each face is identified by two parameters: `faceIndex` (the index number of the face) and `imageIndex` (the index number of the image on which the face is detected). So, if there are two images each of which has two faces in them, the parameters will be the following: - First face in the first image: `faceIndex: 0`, `imageIndex: 0` - Second face in the first image: `faceIndex: 1`, `imageIndex: 0` - First face of the second image: `faceIndex: 0`, `imageIndex: 1` - Second face in the second image: `faceIndex: 1`, `imageIndex: 1` + * @summary compare faces (1:1) * @param {MatchRequest} matchRequest * @param {string} [xRequestID] Request header label. * @param {*} [options] Override http request option. @@ -121,8 +121,8 @@ export const MatchingApiAxiosParamCreator = function (configuration?: Configurat }; }, /** - * - * @summary Match and Search in one request + * To compare several images from a document and look up a person in the database in one request, use POST `/api/match_and_search`. In this case, the calculation of the descriptor will be performed only once, as opposed to using two requests for the same operation. If only one person is identified, matching is not performed and only search is carried out. + * @summary match and search (1:1 + 1:N) * @param {MatchAndSearchRequest} matchAndSearchRequest * @param {string} [xRequestID] Request header label. * @param {*} [options] Override http request option. @@ -172,8 +172,8 @@ export const MatchingApiFp = function(configuration?: Configuration) { const localVarAxiosParamCreator = MatchingApiAxiosParamCreator(configuration) return { /** - * - * @summary Detect face, evaluate attributes, assess the portrait quality + * Detect face, evaluate attributes, assess the portrait quality + * @summary detect faces * @param {DetectRequest} detectRequest * @param {string} [xRequestID] Request header label. * @param {*} [options] Override http request option. @@ -184,8 +184,8 @@ export const MatchingApiFp = function(configuration?: Configuration) { return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); }, /** - * - * @summary Compare faces in all combinations + * To perform a comparison of faces in the same image or in two different images, use POST `/api/match`. It\'s possible to compare faces in the same image or in two different images, this is defined by the `images.type` parameter.

The face detection result is displayed in the `detections` field. Each face is identified by two parameters: `faceIndex` (the index number of the face) and `imageIndex` (the index number of the image on which the face is detected). So, if there are two images each of which has two faces in them, the parameters will be the following: - First face in the first image: `faceIndex: 0`, `imageIndex: 0` - Second face in the first image: `faceIndex: 1`, `imageIndex: 0` - First face of the second image: `faceIndex: 0`, `imageIndex: 1` - Second face in the second image: `faceIndex: 1`, `imageIndex: 1` + * @summary compare faces (1:1) * @param {MatchRequest} matchRequest * @param {string} [xRequestID] Request header label. * @param {*} [options] Override http request option. @@ -196,8 +196,8 @@ export const MatchingApiFp = function(configuration?: Configuration) { return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); }, /** - * - * @summary Match and Search in one request + * To compare several images from a document and look up a person in the database in one request, use POST `/api/match_and_search`. In this case, the calculation of the descriptor will be performed only once, as opposed to using two requests for the same operation. If only one person is identified, matching is not performed and only search is carried out. + * @summary match and search (1:1 + 1:N) * @param {MatchAndSearchRequest} matchAndSearchRequest * @param {string} [xRequestID] Request header label. * @param {*} [options] Override http request option. @@ -218,8 +218,8 @@ export const MatchingApiFactory = function (configuration?: Configuration, baseP const localVarFp = MatchingApiFp(configuration) return { /** - * - * @summary Detect face, evaluate attributes, assess the portrait quality + * Detect face, evaluate attributes, assess the portrait quality + * @summary detect faces * @param {DetectRequest} detectRequest * @param {string} [xRequestID] Request header label. * @param {*} [options] Override http request option. @@ -229,8 +229,8 @@ export const MatchingApiFactory = function (configuration?: Configuration, baseP return localVarFp.detect(detectRequest, xRequestID, options).then((request) => request(axios, basePath)); }, /** - * - * @summary Compare faces in all combinations + * To perform a comparison of faces in the same image or in two different images, use POST `/api/match`. It\'s possible to compare faces in the same image or in two different images, this is defined by the `images.type` parameter.

The face detection result is displayed in the `detections` field. Each face is identified by two parameters: `faceIndex` (the index number of the face) and `imageIndex` (the index number of the image on which the face is detected). So, if there are two images each of which has two faces in them, the parameters will be the following: - First face in the first image: `faceIndex: 0`, `imageIndex: 0` - Second face in the first image: `faceIndex: 1`, `imageIndex: 0` - First face of the second image: `faceIndex: 0`, `imageIndex: 1` - Second face in the second image: `faceIndex: 1`, `imageIndex: 1` + * @summary compare faces (1:1) * @param {MatchRequest} matchRequest * @param {string} [xRequestID] Request header label. * @param {*} [options] Override http request option. @@ -240,8 +240,8 @@ export const MatchingApiFactory = function (configuration?: Configuration, baseP return localVarFp.match(matchRequest, xRequestID, options).then((request) => request(axios, basePath)); }, /** - * - * @summary Match and Search in one request + * To compare several images from a document and look up a person in the database in one request, use POST `/api/match_and_search`. In this case, the calculation of the descriptor will be performed only once, as opposed to using two requests for the same operation. If only one person is identified, matching is not performed and only search is carried out. + * @summary match and search (1:1 + 1:N) * @param {MatchAndSearchRequest} matchAndSearchRequest * @param {string} [xRequestID] Request header label. * @param {*} [options] Override http request option. @@ -261,8 +261,8 @@ export const MatchingApiFactory = function (configuration?: Configuration, baseP */ export class MatchingApi extends BaseAPI { /** - * - * @summary Detect face, evaluate attributes, assess the portrait quality + * Detect face, evaluate attributes, assess the portrait quality + * @summary detect faces * @param {DetectRequest} detectRequest * @param {string} [xRequestID] Request header label. * @param {*} [options] Override http request option. @@ -274,8 +274,8 @@ export class MatchingApi extends BaseAPI { } /** - * - * @summary Compare faces in all combinations + * To perform a comparison of faces in the same image or in two different images, use POST `/api/match`. It\'s possible to compare faces in the same image or in two different images, this is defined by the `images.type` parameter.

The face detection result is displayed in the `detections` field. Each face is identified by two parameters: `faceIndex` (the index number of the face) and `imageIndex` (the index number of the image on which the face is detected). So, if there are two images each of which has two faces in them, the parameters will be the following: - First face in the first image: `faceIndex: 0`, `imageIndex: 0` - Second face in the first image: `faceIndex: 1`, `imageIndex: 0` - First face of the second image: `faceIndex: 0`, `imageIndex: 1` - Second face in the second image: `faceIndex: 1`, `imageIndex: 1` + * @summary compare faces (1:1) * @param {MatchRequest} matchRequest * @param {string} [xRequestID] Request header label. * @param {*} [options] Override http request option. @@ -287,8 +287,8 @@ export class MatchingApi extends BaseAPI { } /** - * - * @summary Match and Search in one request + * To compare several images from a document and look up a person in the database in one request, use POST `/api/match_and_search`. In this case, the calculation of the descriptor will be performed only once, as opposed to using two requests for the same operation. If only one person is identified, matching is not performed and only search is carried out. + * @summary match and search (1:1 + 1:N) * @param {MatchAndSearchRequest} matchAndSearchRequest * @param {string} [xRequestID] Request header label. * @param {*} [options] Override http request option. diff --git a/src/api/search-api.ts b/src/api/search-api.ts index 28c6df8..8da49f3 100644 --- a/src/api/search-api.ts +++ b/src/api/search-api.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/base.ts b/src/base.ts index 7f694e1..676aea4 100755 --- a/src/base.ts +++ b/src/base.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/common.ts b/src/common.ts index 410f46a..88cdf4d 100644 --- a/src/common.ts +++ b/src/common.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/configuration.ts b/src/configuration.ts index 840a314..4291717 100755 --- a/src/configuration.ts +++ b/src/configuration.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/add-image-to-person-request-image.ts b/src/models/add-image-to-person-request-image.ts index e7d1955..93859a1 100644 --- a/src/models/add-image-to-person-request-image.ts +++ b/src/models/add-image-to-person-request-image.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/add-image-to-person-request.ts b/src/models/add-image-to-person-request.ts index 5ab6e3d..031f66c 100644 --- a/src/models/add-image-to-person-request.ts +++ b/src/models/add-image-to-person-request.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/add-image-to-person-response.ts b/src/models/add-image-to-person-response.ts index 14d224d..4972f22 100644 --- a/src/models/add-image-to-person-response.ts +++ b/src/models/add-image-to-person-response.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/attribute-config.ts b/src/models/attribute-config.ts index 0e6a4cf..57001c3 100644 --- a/src/models/attribute-config.ts +++ b/src/models/attribute-config.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/crop.ts b/src/models/crop.ts index 9654a61..cd7db31 100644 --- a/src/models/crop.ts +++ b/src/models/crop.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/detect-request.ts b/src/models/detect-request.ts index 18fa0b3..476a779 100755 --- a/src/models/detect-request.ts +++ b/src/models/detect-request.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * @@ -23,7 +23,7 @@ import { ImageData } from './image-data'; */ export interface DetectRequest { /** - * Session identificator. + * Session identificator, should be unique for each session. * @type {string} * @memberof DetectRequest */ diff --git a/src/models/detect-response-all-of.ts b/src/models/detect-response-all-of.ts index 29774c5..979e9d8 100755 --- a/src/models/detect-response-all-of.ts +++ b/src/models/detect-response-all-of.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/detect-response.ts b/src/models/detect-response.ts index 7350bba..1ccde2b 100755 --- a/src/models/detect-response.ts +++ b/src/models/detect-response.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/detect-result.ts b/src/models/detect-result.ts index 10592ca..ecaa3d9 100755 --- a/src/models/detect-result.ts +++ b/src/models/detect-result.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/detection-attributes.ts b/src/models/detection-attributes.ts index 6c91ce6..437ee75 100644 --- a/src/models/detection-attributes.ts +++ b/src/models/detection-attributes.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/detection-face.ts b/src/models/detection-face.ts index d457453..0fa7d84 100644 --- a/src/models/detection-face.ts +++ b/src/models/detection-face.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * @@ -45,13 +45,14 @@ export interface DetectionFace { */ 'roi'?: Array; /** - * Base64 of the cropped portrait. + * See `crop` instead. * @type {string} * @memberof DetectionFace + * @deprecated */ 'thumbnail'?: string; /** - * Base64 of the cropped portrait. + * Base64-encoded aligned and cropped portrait. * @type {string} * @memberof DetectionFace */ diff --git a/src/models/detection-quality.ts b/src/models/detection-quality.ts index eeef2dd..5cc2897 100644 --- a/src/models/detection-quality.ts +++ b/src/models/detection-quality.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/detection.ts b/src/models/detection.ts index dea3f02..ed74a6c 100755 --- a/src/models/detection.ts +++ b/src/models/detection.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * @@ -54,9 +54,10 @@ export interface Detection { */ 'roi': Array; /** - * Base64 of the cropped portrait. + * See `crop` instead. * @type {string} * @memberof Detection + * @deprecated */ 'thumbnail'?: string; } diff --git a/src/models/face-attribute.ts b/src/models/face-attribute.ts index 33d2799..8b20a84 100644 --- a/src/models/face-attribute.ts +++ b/src/models/face-attribute.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/face-image-quality-align-type.ts b/src/models/face-image-quality-align-type.ts index c3cd008..8dc4fa2 100644 --- a/src/models/face-image-quality-align-type.ts +++ b/src/models/face-image-quality-align-type.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/face-image-quality-groups-strings.ts b/src/models/face-image-quality-groups-strings.ts index c6784a2..d04edae 100644 --- a/src/models/face-image-quality-groups-strings.ts +++ b/src/models/face-image-quality-groups-strings.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/face-image-quality-groups.ts b/src/models/face-image-quality-groups.ts index e2db424..f2197ab 100644 --- a/src/models/face-image-quality-groups.ts +++ b/src/models/face-image-quality-groups.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/face-image-quality-status.ts b/src/models/face-image-quality-status.ts index 78c3d20..e237234 100644 --- a/src/models/face-image-quality-status.ts +++ b/src/models/face-image-quality-status.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/face-quality-config-name.ts b/src/models/face-quality-config-name.ts index 4d216e7..4a213f3 100644 --- a/src/models/face-quality-config-name.ts +++ b/src/models/face-quality-config-name.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/face-quality-scenarios.ts b/src/models/face-quality-scenarios.ts index 0c39d09..839c90d 100644 --- a/src/models/face-quality-scenarios.ts +++ b/src/models/face-quality-scenarios.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/face-sdkresult-code.ts b/src/models/face-sdkresult-code.ts index a4a924d..b1cbf4c 100644 --- a/src/models/face-sdkresult-code.ts +++ b/src/models/face-sdkresult-code.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * @@ -15,7 +15,7 @@ /** - * The result code, see enum: https://docs.regulaforensics.com/develop/face-sdk/web-service/development/enums/face-sdk-result-code/ + * The result code, see the [FaceSDKResultCode enum](https://docs.regulaforensics.com/develop/face-sdk/web-service/development/enums/face-sdk-result-code/). Some of the values: - `0`—everything is OK - `1`—image is empty, try again with another image - `2`—face is not detected - `6`—data cannot be decoded as an image * @export * @enum {string} */ @@ -59,7 +59,9 @@ export const FaceSDKResultCode = { FACER_WRONG_VIEW: 249, FACER_TIMEOUT_LIVENESS_TRANSACTION: 250, FACER_FAILED_LIVENESS_TRANSACTION: 251, - FACER_ABORTED_LIVENESS_TRANSACTION: 252 + FACER_ABORTED_LIVENESS_TRANSACTION: 252, + FACER_GENERAL_ERROR: 253, + FACER_PASSIVE_LIVENESS_FAIL: 254 } as const; export type FaceSDKResultCode = typeof FaceSDKResultCode[keyof typeof FaceSDKResultCode]; diff --git a/src/models/face-sdkresult.ts b/src/models/face-sdkresult.ts index dfc8a15..b9c0599 100644 --- a/src/models/face-sdkresult.ts +++ b/src/models/face-sdkresult.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/faces-response-all-of.ts b/src/models/faces-response-all-of.ts index 0fa85e9..5f09ece 100644 --- a/src/models/faces-response-all-of.ts +++ b/src/models/faces-response-all-of.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * @@ -22,7 +22,7 @@ import { PersonWithImages } from './person-with-images'; */ export interface FacesResponseAllOf { /** - * + * Detected Persons. * @type {Array} * @memberof FacesResponseAllOf */ diff --git a/src/models/faces-response.ts b/src/models/faces-response.ts index 2ba6be3..180ccc2 100644 --- a/src/models/faces-response.ts +++ b/src/models/faces-response.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/group-all-of.ts b/src/models/group-all-of.ts index fd000bc..fce1dfe 100644 --- a/src/models/group-all-of.ts +++ b/src/models/group-all-of.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/group-page-all-of.ts b/src/models/group-page-all-of.ts index 0f214a7..c957bd8 100644 --- a/src/models/group-page-all-of.ts +++ b/src/models/group-page-all-of.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/group-page.ts b/src/models/group-page.ts index f9a9988..e8576c8 100644 --- a/src/models/group-page.ts +++ b/src/models/group-page.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/group-response.ts b/src/models/group-response.ts index 870114c..eb42d23 100644 --- a/src/models/group-response.ts +++ b/src/models/group-response.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/group-to-create.ts b/src/models/group-to-create.ts index 3d9108b..209189b 100644 --- a/src/models/group-to-create.ts +++ b/src/models/group-to-create.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/group.ts b/src/models/group.ts index 848df1b..a1d8643 100644 --- a/src/models/group.ts +++ b/src/models/group.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/image-fields.ts b/src/models/image-fields.ts index 33e000e..21b8488 100644 --- a/src/models/image-fields.ts +++ b/src/models/image-fields.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * @@ -23,7 +23,7 @@ import { OutputImageParams } from './output-image-params'; */ export interface ImageFields { /** - * Session identificator. + * Session identificator, should be unique for each session. * @type {string} * @memberof ImageFields */ @@ -41,7 +41,7 @@ export interface ImageFields { */ 'outputImageParams'?: OutputImageParams; /** - * Whether to detect all faces in the image. If set to false, only the most central face is detected. + * Whether to detect all faces in the image. If set to `false`, only the most central face is detected. * @type {boolean} * @memberof ImageFields */ diff --git a/src/models/image-page-all-of.ts b/src/models/image-page-all-of.ts index e8a8355..7365a5c 100644 --- a/src/models/image-page-all-of.ts +++ b/src/models/image-page-all-of.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/image-page.ts b/src/models/image-page.ts index 4941c22..e93cc49 100644 --- a/src/models/image-page.ts +++ b/src/models/image-page.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/image-source.ts b/src/models/image-source.ts index bad929b..66b1d97 100755 --- a/src/models/image-source.ts +++ b/src/models/image-source.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * @@ -15,7 +15,7 @@ /** - * The type of the image, defines the way the comparison is performed. See the enum: https://docs.regulaforensics.com/develop/face-sdk/web-service/development/enums/image-source/ + * The type of the image, defines the way the comparison is performed, see the [ImageSource enum](https://docs.regulaforensics.com/develop/face-sdk/web-service/development/enums/image-source/). * @export * @enum {string} */ @@ -26,7 +26,8 @@ export const ImageSource = { LIVE: 3, DOCUMENT_WITH_LIVE: 4, EXTERNAL: 5, - GHOST: 6 + GHOST: 6, + BARCODE: 7 } as const; export type ImageSource = typeof ImageSource[keyof typeof ImageSource]; diff --git a/src/models/image.ts b/src/models/image.ts index 9deaf8a..c4565cc 100644 --- a/src/models/image.ts +++ b/src/models/image.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/match-and-search-request-all-of-images.ts b/src/models/match-and-search-request-all-of-images.ts index 5616d4c..43000dc 100644 --- a/src/models/match-and-search-request-all-of-images.ts +++ b/src/models/match-and-search-request-all-of-images.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/match-and-search-request-all-of.ts b/src/models/match-and-search-request-all-of.ts index 7546f0f..5f266c4 100644 --- a/src/models/match-and-search-request-all-of.ts +++ b/src/models/match-and-search-request-all-of.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * @@ -22,13 +22,13 @@ import { MatchAndSearchRequestAllOfImages } from './match-and-search-request-all */ export interface MatchAndSearchRequestAllOf { /** - * Session identificator. + * Session identificator, should be unique for each session. * @type {string} * @memberof MatchAndSearchRequestAllOf */ 'tag'?: string; /** - * Array of Person images. + * Person\'s images. * @type {Array} * @memberof MatchAndSearchRequestAllOf */ diff --git a/src/models/match-and-search-request.ts b/src/models/match-and-search-request.ts index 562b6e4..1c1f6a9 100644 --- a/src/models/match-and-search-request.ts +++ b/src/models/match-and-search-request.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/match-and-search-response-all-of-detections.ts b/src/models/match-and-search-response-all-of-detections.ts index 0cfc1f1..db7f116 100644 --- a/src/models/match-and-search-response-all-of-detections.ts +++ b/src/models/match-and-search-response-all-of-detections.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * @@ -23,13 +23,13 @@ import { FacesResponse } from './faces-response'; */ export interface MatchAndSearchResponseAllOfDetections { /** - * + * Detected faces. * @type {Array} * @memberof MatchAndSearchResponseAllOfDetections */ 'faces'?: Array; /** - * The image index number. Can be given; if not given, the index numbers are set automatically starting from 0. All index numbers must be whole and unique—not repeated. + * The image index number. Can be given; if not given, the index numbers are set automatically starting from `0`. All index numbers must be whole and unique—not repeated. * @type {number} * @memberof MatchAndSearchResponseAllOfDetections */ diff --git a/src/models/match-and-search-response-all-of.ts b/src/models/match-and-search-response-all-of.ts index 12d8540..11ec3c5 100644 --- a/src/models/match-and-search-response-all-of.ts +++ b/src/models/match-and-search-response-all-of.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * @@ -23,13 +23,13 @@ import { MatchImageResult } from './match-image-result'; */ export interface MatchAndSearchResponseAllOf { /** - * + * The match and search results. * @type {Array} * @memberof MatchAndSearchResponseAllOf */ 'results'?: Array; /** - * + * Time the processing has taken, ms. * @type {number} * @memberof MatchAndSearchResponseAllOf */ @@ -41,7 +41,7 @@ export interface MatchAndSearchResponseAllOf { */ 'metadata'?: { [key: string]: object; }; /** - * + * The detection results. * @type {Array} * @memberof MatchAndSearchResponseAllOf */ diff --git a/src/models/match-and-search-response.ts b/src/models/match-and-search-response.ts index d2bb2b8..b31b030 100644 --- a/src/models/match-and-search-response.ts +++ b/src/models/match-and-search-response.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/match-image-detection.ts b/src/models/match-image-detection.ts index cda16a2..3a56954 100644 --- a/src/models/match-image-detection.ts +++ b/src/models/match-image-detection.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * @@ -23,13 +23,13 @@ import { FaceSDKResultCode } from './face-sdkresult-code'; */ export interface MatchImageDetection { /** - * The array of detected faces. + * Detected faces. * @type {Array} * @memberof MatchImageDetection */ 'faces'?: Array; /** - * The image index number. Can be given; if not given, the index numbers are set automatically starting from 0. All index numbers must be whole and unique—not repeated. + * The image index number. Can be given; if not given, the index numbers are set automatically starting from `0`. All index numbers must be whole and unique—not repeated. * @type {number} * @memberof MatchImageDetection */ diff --git a/src/models/match-image-result.ts b/src/models/match-image-result.ts index a5c704e..5747488 100644 --- a/src/models/match-image-result.ts +++ b/src/models/match-image-result.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * @@ -22,7 +22,7 @@ import { ImageSource } from './image-source'; */ export interface MatchImageResult { /** - * The image index number. Can be given; if not given, the index numbers are set automatically starting from 0. All index numbers must be whole and unique—not repeated. + * The image index number. Can be given; if not given, the index numbers are set automatically starting from `0`. All index numbers must be whole and unique—not repeated. * @type {number} * @memberof MatchImageResult */ @@ -40,7 +40,7 @@ export interface MatchImageResult { */ 'first'?: ImageSource; /** - * The image index number. Can be given; if not given, the index numbers are set automatically starting from 0. All index numbers must be whole and unique—not repeated. + * The image index number. Can be given; if not given, the index numbers are set automatically starting from `0`. All index numbers must be whole and unique—not repeated. * @type {number} * @memberof MatchImageResult */ diff --git a/src/models/match-image.ts b/src/models/match-image.ts index 5af9795..393ad3b 100644 --- a/src/models/match-image.ts +++ b/src/models/match-image.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * @@ -23,7 +23,7 @@ import { ImageData } from './image-data'; */ export interface MatchImage { /** - * The image index number. Can be given; if not given, the index numbers are set automatically starting from 0. All index numbers must be whole and unique—not repeated. + * The image index number. Can be given; if not given, the index numbers are set automatically starting from `0`. All index numbers must be whole and unique—not repeated. * @type {number} * @memberof MatchImage */ @@ -41,7 +41,7 @@ export interface MatchImage { */ 'data': ImageData; /** - * Whether to detect all faces in the image. If set to false, only the most central face is detected. + * Whether to detect all faces in the image. If set to `false`, only the most central face is detected. * @type {boolean} * @memberof MatchImage */ diff --git a/src/models/match-request-output-image-params-crop.ts b/src/models/match-request-output-image-params-crop.ts index d06e4ec..6e7f5b4 100644 --- a/src/models/match-request-output-image-params-crop.ts +++ b/src/models/match-request-output-image-params-crop.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * @@ -15,7 +15,7 @@ /** - * Whether to return the Base64 of an aligned and cropped portrait in the `crop` field. + * If set, a Base64-encoded aligned and cropped by the indicated settings portrait is returned in the `crop` field. * @export * @interface MatchRequestOutputImageParamsCrop */ @@ -27,7 +27,7 @@ export interface MatchRequestOutputImageParamsCrop { */ 'padColor'?: Array; /** - * Whether to return the coordinates of the rectangle with the face in the original image prepared for the face crop. + * Whether to return the coordinates of the rectangle with the face in the original image prepared for the face crop. Can be used only if the face in the original image is not tilted. * @type {boolean} * @memberof MatchRequestOutputImageParamsCrop */ @@ -39,7 +39,7 @@ export interface MatchRequestOutputImageParamsCrop { */ 'size'?: Array; /** - * The aspect ratio according to which face alignment is performed during face detection. + * The aspect ratio according to which face alignment is performed. See the [FaceImageQualityAlignType enum](https://docs.regulaforensics.com/develop/face-sdk/web-service/development/enums/face-image-quality-align-type/). To get a thumbnail with dimensions 3x4, set `0`. * @type {number} * @memberof MatchRequestOutputImageParamsCrop */ diff --git a/src/models/match-request-output-image-params.ts b/src/models/match-request-output-image-params.ts index b7e7185..ee23321 100644 --- a/src/models/match-request-output-image-params.ts +++ b/src/models/match-request-output-image-params.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/match-request.ts b/src/models/match-request.ts index d1e86e1..a55ff43 100644 --- a/src/models/match-request.ts +++ b/src/models/match-request.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * @@ -23,20 +23,20 @@ import { MatchRequestOutputImageParams } from './match-request-output-image-para */ export interface MatchRequest { /** - * Session identificator. + * Session identificator, should be unique for each session. * @type {string} * @memberof MatchRequest */ 'tag'?: string; /** - * Deprecated, use the `crop` field in `outputImageParams` instead. - * @type {boolean} + * Use `outputImageParams.crop` instead. + * @type {any} * @memberof MatchRequest * @deprecated */ - 'thumbnails'?: boolean; + 'thumbnails'?: any; /** - * The array of all images included in the comparison. + * All images included in the comparison. * @type {Array} * @memberof MatchRequest */ diff --git a/src/models/match-response-all-of.ts b/src/models/match-response-all-of.ts index b1bd8b1..a7566e8 100644 --- a/src/models/match-response-all-of.ts +++ b/src/models/match-response-all-of.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * @@ -23,13 +23,13 @@ import { MatchImageResult } from './match-image-result'; */ export interface MatchResponseAllOf { /** - * The array of detected faces. + * The detection results. * @type {Array} * @memberof MatchResponseAllOf */ 'detections'?: Array; /** - * The array of matching results. + * The comparison results. * @type {Array} * @memberof MatchResponseAllOf */ diff --git a/src/models/match-response.ts b/src/models/match-response.ts index 24e53e6..4119957 100644 --- a/src/models/match-response.ts +++ b/src/models/match-response.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/operation-log.ts b/src/models/operation-log.ts index f52180a..523e915 100644 --- a/src/models/operation-log.ts +++ b/src/models/operation-log.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/output-image-params.ts b/src/models/output-image-params.ts index 1320f21..be859ff 100644 --- a/src/models/output-image-params.ts +++ b/src/models/output-image-params.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/page.ts b/src/models/page.ts index e76637d..22a55a6 100644 --- a/src/models/page.ts +++ b/src/models/page.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/person-all-of.ts b/src/models/person-all-of.ts index 6f1d567..736268d 100644 --- a/src/models/person-all-of.ts +++ b/src/models/person-all-of.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/person-fields.ts b/src/models/person-fields.ts index 1afacb4..97f338a 100644 --- a/src/models/person-fields.ts +++ b/src/models/person-fields.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * @@ -21,7 +21,7 @@ */ export interface PersonFields { /** - * Person name. + * Person\'s name. * @type {string} * @memberof PersonFields */ diff --git a/src/models/person-to-update-fields.ts b/src/models/person-to-update-fields.ts index ad1bb59..b896c3f 100644 --- a/src/models/person-to-update-fields.ts +++ b/src/models/person-to-update-fields.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * @@ -21,7 +21,7 @@ */ export interface PersonToUpdateFields { /** - * Person name. + * Person\'s name. * @type {string} * @memberof PersonToUpdateFields */ diff --git a/src/models/person-with-images-all-of.ts b/src/models/person-with-images-all-of.ts index 64d1b48..182b711 100644 --- a/src/models/person-with-images-all-of.ts +++ b/src/models/person-with-images-all-of.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * @@ -22,7 +22,7 @@ import { RecognizeImage } from './recognize-image'; */ export interface PersonWithImagesAllOf { /** - * + * Detected Persons. * @type {Array} * @memberof PersonWithImagesAllOf */ diff --git a/src/models/person-with-images.ts b/src/models/person-with-images.ts index ebab57c..a0757f7 100644 --- a/src/models/person-with-images.ts +++ b/src/models/person-with-images.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/person.ts b/src/models/person.ts index b3ddedd..71ef188 100644 --- a/src/models/person.ts +++ b/src/models/person.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/persons-page-all-of.ts b/src/models/persons-page-all-of.ts index 6c62442..c870865 100644 --- a/src/models/persons-page-all-of.ts +++ b/src/models/persons-page-all-of.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/persons-page.ts b/src/models/persons-page.ts index 7124319..83023d1 100644 --- a/src/models/persons-page.ts +++ b/src/models/persons-page.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/process-param-attributes.ts b/src/models/process-param-attributes.ts index 232dc22..f9c1ad1 100644 --- a/src/models/process-param-attributes.ts +++ b/src/models/process-param-attributes.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/process-param.ts b/src/models/process-param.ts index 1a43c15..90a653c 100644 --- a/src/models/process-param.ts +++ b/src/models/process-param.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/quality-config.ts b/src/models/quality-config.ts index 7627203..308b50d 100644 --- a/src/models/quality-config.ts +++ b/src/models/quality-config.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/quality-detail.ts b/src/models/quality-detail.ts index d4c74ff..fc33409 100644 --- a/src/models/quality-detail.ts +++ b/src/models/quality-detail.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/quality-details-groups.ts b/src/models/quality-details-groups.ts index ec7a612..82de473 100644 --- a/src/models/quality-details-groups.ts +++ b/src/models/quality-details-groups.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/quality-request.ts b/src/models/quality-request.ts index a20788f..4a15f64 100644 --- a/src/models/quality-request.ts +++ b/src/models/quality-request.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/recognize-image-all-of.ts b/src/models/recognize-image-all-of.ts index 09b73d0..1f796c6 100644 --- a/src/models/recognize-image-all-of.ts +++ b/src/models/recognize-image-all-of.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/recognize-image.ts b/src/models/recognize-image.ts index cf57502..bec1964 100644 --- a/src/models/recognize-image.ts +++ b/src/models/recognize-image.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/resize-options.ts b/src/models/resize-options.ts index 5bd79c9..1fee6fe 100644 --- a/src/models/resize-options.ts +++ b/src/models/resize-options.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/search-bad-params.ts b/src/models/search-bad-params.ts index 91ef442..4572939 100644 --- a/src/models/search-bad-params.ts +++ b/src/models/search-bad-params.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/search-detection.ts b/src/models/search-detection.ts index 73fb61b..eb87d61 100644 --- a/src/models/search-detection.ts +++ b/src/models/search-detection.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/search-parameters-create-person.ts b/src/models/search-parameters-create-person.ts index 1f04838..8eba02d 100644 --- a/src/models/search-parameters-create-person.ts +++ b/src/models/search-parameters-create-person.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/search-parameters.ts b/src/models/search-parameters.ts index 7cb5afe..192130e 100644 --- a/src/models/search-parameters.ts +++ b/src/models/search-parameters.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/search-person-all-of.ts b/src/models/search-person-all-of.ts index 32ed57e..561e791 100644 --- a/src/models/search-person-all-of.ts +++ b/src/models/search-person-all-of.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/search-person.ts b/src/models/search-person.ts index e1b6f9d..6315060 100644 --- a/src/models/search-person.ts +++ b/src/models/search-person.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/search-request.ts b/src/models/search-request.ts index b695fd2..7cc072b 100644 --- a/src/models/search-request.ts +++ b/src/models/search-request.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/models/search-result.ts b/src/models/search-result.ts index 6e6ccb0..3ac42c0 100644 --- a/src/models/search-result.ts +++ b/src/models/search-result.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * @@ -58,7 +58,7 @@ export interface SearchResult { */ 'groups'?: Array | null; /** - * Person name. + * Person\'s name. * @type {string} * @memberof SearchResult */ diff --git a/src/models/transaction-info.ts b/src/models/transaction-info.ts index 1e5dcf1..e8e3ef7 100644 --- a/src/models/transaction-info.ts +++ b/src/models/transaction-info.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 * @@ -33,7 +33,7 @@ export interface TransactionInfo { */ 'status'?: number; /** - * Session identificator. + * Session identificator, should be unique for each session. * @type {string} * @memberof TransactionInfo */ diff --git a/src/models/update-group.ts b/src/models/update-group.ts index 87a7759..024f49b 100644 --- a/src/models/update-group.ts +++ b/src/models/update-group.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ /** - * Regula FaceSDK Web API - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### 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 + * Regula Face SDK Web API + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### 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 * * The version of the OpenAPI document: 6.1.0 *