Skip to content

Commit

Permalink
fix: Validation fails in RPC context for MqttContext #13350
Browse files Browse the repository at this point in the history
  • Loading branch information
rbnayax committed Mar 21, 2024
1 parent ca176ac commit 295ca15
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions packages/common/enums/route-paramtypes.enum.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
export enum RouteParamtypes {
REQUEST,
RESPONSE,
NEXT,
BODY,
RAW_BODY,
QUERY,
PARAM,
HEADERS,
SESSION,
FILE,
FILES,
HOST,
IP,
REQUEST=0,
RESPONSE=1,
NEXT=2,
BODY=3,
QUERY=4,
PARAM=5,
HEADERS=6,
SESSION=7,
FILE=8,
FILES=9,
HOST=10,
IP=11,
RAW_BODY=12,
}

0 comments on commit 295ca15

Please sign in to comment.