@sentio/api 1.0.3-rc.1 → 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.
@@ -114,6 +114,9 @@ export type AnalyticServiceAnalyticServiceExecuteSqlAsyncBody = {
114
114
  projectId?: string;
115
115
  version?: number;
116
116
  sqlQuery?: AnalyticServiceSqlQuery;
117
+ /**
118
+ * Pagination cursor for the next page of results, using the value from the previous response.
119
+ */
117
120
  cursor?: string;
118
121
  cachePolicy?: CommonCachePolicy;
119
122
  };
@@ -121,6 +124,9 @@ export type AnalyticServiceAnalyticServiceExecuteSqlBody = {
121
124
  projectId?: string;
122
125
  version?: number;
123
126
  sqlQuery?: AnalyticServiceSqlQuery;
127
+ /**
128
+ * Pagination cursor for the next page of results, using the value from the previous response.
129
+ */
124
130
  cursor?: string;
125
131
  cachePolicy?: CommonCachePolicy;
126
132
  };
@@ -703,6 +709,9 @@ export type CommonTabularData = {
703
709
  [key: string]: unknown;
704
710
  }>;
705
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
+ */
706
715
  cursor?: string;
707
716
  };
708
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.1",
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
@@ -130,6 +130,9 @@ export type AnalyticServiceAnalyticServiceExecuteSqlAsyncBody = {
130
130
  projectId?: string;
131
131
  version?: number;
132
132
  sqlQuery?: AnalyticServiceSqlQuery;
133
+ /**
134
+ * Pagination cursor for the next page of results, using the value from the previous response.
135
+ */
133
136
  cursor?: string;
134
137
  cachePolicy?: CommonCachePolicy;
135
138
  };
@@ -138,6 +141,9 @@ export type AnalyticServiceAnalyticServiceExecuteSqlBody = {
138
141
  projectId?: string;
139
142
  version?: number;
140
143
  sqlQuery?: AnalyticServiceSqlQuery;
144
+ /**
145
+ * Pagination cursor for the next page of results, using the value from the previous response.
146
+ */
141
147
  cursor?: string;
142
148
  cachePolicy?: CommonCachePolicy;
143
149
  };
@@ -825,6 +831,9 @@ export type CommonTabularData = {
825
831
  [key: string]: unknown;
826
832
  }>;
827
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
+ */
828
837
  cursor?: string;
829
838
  };
830
839