Skip to content

Commit

Permalink
chore: update
Browse files Browse the repository at this point in the history
  • Loading branch information
Sentio Bot committed Aug 7, 2024
1 parent bbe8c43 commit 371e74f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions doc/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2319,7 +2319,7 @@
"type" : "string"
}
},
"description" : "start and end time of the time range, Find more: https://docs.sentio.xyz/docs/data-api#time-range-configuration-guide",
"description" : "start and end time of the time range, Find more: https://docs.sentio.xyz/reference/data#time-range-configuration-guide",
"example" : {
"start" : "now-1M",
"end" : "now",
Expand All @@ -2328,7 +2328,7 @@
},
"externalDocs" : {
"description" : "Find more about time range here.",
"url" : "https://docs.sentio.xyz/docs/data-api#time-range-configuration-guide"
"url" : "https://docs.sentio.xyz/reference/data#time-range-configuration-guide"
}
};
defs["common.TimeRange.RelativeTime"] = {
Expand Down Expand Up @@ -4625,7 +4625,7 @@ <h1>executeSQL</h1>

![screenshot](https://raw.githubusercontent.com/sentioxyz/docs/main/.gitbook/assets/image%20(102).png)

Find more: https://docs.sentio.xyz/docs/data-api#sql-api</p>
Find more: https://docs.sentio.xyz/reference/data#sql-api</p>
<p></p>
<br />
<pre class="prettyprint language-html prettyprinted" data-type="post"><code><span class="pln">/api/v1/analytics/{owner}/{slug}/sql/execute</span></code></pre>
Expand Down
8 changes: 4 additions & 4 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"/api/v1/analytics/{owner}/{slug}/sql/execute": {
"post": {
"summary": "Execute SQL",
"description": "Execute SQL in a project. Go to \"Data Studio\" -> \"SQL Editor\", write your query and then click \"Export as cURL\"\n\n![screenshot](https://raw.githubusercontent.com/sentioxyz/docs/main/.gitbook/assets/image%20(102).png)\n\nFind more: https://docs.sentio.xyz/docs/data-api#sql-api",
"description": "Execute SQL in a project. Go to \"Data Studio\" -> \"SQL Editor\", write your query and then click \"Export as cURL\"\n\n![screenshot](https://raw.githubusercontent.com/sentioxyz/docs/main/.gitbook/assets/image%20(102).png)\n\nFind more: https://docs.sentio.xyz/reference/data#sql-api",
"operationId": "ExecuteSQL",
"responses": {
"200": {
Expand Down Expand Up @@ -54,7 +54,7 @@
],
"externalDocs": {
"description": "find more information here",
"url": "https://docs.sentio.xyz/docs/data-api#sql-api"
"url": "https://docs.sentio.xyz/reference/data#sql-api"
}
}
},
Expand Down Expand Up @@ -2552,11 +2552,11 @@
"type": "string"
}
},
"description": "start and end time of the time range, Find more: https://docs.sentio.xyz/docs/data-api#time-range-configuration-guide",
"description": "start and end time of the time range, Find more: https://docs.sentio.xyz/reference/data#time-range-configuration-guide",
"title": "Time range",
"externalDocs": {
"description": "Find more about time range here.",
"url": "https://docs.sentio.xyz/docs/data-api#time-range-configuration-guide"
"url": "https://docs.sentio.xyz/reference/data#time-range-configuration-guide"
},
"required": [
"start",
Expand Down
4 changes: 2 additions & 2 deletions src/apis/DataApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export interface Retention2Request {
export class DataApi extends runtime.BaseAPI {

/**
* Execute SQL in a project. Go to \"Data Studio\" -> \"SQL Editor\", write your query and then click \"Export as cURL\" ![screenshot](https://raw.githubusercontent.com/sentioxyz/docs/main/.gitbook/assets/image%20(102).png) Find more: https://docs.sentio.xyz/docs/data-api#sql-api
* Execute SQL in a project. Go to \"Data Studio\" -> \"SQL Editor\", write your query and then click \"Export as cURL\" ![screenshot](https://raw.githubusercontent.com/sentioxyz/docs/main/.gitbook/assets/image%20(102).png) Find more: https://docs.sentio.xyz/reference/data#sql-api
* Execute SQL
*/
async executeSQLRaw(requestParameters: ExecuteSQLRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<AnalyticServiceSyncExecuteSQLResponse>> {
Expand Down Expand Up @@ -205,7 +205,7 @@ export class DataApi extends runtime.BaseAPI {
}

/**
* Execute SQL in a project. Go to \"Data Studio\" -> \"SQL Editor\", write your query and then click \"Export as cURL\" ![screenshot](https://raw.githubusercontent.com/sentioxyz/docs/main/.gitbook/assets/image%20(102).png) Find more: https://docs.sentio.xyz/docs/data-api#sql-api
* Execute SQL in a project. Go to \"Data Studio\" -> \"SQL Editor\", write your query and then click \"Export as cURL\" ![screenshot](https://raw.githubusercontent.com/sentioxyz/docs/main/.gitbook/assets/image%20(102).png) Find more: https://docs.sentio.xyz/reference/data#sql-api
* Execute SQL
*/
async executeSQL(requestParameters: ExecuteSQLRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<AnalyticServiceSyncExecuteSQLResponse> {
Expand Down
2 changes: 1 addition & 1 deletion src/models/CommonTimeRangeLite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

import { mapValues } from '../runtime.js';
/**
* start and end time of the time range, Find more: https://docs.sentio.xyz/docs/data-api#time-range-configuration-guide
* start and end time of the time range, Find more: https://docs.sentio.xyz/reference/data#time-range-configuration-guide
* @export
* @interface CommonTimeRangeLite
*/
Expand Down

0 comments on commit 371e74f

Please sign in to comment.