Skip to content
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
26 changes: 25 additions & 1 deletion api/quicknode/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -1094,6 +1094,9 @@
"responses": {
"200": {
"description": "referrer created"
},
"400": {
"description": "referrer is missing"
}
},
"requestBody": {
Expand Down Expand Up @@ -1155,6 +1158,21 @@
}
}
}
},
"400": {
"description": "method is missing",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"error": {
"type": "string"
}
}
}
}
}
}
},
"requestBody": {
Expand Down Expand Up @@ -1307,6 +1325,9 @@
"responses": {
"200": {
"description": "success"
},
"400": {
"description": "ip is missing"
}
},
"requestBody": {
Expand Down Expand Up @@ -1387,6 +1408,9 @@
"responses": {
"200": {
"description": "success"
},
"400": {
"description": "name is missing"
}
},
"requestBody": {
Expand Down Expand Up @@ -3979,7 +4003,7 @@
"tags": [
"Usage"
],
"description": "If start_time or end_time are missing, current billing period is used and remaining credits for the period are returned.",
"description": "If neither start_time nor end_time are provided, current billing period is used and remaining credits for the period are returned. If one bound is omitted, the supplied bound is honored: missing start_time defaults to the current period start, and missing end_time defaults to the current time.",
"operationId": "usage",
"parameters": [
{
Expand Down
96 changes: 55 additions & 41 deletions api/quicknode/quicknode.gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

185 changes: 185 additions & 0 deletions api/streams/enums.gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading