Skip to content

Commit

Permalink
chore: update
Browse files Browse the repository at this point in the history
  • Loading branch information
Sentio Bot committed Dec 27, 2024
1 parent 1009564 commit bc917fe
Show file tree
Hide file tree
Showing 7 changed files with 937 additions and 0 deletions.
588 changes: 588 additions & 0 deletions doc/index.html

Large diffs are not rendered by default.

56 changes: 56 additions & 0 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,62 @@
]
}
},
"/api/v1/analytics/{owner}/{slug}/sql/cancel_query/{executionId}": {
"put": {
"summary": "Cancel SQL Query",
"description": "Cancel a SQL query by execution_id.",
"operationId": "CancelSQLQuery",
"responses": {
"200": {
"description": "A successful response.",
"schema": {
"type": "object",
"properties": {}
}
}
},
"parameters": [
{
"name": "owner",
"description": "username or organization name",
"in": "path",
"required": true,
"type": "string"
},
{
"name": "slug",
"description": "project slug",
"in": "path",
"required": true,
"type": "string"
},
{
"name": "executionId",
"in": "path",
"required": true,
"type": "string"
},
{
"name": "projectId",
"description": "use project id if project_owner and project_slug are not provided",
"in": "query",
"required": false,
"type": "string"
},
{
"name": "version",
"description": "version of the datasource, default to the active version if not provided",
"in": "query",
"required": false,
"type": "integer",
"format": "int32"
}
],
"tags": [
"Data"
]
}
},
"/api/v1/analytics/{owner}/{slug}/sql/execute": {
"post": {
"summary": "Execute SQL",
Expand Down
66 changes: 66 additions & 0 deletions src/DataApi.md

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

102 changes: 102 additions & 0 deletions src/apis/DataApi.ts

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

56 changes: 56 additions & 0 deletions src/types/ObjectParamAPI.ts

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

41 changes: 41 additions & 0 deletions src/types/ObservableAPI.ts

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

Loading

0 comments on commit bc917fe

Please sign in to comment.