From dd0ea9dc26b283d05349e4803ad4d0cc28b77bc1 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 20 Dec 2023 12:32:16 +0000 Subject: [PATCH] 5.2 release --- .openapi-generator/FILES | 2 ++ .../Api/DiagnosticsApi.cs | 2 +- src/Regula.FaceSDK.WebClient/Api/GroupApi.cs | 2 +- .../Api/Liveness20Api.cs | 2 +- .../Api/MatchingApi.cs | 2 +- src/Regula.FaceSDK.WebClient/Api/PersonApi.cs | 2 +- .../Client/ApiClient.cs | 2 +- .../Client/ApiException.cs | 2 +- .../Client/ApiResponse.cs | 2 +- .../Client/Configuration.cs | 4 +-- .../Client/ExceptionFactory.cs | 2 +- .../Client/GlobalConfiguration.cs | 2 +- .../Client/IApiAccessor.cs | 2 +- .../Client/IReadableConfiguration.cs | 2 +- .../Client/OpenAPIDateConverter.cs | 2 +- src/Regula.FaceSDK.WebClient/Model/Crop.cs | 10 +++---- .../Model/DetectRequest.cs | 8 +++--- .../Model/DetectResponse.cs | 2 +- .../Model/DetectResult.cs | 2 +- .../Model/Detection.cs | 2 +- .../Model/DetectionAttributes.cs | 2 +- .../Model/DetectionFace.cs | 23 +++++++++++++--- .../Model/DetectionQuality.cs | 2 +- .../Model/FaceImageQualityAlignType.cs | 2 +- .../Model/FaceImageQualityGroups.cs | 2 +- .../Model/FaceImageQualityGroupsStrings.cs | 2 +- .../Model/FaceImageQualityStatus.cs | 2 +- .../Model/FaceQualityConfigName.cs | 2 +- .../Model/FaceQualityScenarios.cs | 2 +- .../Model/FaceSDKResult.cs | 2 +- .../Model/FaceSDKResultCode.cs | 2 +- .../Model/FacesResponse.cs | 21 +++++++++++++-- src/Regula.FaceSDK.WebClient/Model/Group.cs | 2 +- .../Model/GroupPage.cs | 2 +- .../Model/GroupToCreate.cs | 2 +- src/Regula.FaceSDK.WebClient/Model/Image.cs | 2 +- .../Model/ImageFields.cs | 2 +- .../Model/ImageFieldsImage.cs | 2 +- .../Model/ImagePage.cs | 2 +- .../Model/ImageSource.cs | 2 +- .../Model/MatchAndSearchRequest.cs | 2 +- .../Model/MatchAndSearchRequestAllOfImages.cs | 2 +- .../Model/MatchAndSearchResponse.cs | 2 +- .../MatchAndSearchResponseAllOfDetections.cs | 2 +- .../Model/MatchImage.cs | 2 +- .../Model/MatchImageDetection.cs | 2 +- .../Model/MatchImageResult.cs | 2 +- .../Model/MatchRequest.cs | 27 +++++++++++++++---- .../Model/MatchRequestOutputImageParams.cs | 2 +- .../MatchRequestOutputImageParamsCrop.cs | 10 +++---- .../Model/MatchResponse.cs | 2 +- .../Model/OperationLog.cs | 2 +- .../Model/OutputImageParams.cs | 2 +- src/Regula.FaceSDK.WebClient/Model/Page.cs | 2 +- src/Regula.FaceSDK.WebClient/Model/Person.cs | 2 +- .../Model/PersonCreatedResponse.cs | 2 +- .../Model/PersonFields.cs | 2 +- .../Model/PersonWithImages.cs | 2 +- .../Model/PersonsPage.cs | 2 +- .../Model/ProcessParam.cs | 2 +- .../Model/ProcessParamAttributes.cs | 2 +- .../Model/QualityConfig.cs | 2 +- .../Model/QualityDetail.cs | 2 +- .../Model/QualityDetailsGroups.cs | 2 +- .../Model/QualityRequest.cs | 2 +- .../Model/RecognizeImage.cs | 2 +- .../Model/ResizeOptions.cs | 2 +- .../Model/SearchBadParams.cs | 2 +- .../Model/SearchDetection.cs | 2 +- .../Model/SearchParameters.cs | 2 +- .../Model/SearchParametersCreatePerson.cs | 2 +- .../Model/SearchPerson.cs | 2 +- .../Model/SearchRequest.cs | 2 +- .../Model/SearchResult.cs | 2 +- .../Model/TransactionInfo.cs | 2 +- .../Model/UpdateGroup.cs | 2 +- 76 files changed, 147 insertions(+), 94 deletions(-) diff --git a/.openapi-generator/FILES b/.openapi-generator/FILES index 4c07059..171a337 100644 --- a/.openapi-generator/FILES +++ b/.openapi-generator/FILES @@ -46,6 +46,8 @@ src/Regula.FaceSDK.WebClient/Model/MatchImage.cs src/Regula.FaceSDK.WebClient/Model/MatchImageDetection.cs src/Regula.FaceSDK.WebClient/Model/MatchImageResult.cs src/Regula.FaceSDK.WebClient/Model/MatchRequest.cs +src/Regula.FaceSDK.WebClient/Model/MatchRequestOutputImageParams.cs +src/Regula.FaceSDK.WebClient/Model/MatchRequestOutputImageParamsCrop.cs src/Regula.FaceSDK.WebClient/Model/MatchResponse.cs src/Regula.FaceSDK.WebClient/Model/OperationLog.cs src/Regula.FaceSDK.WebClient/Model/OutputImageParams.cs diff --git a/src/Regula.FaceSDK.WebClient/Api/DiagnosticsApi.cs b/src/Regula.FaceSDK.WebClient/Api/DiagnosticsApi.cs index efa31e1..004998a 100644 --- a/src/Regula.FaceSDK.WebClient/Api/DiagnosticsApi.cs +++ b/src/Regula.FaceSDK.WebClient/Api/DiagnosticsApi.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Api/GroupApi.cs b/src/Regula.FaceSDK.WebClient/Api/GroupApi.cs index acb1dd0..67d82cb 100644 --- a/src/Regula.FaceSDK.WebClient/Api/GroupApi.cs +++ b/src/Regula.FaceSDK.WebClient/Api/GroupApi.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Api/Liveness20Api.cs b/src/Regula.FaceSDK.WebClient/Api/Liveness20Api.cs index 415d3cc..c1d7dff 100644 --- a/src/Regula.FaceSDK.WebClient/Api/Liveness20Api.cs +++ b/src/Regula.FaceSDK.WebClient/Api/Liveness20Api.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Api/MatchingApi.cs b/src/Regula.FaceSDK.WebClient/Api/MatchingApi.cs index f43ffb6..c62c4a4 100644 --- a/src/Regula.FaceSDK.WebClient/Api/MatchingApi.cs +++ b/src/Regula.FaceSDK.WebClient/Api/MatchingApi.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Api/PersonApi.cs b/src/Regula.FaceSDK.WebClient/Api/PersonApi.cs index 5035455..50bd988 100644 --- a/src/Regula.FaceSDK.WebClient/Api/PersonApi.cs +++ b/src/Regula.FaceSDK.WebClient/Api/PersonApi.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Client/ApiClient.cs b/src/Regula.FaceSDK.WebClient/Client/ApiClient.cs index 6fd0683..a4ae29e 100644 --- a/src/Regula.FaceSDK.WebClient/Client/ApiClient.cs +++ b/src/Regula.FaceSDK.WebClient/Client/ApiClient.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Client/ApiException.cs b/src/Regula.FaceSDK.WebClient/Client/ApiException.cs index 45dd01c..a972549 100644 --- a/src/Regula.FaceSDK.WebClient/Client/ApiException.cs +++ b/src/Regula.FaceSDK.WebClient/Client/ApiException.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Client/ApiResponse.cs b/src/Regula.FaceSDK.WebClient/Client/ApiResponse.cs index 631719d..74f5c0f 100644 --- a/src/Regula.FaceSDK.WebClient/Client/ApiResponse.cs +++ b/src/Regula.FaceSDK.WebClient/Client/ApiResponse.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Client/Configuration.cs b/src/Regula.FaceSDK.WebClient/Client/Configuration.cs index 29b4fb1..21908f2 100644 --- a/src/Regula.FaceSDK.WebClient/Client/Configuration.cs +++ b/src/Regula.FaceSDK.WebClient/Client/Configuration.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ @@ -420,7 +420,7 @@ public static String ToDebugReport() String report = "C# SDK (Regula.FaceSDK.WebClient) Debug Report:\n"; report += " OS: " + System.Environment.OSVersion + "\n"; report += " .NET Framework Version: " + System.Environment.Version + "\n"; - report += " Version of the API: 5.2.0\n"; + report += " Version of the API: 6.1.0\n"; report += " SDK Package Version: 1.0.0\n"; return report; diff --git a/src/Regula.FaceSDK.WebClient/Client/ExceptionFactory.cs b/src/Regula.FaceSDK.WebClient/Client/ExceptionFactory.cs index d3e25b7..4978012 100644 --- a/src/Regula.FaceSDK.WebClient/Client/ExceptionFactory.cs +++ b/src/Regula.FaceSDK.WebClient/Client/ExceptionFactory.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Client/GlobalConfiguration.cs b/src/Regula.FaceSDK.WebClient/Client/GlobalConfiguration.cs index 0a334d4..735be46 100644 --- a/src/Regula.FaceSDK.WebClient/Client/GlobalConfiguration.cs +++ b/src/Regula.FaceSDK.WebClient/Client/GlobalConfiguration.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Client/IApiAccessor.cs b/src/Regula.FaceSDK.WebClient/Client/IApiAccessor.cs index e341de7..8ab9598 100644 --- a/src/Regula.FaceSDK.WebClient/Client/IApiAccessor.cs +++ b/src/Regula.FaceSDK.WebClient/Client/IApiAccessor.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Client/IReadableConfiguration.cs b/src/Regula.FaceSDK.WebClient/Client/IReadableConfiguration.cs index 77aa045..9b342c1 100644 --- a/src/Regula.FaceSDK.WebClient/Client/IReadableConfiguration.cs +++ b/src/Regula.FaceSDK.WebClient/Client/IReadableConfiguration.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Client/OpenAPIDateConverter.cs b/src/Regula.FaceSDK.WebClient/Client/OpenAPIDateConverter.cs index 34e4ca3..d0b36be 100644 --- a/src/Regula.FaceSDK.WebClient/Client/OpenAPIDateConverter.cs +++ b/src/Regula.FaceSDK.WebClient/Client/OpenAPIDateConverter.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/Crop.cs b/src/Regula.FaceSDK.WebClient/Model/Crop.cs index 5c0791c..5a4412a 100644 --- a/src/Regula.FaceSDK.WebClient/Model/Crop.cs +++ b/src/Regula.FaceSDK.WebClient/Model/Crop.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ @@ -25,7 +25,7 @@ namespace Regula.FaceSDK.WebClient.Model { /// - /// Whether to return the Base64 of an aligned and cropped portrait in the crop field. + /// Whether to return the Base64 image of an aligned and cropped portrait in the `crop` field. /// [DataContract] public partial class Crop : IEquatable, IValidatableObject @@ -40,7 +40,7 @@ public partial class Crop : IEquatable, IValidatableObject /// /// type. /// The RGB value of a color for filling background behind a person's silhouette and for aligning the image.. - /// The resize value in case type matches this value. If it doesn't, no resize is done.. + /// The resize value in case `type` matches this value. If it doesn't, no resize is performed.. /// Whether to return the coordinates of the rectangle with the face in the original image prepared for the face crop.. public Crop(FaceImageQualityAlignType? type = default(FaceImageQualityAlignType?), List padColor = default(List), List size = default(List), bool returnOriginalRect = default(bool)) { @@ -59,9 +59,9 @@ public partial class Crop : IEquatable, IValidatableObject public List PadColor { get; set; } /// - /// The resize value in case type matches this value. If it doesn't, no resize is done. + /// The resize value in case `type` matches this value. If it doesn't, no resize is performed. /// - /// The resize value in case type matches this value. If it doesn't, no resize is done. + /// The resize value in case `type` matches this value. If it doesn't, no resize is performed. [DataMember(Name="size", EmitDefaultValue=false)] public List Size { get; set; } diff --git a/src/Regula.FaceSDK.WebClient/Model/DetectRequest.cs b/src/Regula.FaceSDK.WebClient/Model/DetectRequest.cs index a116a8c..c5d1157 100644 --- a/src/Regula.FaceSDK.WebClient/Model/DetectRequest.cs +++ b/src/Regula.FaceSDK.WebClient/Model/DetectRequest.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ @@ -36,7 +36,7 @@ public partial class DetectRequest : IEquatable, IValidatableObj /// Session identificator.. /// processParam. /// Base64 encoded image.. - /// Whether to return the cropped portrains with the detected faces. (default to false). + /// Deprecated, use the `crop` field in `processParam` instead. (default to false). public DetectRequest(string tag = default(string), ProcessParam processParam = default(ProcessParam), byte[] image = default(byte[]), bool thumbnails = false) { this.Tag = tag; @@ -74,9 +74,9 @@ public partial class DetectRequest : IEquatable, IValidatableObj public byte[] Image { get; set; } /// - /// Whether to return the cropped portrains with the detected faces. + /// Deprecated, use the `crop` field in `processParam` instead. /// - /// Whether to return the cropped portrains with the detected faces. + /// Deprecated, use the `crop` field in `processParam` instead. [DataMember(Name="thumbnails", EmitDefaultValue=false)] public bool Thumbnails { get; set; } diff --git a/src/Regula.FaceSDK.WebClient/Model/DetectResponse.cs b/src/Regula.FaceSDK.WebClient/Model/DetectResponse.cs index 87a2044..ca78d23 100644 --- a/src/Regula.FaceSDK.WebClient/Model/DetectResponse.cs +++ b/src/Regula.FaceSDK.WebClient/Model/DetectResponse.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/DetectResult.cs b/src/Regula.FaceSDK.WebClient/Model/DetectResult.cs index 2eb1162..265cda1 100644 --- a/src/Regula.FaceSDK.WebClient/Model/DetectResult.cs +++ b/src/Regula.FaceSDK.WebClient/Model/DetectResult.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/Detection.cs b/src/Regula.FaceSDK.WebClient/Model/Detection.cs index 1c2ad6b..081c461 100644 --- a/src/Regula.FaceSDK.WebClient/Model/Detection.cs +++ b/src/Regula.FaceSDK.WebClient/Model/Detection.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/DetectionAttributes.cs b/src/Regula.FaceSDK.WebClient/Model/DetectionAttributes.cs index 5ffe98f..2de9e73 100644 --- a/src/Regula.FaceSDK.WebClient/Model/DetectionAttributes.cs +++ b/src/Regula.FaceSDK.WebClient/Model/DetectionAttributes.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/DetectionFace.cs b/src/Regula.FaceSDK.WebClient/Model/DetectionFace.cs index e321527..263a906 100644 --- a/src/Regula.FaceSDK.WebClient/Model/DetectionFace.cs +++ b/src/Regula.FaceSDK.WebClient/Model/DetectionFace.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ @@ -38,13 +38,15 @@ public partial class DetectionFace : IEquatable, IValidatableObj /// Angle of rotation of the face from the vertical axis, degrees.. /// The rectangular area of a detected face that is represented by a set of four elements: the X and Y coordinates of the top-left point, and the width and height dimensions of the rectangle.. /// Base64 of the cropped portrait.. - public DetectionFace(decimal faceIndex = default(decimal), List> landmarks = default(List>), float rotationAngle = default(float), List roi = default(List), byte[] thumbnail = default(byte[])) + /// Base64 of the cropped portrait.. + public DetectionFace(decimal faceIndex = default(decimal), List> landmarks = default(List>), decimal rotationAngle = default(decimal), List roi = default(List), byte[] thumbnail = default(byte[]), byte[] crop = default(byte[])) { this.FaceIndex = faceIndex; this.Landmarks = landmarks; this.RotationAngle = rotationAngle; this.Roi = roi; this.Thumbnail = thumbnail; + this.Crop = crop; } /// @@ -66,7 +68,7 @@ public partial class DetectionFace : IEquatable, IValidatableObj /// /// Angle of rotation of the face from the vertical axis, degrees. [DataMember(Name="rotationAngle", EmitDefaultValue=false)] - public float RotationAngle { get; set; } + public decimal RotationAngle { get; set; } /// /// The rectangular area of a detected face that is represented by a set of four elements: the X and Y coordinates of the top-left point, and the width and height dimensions of the rectangle. @@ -82,6 +84,13 @@ public partial class DetectionFace : IEquatable, IValidatableObj [DataMember(Name="thumbnail", EmitDefaultValue=false)] public byte[] Thumbnail { get; set; } + /// + /// Base64 of the cropped portrait. + /// + /// Base64 of the cropped portrait. + [DataMember(Name="crop", EmitDefaultValue=false)] + public byte[] Crop { get; set; } + /// /// Returns the string presentation of the object /// @@ -95,6 +104,7 @@ public override string ToString() sb.Append(" RotationAngle: ").Append(RotationAngle).Append("\n"); sb.Append(" Roi: ").Append(Roi).Append("\n"); sb.Append(" Thumbnail: ").Append(Thumbnail).Append("\n"); + sb.Append(" Crop: ").Append(Crop).Append("\n"); sb.Append("}\n"); return sb.ToString(); } @@ -155,6 +165,11 @@ public bool Equals(DetectionFace input) this.Thumbnail == input.Thumbnail || (this.Thumbnail != null && this.Thumbnail.Equals(input.Thumbnail)) + ) && + ( + this.Crop == input.Crop || + (this.Crop != null && + this.Crop.Equals(input.Crop)) ); } @@ -177,6 +192,8 @@ public override int GetHashCode() hashCode = hashCode * 59 + this.Roi.GetHashCode(); if (this.Thumbnail != null) hashCode = hashCode * 59 + this.Thumbnail.GetHashCode(); + if (this.Crop != null) + hashCode = hashCode * 59 + this.Crop.GetHashCode(); return hashCode; } } diff --git a/src/Regula.FaceSDK.WebClient/Model/DetectionQuality.cs b/src/Regula.FaceSDK.WebClient/Model/DetectionQuality.cs index a1f59c2..b38c20f 100644 --- a/src/Regula.FaceSDK.WebClient/Model/DetectionQuality.cs +++ b/src/Regula.FaceSDK.WebClient/Model/DetectionQuality.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/FaceImageQualityAlignType.cs b/src/Regula.FaceSDK.WebClient/Model/FaceImageQualityAlignType.cs index d2edfeb..3170b44 100644 --- a/src/Regula.FaceSDK.WebClient/Model/FaceImageQualityAlignType.cs +++ b/src/Regula.FaceSDK.WebClient/Model/FaceImageQualityAlignType.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/FaceImageQualityGroups.cs b/src/Regula.FaceSDK.WebClient/Model/FaceImageQualityGroups.cs index 41a143a..bd25a3d 100644 --- a/src/Regula.FaceSDK.WebClient/Model/FaceImageQualityGroups.cs +++ b/src/Regula.FaceSDK.WebClient/Model/FaceImageQualityGroups.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/FaceImageQualityGroupsStrings.cs b/src/Regula.FaceSDK.WebClient/Model/FaceImageQualityGroupsStrings.cs index b46d5e4..7cf99d3 100644 --- a/src/Regula.FaceSDK.WebClient/Model/FaceImageQualityGroupsStrings.cs +++ b/src/Regula.FaceSDK.WebClient/Model/FaceImageQualityGroupsStrings.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/FaceImageQualityStatus.cs b/src/Regula.FaceSDK.WebClient/Model/FaceImageQualityStatus.cs index 43d6a10..4a48fa8 100644 --- a/src/Regula.FaceSDK.WebClient/Model/FaceImageQualityStatus.cs +++ b/src/Regula.FaceSDK.WebClient/Model/FaceImageQualityStatus.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/FaceQualityConfigName.cs b/src/Regula.FaceSDK.WebClient/Model/FaceQualityConfigName.cs index fe40a9e..de91f59 100644 --- a/src/Regula.FaceSDK.WebClient/Model/FaceQualityConfigName.cs +++ b/src/Regula.FaceSDK.WebClient/Model/FaceQualityConfigName.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/FaceQualityScenarios.cs b/src/Regula.FaceSDK.WebClient/Model/FaceQualityScenarios.cs index 19bfeba..ba54df5 100644 --- a/src/Regula.FaceSDK.WebClient/Model/FaceQualityScenarios.cs +++ b/src/Regula.FaceSDK.WebClient/Model/FaceQualityScenarios.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/FaceSDKResult.cs b/src/Regula.FaceSDK.WebClient/Model/FaceSDKResult.cs index 5b42a39..aaee02a 100644 --- a/src/Regula.FaceSDK.WebClient/Model/FaceSDKResult.cs +++ b/src/Regula.FaceSDK.WebClient/Model/FaceSDKResult.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/FaceSDKResultCode.cs b/src/Regula.FaceSDK.WebClient/Model/FaceSDKResultCode.cs index 60b2a53..bb2fe09 100644 --- a/src/Regula.FaceSDK.WebClient/Model/FaceSDKResultCode.cs +++ b/src/Regula.FaceSDK.WebClient/Model/FaceSDKResultCode.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/FacesResponse.cs b/src/Regula.FaceSDK.WebClient/Model/FacesResponse.cs index b5d8cfd..2903d0f 100644 --- a/src/Regula.FaceSDK.WebClient/Model/FacesResponse.cs +++ b/src/Regula.FaceSDK.WebClient/Model/FacesResponse.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ @@ -38,14 +38,16 @@ public partial class FacesResponse : IEquatable, IValidatableObj /// rotationAngle. /// The rectangular area of a detected face that is represented by a set of four elements: the X and Y coordinates of the top-left point, and the width and height dimensions of the rectangle.. /// Base64 of the cropped portrait.. + /// Base64 of the cropped portrait.. /// persons. - public FacesResponse(decimal faceIndex = default(decimal), List> landmarks = default(List>), float rotationAngle = default(float), List roi = default(List), byte[] thumbnail = default(byte[]), List persons = default(List)) + public FacesResponse(decimal faceIndex = default(decimal), List> landmarks = default(List>), float rotationAngle = default(float), List roi = default(List), byte[] thumbnail = default(byte[]), byte[] crop = default(byte[]), List persons = default(List)) { this.FaceIndex = faceIndex; this.Landmarks = landmarks; this.RotationAngle = rotationAngle; this.Roi = roi; this.Thumbnail = thumbnail; + this.Crop = crop; this.Persons = persons; } @@ -83,6 +85,13 @@ public partial class FacesResponse : IEquatable, IValidatableObj [DataMember(Name="thumbnail", EmitDefaultValue=false)] public byte[] Thumbnail { get; set; } + /// + /// Base64 of the cropped portrait. + /// + /// Base64 of the cropped portrait. + [DataMember(Name="crop", EmitDefaultValue=false)] + public byte[] Crop { get; set; } + /// /// Gets or Sets Persons /// @@ -102,6 +111,7 @@ public override string ToString() sb.Append(" RotationAngle: ").Append(RotationAngle).Append("\n"); sb.Append(" Roi: ").Append(Roi).Append("\n"); sb.Append(" Thumbnail: ").Append(Thumbnail).Append("\n"); + sb.Append(" Crop: ").Append(Crop).Append("\n"); sb.Append(" Persons: ").Append(Persons).Append("\n"); sb.Append("}\n"); return sb.ToString(); @@ -164,6 +174,11 @@ public bool Equals(FacesResponse input) (this.Thumbnail != null && this.Thumbnail.Equals(input.Thumbnail)) ) && + ( + this.Crop == input.Crop || + (this.Crop != null && + this.Crop.Equals(input.Crop)) + ) && ( this.Persons == input.Persons || this.Persons != null && @@ -191,6 +206,8 @@ public override int GetHashCode() hashCode = hashCode * 59 + this.Roi.GetHashCode(); if (this.Thumbnail != null) hashCode = hashCode * 59 + this.Thumbnail.GetHashCode(); + if (this.Crop != null) + hashCode = hashCode * 59 + this.Crop.GetHashCode(); if (this.Persons != null) hashCode = hashCode * 59 + this.Persons.GetHashCode(); return hashCode; diff --git a/src/Regula.FaceSDK.WebClient/Model/Group.cs b/src/Regula.FaceSDK.WebClient/Model/Group.cs index af90080..ef8dcf0 100644 --- a/src/Regula.FaceSDK.WebClient/Model/Group.cs +++ b/src/Regula.FaceSDK.WebClient/Model/Group.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/GroupPage.cs b/src/Regula.FaceSDK.WebClient/Model/GroupPage.cs index 4683cc8..3ae8fd3 100644 --- a/src/Regula.FaceSDK.WebClient/Model/GroupPage.cs +++ b/src/Regula.FaceSDK.WebClient/Model/GroupPage.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/GroupToCreate.cs b/src/Regula.FaceSDK.WebClient/Model/GroupToCreate.cs index b1e53b8..58fce5b 100644 --- a/src/Regula.FaceSDK.WebClient/Model/GroupToCreate.cs +++ b/src/Regula.FaceSDK.WebClient/Model/GroupToCreate.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/Image.cs b/src/Regula.FaceSDK.WebClient/Model/Image.cs index 11ae8fe..adbea36 100644 --- a/src/Regula.FaceSDK.WebClient/Model/Image.cs +++ b/src/Regula.FaceSDK.WebClient/Model/Image.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/ImageFields.cs b/src/Regula.FaceSDK.WebClient/Model/ImageFields.cs index 5dbad81..5ac64b6 100644 --- a/src/Regula.FaceSDK.WebClient/Model/ImageFields.cs +++ b/src/Regula.FaceSDK.WebClient/Model/ImageFields.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/ImageFieldsImage.cs b/src/Regula.FaceSDK.WebClient/Model/ImageFieldsImage.cs index 976e30d..7be9c94 100644 --- a/src/Regula.FaceSDK.WebClient/Model/ImageFieldsImage.cs +++ b/src/Regula.FaceSDK.WebClient/Model/ImageFieldsImage.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/ImagePage.cs b/src/Regula.FaceSDK.WebClient/Model/ImagePage.cs index fe8ae1c..9afeafd 100644 --- a/src/Regula.FaceSDK.WebClient/Model/ImagePage.cs +++ b/src/Regula.FaceSDK.WebClient/Model/ImagePage.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/ImageSource.cs b/src/Regula.FaceSDK.WebClient/Model/ImageSource.cs index 51c8180..a7621dc 100644 --- a/src/Regula.FaceSDK.WebClient/Model/ImageSource.cs +++ b/src/Regula.FaceSDK.WebClient/Model/ImageSource.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/MatchAndSearchRequest.cs b/src/Regula.FaceSDK.WebClient/Model/MatchAndSearchRequest.cs index 939ed9a..3cd74a7 100644 --- a/src/Regula.FaceSDK.WebClient/Model/MatchAndSearchRequest.cs +++ b/src/Regula.FaceSDK.WebClient/Model/MatchAndSearchRequest.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/MatchAndSearchRequestAllOfImages.cs b/src/Regula.FaceSDK.WebClient/Model/MatchAndSearchRequestAllOfImages.cs index 0075700..e6e2334 100644 --- a/src/Regula.FaceSDK.WebClient/Model/MatchAndSearchRequestAllOfImages.cs +++ b/src/Regula.FaceSDK.WebClient/Model/MatchAndSearchRequestAllOfImages.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/MatchAndSearchResponse.cs b/src/Regula.FaceSDK.WebClient/Model/MatchAndSearchResponse.cs index ffbf988..d9cd216 100644 --- a/src/Regula.FaceSDK.WebClient/Model/MatchAndSearchResponse.cs +++ b/src/Regula.FaceSDK.WebClient/Model/MatchAndSearchResponse.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/MatchAndSearchResponseAllOfDetections.cs b/src/Regula.FaceSDK.WebClient/Model/MatchAndSearchResponseAllOfDetections.cs index 5ab7baa..6471a7c 100644 --- a/src/Regula.FaceSDK.WebClient/Model/MatchAndSearchResponseAllOfDetections.cs +++ b/src/Regula.FaceSDK.WebClient/Model/MatchAndSearchResponseAllOfDetections.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/MatchImage.cs b/src/Regula.FaceSDK.WebClient/Model/MatchImage.cs index 85b3ee6..4667157 100644 --- a/src/Regula.FaceSDK.WebClient/Model/MatchImage.cs +++ b/src/Regula.FaceSDK.WebClient/Model/MatchImage.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/MatchImageDetection.cs b/src/Regula.FaceSDK.WebClient/Model/MatchImageDetection.cs index dd1cb33..3963380 100644 --- a/src/Regula.FaceSDK.WebClient/Model/MatchImageDetection.cs +++ b/src/Regula.FaceSDK.WebClient/Model/MatchImageDetection.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/MatchImageResult.cs b/src/Regula.FaceSDK.WebClient/Model/MatchImageResult.cs index 59a4956..c98878b 100644 --- a/src/Regula.FaceSDK.WebClient/Model/MatchImageResult.cs +++ b/src/Regula.FaceSDK.WebClient/Model/MatchImageResult.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/MatchRequest.cs b/src/Regula.FaceSDK.WebClient/Model/MatchRequest.cs index ec77d69..9666ceb 100644 --- a/src/Regula.FaceSDK.WebClient/Model/MatchRequest.cs +++ b/src/Regula.FaceSDK.WebClient/Model/MatchRequest.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ @@ -39,9 +39,10 @@ protected MatchRequest() { } /// Initializes a new instance of the class. /// /// Session identificator.. - /// Whether to return thumbnails: Base64 cropped images that contain vertically aligned faces. (default to false). + /// Deprecated, use the `crop` field in `outputImageParams` instead. (default to false). /// The array of all images included in the comparison. (required). - public MatchRequest(string tag = default(string), bool thumbnails = false, List images = default(List)) + /// outputImageParams. + public MatchRequest(string tag = default(string), bool thumbnails = false, List images = default(List), MatchRequestOutputImageParams outputImageParams = default(MatchRequestOutputImageParams)) { // to ensure "images" is required (not null) if (images == null) @@ -63,6 +64,7 @@ protected MatchRequest() { } { this.Thumbnails = thumbnails; } + this.OutputImageParams = outputImageParams; } /// @@ -73,10 +75,11 @@ protected MatchRequest() { } public string Tag { get; set; } /// - /// Whether to return thumbnails: Base64 cropped images that contain vertically aligned faces. + /// Deprecated, use the `crop` field in `outputImageParams` instead. /// - /// Whether to return thumbnails: Base64 cropped images that contain vertically aligned faces. + /// Deprecated, use the `crop` field in `outputImageParams` instead. [DataMember(Name="thumbnails", EmitDefaultValue=false)] + [Obsolete] public bool Thumbnails { get; set; } /// @@ -86,6 +89,12 @@ protected MatchRequest() { } [DataMember(Name="images", EmitDefaultValue=true)] public List Images { get; set; } + /// + /// Gets or Sets OutputImageParams + /// + [DataMember(Name="outputImageParams", EmitDefaultValue=false)] + public MatchRequestOutputImageParams OutputImageParams { get; set; } + /// /// Returns the string presentation of the object /// @@ -97,6 +106,7 @@ public override string ToString() sb.Append(" Tag: ").Append(Tag).Append("\n"); sb.Append(" Thumbnails: ").Append(Thumbnails).Append("\n"); sb.Append(" Images: ").Append(Images).Append("\n"); + sb.Append(" OutputImageParams: ").Append(OutputImageParams).Append("\n"); sb.Append("}\n"); return sb.ToString(); } @@ -146,6 +156,11 @@ public bool Equals(MatchRequest input) this.Images != null && input.Images != null && this.Images.SequenceEqual(input.Images) + ) && + ( + this.OutputImageParams == input.OutputImageParams || + (this.OutputImageParams != null && + this.OutputImageParams.Equals(input.OutputImageParams)) ); } @@ -164,6 +179,8 @@ public override int GetHashCode() hashCode = hashCode * 59 + this.Thumbnails.GetHashCode(); if (this.Images != null) hashCode = hashCode * 59 + this.Images.GetHashCode(); + if (this.OutputImageParams != null) + hashCode = hashCode * 59 + this.OutputImageParams.GetHashCode(); return hashCode; } } diff --git a/src/Regula.FaceSDK.WebClient/Model/MatchRequestOutputImageParams.cs b/src/Regula.FaceSDK.WebClient/Model/MatchRequestOutputImageParams.cs index e229f1a..a95f44f 100644 --- a/src/Regula.FaceSDK.WebClient/Model/MatchRequestOutputImageParams.cs +++ b/src/Regula.FaceSDK.WebClient/Model/MatchRequestOutputImageParams.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/MatchRequestOutputImageParamsCrop.cs b/src/Regula.FaceSDK.WebClient/Model/MatchRequestOutputImageParamsCrop.cs index fb13458..672d08a 100644 --- a/src/Regula.FaceSDK.WebClient/Model/MatchRequestOutputImageParamsCrop.cs +++ b/src/Regula.FaceSDK.WebClient/Model/MatchRequestOutputImageParamsCrop.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ @@ -25,7 +25,7 @@ namespace Regula.FaceSDK.WebClient.Model { /// - /// Whether to return the Base64 of an aligned and cropped portrait in the crop field. + /// Whether to return the Base64 of an aligned and cropped portrait in the `crop` field. /// [DataContract] public partial class MatchRequestOutputImageParamsCrop : IEquatable, IValidatableObject @@ -74,7 +74,7 @@ public enum TypeEnum /// /// The RGB value of a color for filling background behind a person's silhouette and for aligning the image.. /// Whether to return the coordinates of the rectangle with the face in the original image prepared for the face crop.. - /// The resize value in case type matches this value. If it doesn't, no resize is done.. + /// The resize value in case `type` matches this value. If it doesn't, no resize is performed.. /// The aspect ratio according to which face alignment is performed during face detection.. public MatchRequestOutputImageParamsCrop(List padColor = default(List), bool returnOriginalRect = default(bool), List size = default(List), TypeEnum? type = default(TypeEnum?)) { @@ -99,9 +99,9 @@ public enum TypeEnum public bool ReturnOriginalRect { get; set; } /// - /// The resize value in case type matches this value. If it doesn't, no resize is done. + /// The resize value in case `type` matches this value. If it doesn't, no resize is performed. /// - /// The resize value in case type matches this value. If it doesn't, no resize is done. + /// The resize value in case `type` matches this value. If it doesn't, no resize is performed. [DataMember(Name="size", EmitDefaultValue=false)] public List Size { get; set; } diff --git a/src/Regula.FaceSDK.WebClient/Model/MatchResponse.cs b/src/Regula.FaceSDK.WebClient/Model/MatchResponse.cs index 5e7ca39..ce6d508 100644 --- a/src/Regula.FaceSDK.WebClient/Model/MatchResponse.cs +++ b/src/Regula.FaceSDK.WebClient/Model/MatchResponse.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/OperationLog.cs b/src/Regula.FaceSDK.WebClient/Model/OperationLog.cs index 0ee19aa..fa6c6ac 100644 --- a/src/Regula.FaceSDK.WebClient/Model/OperationLog.cs +++ b/src/Regula.FaceSDK.WebClient/Model/OperationLog.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/OutputImageParams.cs b/src/Regula.FaceSDK.WebClient/Model/OutputImageParams.cs index 70b5a94..1676de9 100644 --- a/src/Regula.FaceSDK.WebClient/Model/OutputImageParams.cs +++ b/src/Regula.FaceSDK.WebClient/Model/OutputImageParams.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/Page.cs b/src/Regula.FaceSDK.WebClient/Model/Page.cs index a0a1c7a..2d6edd0 100644 --- a/src/Regula.FaceSDK.WebClient/Model/Page.cs +++ b/src/Regula.FaceSDK.WebClient/Model/Page.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/Person.cs b/src/Regula.FaceSDK.WebClient/Model/Person.cs index e84f9a6..ae2a8d1 100644 --- a/src/Regula.FaceSDK.WebClient/Model/Person.cs +++ b/src/Regula.FaceSDK.WebClient/Model/Person.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/PersonCreatedResponse.cs b/src/Regula.FaceSDK.WebClient/Model/PersonCreatedResponse.cs index da09e01..53cccfa 100644 --- a/src/Regula.FaceSDK.WebClient/Model/PersonCreatedResponse.cs +++ b/src/Regula.FaceSDK.WebClient/Model/PersonCreatedResponse.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/PersonFields.cs b/src/Regula.FaceSDK.WebClient/Model/PersonFields.cs index 9ab31bf..27e33e0 100644 --- a/src/Regula.FaceSDK.WebClient/Model/PersonFields.cs +++ b/src/Regula.FaceSDK.WebClient/Model/PersonFields.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/PersonWithImages.cs b/src/Regula.FaceSDK.WebClient/Model/PersonWithImages.cs index d1d55bb..b0325df 100644 --- a/src/Regula.FaceSDK.WebClient/Model/PersonWithImages.cs +++ b/src/Regula.FaceSDK.WebClient/Model/PersonWithImages.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/PersonsPage.cs b/src/Regula.FaceSDK.WebClient/Model/PersonsPage.cs index c9a76f7..bca2c8c 100644 --- a/src/Regula.FaceSDK.WebClient/Model/PersonsPage.cs +++ b/src/Regula.FaceSDK.WebClient/Model/PersonsPage.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/ProcessParam.cs b/src/Regula.FaceSDK.WebClient/Model/ProcessParam.cs index d6c3198..5164662 100644 --- a/src/Regula.FaceSDK.WebClient/Model/ProcessParam.cs +++ b/src/Regula.FaceSDK.WebClient/Model/ProcessParam.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/ProcessParamAttributes.cs b/src/Regula.FaceSDK.WebClient/Model/ProcessParamAttributes.cs index 709613f..98e929e 100644 --- a/src/Regula.FaceSDK.WebClient/Model/ProcessParamAttributes.cs +++ b/src/Regula.FaceSDK.WebClient/Model/ProcessParamAttributes.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/QualityConfig.cs b/src/Regula.FaceSDK.WebClient/Model/QualityConfig.cs index 3df82c8..67c1670 100644 --- a/src/Regula.FaceSDK.WebClient/Model/QualityConfig.cs +++ b/src/Regula.FaceSDK.WebClient/Model/QualityConfig.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/QualityDetail.cs b/src/Regula.FaceSDK.WebClient/Model/QualityDetail.cs index b787f65..6d4b934 100644 --- a/src/Regula.FaceSDK.WebClient/Model/QualityDetail.cs +++ b/src/Regula.FaceSDK.WebClient/Model/QualityDetail.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/QualityDetailsGroups.cs b/src/Regula.FaceSDK.WebClient/Model/QualityDetailsGroups.cs index 572f78e..a14322e 100644 --- a/src/Regula.FaceSDK.WebClient/Model/QualityDetailsGroups.cs +++ b/src/Regula.FaceSDK.WebClient/Model/QualityDetailsGroups.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/QualityRequest.cs b/src/Regula.FaceSDK.WebClient/Model/QualityRequest.cs index b38f8c8..70f6aac 100644 --- a/src/Regula.FaceSDK.WebClient/Model/QualityRequest.cs +++ b/src/Regula.FaceSDK.WebClient/Model/QualityRequest.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/RecognizeImage.cs b/src/Regula.FaceSDK.WebClient/Model/RecognizeImage.cs index a9d8c40..993b8f4 100644 --- a/src/Regula.FaceSDK.WebClient/Model/RecognizeImage.cs +++ b/src/Regula.FaceSDK.WebClient/Model/RecognizeImage.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/ResizeOptions.cs b/src/Regula.FaceSDK.WebClient/Model/ResizeOptions.cs index d03aaf8..5ab48e0 100644 --- a/src/Regula.FaceSDK.WebClient/Model/ResizeOptions.cs +++ b/src/Regula.FaceSDK.WebClient/Model/ResizeOptions.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/SearchBadParams.cs b/src/Regula.FaceSDK.WebClient/Model/SearchBadParams.cs index 5c59116..bace3b0 100644 --- a/src/Regula.FaceSDK.WebClient/Model/SearchBadParams.cs +++ b/src/Regula.FaceSDK.WebClient/Model/SearchBadParams.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/SearchDetection.cs b/src/Regula.FaceSDK.WebClient/Model/SearchDetection.cs index ec9229f..d8b2d63 100644 --- a/src/Regula.FaceSDK.WebClient/Model/SearchDetection.cs +++ b/src/Regula.FaceSDK.WebClient/Model/SearchDetection.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/SearchParameters.cs b/src/Regula.FaceSDK.WebClient/Model/SearchParameters.cs index 26bba47..2c7a2b5 100644 --- a/src/Regula.FaceSDK.WebClient/Model/SearchParameters.cs +++ b/src/Regula.FaceSDK.WebClient/Model/SearchParameters.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/SearchParametersCreatePerson.cs b/src/Regula.FaceSDK.WebClient/Model/SearchParametersCreatePerson.cs index f58514c..98a8d00 100644 --- a/src/Regula.FaceSDK.WebClient/Model/SearchParametersCreatePerson.cs +++ b/src/Regula.FaceSDK.WebClient/Model/SearchParametersCreatePerson.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/SearchPerson.cs b/src/Regula.FaceSDK.WebClient/Model/SearchPerson.cs index 7319578..e4927dd 100644 --- a/src/Regula.FaceSDK.WebClient/Model/SearchPerson.cs +++ b/src/Regula.FaceSDK.WebClient/Model/SearchPerson.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/SearchRequest.cs b/src/Regula.FaceSDK.WebClient/Model/SearchRequest.cs index 70d2466..41773a2 100644 --- a/src/Regula.FaceSDK.WebClient/Model/SearchRequest.cs +++ b/src/Regula.FaceSDK.WebClient/Model/SearchRequest.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/SearchResult.cs b/src/Regula.FaceSDK.WebClient/Model/SearchResult.cs index 826597d..d1dfc2e 100644 --- a/src/Regula.FaceSDK.WebClient/Model/SearchResult.cs +++ b/src/Regula.FaceSDK.WebClient/Model/SearchResult.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/TransactionInfo.cs b/src/Regula.FaceSDK.WebClient/Model/TransactionInfo.cs index 6a43070..d57c5e0 100644 --- a/src/Regula.FaceSDK.WebClient/Model/TransactionInfo.cs +++ b/src/Regula.FaceSDK.WebClient/Model/TransactionInfo.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/src/Regula.FaceSDK.WebClient/Model/UpdateGroup.cs b/src/Regula.FaceSDK.WebClient/Model/UpdateGroup.cs index 9abfd04..1d7618d 100644 --- a/src/Regula.FaceSDK.WebClient/Model/UpdateGroup.cs +++ b/src/Regula.FaceSDK.WebClient/Model/UpdateGroup.cs @@ -3,7 +3,7 @@ * * Regula FaceSDK Web API # Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * - * The version of the OpenAPI document: 5.2.0 + * The version of the OpenAPI document: 6.1.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */