From aa3528ab0bcc4923ed68be6b7d33bfb0fbebcb78 Mon Sep 17 00:00:00 2001 From: pallavicoder Date: Mon, 26 Aug 2024 15:46:08 +0530 Subject: [PATCH] fix:collect reuse connection events Signed-off-by: pallavicoder --- 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 bdac77b8b..7bb2eb241 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() orgId: string; + + @ApiPropertyOptional() + @IsOptional() + outOfBandRecord?: object; + + @ApiPropertyOptional() + @IsOptional() + reuseThreadId?: string; } class ReceiveInvitationCommonDto {