@sentio/api 1.0.4-rc.8 → 1.0.4
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/sdk.gen.d.ts +5 -5
- package/dist/src/sdk.gen.js +81 -81
- package/dist/src/sdk.gen.js.map +1 -1
- package/dist/src/types.gen.d.ts +94 -296
- package/package.json +1 -1
- package/src/sdk.gen.ts +81 -81
- package/src/types.gen.ts +94 -296
package/src/types.gen.ts
CHANGED
|
@@ -113,7 +113,7 @@ export namespace ai_service {
|
|
|
113
113
|
body: ai_service.ChatSession;
|
|
114
114
|
path?: never;
|
|
115
115
|
query?: never;
|
|
116
|
-
url: '/
|
|
116
|
+
url: '/v1/ai/chat';
|
|
117
117
|
};
|
|
118
118
|
export type CreateChatSessionResponses = {
|
|
119
119
|
/**
|
|
@@ -136,7 +136,7 @@ export namespace ai_service {
|
|
|
136
136
|
*/
|
|
137
137
|
cursorPosition?: number;
|
|
138
138
|
};
|
|
139
|
-
url: '/
|
|
139
|
+
url: '/v1/ai/chat/{sessionId}';
|
|
140
140
|
};
|
|
141
141
|
export type QueryChatSessionResponses = {
|
|
142
142
|
/**
|
|
@@ -154,7 +154,7 @@ export namespace ai_service {
|
|
|
154
154
|
sessionId: string;
|
|
155
155
|
};
|
|
156
156
|
query?: never;
|
|
157
|
-
url: '/
|
|
157
|
+
url: '/v1/ai/chat/{sessionId}/message';
|
|
158
158
|
};
|
|
159
159
|
export type PostSessionMessageResponses = {
|
|
160
160
|
/**
|
|
@@ -167,7 +167,7 @@ export namespace ai_service {
|
|
|
167
167
|
body?: never;
|
|
168
168
|
path?: never;
|
|
169
169
|
query?: never;
|
|
170
|
-
url: '/
|
|
170
|
+
url: '/v1/ai/healthz';
|
|
171
171
|
};
|
|
172
172
|
export type HealthzResponses = {
|
|
173
173
|
/**
|
|
@@ -323,7 +323,7 @@ export namespace alert_service {
|
|
|
323
323
|
body: alert_service.SaveAlertRuleRequest;
|
|
324
324
|
path?: never;
|
|
325
325
|
query?: never;
|
|
326
|
-
url: '/
|
|
326
|
+
url: '/v1/alerts/rule';
|
|
327
327
|
};
|
|
328
328
|
export type SaveAlertRuleResponses = {
|
|
329
329
|
/**
|
|
@@ -340,7 +340,7 @@ export namespace alert_service {
|
|
|
340
340
|
projectId: string;
|
|
341
341
|
};
|
|
342
342
|
query?: never;
|
|
343
|
-
url: '/
|
|
343
|
+
url: '/v1/alerts/rule/project/{projectId}';
|
|
344
344
|
};
|
|
345
345
|
export type GetAlertRulesResponses = {
|
|
346
346
|
/**
|
|
@@ -355,7 +355,7 @@ export namespace alert_service {
|
|
|
355
355
|
id: string;
|
|
356
356
|
};
|
|
357
357
|
query?: never;
|
|
358
|
-
url: '/
|
|
358
|
+
url: '/v1/alerts/rule/{id}';
|
|
359
359
|
};
|
|
360
360
|
export type DeleteAlertRuleResponses = {
|
|
361
361
|
/**
|
|
@@ -372,7 +372,7 @@ export namespace alert_service {
|
|
|
372
372
|
id: string;
|
|
373
373
|
};
|
|
374
374
|
query?: never;
|
|
375
|
-
url: '/
|
|
375
|
+
url: '/v1/alerts/rule/{id}';
|
|
376
376
|
};
|
|
377
377
|
export type SaveAlertRule2Responses = {
|
|
378
378
|
/**
|
|
@@ -392,7 +392,7 @@ export namespace alert_service {
|
|
|
392
392
|
page?: number;
|
|
393
393
|
pageSize?: number;
|
|
394
394
|
};
|
|
395
|
-
url: '/
|
|
395
|
+
url: '/v1/alerts/{ruleId}';
|
|
396
396
|
};
|
|
397
397
|
export type GetAlertResponses = {
|
|
398
398
|
/**
|
|
@@ -517,17 +517,6 @@ export namespace analytic_service {
|
|
|
517
517
|
export type QuerySqlResultResponse = {
|
|
518
518
|
executionInfo?: ExecutionInfo;
|
|
519
519
|
};
|
|
520
|
-
export type QuerySegmentationResponse = {
|
|
521
|
-
results?: Array<QuerySegmentationResponseResult>;
|
|
522
|
-
};
|
|
523
|
-
export type QuerySegmentationResponseResult = {
|
|
524
|
-
matrix?: common.Matrix;
|
|
525
|
-
error?: string;
|
|
526
|
-
alias?: string;
|
|
527
|
-
id?: string;
|
|
528
|
-
computeStats?: common.ComputeStats;
|
|
529
|
-
color?: string;
|
|
530
|
-
};
|
|
531
520
|
export type QueryTableResponse = {
|
|
532
521
|
table?: Table;
|
|
533
522
|
computeStats?: common.ComputeStats;
|
|
@@ -582,18 +571,6 @@ export namespace analytic_service {
|
|
|
582
571
|
source?: string;
|
|
583
572
|
cachePolicy?: common.CachePolicy;
|
|
584
573
|
};
|
|
585
|
-
export type SegmentationRequest = {
|
|
586
|
-
projectOwner?: string;
|
|
587
|
-
projectSlug?: string;
|
|
588
|
-
projectId?: string;
|
|
589
|
-
version?: number;
|
|
590
|
-
timeRange?: common.TimeRangeLite;
|
|
591
|
-
queries?: Array<common.SegmentationQuery>;
|
|
592
|
-
formulas?: Array<common.Formula>;
|
|
593
|
-
debug?: boolean;
|
|
594
|
-
limit?: number;
|
|
595
|
-
offset?: number;
|
|
596
|
-
};
|
|
597
574
|
export type Source = 'SQL_EDITOR' | 'DASHBOARD' | 'ASYNC_TRIGGER' | 'CURL' | 'ENDPOINT' | 'EXPORT' | 'USER_MATERIALIZED_VIEW_CREATOR' | 'SQL_ALERT';
|
|
598
575
|
export type SyncExecuteSqlResponse = {
|
|
599
576
|
runtimeCost?: string;
|
|
@@ -629,7 +606,7 @@ export namespace analytic_service {
|
|
|
629
606
|
body: analytic_service.SaveSharingSqlRequest;
|
|
630
607
|
path?: never;
|
|
631
608
|
query?: never;
|
|
632
|
-
url: '/
|
|
609
|
+
url: '/v1/analytics/sql/sharing';
|
|
633
610
|
};
|
|
634
611
|
export type SaveSharingSqlResponses = {
|
|
635
612
|
/**
|
|
@@ -644,7 +621,7 @@ export namespace analytic_service {
|
|
|
644
621
|
id: string;
|
|
645
622
|
};
|
|
646
623
|
query?: never;
|
|
647
|
-
url: '/
|
|
624
|
+
url: '/v1/analytics/sql/sharing/{id}';
|
|
648
625
|
};
|
|
649
626
|
export type GetSharingSqlResponses = {
|
|
650
627
|
/**
|
|
@@ -666,7 +643,7 @@ export namespace analytic_service {
|
|
|
666
643
|
includeExternals?: boolean;
|
|
667
644
|
includeDash?: boolean;
|
|
668
645
|
};
|
|
669
|
-
url: '/
|
|
646
|
+
url: '/v1/analytics/sql/tables';
|
|
670
647
|
};
|
|
671
648
|
export type QueryTables2Responses = {
|
|
672
649
|
/**
|
|
@@ -698,7 +675,7 @@ export namespace analytic_service {
|
|
|
698
675
|
*/
|
|
699
676
|
version?: number;
|
|
700
677
|
};
|
|
701
|
-
url: '/
|
|
678
|
+
url: '/v1/analytics/{owner}/{slug}/sql/cancel_query/{executionId}';
|
|
702
679
|
};
|
|
703
680
|
export type CancelSqlQueryResponses = {
|
|
704
681
|
/**
|
|
@@ -722,7 +699,7 @@ export namespace analytic_service {
|
|
|
722
699
|
slug: string;
|
|
723
700
|
};
|
|
724
701
|
query?: never;
|
|
725
|
-
url: '/
|
|
702
|
+
url: '/v1/analytics/{owner}/{slug}/sql/execute';
|
|
726
703
|
};
|
|
727
704
|
export type ExecuteSqlResponses = {
|
|
728
705
|
/**
|
|
@@ -744,7 +721,7 @@ export namespace analytic_service {
|
|
|
744
721
|
slug: string;
|
|
745
722
|
};
|
|
746
723
|
query?: never;
|
|
747
|
-
url: '/
|
|
724
|
+
url: '/v1/analytics/{owner}/{slug}/sql/execute/async';
|
|
748
725
|
};
|
|
749
726
|
export type ExecuteSqlAsyncResponses = {
|
|
750
727
|
/**
|
|
@@ -776,7 +753,7 @@ export namespace analytic_service {
|
|
|
776
753
|
*/
|
|
777
754
|
version?: number;
|
|
778
755
|
};
|
|
779
|
-
url: '/
|
|
756
|
+
url: '/v1/analytics/{owner}/{slug}/sql/query_execution_detail/{executionId}';
|
|
780
757
|
};
|
|
781
758
|
export type QuerySqlExecutionDetailResponses = {
|
|
782
759
|
/**
|
|
@@ -808,7 +785,7 @@ export namespace analytic_service {
|
|
|
808
785
|
*/
|
|
809
786
|
version?: number;
|
|
810
787
|
};
|
|
811
|
-
url: '/
|
|
788
|
+
url: '/v1/analytics/{owner}/{slug}/sql/query_result/{executionId}';
|
|
812
789
|
};
|
|
813
790
|
export type QuerySqlResultResponses = {
|
|
814
791
|
/**
|
|
@@ -830,7 +807,7 @@ export namespace analytic_service {
|
|
|
830
807
|
slug: string;
|
|
831
808
|
};
|
|
832
809
|
query?: never;
|
|
833
|
-
url: '/
|
|
810
|
+
url: '/v1/analytics/{owner}/{slug}/sql/refreshable_materialized_view';
|
|
834
811
|
};
|
|
835
812
|
export type SaveRefreshableMaterializedViewResponses = {
|
|
836
813
|
/**
|
|
@@ -858,7 +835,7 @@ export namespace analytic_service {
|
|
|
858
835
|
*/
|
|
859
836
|
projectId?: string;
|
|
860
837
|
};
|
|
861
|
-
url: '/
|
|
838
|
+
url: '/v1/analytics/{owner}/{slug}/sql/refreshable_materialized_view/{name}';
|
|
862
839
|
};
|
|
863
840
|
export type DeleteRefreshableMaterializedViewResponses = {
|
|
864
841
|
/**
|
|
@@ -888,7 +865,7 @@ export namespace analytic_service {
|
|
|
888
865
|
*/
|
|
889
866
|
projectId?: string;
|
|
890
867
|
};
|
|
891
|
-
url: '/
|
|
868
|
+
url: '/v1/analytics/{owner}/{slug}/sql/refreshable_materialized_view/{name}';
|
|
892
869
|
};
|
|
893
870
|
export type GetRefreshableMaterializedStatusResponses = {
|
|
894
871
|
/**
|
|
@@ -915,7 +892,7 @@ export namespace analytic_service {
|
|
|
915
892
|
*/
|
|
916
893
|
projectId?: string;
|
|
917
894
|
};
|
|
918
|
-
url: '/
|
|
895
|
+
url: '/v1/analytics/{owner}/{slug}/sql/refreshable_materialized_views';
|
|
919
896
|
};
|
|
920
897
|
export type ListRefreshableMaterializedViewsResponses = {
|
|
921
898
|
/**
|
|
@@ -937,7 +914,7 @@ export namespace analytic_service {
|
|
|
937
914
|
slug: string;
|
|
938
915
|
};
|
|
939
916
|
query?: never;
|
|
940
|
-
url: '/
|
|
917
|
+
url: '/v1/analytics/{owner}/{slug}/sql/save';
|
|
941
918
|
};
|
|
942
919
|
export type SaveSqlResponses = {
|
|
943
920
|
/**
|
|
@@ -959,7 +936,7 @@ export namespace analytic_service {
|
|
|
959
936
|
slug: string;
|
|
960
937
|
};
|
|
961
938
|
query?: never;
|
|
962
|
-
url: '/
|
|
939
|
+
url: '/v1/analytics/{owner}/{slug}/sql/save';
|
|
963
940
|
};
|
|
964
941
|
export type SaveSql2Responses = {
|
|
965
942
|
/**
|
|
@@ -982,7 +959,7 @@ export namespace analytic_service {
|
|
|
982
959
|
includeExternals?: boolean;
|
|
983
960
|
includeDash?: boolean;
|
|
984
961
|
};
|
|
985
|
-
url: '/
|
|
962
|
+
url: '/v1/analytics/{owner}/{slug}/sql/tables';
|
|
986
963
|
};
|
|
987
964
|
export type QueryTablesResponses = {
|
|
988
965
|
/**
|
|
@@ -998,7 +975,7 @@ export namespace analytic_service {
|
|
|
998
975
|
slug: string;
|
|
999
976
|
};
|
|
1000
977
|
query?: never;
|
|
1001
|
-
url: '/
|
|
978
|
+
url: '/v1/eventlogs/{owner}/{slug}';
|
|
1002
979
|
};
|
|
1003
980
|
export type QueryLogResponses = {
|
|
1004
981
|
/**
|
|
@@ -1049,7 +1026,7 @@ export namespace analytic_service {
|
|
|
1049
1026
|
*/
|
|
1050
1027
|
'cachePolicy.noCache'?: boolean;
|
|
1051
1028
|
};
|
|
1052
|
-
url: '/
|
|
1029
|
+
url: '/v1/eventlogs/{owner}/{slug}/query';
|
|
1053
1030
|
};
|
|
1054
1031
|
export type QueryLog2Responses = {
|
|
1055
1032
|
/**
|
|
@@ -1068,7 +1045,7 @@ export namespace analytic_service {
|
|
|
1068
1045
|
version?: number;
|
|
1069
1046
|
name?: string;
|
|
1070
1047
|
};
|
|
1071
|
-
url: '/
|
|
1048
|
+
url: '/v1/sql/table';
|
|
1072
1049
|
};
|
|
1073
1050
|
export type QueryTable2Responses = {
|
|
1074
1051
|
/**
|
|
@@ -1086,7 +1063,7 @@ export namespace analytic_service {
|
|
|
1086
1063
|
projectId?: string;
|
|
1087
1064
|
version?: number;
|
|
1088
1065
|
};
|
|
1089
|
-
url: '/
|
|
1066
|
+
url: '/v1/sql/tables';
|
|
1090
1067
|
};
|
|
1091
1068
|
export type ListTables2Responses = {
|
|
1092
1069
|
/**
|
|
@@ -1106,7 +1083,7 @@ export namespace analytic_service {
|
|
|
1106
1083
|
projectId?: string;
|
|
1107
1084
|
version?: number;
|
|
1108
1085
|
};
|
|
1109
|
-
url: '/
|
|
1086
|
+
url: '/v1/sql/{owner}/{slug}/table/{name}';
|
|
1110
1087
|
};
|
|
1111
1088
|
export type QueryTableResponses = {
|
|
1112
1089
|
/**
|
|
@@ -1125,7 +1102,7 @@ export namespace analytic_service {
|
|
|
1125
1102
|
projectId?: string;
|
|
1126
1103
|
version?: number;
|
|
1127
1104
|
};
|
|
1128
|
-
url: '/
|
|
1105
|
+
url: '/v1/sql/{owner}/{slug}/tables';
|
|
1129
1106
|
};
|
|
1130
1107
|
export type ListTablesResponses = {
|
|
1131
1108
|
/**
|
|
@@ -1432,16 +1409,6 @@ export namespace common {
|
|
|
1432
1409
|
createdAt?: string;
|
|
1433
1410
|
syncAt?: string;
|
|
1434
1411
|
};
|
|
1435
|
-
export type ProjectVariables = {
|
|
1436
|
-
projectId?: string;
|
|
1437
|
-
variables?: Array<ProjectVariablesVariable>;
|
|
1438
|
-
};
|
|
1439
|
-
export type ProjectVariablesVariable = {
|
|
1440
|
-
key?: string;
|
|
1441
|
-
value?: string;
|
|
1442
|
-
isSecret?: boolean;
|
|
1443
|
-
updatedAt?: string;
|
|
1444
|
-
};
|
|
1445
1412
|
export type ProjectView = {
|
|
1446
1413
|
id?: string;
|
|
1447
1414
|
projectId?: string;
|
|
@@ -1843,7 +1810,7 @@ export namespace google {
|
|
|
1843
1810
|
networkId?: string;
|
|
1844
1811
|
txHash?: string;
|
|
1845
1812
|
};
|
|
1846
|
-
url: '/
|
|
1813
|
+
url: '/v1/move/call_trace';
|
|
1847
1814
|
};
|
|
1848
1815
|
export type GetCallTraceResponses = {
|
|
1849
1816
|
/**
|
|
@@ -1874,7 +1841,7 @@ export namespace google {
|
|
|
1874
1841
|
*/
|
|
1875
1842
|
ignoreGasCost?: boolean;
|
|
1876
1843
|
};
|
|
1877
|
-
url: '/
|
|
1844
|
+
url: '/v1/solidity/{owner}/{slug}/fork/{forkId}/bundle/{bundleId}/call_trace';
|
|
1878
1845
|
};
|
|
1879
1846
|
export type GetCallTraceOnForkBundleResponses = {
|
|
1880
1847
|
/**
|
|
@@ -1905,7 +1872,7 @@ export namespace google {
|
|
|
1905
1872
|
*/
|
|
1906
1873
|
ignoreGasCost?: boolean;
|
|
1907
1874
|
};
|
|
1908
|
-
url: '/
|
|
1875
|
+
url: '/v1/solidity/{owner}/{slug}/fork/{forkId}/simulation/{simulationId}/call_trace';
|
|
1909
1876
|
};
|
|
1910
1877
|
export type GetCallTraceOnForkSimulationResponses = {
|
|
1911
1878
|
/**
|
|
@@ -1936,7 +1903,7 @@ export namespace google {
|
|
|
1936
1903
|
*/
|
|
1937
1904
|
ignoreGasCost?: boolean;
|
|
1938
1905
|
};
|
|
1939
|
-
url: '/
|
|
1906
|
+
url: '/v1/solidity/{owner}/{slug}/fork/{forkId}/transaction/{txHash}/call_trace';
|
|
1940
1907
|
};
|
|
1941
1908
|
export type GetCallTraceOnForkTransactionResponses = {
|
|
1942
1909
|
/**
|
|
@@ -1967,7 +1934,7 @@ export namespace google {
|
|
|
1967
1934
|
*/
|
|
1968
1935
|
ignoreGasCost?: boolean;
|
|
1969
1936
|
};
|
|
1970
|
-
url: '/
|
|
1937
|
+
url: '/v1/solidity/{owner}/{slug}/{chainId}/bundle/{bundleId}/call_trace';
|
|
1971
1938
|
};
|
|
1972
1939
|
export type GetCallTraceByBundleResponses = {
|
|
1973
1940
|
/**
|
|
@@ -1998,7 +1965,7 @@ export namespace google {
|
|
|
1998
1965
|
*/
|
|
1999
1966
|
ignoreGasCost?: boolean;
|
|
2000
1967
|
};
|
|
2001
|
-
url: '/
|
|
1968
|
+
url: '/v1/solidity/{owner}/{slug}/{chainId}/simulation/{simulationId}/call_trace';
|
|
2002
1969
|
};
|
|
2003
1970
|
export type GetCallTraceBySimulationResponses = {
|
|
2004
1971
|
/**
|
|
@@ -2029,7 +1996,7 @@ export namespace google {
|
|
|
2029
1996
|
*/
|
|
2030
1997
|
ignoreGasCost?: boolean;
|
|
2031
1998
|
};
|
|
2032
|
-
url: '/
|
|
1999
|
+
url: '/v1/solidity/{owner}/{slug}/{chainId}/transaction/{txHash}/call_trace';
|
|
2033
2000
|
};
|
|
2034
2001
|
export type GetCallTraceByTransactionResponses = {
|
|
2035
2002
|
/**
|
|
@@ -2089,7 +2056,7 @@ export namespace insights_service {
|
|
|
2089
2056
|
offset?: number;
|
|
2090
2057
|
searchQuery?: string;
|
|
2091
2058
|
};
|
|
2092
|
-
url: '/
|
|
2059
|
+
url: '/v1/insights/coins';
|
|
2093
2060
|
};
|
|
2094
2061
|
export type ListCoins2Responses = {
|
|
2095
2062
|
/**
|
|
@@ -2111,7 +2078,7 @@ export namespace insights_service {
|
|
|
2111
2078
|
offset?: number;
|
|
2112
2079
|
searchQuery?: string;
|
|
2113
2080
|
};
|
|
2114
|
-
url: '/
|
|
2081
|
+
url: '/v1/insights/{owner}/{slug}/coins';
|
|
2115
2082
|
};
|
|
2116
2083
|
export type ListCoinsResponses = {
|
|
2117
2084
|
/**
|
|
@@ -2133,7 +2100,7 @@ export namespace insights_service {
|
|
|
2133
2100
|
slug: string;
|
|
2134
2101
|
};
|
|
2135
2102
|
query?: never;
|
|
2136
|
-
url: '/
|
|
2103
|
+
url: '/v1/insights/{owner}/{slug}/query';
|
|
2137
2104
|
};
|
|
2138
2105
|
export type QueryResponses = {
|
|
2139
2106
|
/**
|
|
@@ -2242,7 +2209,7 @@ export namespace metrics_service {
|
|
|
2242
2209
|
labelLimit?: string;
|
|
2243
2210
|
labelSearchQuery?: string;
|
|
2244
2211
|
};
|
|
2245
|
-
url: '/
|
|
2212
|
+
url: '/v1/metrics';
|
|
2246
2213
|
};
|
|
2247
2214
|
export type GetMetricsResponses = {
|
|
2248
2215
|
/**
|
|
@@ -2264,7 +2231,7 @@ export namespace metrics_service {
|
|
|
2264
2231
|
slug: string;
|
|
2265
2232
|
};
|
|
2266
2233
|
query?: never;
|
|
2267
|
-
url: '/
|
|
2234
|
+
url: '/v1/metrics/{owner}/{slug}/query';
|
|
2268
2235
|
};
|
|
2269
2236
|
export type QueryInstantResponses = {
|
|
2270
2237
|
/**
|
|
@@ -2286,7 +2253,7 @@ export namespace metrics_service {
|
|
|
2286
2253
|
slug: string;
|
|
2287
2254
|
};
|
|
2288
2255
|
query?: never;
|
|
2289
|
-
url: '/
|
|
2256
|
+
url: '/v1/metrics/{owner}/{slug}/query_range';
|
|
2290
2257
|
};
|
|
2291
2258
|
export type QueryRangeResponses = {
|
|
2292
2259
|
/**
|
|
@@ -2334,7 +2301,7 @@ export namespace move_service {
|
|
|
2334
2301
|
networkId?: string;
|
|
2335
2302
|
txDigest?: string;
|
|
2336
2303
|
};
|
|
2337
|
-
url: '/
|
|
2304
|
+
url: '/v1/move/sui_call_trace';
|
|
2338
2305
|
};
|
|
2339
2306
|
export type GetSuiCallTraceResponses = {
|
|
2340
2307
|
/**
|
|
@@ -2437,7 +2404,7 @@ export namespace price_service {
|
|
|
2437
2404
|
source?: string;
|
|
2438
2405
|
'experimentalFlag.enablePythSource'?: boolean;
|
|
2439
2406
|
};
|
|
2440
|
-
url: '/
|
|
2407
|
+
url: '/v1/prices';
|
|
2441
2408
|
};
|
|
2442
2409
|
export type GetPriceResponses = {
|
|
2443
2410
|
/**
|
|
@@ -2450,7 +2417,7 @@ export namespace price_service {
|
|
|
2450
2417
|
body: price_service.AddCoinByGeckoRequest;
|
|
2451
2418
|
path?: never;
|
|
2452
2419
|
query?: never;
|
|
2453
|
-
url: '/
|
|
2420
|
+
url: '/v1/prices/add_coin_by_gecko';
|
|
2454
2421
|
};
|
|
2455
2422
|
export type AddCoinByGeckoResponses = {
|
|
2456
2423
|
/**
|
|
@@ -2463,7 +2430,7 @@ export namespace price_service {
|
|
|
2463
2430
|
body: price_service.BatchGetPricesRequest;
|
|
2464
2431
|
path?: never;
|
|
2465
2432
|
query?: never;
|
|
2466
|
-
url: '/
|
|
2433
|
+
url: '/v1/prices/batch';
|
|
2467
2434
|
};
|
|
2468
2435
|
export type BatchGetPricesResponses = {
|
|
2469
2436
|
/**
|
|
@@ -2476,7 +2443,7 @@ export namespace price_service {
|
|
|
2476
2443
|
body?: never;
|
|
2477
2444
|
path?: never;
|
|
2478
2445
|
query?: never;
|
|
2479
|
-
url: '/
|
|
2446
|
+
url: '/v1/prices/check_latest';
|
|
2480
2447
|
};
|
|
2481
2448
|
export type CheckLatestPriceResponses = {
|
|
2482
2449
|
/**
|
|
@@ -2494,7 +2461,7 @@ export namespace price_service {
|
|
|
2494
2461
|
searchQuery?: string;
|
|
2495
2462
|
chain?: string;
|
|
2496
2463
|
};
|
|
2497
|
-
url: '/
|
|
2464
|
+
url: '/v1/prices/coins';
|
|
2498
2465
|
};
|
|
2499
2466
|
export type PriceListCoinsResponses = {
|
|
2500
2467
|
/**
|
|
@@ -2545,12 +2512,6 @@ export namespace processor_service {
|
|
|
2545
2512
|
errorRecord?: common.ErrorRecord;
|
|
2546
2513
|
};
|
|
2547
2514
|
export type ChainStateStatusState = 'UNKNOWN' | 'ERROR' | 'CATCHING_UP' | 'PROCESSING_LATEST' | 'QUEUING';
|
|
2548
|
-
export type DownloadProcessorResponse = {
|
|
2549
|
-
url?: string;
|
|
2550
|
-
};
|
|
2551
|
-
export type GetProcessorResponse = {
|
|
2552
|
-
processor?: Processor;
|
|
2553
|
-
};
|
|
2554
2515
|
export type GetProcessorSourceFilesResponse = {
|
|
2555
2516
|
sourceFiles?: Array<ProcessorSourceFile>;
|
|
2556
2517
|
};
|
|
@@ -2592,85 +2553,15 @@ export namespace processor_service {
|
|
|
2592
2553
|
errorRecord?: common.ErrorRecord;
|
|
2593
2554
|
};
|
|
2594
2555
|
export type GetProcessorStatusResponseProcessorStatusState = 'UNKNOWN' | 'ERROR' | 'STARTING' | 'PROCESSING';
|
|
2595
|
-
export type GetProcessorWithProjectResponse = {
|
|
2596
|
-
processor?: Processor;
|
|
2597
|
-
project?: common.Project;
|
|
2598
|
-
};
|
|
2599
|
-
export type GetProcessorsResponse = {
|
|
2600
|
-
processors?: Array<Processor>;
|
|
2601
|
-
};
|
|
2602
2556
|
export type NetworkOverride = {
|
|
2603
2557
|
chain?: string;
|
|
2604
2558
|
host?: string;
|
|
2605
2559
|
};
|
|
2606
|
-
/**
|
|
2607
|
-
* This represents a processor which backend works on.
|
|
2608
|
-
*/
|
|
2609
|
-
export type Processor = {
|
|
2610
|
-
/**
|
|
2611
|
-
* The unique processor id.
|
|
2612
|
-
*/
|
|
2613
|
-
processorId?: string;
|
|
2614
|
-
/**
|
|
2615
|
-
* The project this processor belongs to.
|
|
2616
|
-
*/
|
|
2617
|
-
projectId?: string;
|
|
2618
|
-
/**
|
|
2619
|
-
* The version of the code_url below.
|
|
2620
|
-
*/
|
|
2621
|
-
version?: number;
|
|
2622
|
-
sdkVersion?: string;
|
|
2623
|
-
/**
|
|
2624
|
-
* Call should be able to fetch the code to run from code_url.
|
|
2625
|
-
*/
|
|
2626
|
-
codeUrl?: string;
|
|
2627
|
-
chainStates?: Array<ChainState>;
|
|
2628
|
-
/**
|
|
2629
|
-
* If non empty, this is the contract associated with the processor.
|
|
2630
|
-
*/
|
|
2631
|
-
contractId?: string;
|
|
2632
|
-
versionState?: ProcessorVersionState;
|
|
2633
|
-
debug?: boolean;
|
|
2634
|
-
/**
|
|
2635
|
-
* The timescale-db sharding index of this processor.
|
|
2636
|
-
*/
|
|
2637
|
-
timescaleShardingIndex?: number;
|
|
2638
|
-
versionLabel?: string;
|
|
2639
|
-
ipfsHash?: string;
|
|
2640
|
-
debugFork?: string;
|
|
2641
|
-
/**
|
|
2642
|
-
* The created timestamp of the processor.
|
|
2643
|
-
*/
|
|
2644
|
-
createdAt?: string;
|
|
2645
|
-
/**
|
|
2646
|
-
* The clickhouse sharding index of this processor.
|
|
2647
|
-
*/
|
|
2648
|
-
clickhouseShardingIndex?: number;
|
|
2649
|
-
k8sClusterId?: number;
|
|
2650
|
-
enableMaterializedView?: boolean;
|
|
2651
|
-
referenceProjectId?: string;
|
|
2652
|
-
networkOverrides?: Array<NetworkOverride>;
|
|
2653
|
-
eventlogMigrateStatus?: number;
|
|
2654
|
-
eventlogVersion?: number;
|
|
2655
|
-
pause?: boolean;
|
|
2656
|
-
pauseAt?: string;
|
|
2657
|
-
pauseReason?: string;
|
|
2658
|
-
entitySchemaVersion?: number;
|
|
2659
|
-
driverVersion?: number;
|
|
2660
|
-
numWorkers?: number;
|
|
2661
|
-
isBinary?: boolean;
|
|
2662
|
-
chainId?: string;
|
|
2663
|
-
requiredChains?: Array<string>;
|
|
2664
|
-
createTxHash?: string;
|
|
2665
|
-
};
|
|
2666
2560
|
export type ProcessorSourceFile = {
|
|
2667
2561
|
path?: string;
|
|
2668
2562
|
content?: string;
|
|
2669
2563
|
};
|
|
2670
2564
|
export type ProcessorVersionState = 'UNKNOWN' | 'PENDING' | 'ACTIVE' | 'OBSOLETE';
|
|
2671
|
-
export type UpdateChainProcessorStatusResponse = {
|
|
2672
|
-
[key: string]: unknown;
|
|
2673
|
-
};
|
|
2674
2565
|
export type ActivatePendingVersionData = {
|
|
2675
2566
|
body?: never;
|
|
2676
2567
|
path: {
|
|
@@ -2678,7 +2569,7 @@ export namespace processor_service {
|
|
|
2678
2569
|
slug: string;
|
|
2679
2570
|
};
|
|
2680
2571
|
query?: never;
|
|
2681
|
-
url: '/
|
|
2572
|
+
url: '/v1/processors/{owner}/{slug}/activate_pending';
|
|
2682
2573
|
};
|
|
2683
2574
|
export type ActivatePendingVersionResponses = {
|
|
2684
2575
|
/**
|
|
@@ -2701,7 +2592,7 @@ export namespace processor_service {
|
|
|
2701
2592
|
*/
|
|
2702
2593
|
version?: number;
|
|
2703
2594
|
};
|
|
2704
|
-
url: '/
|
|
2595
|
+
url: '/v1/processors/{owner}/{slug}/source_files';
|
|
2705
2596
|
};
|
|
2706
2597
|
export type GetProcessorSourceFilesResponses = {
|
|
2707
2598
|
/**
|
|
@@ -2724,7 +2615,7 @@ export namespace processor_service {
|
|
|
2724
2615
|
*/
|
|
2725
2616
|
version?: 'ACTIVE' | 'PENDING' | 'ALL';
|
|
2726
2617
|
};
|
|
2727
|
-
url: '/
|
|
2618
|
+
url: '/v1/processors/{owner}/{slug}/status';
|
|
2728
2619
|
};
|
|
2729
2620
|
export type GetProcessorStatusV2Responses = {
|
|
2730
2621
|
/**
|
|
@@ -2766,25 +2657,9 @@ export namespace solidity_service {
|
|
|
2766
2657
|
chainId?: string;
|
|
2767
2658
|
forkId?: string;
|
|
2768
2659
|
};
|
|
2769
|
-
export type CompileSourceInternalResponse = {
|
|
2770
|
-
failure?: Failure;
|
|
2771
|
-
};
|
|
2772
|
-
export type CompilerOptions = {
|
|
2773
|
-
language?: string;
|
|
2774
|
-
version?: string;
|
|
2775
|
-
settings?: Settings;
|
|
2776
|
-
specializations?: Specializations;
|
|
2777
|
-
};
|
|
2778
|
-
export type ContractKeyInfo = {
|
|
2779
|
-
preprocessKey?: string;
|
|
2780
|
-
compilationKey?: string;
|
|
2781
|
-
};
|
|
2782
2660
|
export type CreateForkResponse = {
|
|
2783
2661
|
fork?: Fork;
|
|
2784
2662
|
};
|
|
2785
|
-
export type DecodeStateDiffResponse = {
|
|
2786
|
-
result?: string;
|
|
2787
|
-
};
|
|
2788
2663
|
export type EstimatedPrice = {
|
|
2789
2664
|
confidence?: number;
|
|
2790
2665
|
price?: number;
|
|
@@ -2812,10 +2687,6 @@ export namespace solidity_service {
|
|
|
2812
2687
|
chainConfig?: BaseChainConfig;
|
|
2813
2688
|
nodeAdditionalHeaders?: string;
|
|
2814
2689
|
};
|
|
2815
|
-
export type Failure = {
|
|
2816
|
-
error?: string;
|
|
2817
|
-
reason?: string;
|
|
2818
|
-
};
|
|
2819
2690
|
export type Fork = {
|
|
2820
2691
|
id?: string;
|
|
2821
2692
|
type?: ForkType;
|
|
@@ -2867,31 +2738,6 @@ export namespace solidity_service {
|
|
|
2867
2738
|
page?: number;
|
|
2868
2739
|
pageSize?: number;
|
|
2869
2740
|
};
|
|
2870
|
-
export type GetStorageSummaryInternalResponse = {
|
|
2871
|
-
results?: Array<StorageSummaryResult>;
|
|
2872
|
-
};
|
|
2873
|
-
export type GetTraceCallInternalRequestBundle = {
|
|
2874
|
-
transactions?: Array<{
|
|
2875
|
-
[key: string]: unknown;
|
|
2876
|
-
}>;
|
|
2877
|
-
blockOverride?: BlockOverrides;
|
|
2878
|
-
};
|
|
2879
|
-
export type GetTraceCallInternalRequestStateContext = {
|
|
2880
|
-
blockNumber?: string;
|
|
2881
|
-
transactionIndex?: number;
|
|
2882
|
-
};
|
|
2883
|
-
export type GetTraceCallInternalResponse = {
|
|
2884
|
-
result?: Array<Array<{
|
|
2885
|
-
[key: string]: unknown;
|
|
2886
|
-
}>>;
|
|
2887
|
-
outputs?: Array<Array<{
|
|
2888
|
-
[key: string]: unknown;
|
|
2889
|
-
}>>;
|
|
2890
|
-
error?: string;
|
|
2891
|
-
};
|
|
2892
|
-
export type GetTraceTransactionInternalResponse = {
|
|
2893
|
-
result?: string;
|
|
2894
|
-
};
|
|
2895
2741
|
export type ListForksResponse = {
|
|
2896
2742
|
forks?: Array<Fork>;
|
|
2897
2743
|
};
|
|
@@ -2903,11 +2749,6 @@ export namespace solidity_service {
|
|
|
2903
2749
|
rpcEndpoint?: string;
|
|
2904
2750
|
version?: string;
|
|
2905
2751
|
};
|
|
2906
|
-
export type Metadata = {
|
|
2907
|
-
useLiteralContent?: boolean;
|
|
2908
|
-
bytecodeHash?: string;
|
|
2909
|
-
appendCBOR?: boolean;
|
|
2910
|
-
};
|
|
2911
2752
|
export type NodeEnvironment = {
|
|
2912
2753
|
chainId?: string;
|
|
2913
2754
|
baseFee?: string;
|
|
@@ -2919,34 +2760,6 @@ export namespace solidity_service {
|
|
|
2919
2760
|
forkBlockNumber?: string;
|
|
2920
2761
|
forkRetryBackoff?: string;
|
|
2921
2762
|
};
|
|
2922
|
-
export type Optimizer = {
|
|
2923
|
-
enabled?: boolean;
|
|
2924
|
-
runs?: number;
|
|
2925
|
-
details?: OptimizerDetails;
|
|
2926
|
-
};
|
|
2927
|
-
export type OptimizerDetails = {
|
|
2928
|
-
peephole?: boolean;
|
|
2929
|
-
jumpdestRemover?: boolean;
|
|
2930
|
-
yul?: boolean;
|
|
2931
|
-
yulDetails?: OptimizerDetailsYulDetails;
|
|
2932
|
-
};
|
|
2933
|
-
export type OptimizerDetailsYulDetails = {
|
|
2934
|
-
stackAllocation?: boolean;
|
|
2935
|
-
optimizerSteps?: string;
|
|
2936
|
-
};
|
|
2937
|
-
export type PreProcessCompilationInternalResponse = {
|
|
2938
|
-
preprocessedAddresses?: Array<string>;
|
|
2939
|
-
};
|
|
2940
|
-
export type Settings = {
|
|
2941
|
-
remappings?: Array<string>;
|
|
2942
|
-
optimizer?: Optimizer;
|
|
2943
|
-
evmVersion?: string;
|
|
2944
|
-
metadata?: Metadata;
|
|
2945
|
-
viaIR?: boolean;
|
|
2946
|
-
compilationTarget?: {
|
|
2947
|
-
[key: string]: string;
|
|
2948
|
-
};
|
|
2949
|
-
};
|
|
2950
2763
|
export type SimulateTransactionBundleResponse = {
|
|
2951
2764
|
bundleId?: string;
|
|
2952
2765
|
simulations?: Array<Simulation>;
|
|
@@ -3017,32 +2830,6 @@ export namespace solidity_service {
|
|
|
3017
2830
|
simulation: Simulation;
|
|
3018
2831
|
};
|
|
3019
2832
|
export type SourceFetcherType = 'ETHERSCAN' | 'BLOCKSCOUT' | 'OKLINK' | 'ETHERSCAN_V2';
|
|
3020
|
-
export type SourceInfo = {
|
|
3021
|
-
contractName?: string;
|
|
3022
|
-
options?: CompilerOptions;
|
|
3023
|
-
};
|
|
3024
|
-
export type SourceMultiFile = {
|
|
3025
|
-
source?: {
|
|
3026
|
-
[key: string]: string;
|
|
3027
|
-
};
|
|
3028
|
-
compilerSettings?: string;
|
|
3029
|
-
};
|
|
3030
|
-
export type SourceSpec = {
|
|
3031
|
-
id?: string;
|
|
3032
|
-
multiFile?: SourceMultiFile;
|
|
3033
|
-
standardJson?: {
|
|
3034
|
-
[key: string]: unknown;
|
|
3035
|
-
};
|
|
3036
|
-
metadata?: {
|
|
3037
|
-
[key: string]: unknown;
|
|
3038
|
-
};
|
|
3039
|
-
solidityVersion?: string;
|
|
3040
|
-
contractName?: string;
|
|
3041
|
-
constructorArgs?: string;
|
|
3042
|
-
};
|
|
3043
|
-
export type Specializations = {
|
|
3044
|
-
constructorArguments?: string;
|
|
3045
|
-
};
|
|
3046
2833
|
export type StateOverride = {
|
|
3047
2834
|
state?: {
|
|
3048
2835
|
[key: string]: string;
|
|
@@ -3053,13 +2840,6 @@ export namespace solidity_service {
|
|
|
3053
2840
|
balance?: string;
|
|
3054
2841
|
code?: string;
|
|
3055
2842
|
};
|
|
3056
|
-
export type StorageSummaryResult = {
|
|
3057
|
-
address?: string;
|
|
3058
|
-
codeAddress?: string;
|
|
3059
|
-
stateVariables?: Array<{
|
|
3060
|
-
[key: string]: unknown;
|
|
3061
|
-
}>;
|
|
3062
|
-
};
|
|
3063
2843
|
export type UpdateForkResponse = {
|
|
3064
2844
|
fork?: Fork;
|
|
3065
2845
|
};
|
|
@@ -3072,7 +2852,7 @@ export namespace solidity_service {
|
|
|
3072
2852
|
*/
|
|
3073
2853
|
chainId?: string;
|
|
3074
2854
|
};
|
|
3075
|
-
url: '/
|
|
2855
|
+
url: '/v1/solidity/estimated_gas_price';
|
|
3076
2856
|
};
|
|
3077
2857
|
export type GetEstimatedGasPriceResponses = {
|
|
3078
2858
|
/**
|
|
@@ -3088,7 +2868,7 @@ export namespace solidity_service {
|
|
|
3088
2868
|
slug: string;
|
|
3089
2869
|
};
|
|
3090
2870
|
query?: never;
|
|
3091
|
-
url: '/
|
|
2871
|
+
url: '/v1/solidity/{owner}/{slug}/fork';
|
|
3092
2872
|
};
|
|
3093
2873
|
export type ListForksResponses = {
|
|
3094
2874
|
/**
|
|
@@ -3104,7 +2884,7 @@ export namespace solidity_service {
|
|
|
3104
2884
|
slug: string;
|
|
3105
2885
|
};
|
|
3106
2886
|
query?: never;
|
|
3107
|
-
url: '/
|
|
2887
|
+
url: '/v1/solidity/{owner}/{slug}/fork';
|
|
3108
2888
|
};
|
|
3109
2889
|
export type CreateForkResponses = {
|
|
3110
2890
|
/**
|
|
@@ -3121,7 +2901,7 @@ export namespace solidity_service {
|
|
|
3121
2901
|
forkId: string;
|
|
3122
2902
|
};
|
|
3123
2903
|
query?: never;
|
|
3124
|
-
url: '/
|
|
2904
|
+
url: '/v1/solidity/{owner}/{slug}/fork/{forkId}/simulation';
|
|
3125
2905
|
};
|
|
3126
2906
|
export type SimulateTransactionOnForkResponses = {
|
|
3127
2907
|
/**
|
|
@@ -3138,7 +2918,7 @@ export namespace solidity_service {
|
|
|
3138
2918
|
forkId: string;
|
|
3139
2919
|
};
|
|
3140
2920
|
query?: never;
|
|
3141
|
-
url: '/
|
|
2921
|
+
url: '/v1/solidity/{owner}/{slug}/fork/{forkId}/simulation_bundle';
|
|
3142
2922
|
};
|
|
3143
2923
|
export type SimulateTransactionBundleOnForkResponses = {
|
|
3144
2924
|
/**
|
|
@@ -3155,7 +2935,7 @@ export namespace solidity_service {
|
|
|
3155
2935
|
id: string;
|
|
3156
2936
|
};
|
|
3157
2937
|
query?: never;
|
|
3158
|
-
url: '/
|
|
2938
|
+
url: '/v1/solidity/{owner}/{slug}/fork/{id}';
|
|
3159
2939
|
};
|
|
3160
2940
|
export type GetForkResponses = {
|
|
3161
2941
|
/**
|
|
@@ -3172,7 +2952,7 @@ export namespace solidity_service {
|
|
|
3172
2952
|
id: string;
|
|
3173
2953
|
};
|
|
3174
2954
|
query?: never;
|
|
3175
|
-
url: '/
|
|
2955
|
+
url: '/v1/solidity/{owner}/{slug}/fork/{id}';
|
|
3176
2956
|
};
|
|
3177
2957
|
export type UpdateForkResponses = {
|
|
3178
2958
|
/**
|
|
@@ -3189,7 +2969,7 @@ export namespace solidity_service {
|
|
|
3189
2969
|
id: string;
|
|
3190
2970
|
};
|
|
3191
2971
|
query?: never;
|
|
3192
|
-
url: '/
|
|
2972
|
+
url: '/v1/solidity/{owner}/{slug}/fork/{id}/info';
|
|
3193
2973
|
};
|
|
3194
2974
|
export type GetForkInfoResponses = {
|
|
3195
2975
|
/**
|
|
@@ -3220,7 +3000,7 @@ export namespace solidity_service {
|
|
|
3220
3000
|
limit?: number;
|
|
3221
3001
|
pageToken?: string;
|
|
3222
3002
|
};
|
|
3223
|
-
url: '/
|
|
3003
|
+
url: '/v1/solidity/{owner}/{slug}/search_transactions';
|
|
3224
3004
|
};
|
|
3225
3005
|
export type SearchTransactionsResponses = {
|
|
3226
3006
|
/**
|
|
@@ -3240,7 +3020,7 @@ export namespace solidity_service {
|
|
|
3240
3020
|
page?: number;
|
|
3241
3021
|
pageSize?: number;
|
|
3242
3022
|
};
|
|
3243
|
-
url: '/
|
|
3023
|
+
url: '/v1/solidity/{owner}/{slug}/simulation';
|
|
3244
3024
|
};
|
|
3245
3025
|
export type GetSimulationsResponses = {
|
|
3246
3026
|
/**
|
|
@@ -3257,7 +3037,7 @@ export namespace solidity_service {
|
|
|
3257
3037
|
simulationId: string;
|
|
3258
3038
|
};
|
|
3259
3039
|
query?: never;
|
|
3260
|
-
url: '/
|
|
3040
|
+
url: '/v1/solidity/{owner}/{slug}/simulation/{simulationId}';
|
|
3261
3041
|
};
|
|
3262
3042
|
export type GetSimulationResponses = {
|
|
3263
3043
|
/**
|
|
@@ -3274,7 +3054,7 @@ export namespace solidity_service {
|
|
|
3274
3054
|
bundleId: string;
|
|
3275
3055
|
};
|
|
3276
3056
|
query?: never;
|
|
3277
|
-
url: '/
|
|
3057
|
+
url: '/v1/solidity/{owner}/{slug}/simulation_bundle/{bundleId}';
|
|
3278
3058
|
};
|
|
3279
3059
|
export type GetSimulationBundleInProjectResponses = {
|
|
3280
3060
|
/**
|
|
@@ -3291,7 +3071,7 @@ export namespace solidity_service {
|
|
|
3291
3071
|
chainId: string;
|
|
3292
3072
|
};
|
|
3293
3073
|
query?: never;
|
|
3294
|
-
url: '/
|
|
3074
|
+
url: '/v1/solidity/{owner}/{slug}/{chainId}/simulation';
|
|
3295
3075
|
};
|
|
3296
3076
|
export type SimulateTransactionResponses = {
|
|
3297
3077
|
/**
|
|
@@ -3308,7 +3088,7 @@ export namespace solidity_service {
|
|
|
3308
3088
|
chainId: string;
|
|
3309
3089
|
};
|
|
3310
3090
|
query?: never;
|
|
3311
|
-
url: '/
|
|
3091
|
+
url: '/v1/solidity/{owner}/{slug}/{chainId}/simulation_bundle';
|
|
3312
3092
|
};
|
|
3313
3093
|
export type SimulateTransactionBundleResponses = {
|
|
3314
3094
|
/**
|
|
@@ -3335,6 +3115,7 @@ export namespace web_service {
|
|
|
3335
3115
|
sqlQueryId?: string;
|
|
3336
3116
|
sqlExecuteEngine?: analytic_service.ExecuteEngine;
|
|
3337
3117
|
enableExperimentalFeatures?: boolean;
|
|
3118
|
+
overlayGraphs?: Array<OverlayGraph>;
|
|
3338
3119
|
};
|
|
3339
3120
|
export type ChartDataSourceType = 'METRICS' | 'NOTES' | 'ANALYTICS' | 'INSIGHTS' | 'EVENTS' | 'RETENTION' | 'SQL';
|
|
3340
3121
|
export type ChartConfig = {
|
|
@@ -3633,6 +3414,23 @@ export namespace web_service {
|
|
|
3633
3414
|
export type NoteAlignment = 'LEFT' | 'CENTER' | 'RIGHT';
|
|
3634
3415
|
export type NoteFontSize = 'MD' | 'SM' | 'LG' | 'XL' | 'XXL';
|
|
3635
3416
|
export type NoteVerticalAlignment = 'TOP' | 'MIDDLE' | 'BOTTOM';
|
|
3417
|
+
/**
|
|
3418
|
+
* An additional graph overlaid on the primary chart, with its own queries
|
|
3419
|
+
* and Y-axis configuration. Chart type defaults to the parent chart type.
|
|
3420
|
+
*/
|
|
3421
|
+
export type OverlayGraph = {
|
|
3422
|
+
insightsQueries?: Array<insights_service.QueryRequestQuery>;
|
|
3423
|
+
formulas?: Array<common.Formula>;
|
|
3424
|
+
yAxis?: ChartConfigYAxisConfig;
|
|
3425
|
+
name?: string;
|
|
3426
|
+
lineConfig?: ChartConfigLineConfig;
|
|
3427
|
+
valueConfig?: ChartConfigValueConfig;
|
|
3428
|
+
dataConfig?: ChartConfigDataConfig;
|
|
3429
|
+
sqlQuery?: string;
|
|
3430
|
+
sqlQueryId?: string;
|
|
3431
|
+
sqlExecuteEngine?: analytic_service.ExecuteEngine;
|
|
3432
|
+
chartType?: ChartType2;
|
|
3433
|
+
};
|
|
3636
3434
|
export type Panel = {
|
|
3637
3435
|
id?: string;
|
|
3638
3436
|
name?: string;
|
|
@@ -3666,7 +3464,7 @@ export namespace web_service {
|
|
|
3666
3464
|
*/
|
|
3667
3465
|
slug?: string;
|
|
3668
3466
|
};
|
|
3669
|
-
url: '/
|
|
3467
|
+
url: '/v1/dashboards';
|
|
3670
3468
|
};
|
|
3671
3469
|
export type ListDashboardsResponses = {
|
|
3672
3470
|
/**
|
|
@@ -3679,7 +3477,7 @@ export namespace web_service {
|
|
|
3679
3477
|
body: ImportDashboardRequest;
|
|
3680
3478
|
path?: never;
|
|
3681
3479
|
query?: never;
|
|
3682
|
-
url: '/
|
|
3480
|
+
url: '/v1/dashboards/json';
|
|
3683
3481
|
};
|
|
3684
3482
|
export type ImportDashboardResponses = {
|
|
3685
3483
|
/**
|
|
@@ -3710,7 +3508,7 @@ export namespace web_service {
|
|
|
3710
3508
|
*/
|
|
3711
3509
|
slug?: string;
|
|
3712
3510
|
};
|
|
3713
|
-
url: '/
|
|
3511
|
+
url: '/v1/dashboards/{dashboardId}';
|
|
3714
3512
|
};
|
|
3715
3513
|
export type DeleteDashboardResponses = {
|
|
3716
3514
|
/**
|
|
@@ -3741,7 +3539,7 @@ export namespace web_service {
|
|
|
3741
3539
|
*/
|
|
3742
3540
|
slug?: string;
|
|
3743
3541
|
};
|
|
3744
|
-
url: '/
|
|
3542
|
+
url: '/v1/dashboards/{dashboardId}';
|
|
3745
3543
|
};
|
|
3746
3544
|
export type GetDashboardResponses = {
|
|
3747
3545
|
/**
|
|
@@ -3759,7 +3557,7 @@ export namespace web_service {
|
|
|
3759
3557
|
limit?: number;
|
|
3760
3558
|
offset?: number;
|
|
3761
3559
|
};
|
|
3762
|
-
url: '/
|
|
3560
|
+
url: '/v1/dashboards/{dashboardId}/history';
|
|
3763
3561
|
};
|
|
3764
3562
|
export type GetDashboardHistoryResponses = {
|
|
3765
3563
|
/**
|
|
@@ -3774,7 +3572,7 @@ export namespace web_service {
|
|
|
3774
3572
|
dashboardId: string;
|
|
3775
3573
|
};
|
|
3776
3574
|
query?: never;
|
|
3777
|
-
url: '/
|
|
3575
|
+
url: '/v1/dashboards/{dashboardId}/json';
|
|
3778
3576
|
};
|
|
3779
3577
|
export type ExportDashboardResponses = {
|
|
3780
3578
|
/**
|
|
@@ -3805,7 +3603,7 @@ export namespace web_service {
|
|
|
3805
3603
|
*/
|
|
3806
3604
|
projectId?: string;
|
|
3807
3605
|
};
|
|
3808
|
-
url: '/
|
|
3606
|
+
url: '/v1/projects/{owner}/{slug}/dashboards';
|
|
3809
3607
|
};
|
|
3810
3608
|
export type ListDashboards2Responses = {
|
|
3811
3609
|
/**
|
|
@@ -3836,7 +3634,7 @@ export namespace web_service {
|
|
|
3836
3634
|
*/
|
|
3837
3635
|
projectId?: string;
|
|
3838
3636
|
};
|
|
3839
|
-
url: '/
|
|
3637
|
+
url: '/v1/projects/{owner}/{slug}/dashboards/{dashboardId}';
|
|
3840
3638
|
};
|
|
3841
3639
|
export type GetDashboard2Responses = {
|
|
3842
3640
|
/**
|
|
@@ -3849,7 +3647,7 @@ export namespace web_service {
|
|
|
3849
3647
|
body?: never;
|
|
3850
3648
|
path?: never;
|
|
3851
3649
|
query?: never;
|
|
3852
|
-
url: '/
|
|
3650
|
+
url: '/v1/users/link';
|
|
3853
3651
|
};
|
|
3854
3652
|
export type CreateLinkSessionResponses = {
|
|
3855
3653
|
/**
|
|
@@ -3869,7 +3667,7 @@ export namespace solidit_service {
|
|
|
3869
3667
|
id: string;
|
|
3870
3668
|
};
|
|
3871
3669
|
query?: never;
|
|
3872
|
-
url: '/
|
|
3670
|
+
url: '/v1/solidity/{owner}/{slug}/fork/{id}';
|
|
3873
3671
|
};
|
|
3874
3672
|
export type DeleteForkResponses = {
|
|
3875
3673
|
/**
|