Skip to content

Commit

Permalink
cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
PawelPawelec-RDX committed Dec 17, 2024
1 parent ba6c48c commit 57b601d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Release built: _not released yet_

### API Changes
- New filters are supported on the `/stream/transactions` endpoint:
- `transaction_status_filter` - Allows filtering by the transaction commit status (`Success`,`Failure`, `All`). Defaults to `All`.
- `transaction_status_filter` - Allows filtering by the transaction commit status (`Success`, `Failure`, `All`). Defaults to `All`.
- `balance_change_resources_filter` - Allows filtering to transactions which included non-fee related balance changes for all provided resources. Defaults to `[]`. We recommend integrators use this instead of the `manifest_resources_filter` in most instances.

### Database changes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export interface StreamTransactionsRequest {
*/
balance_change_resources_filter?: Array<string>;
/**
* Allows filtering by the transaction commit status (`Success`,`Failure`, `All`). Defaults to `All`.
* Allows filtering by the transaction commit status (`Success`, `Failure`, `All`). Defaults to `All`.
* @type {string}
* @memberof StreamTransactionsRequest
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export interface StreamTransactionsRequestAllOf {
*/
balance_change_resources_filter?: Array<string>;
/**
* Allows filtering by the transaction commit status (`Success`,`Failure`, `All`). Defaults to `All`.
* Allows filtering by the transaction commit status (`Success`, `Failure`, `All`). Defaults to `All`.
* @type {string}
* @memberof StreamTransactionsRequestAllOf
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ tags:
* `balance_change_resources_filter` - Allows filtering to transactions which included non-fee related balance changes for all provided resources. Defaults to `[]`. We recommend that integrators use this instead of the `manifest_resources_filter` in most cases, as it also captures resource changes that are not specified in the manifest.
* `transaction_status_filter` - Allows filtering by the transaction commit status (`Success`,`Failure`, `All`). Defaults to `All`.
* `transaction_status_filter` - Allows filtering by the transaction commit status (`Success`, `Failure`, `All`). Defaults to `All`.
Each filter is a complex object where you can specify:
- `event` (required) - the event tag. Currently only the following tags are supported:
Expand Down Expand Up @@ -4367,7 +4367,7 @@ components:
items:
$ref: "#/components/schemas/Address"
transaction_status_filter:
description: Allows filtering by the transaction commit status (`Success`,`Failure`, `All`). Defaults to `All`.
description: Allows filtering by the transaction commit status (`Success`, `Failure`, `All`). Defaults to `All`.
type: string
default: All
enum:
Expand Down

0 comments on commit 57b601d

Please sign in to comment.