Skip to content

Commit f9da80b

Browse files
author
Sentio Bot
committed
chore: update
1 parent e1a213a commit f9da80b

File tree

3 files changed

+15
-7
lines changed

3 files changed

+15
-7
lines changed

doc/index.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1242,8 +1242,8 @@
12421242
"$ref" : "#/components/schemas/analytic_service.SQLQuery"
12431243
},
12441244
"cursor" : {
1245-
"title" : "cursor for pagination",
1246-
"type" : "string"
1245+
"type" : "string",
1246+
"description" : "The pagination cursor for the next page of results. If present, use this value in the `cursor` field of the next request to retrieve subsequent data. If null or empty, there are no more results."
12471247
},
12481248
"cachePolicy" : {
12491249
"$ref" : "#/components/schemas/common.CachePolicy"
@@ -1271,8 +1271,8 @@
12711271
"$ref" : "#/components/schemas/analytic_service.SQLQuery"
12721272
},
12731273
"cursor" : {
1274-
"title" : "cursor for pagination",
1275-
"type" : "string"
1274+
"type" : "string",
1275+
"description" : "The pagination cursor for the next page of results. If present, use this value in the `cursor` field of the next request to retrieve subsequent data. If null or empty, there are no more results."
12761276
},
12771277
"cachePolicy" : {
12781278
"$ref" : "#/components/schemas/common.CachePolicy"
@@ -3108,6 +3108,7 @@
31083108
"format" : "date-time"
31093109
},
31103110
"cursor" : {
3111+
"title" : "Pagination cursor for the next page of results. Empty string if no more pages",
31113112
"type" : "string"
31123113
}
31133114
}

openapi.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3056,7 +3056,7 @@
30563056
},
30573057
"cursor": {
30583058
"type": "string",
3059-
"title": "cursor for pagination"
3059+
"description": "The pagination cursor for the next page of results. If present, use this value in the `cursor` field of the next request to retrieve subsequent data. If null or empty, there are no more results."
30603060
},
30613061
"cachePolicy": {
30623062
"$ref": "#/definitions/common.CachePolicy"
@@ -3085,7 +3085,7 @@
30853085
},
30863086
"cursor": {
30873087
"type": "string",
3088-
"title": "cursor for pagination"
3088+
"description": "The pagination cursor for the next page of results. If present, use this value in the `cursor` field of the next request to retrieve subsequent data. If null or empty, there are no more results."
30893089
},
30903090
"cachePolicy": {
30913091
"$ref": "#/definitions/common.CachePolicy"
@@ -5083,7 +5083,8 @@
50835083
"format": "date-time"
50845084
},
50855085
"cursor": {
5086-
"type": "string"
5086+
"type": "string",
5087+
"title": "Pagination cursor for the next page of results. Empty string if no more pages"
50875088
}
50885089
}
50895090
},

src/types.gen.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,9 @@ export type AnalyticServiceAnalyticServiceExecuteSqlAsyncBody = {
130130
projectId?: string;
131131
version?: number;
132132
sqlQuery?: AnalyticServiceSqlQuery;
133+
/**
134+
* The pagination cursor for the next page of results. If present, use this value in the `cursor` field of the next request to retrieve subsequent data. If null or empty, there are no more results.
135+
*/
133136
cursor?: string;
134137
cachePolicy?: CommonCachePolicy;
135138
};
@@ -138,6 +141,9 @@ export type AnalyticServiceAnalyticServiceExecuteSqlBody = {
138141
projectId?: string;
139142
version?: number;
140143
sqlQuery?: AnalyticServiceSqlQuery;
144+
/**
145+
* The pagination cursor for the next page of results. If present, use this value in the `cursor` field of the next request to retrieve subsequent data. If null or empty, there are no more results.
146+
*/
141147
cursor?: string;
142148
cachePolicy?: CommonCachePolicy;
143149
};

0 commit comments

Comments
 (0)