@sentio/api 1.0.2-rc.6 → 1.0.2-rc.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -93,12 +93,12 @@ export interface Retention2Request {
|
|
|
93
93
|
*/
|
|
94
94
|
export declare class DataApi extends runtime.BaseAPI {
|
|
95
95
|
/**
|
|
96
|
-
* Execute SQL in a project. Go to \"Data Studio\" -> \"SQL Editor\", write your query and then click \"Export as cURL\" .png) Find more: https://docs.sentio.xyz/
|
|
96
|
+
* Execute SQL in a project. Go to \"Data Studio\" -> \"SQL Editor\", write your query and then click \"Export as cURL\" .png) Find more: https://docs.sentio.xyz/reference/data#sql-api
|
|
97
97
|
* Execute SQL
|
|
98
98
|
*/
|
|
99
99
|
executeSQLRaw(requestParameters: ExecuteSQLRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<AnalyticServiceSyncExecuteSQLResponse>>;
|
|
100
100
|
/**
|
|
101
|
-
* Execute SQL in a project. Go to \"Data Studio\" -> \"SQL Editor\", write your query and then click \"Export as cURL\" .png) Find more: https://docs.sentio.xyz/
|
|
101
|
+
* Execute SQL in a project. Go to \"Data Studio\" -> \"SQL Editor\", write your query and then click \"Export as cURL\" .png) Find more: https://docs.sentio.xyz/reference/data#sql-api
|
|
102
102
|
* Execute SQL
|
|
103
103
|
*/
|
|
104
104
|
executeSQL(requestParameters: ExecuteSQLRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<AnalyticServiceSyncExecuteSQLResponse>;
|
package/dist/src/apis/DataApi.js
CHANGED
|
@@ -18,7 +18,7 @@ import { AnalyticServiceAnalyticServiceExecuteSQLBodyToJSON, AnalyticServiceLogQ
|
|
|
18
18
|
*/
|
|
19
19
|
export class DataApi extends runtime.BaseAPI {
|
|
20
20
|
/**
|
|
21
|
-
* Execute SQL in a project. Go to \"Data Studio\" -> \"SQL Editor\", write your query and then click \"Export as cURL\" .png) Find more: https://docs.sentio.xyz/
|
|
21
|
+
* Execute SQL in a project. Go to \"Data Studio\" -> \"SQL Editor\", write your query and then click \"Export as cURL\" .png) Find more: https://docs.sentio.xyz/reference/data#sql-api
|
|
22
22
|
* Execute SQL
|
|
23
23
|
*/
|
|
24
24
|
async executeSQLRaw(requestParameters, initOverrides) {
|
|
@@ -47,7 +47,7 @@ export class DataApi extends runtime.BaseAPI {
|
|
|
47
47
|
return new runtime.JSONApiResponse(response, (jsonValue) => AnalyticServiceSyncExecuteSQLResponseFromJSON(jsonValue));
|
|
48
48
|
}
|
|
49
49
|
/**
|
|
50
|
-
* Execute SQL in a project. Go to \"Data Studio\" -> \"SQL Editor\", write your query and then click \"Export as cURL\" .png) Find more: https://docs.sentio.xyz/
|
|
50
|
+
* Execute SQL in a project. Go to \"Data Studio\" -> \"SQL Editor\", write your query and then click \"Export as cURL\" .png) Find more: https://docs.sentio.xyz/reference/data#sql-api
|
|
51
51
|
* Execute SQL
|
|
52
52
|
*/
|
|
53
53
|
async executeSQL(requestParameters, initOverrides) {
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
|
-
* start and end time of the time range, Find more: https://docs.sentio.xyz/
|
|
13
|
+
* start and end time of the time range, Find more: https://docs.sentio.xyz/reference/data#time-range-configuration-guide
|
|
14
14
|
* @export
|
|
15
15
|
* @interface CommonTimeRangeLite
|
|
16
16
|
*/
|
package/package.json
CHANGED
package/src/apis/DataApi.ts
CHANGED
|
@@ -158,7 +158,7 @@ export interface Retention2Request {
|
|
|
158
158
|
export class DataApi extends runtime.BaseAPI {
|
|
159
159
|
|
|
160
160
|
/**
|
|
161
|
-
* Execute SQL in a project. Go to \"Data Studio\" -> \"SQL Editor\", write your query and then click \"Export as cURL\" .png) Find more: https://docs.sentio.xyz/
|
|
161
|
+
* Execute SQL in a project. Go to \"Data Studio\" -> \"SQL Editor\", write your query and then click \"Export as cURL\" .png) Find more: https://docs.sentio.xyz/reference/data#sql-api
|
|
162
162
|
* Execute SQL
|
|
163
163
|
*/
|
|
164
164
|
async executeSQLRaw(requestParameters: ExecuteSQLRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<AnalyticServiceSyncExecuteSQLResponse>> {
|
|
@@ -205,7 +205,7 @@ export class DataApi extends runtime.BaseAPI {
|
|
|
205
205
|
}
|
|
206
206
|
|
|
207
207
|
/**
|
|
208
|
-
* Execute SQL in a project. Go to \"Data Studio\" -> \"SQL Editor\", write your query and then click \"Export as cURL\" .png) Find more: https://docs.sentio.xyz/
|
|
208
|
+
* Execute SQL in a project. Go to \"Data Studio\" -> \"SQL Editor\", write your query and then click \"Export as cURL\" .png) Find more: https://docs.sentio.xyz/reference/data#sql-api
|
|
209
209
|
* Execute SQL
|
|
210
210
|
*/
|
|
211
211
|
async executeSQL(requestParameters: ExecuteSQLRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<AnalyticServiceSyncExecuteSQLResponse> {
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
import { mapValues } from '../runtime.js';
|
|
16
16
|
/**
|
|
17
|
-
* start and end time of the time range, Find more: https://docs.sentio.xyz/
|
|
17
|
+
* start and end time of the time range, Find more: https://docs.sentio.xyz/reference/data#time-range-configuration-guide
|
|
18
18
|
* @export
|
|
19
19
|
* @interface CommonTimeRangeLite
|
|
20
20
|
*/
|