@sentio/api 1.0.3-rc.2 → 1.0.3-rc.3

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.
@@ -115,7 +115,7 @@ export type AnalyticServiceAnalyticServiceExecuteSqlAsyncBody = {
115
115
  version?: number;
116
116
  sqlQuery?: AnalyticServiceSqlQuery;
117
117
  /**
118
- * 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.
118
+ * Pagination cursor for the next page of results, using the value from the previous response.
119
119
  */
120
120
  cursor?: string;
121
121
  cachePolicy?: CommonCachePolicy;
@@ -125,7 +125,7 @@ export type AnalyticServiceAnalyticServiceExecuteSqlBody = {
125
125
  version?: number;
126
126
  sqlQuery?: AnalyticServiceSqlQuery;
127
127
  /**
128
- * 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.
128
+ * Pagination cursor for the next page of results, using the value from the previous response.
129
129
  */
130
130
  cursor?: string;
131
131
  cachePolicy?: CommonCachePolicy;
@@ -709,6 +709,9 @@ export type CommonTabularData = {
709
709
  [key: string]: unknown;
710
710
  }>;
711
711
  generatedAt?: string;
712
+ /**
713
+ * 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.
714
+ */
712
715
  cursor?: string;
713
716
  };
714
717
  export type CommonTabularDataColumnType = 'STRING' | 'NUMBER' | 'BOOLEAN' | 'LIST' | 'TIME' | 'MAP' | 'JSON' | 'TOKEN' | 'DYNAMIC';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentio/api",
3
- "version": "1.0.3-rc.2",
3
+ "version": "1.0.3-rc.3",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
package/src/types.gen.ts CHANGED
@@ -131,7 +131,7 @@ export type AnalyticServiceAnalyticServiceExecuteSqlAsyncBody = {
131
131
  version?: number;
132
132
  sqlQuery?: AnalyticServiceSqlQuery;
133
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.
134
+ * Pagination cursor for the next page of results, using the value from the previous response.
135
135
  */
136
136
  cursor?: string;
137
137
  cachePolicy?: CommonCachePolicy;
@@ -142,7 +142,7 @@ export type AnalyticServiceAnalyticServiceExecuteSqlBody = {
142
142
  version?: number;
143
143
  sqlQuery?: AnalyticServiceSqlQuery;
144
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.
145
+ * Pagination cursor for the next page of results, using the value from the previous response.
146
146
  */
147
147
  cursor?: string;
148
148
  cachePolicy?: CommonCachePolicy;
@@ -831,6 +831,9 @@ export type CommonTabularData = {
831
831
  [key: string]: unknown;
832
832
  }>;
833
833
  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
+ */
834
837
  cursor?: string;
835
838
  };
836
839