Skip to content

Commit bc917fe

Browse files
author
Sentio Bot
committed
chore: update
1 parent 1009564 commit bc917fe

File tree

7 files changed

+937
-0
lines changed

7 files changed

+937
-0
lines changed

doc/index.html

Lines changed: 588 additions & 0 deletions
Large diffs are not rendered by default.

openapi.json

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,62 @@
166166
]
167167
}
168168
},
169+
"/api/v1/analytics/{owner}/{slug}/sql/cancel_query/{executionId}": {
170+
"put": {
171+
"summary": "Cancel SQL Query",
172+
"description": "Cancel a SQL query by execution_id.",
173+
"operationId": "CancelSQLQuery",
174+
"responses": {
175+
"200": {
176+
"description": "A successful response.",
177+
"schema": {
178+
"type": "object",
179+
"properties": {}
180+
}
181+
}
182+
},
183+
"parameters": [
184+
{
185+
"name": "owner",
186+
"description": "username or organization name",
187+
"in": "path",
188+
"required": true,
189+
"type": "string"
190+
},
191+
{
192+
"name": "slug",
193+
"description": "project slug",
194+
"in": "path",
195+
"required": true,
196+
"type": "string"
197+
},
198+
{
199+
"name": "executionId",
200+
"in": "path",
201+
"required": true,
202+
"type": "string"
203+
},
204+
{
205+
"name": "projectId",
206+
"description": "use project id if project_owner and project_slug are not provided",
207+
"in": "query",
208+
"required": false,
209+
"type": "string"
210+
},
211+
{
212+
"name": "version",
213+
"description": "version of the datasource, default to the active version if not provided",
214+
"in": "query",
215+
"required": false,
216+
"type": "integer",
217+
"format": "int32"
218+
}
219+
],
220+
"tags": [
221+
"Data"
222+
]
223+
}
224+
},
169225
"/api/v1/analytics/{owner}/{slug}/sql/execute": {
170226
"post": {
171227
"summary": "Execute SQL",

src/DataApi.md

Lines changed: 66 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/apis/DataApi.ts

Lines changed: 102 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/types/ObjectParamAPI.ts

Lines changed: 56 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/types/ObservableAPI.ts

Lines changed: 41 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)