Merge branch 'fixMatchRequestDto' into 'main'

Fix match request dto

See merge request v3/service/matcher!22
This commit is contained in:
Sylvain Briat 2023-11-21 15:36:57 +00:00
commit 73f660bf6d
4 changed files with 8 additions and 8 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@mobicoop/matcher",
"version": "1.4.3",
"version": "1.4.4",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@mobicoop/matcher",
"version": "1.4.3",
"version": "1.4.4",
"license": "AGPL",
"dependencies": {
"@grpc/grpc-js": "^1.9.9",

View File

@ -1,6 +1,6 @@
{
"name": "@mobicoop/matcher",
"version": "1.4.3",
"version": "1.4.4",
"description": "Mobicoop V3 Matcher",
"author": "sbriat",
"private": true,

View File

@ -2,10 +2,10 @@ import {
ArrayMinSize,
IsArray,
IsBoolean,
IsDecimal,
IsEnum,
IsISO8601,
IsInt,
IsNumber,
IsOptional,
IsUUID,
Max,
@ -93,7 +93,7 @@ export class MatchRequestDto {
useProportion?: boolean;
@IsOptional()
@IsDecimal()
@IsNumber()
@Min(0)
@Max(1)
proportion?: number;
@ -109,13 +109,13 @@ export class MatchRequestDto {
azimuthMargin?: number;
@IsOptional()
@IsDecimal()
@IsNumber()
@Min(0)
@Max(1)
maxDetourDistanceRatio?: number;
@IsOptional()
@IsDecimal()
@IsNumber()
@Min(0)
@Max(1)
maxDetourDurationRatio?: number;

View File

@ -19,7 +19,7 @@ message MatchRequest {
AlgorithmType algorithmType = 10;
int32 remoteness = 11;
bool useProportion = 12;
int32 proportion = 13;
float proportion = 13;
bool useAzimuth = 14;
int32 azimuthMargin = 15;
float maxDetourDistanceRatio = 16;