@sentio/api 1.0.3-rc.6 → 1.0.3-rc.8
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 +8 -0
- package/package.json +1 -1
- package/src/types.gen.ts +9 -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;
|
|
@@ -384,6 +385,10 @@ export type CommonColumnStateSort = {
|
|
|
384
385
|
id?: string;
|
|
385
386
|
desc?: boolean;
|
|
386
387
|
};
|
|
388
|
+
export type CommonCommunityProject = {
|
|
389
|
+
dashAlias?: string;
|
|
390
|
+
curated?: boolean;
|
|
391
|
+
};
|
|
387
392
|
export type CommonComputeStats = {
|
|
388
393
|
computedAt?: string;
|
|
389
394
|
computeCostMs?: string;
|
|
@@ -532,6 +537,7 @@ export type CommonProject = {
|
|
|
532
537
|
enableDisk?: boolean;
|
|
533
538
|
enableMaterializedView?: boolean;
|
|
534
539
|
defaultTimerange?: CommonTimeRangeLite;
|
|
540
|
+
communityProject?: CommonCommunityProject;
|
|
535
541
|
};
|
|
536
542
|
export type CommonProjectProjectMember = {
|
|
537
543
|
user?: CommonUserInfo;
|
|
@@ -940,6 +946,7 @@ export type MetricsServiceMetricsQueryResponseResult = {
|
|
|
940
946
|
alias?: string;
|
|
941
947
|
id?: string;
|
|
942
948
|
computeStats?: CommonComputeStats;
|
|
949
|
+
color?: string;
|
|
943
950
|
};
|
|
944
951
|
export type MetricsServiceMetricsQueryResponseSample = {
|
|
945
952
|
metric?: MetricsServiceMetricsQueryResponseMetric;
|
|
@@ -976,6 +983,7 @@ export type MetricsServiceQueryValueResponseResult = {
|
|
|
976
983
|
error?: string;
|
|
977
984
|
alias?: string;
|
|
978
985
|
id?: string;
|
|
986
|
+
color?: string;
|
|
979
987
|
};
|
|
980
988
|
export type PriceServiceAddCoinByGeckoRequest = {
|
|
981
989
|
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 = {
|
|
@@ -447,6 +448,11 @@ export type CommonColumnStateSort = {
|
|
|
447
448
|
desc?: boolean;
|
|
448
449
|
};
|
|
449
450
|
|
|
451
|
+
export type CommonCommunityProject = {
|
|
452
|
+
dashAlias?: string;
|
|
453
|
+
curated?: boolean;
|
|
454
|
+
};
|
|
455
|
+
|
|
450
456
|
export type CommonComputeStats = {
|
|
451
457
|
computedAt?: string;
|
|
452
458
|
computeCostMs?: string;
|
|
@@ -615,6 +621,7 @@ export type CommonProject = {
|
|
|
615
621
|
enableDisk?: boolean;
|
|
616
622
|
enableMaterializedView?: boolean;
|
|
617
623
|
defaultTimerange?: CommonTimeRangeLite;
|
|
624
|
+
communityProject?: CommonCommunityProject;
|
|
618
625
|
};
|
|
619
626
|
|
|
620
627
|
export type CommonProjectProjectMember = {
|
|
@@ -1099,6 +1106,7 @@ export type MetricsServiceMetricsQueryResponseResult = {
|
|
|
1099
1106
|
alias?: string;
|
|
1100
1107
|
id?: string;
|
|
1101
1108
|
computeStats?: CommonComputeStats;
|
|
1109
|
+
color?: string;
|
|
1102
1110
|
};
|
|
1103
1111
|
|
|
1104
1112
|
export type MetricsServiceMetricsQueryResponseSample = {
|
|
@@ -1141,6 +1149,7 @@ export type MetricsServiceQueryValueResponseResult = {
|
|
|
1141
1149
|
error?: string;
|
|
1142
1150
|
alias?: string;
|
|
1143
1151
|
id?: string;
|
|
1152
|
+
color?: string;
|
|
1144
1153
|
};
|
|
1145
1154
|
|
|
1146
1155
|
export type PriceServiceAddCoinByGeckoRequest = {
|