Skip to content

Commit

Permalink
Merge pull request #15 from Bhutan-NDI/fix/wh-parentThreadId-proofReq…
Browse files Browse the repository at this point in the history
…uest

fix: added parentThreadId in webhook response of proof request
  • Loading branch information
RinkalBhojani authored Aug 29, 2024
2 parents 0cfd31b + 7914a92 commit e30225c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions apps/api-gateway/src/verification/dto/webhook-proof.dto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ export class WebhookPresentationProofDto {
@IsOptional()
threadId: string;

@ApiPropertyOptional()
@IsOptional()
parentThreadId?: string;

@ApiPropertyOptional()
@IsOptional()
presentationId: string;
Expand Down
1 change: 1 addition & 0 deletions apps/verification/src/interfaces/verification.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,7 @@ export interface IWebhookProofPresentation {
connectionId: string;
presentationId: string;
threadId: string;
parentThreadId?: string;
autoAcceptProof: string;
updatedAt: string;
isVerified: boolean;
Expand Down

0 comments on commit e30225c

Please sign in to comment.