Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore/chats get #16

Merged
merged 2 commits into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": false
"singleQuote": true
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
name: withoutDirectTransfers
in: query
description: When set to `true`, excludes type `0` transactions (direct token transfers) from results. Default is `false`.
description: When set to `1`, excludes type `0` transactions (direct token transfers) from results. Default is `0`.
schema:
type: boolean
default: false
type: integer
enum: [0, 1]
default: 0
required: false
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,10 @@

# limit
- $ref: './params/limit.yaml'

###############################
## Endpoint specific filters ##
###############################

# withoutDirectTransfers
- $ref: './params/filters/withoutDirectTransfers/withoutDirectTransfers.yaml'
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: withoutDirectTransfers
in: query
description: When set to `0` (zero), includes type `0` transactions (direct token transfers) to results. Default is `1`.
schema:
type: integer
enum: [0, 1]
default: 1
required: false