@sentio/api 1.0.3-rc.1 → 1.0.3-rc.2
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.
- package/dist/src/types.gen.d.ts +6 -0
- package/package.json +1 -1
- package/src/types.gen.ts +6 -0
package/dist/src/types.gen.d.ts
CHANGED
|
@@ -114,6 +114,9 @@ export type AnalyticServiceAnalyticServiceExecuteSqlAsyncBody = {
|
|
|
114
114
|
projectId?: string;
|
|
115
115
|
version?: number;
|
|
116
116
|
sqlQuery?: AnalyticServiceSqlQuery;
|
|
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.
|
|
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
|
+
* 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.
|
|
129
|
+
*/
|
|
124
130
|
cursor?: string;
|
|
125
131
|
cachePolicy?: CommonCachePolicy;
|
|
126
132
|
};
|
package/package.json
CHANGED
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
|
+
* 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
|
+
*/
|
|
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
|
+
* 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
|
+
*/
|
|
141
147
|
cursor?: string;
|
|
142
148
|
cachePolicy?: CommonCachePolicy;
|
|
143
149
|
};
|