@sentio/api 1.0.3-rc.6 → 1.0.3-rc.7
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 +3 -0
- package/package.json +1 -1
- package/src/types.gen.ts +3 -0
package/dist/src/types.gen.d.ts
CHANGED
|
@@ -215,6 +215,7 @@ export type AnalyticServiceQuerySegmentationResponseResult = {
|
|
|
215
215
|
alias?: string;
|
|
216
216
|
id?: string;
|
|
217
217
|
computeStats?: CommonComputeStats;
|
|
218
|
+
color?: string;
|
|
218
219
|
};
|
|
219
220
|
export type AnalyticServiceSqlQuery = {
|
|
220
221
|
sql?: string;
|
|
@@ -940,6 +941,7 @@ export type MetricsServiceMetricsQueryResponseResult = {
|
|
|
940
941
|
alias?: string;
|
|
941
942
|
id?: string;
|
|
942
943
|
computeStats?: CommonComputeStats;
|
|
944
|
+
color?: string;
|
|
943
945
|
};
|
|
944
946
|
export type MetricsServiceMetricsQueryResponseSample = {
|
|
945
947
|
metric?: MetricsServiceMetricsQueryResponseMetric;
|
|
@@ -976,6 +978,7 @@ export type MetricsServiceQueryValueResponseResult = {
|
|
|
976
978
|
error?: string;
|
|
977
979
|
alias?: string;
|
|
978
980
|
id?: string;
|
|
981
|
+
color?: string;
|
|
979
982
|
};
|
|
980
983
|
export type PriceServiceAddCoinByGeckoRequest = {
|
|
981
984
|
coingeckoId?: string;
|
package/package.json
CHANGED
package/src/types.gen.ts
CHANGED
|
@@ -247,6 +247,7 @@ export type AnalyticServiceQuerySegmentationResponseResult = {
|
|
|
247
247
|
alias?: string;
|
|
248
248
|
id?: string;
|
|
249
249
|
computeStats?: CommonComputeStats;
|
|
250
|
+
color?: string;
|
|
250
251
|
};
|
|
251
252
|
|
|
252
253
|
export type AnalyticServiceSqlQuery = {
|
|
@@ -1099,6 +1100,7 @@ export type MetricsServiceMetricsQueryResponseResult = {
|
|
|
1099
1100
|
alias?: string;
|
|
1100
1101
|
id?: string;
|
|
1101
1102
|
computeStats?: CommonComputeStats;
|
|
1103
|
+
color?: string;
|
|
1102
1104
|
};
|
|
1103
1105
|
|
|
1104
1106
|
export type MetricsServiceMetricsQueryResponseSample = {
|
|
@@ -1141,6 +1143,7 @@ export type MetricsServiceQueryValueResponseResult = {
|
|
|
1141
1143
|
error?: string;
|
|
1142
1144
|
alias?: string;
|
|
1143
1145
|
id?: string;
|
|
1146
|
+
color?: string;
|
|
1144
1147
|
};
|
|
1145
1148
|
|
|
1146
1149
|
export type PriceServiceAddCoinByGeckoRequest = {
|