From a050a6891ba5ade5d690e335f1a96200c33afc60 Mon Sep 17 00:00:00 2001 From: Yogesh Pawar Date: Fri, 2 Aug 2024 13:07:34 +0530 Subject: [PATCH] fix: Added outOfBandRecord and reuseThreadId in connection record dto Signed-off-by: Yogesh Pawar --- apps/api-gateway/src/connection/dtos/connection.dto.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/apps/api-gateway/src/connection/dtos/connection.dto.ts b/apps/api-gateway/src/connection/dtos/connection.dto.ts index 2a8620f33..c75f707d4 100644 --- a/apps/api-gateway/src/connection/dtos/connection.dto.ts +++ b/apps/api-gateway/src/connection/dtos/connection.dto.ts @@ -206,6 +206,14 @@ export class ConnectionDto { @ApiPropertyOptional() @IsOptional() type: string; + + @ApiPropertyOptional() + @IsOptional() + outOfBandRecord?: object; + + @ApiPropertyOptional() + @IsOptional() + reuseThreadId?: string; } class ReceiveInvitationCommonDto {