Skip to content

Commit 3064fb7

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

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

doc/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1243,7 +1243,7 @@
12431243
},
12441244
"cursor" : {
12451245
"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."
1246+
"description" : "Pagination cursor for the next page of results, using the value from the previous response."
12471247
},
12481248
"cachePolicy" : {
12491249
"$ref" : "#/components/schemas/common.CachePolicy"
@@ -1272,7 +1272,7 @@
12721272
},
12731273
"cursor" : {
12741274
"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."
1275+
"description" : "Pagination cursor for the next page of results, using the value from the previous response."
12761276
},
12771277
"cachePolicy" : {
12781278
"$ref" : "#/components/schemas/common.CachePolicy"
@@ -3108,8 +3108,8 @@
31083108
"format" : "date-time"
31093109
},
31103110
"cursor" : {
3111-
"title" : "Pagination cursor for the next page of results. Empty string if no more pages",
3112-
"type" : "string"
3111+
"type" : "string",
3112+
"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."
31133113
}
31143114
}
31153115
};

openapi.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3056,7 +3056,7 @@
30563056
},
30573057
"cursor": {
30583058
"type": "string",
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."
3059+
"description": "Pagination cursor for the next page of results, using the value from the previous response."
30603060
},
30613061
"cachePolicy": {
30623062
"$ref": "#/definitions/common.CachePolicy"
@@ -3085,7 +3085,7 @@
30853085
},
30863086
"cursor": {
30873087
"type": "string",
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."
3088+
"description": "Pagination cursor for the next page of results, using the value from the previous response."
30893089
},
30903090
"cachePolicy": {
30913091
"$ref": "#/definitions/common.CachePolicy"
@@ -5084,7 +5084,7 @@
50845084
},
50855085
"cursor": {
50865086
"type": "string",
5087-
"title": "Pagination cursor for the next page of results. Empty string if no more pages"
5087+
"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."
50885088
}
50895089
}
50905090
},

src/types.gen.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ export type AnalyticServiceAnalyticServiceExecuteSqlAsyncBody = {
131131
version?: number;
132132
sqlQuery?: AnalyticServiceSqlQuery;
133133
/**
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.
134+
* Pagination cursor for the next page of results, using the value from the previous response.
135135
*/
136136
cursor?: string;
137137
cachePolicy?: CommonCachePolicy;
@@ -142,7 +142,7 @@ export type AnalyticServiceAnalyticServiceExecuteSqlBody = {
142142
version?: number;
143143
sqlQuery?: AnalyticServiceSqlQuery;
144144
/**
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.
145+
* Pagination cursor for the next page of results, using the value from the previous response.
146146
*/
147147
cursor?: string;
148148
cachePolicy?: CommonCachePolicy;
@@ -831,6 +831,9 @@ export type CommonTabularData = {
831831
[key: string]: unknown;
832832
}>;
833833
generatedAt?: string;
834+
/**
835+
* 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.
836+
*/
834837
cursor?: string;
835838
};
836839

0 commit comments

Comments
 (0)