Skip to content

Commit

Permalink
Merge pull request #717 from companieshouse/IDVA5-1169-GetTransaction…
Browse files Browse the repository at this point in the history
…ListForResourceKind

Idva5 1169 get transaction list for resource kind
  • Loading branch information
sardhani-ch authored Sep 27, 2024
2 parents 780ac65 + 11ad821 commit 9ddbbc5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/services/transaction/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,8 @@ export default class TransactionService {
id: i.id,
updatedAt: i.updated_at,
status: i.status,
filings: i.filings
filings: i.filings,
resumeJourneyUri: i.resumeJourneyUri
})) : []
};
return resource;
Expand Down
1 change: 1 addition & 0 deletions src/services/transaction/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ export interface TransactionData {
filings?: {
[key: string]: Filing;
};
resumeJourneyUri?: String
}

export interface Filing {
Expand Down

0 comments on commit 9ddbbc5

Please sign in to comment.