@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/dist/src/types.gen.d.ts
CHANGED
|
@@ -111,7 +111,7 @@ export declare namespace ai_service {
|
|
|
111
111
|
body: ai_service.ChatSession;
|
|
112
112
|
path?: never;
|
|
113
113
|
query?: never;
|
|
114
|
-
url: '/
|
|
114
|
+
url: '/v1/ai/chat';
|
|
115
115
|
};
|
|
116
116
|
type CreateChatSessionResponses = {
|
|
117
117
|
/**
|
|
@@ -134,7 +134,7 @@ export declare namespace ai_service {
|
|
|
134
134
|
*/
|
|
135
135
|
cursorPosition?: number;
|
|
136
136
|
};
|
|
137
|
-
url: '/
|
|
137
|
+
url: '/v1/ai/chat/{sessionId}';
|
|
138
138
|
};
|
|
139
139
|
type QueryChatSessionResponses = {
|
|
140
140
|
/**
|
|
@@ -152,7 +152,7 @@ export declare namespace ai_service {
|
|
|
152
152
|
sessionId: string;
|
|
153
153
|
};
|
|
154
154
|
query?: never;
|
|
155
|
-
url: '/
|
|
155
|
+
url: '/v1/ai/chat/{sessionId}/message';
|
|
156
156
|
};
|
|
157
157
|
type PostSessionMessageResponses = {
|
|
158
158
|
/**
|
|
@@ -165,7 +165,7 @@ export declare namespace ai_service {
|
|
|
165
165
|
body?: never;
|
|
166
166
|
path?: never;
|
|
167
167
|
query?: never;
|
|
168
|
-
url: '/
|
|
168
|
+
url: '/v1/ai/healthz';
|
|
169
169
|
};
|
|
170
170
|
type HealthzResponses = {
|
|
171
171
|
/**
|
|
@@ -320,7 +320,7 @@ export declare namespace alert_service {
|
|
|
320
320
|
body: alert_service.SaveAlertRuleRequest;
|
|
321
321
|
path?: never;
|
|
322
322
|
query?: never;
|
|
323
|
-
url: '/
|
|
323
|
+
url: '/v1/alerts/rule';
|
|
324
324
|
};
|
|
325
325
|
type SaveAlertRuleResponses = {
|
|
326
326
|
/**
|
|
@@ -337,7 +337,7 @@ export declare namespace alert_service {
|
|
|
337
337
|
projectId: string;
|
|
338
338
|
};
|
|
339
339
|
query?: never;
|
|
340
|
-
url: '/
|
|
340
|
+
url: '/v1/alerts/rule/project/{projectId}';
|
|
341
341
|
};
|
|
342
342
|
type GetAlertRulesResponses = {
|
|
343
343
|
/**
|
|
@@ -352,7 +352,7 @@ export declare namespace alert_service {
|
|
|
352
352
|
id: string;
|
|
353
353
|
};
|
|
354
354
|
query?: never;
|
|
355
|
-
url: '/
|
|
355
|
+
url: '/v1/alerts/rule/{id}';
|
|
356
356
|
};
|
|
357
357
|
type DeleteAlertRuleResponses = {
|
|
358
358
|
/**
|
|
@@ -369,7 +369,7 @@ export declare namespace alert_service {
|
|
|
369
369
|
id: string;
|
|
370
370
|
};
|
|
371
371
|
query?: never;
|
|
372
|
-
url: '/
|
|
372
|
+
url: '/v1/alerts/rule/{id}';
|
|
373
373
|
};
|
|
374
374
|
type SaveAlertRule2Responses = {
|
|
375
375
|
/**
|
|
@@ -389,7 +389,7 @@ export declare namespace alert_service {
|
|
|
389
389
|
page?: number;
|
|
390
390
|
pageSize?: number;
|
|
391
391
|
};
|
|
392
|
-
url: '/
|
|
392
|
+
url: '/v1/alerts/{ruleId}';
|
|
393
393
|
};
|
|
394
394
|
type GetAlertResponses = {
|
|
395
395
|
/**
|
|
@@ -513,17 +513,6 @@ export declare namespace analytic_service {
|
|
|
513
513
|
type QuerySqlResultResponse = {
|
|
514
514
|
executionInfo?: ExecutionInfo;
|
|
515
515
|
};
|
|
516
|
-
type QuerySegmentationResponse = {
|
|
517
|
-
results?: Array<QuerySegmentationResponseResult>;
|
|
518
|
-
};
|
|
519
|
-
type QuerySegmentationResponseResult = {
|
|
520
|
-
matrix?: common.Matrix;
|
|
521
|
-
error?: string;
|
|
522
|
-
alias?: string;
|
|
523
|
-
id?: string;
|
|
524
|
-
computeStats?: common.ComputeStats;
|
|
525
|
-
color?: string;
|
|
526
|
-
};
|
|
527
516
|
type QueryTableResponse = {
|
|
528
517
|
table?: Table;
|
|
529
518
|
computeStats?: common.ComputeStats;
|
|
@@ -578,18 +567,6 @@ export declare namespace analytic_service {
|
|
|
578
567
|
source?: string;
|
|
579
568
|
cachePolicy?: common.CachePolicy;
|
|
580
569
|
};
|
|
581
|
-
type SegmentationRequest = {
|
|
582
|
-
projectOwner?: string;
|
|
583
|
-
projectSlug?: string;
|
|
584
|
-
projectId?: string;
|
|
585
|
-
version?: number;
|
|
586
|
-
timeRange?: common.TimeRangeLite;
|
|
587
|
-
queries?: Array<common.SegmentationQuery>;
|
|
588
|
-
formulas?: Array<common.Formula>;
|
|
589
|
-
debug?: boolean;
|
|
590
|
-
limit?: number;
|
|
591
|
-
offset?: number;
|
|
592
|
-
};
|
|
593
570
|
type Source = 'SQL_EDITOR' | 'DASHBOARD' | 'ASYNC_TRIGGER' | 'CURL' | 'ENDPOINT' | 'EXPORT' | 'USER_MATERIALIZED_VIEW_CREATOR' | 'SQL_ALERT';
|
|
594
571
|
type SyncExecuteSqlResponse = {
|
|
595
572
|
runtimeCost?: string;
|
|
@@ -625,7 +602,7 @@ export declare namespace analytic_service {
|
|
|
625
602
|
body: analytic_service.SaveSharingSqlRequest;
|
|
626
603
|
path?: never;
|
|
627
604
|
query?: never;
|
|
628
|
-
url: '/
|
|
605
|
+
url: '/v1/analytics/sql/sharing';
|
|
629
606
|
};
|
|
630
607
|
type SaveSharingSqlResponses = {
|
|
631
608
|
/**
|
|
@@ -640,7 +617,7 @@ export declare namespace analytic_service {
|
|
|
640
617
|
id: string;
|
|
641
618
|
};
|
|
642
619
|
query?: never;
|
|
643
|
-
url: '/
|
|
620
|
+
url: '/v1/analytics/sql/sharing/{id}';
|
|
644
621
|
};
|
|
645
622
|
type GetSharingSqlResponses = {
|
|
646
623
|
/**
|
|
@@ -662,7 +639,7 @@ export declare namespace analytic_service {
|
|
|
662
639
|
includeExternals?: boolean;
|
|
663
640
|
includeDash?: boolean;
|
|
664
641
|
};
|
|
665
|
-
url: '/
|
|
642
|
+
url: '/v1/analytics/sql/tables';
|
|
666
643
|
};
|
|
667
644
|
type QueryTables2Responses = {
|
|
668
645
|
/**
|
|
@@ -694,7 +671,7 @@ export declare namespace analytic_service {
|
|
|
694
671
|
*/
|
|
695
672
|
version?: number;
|
|
696
673
|
};
|
|
697
|
-
url: '/
|
|
674
|
+
url: '/v1/analytics/{owner}/{slug}/sql/cancel_query/{executionId}';
|
|
698
675
|
};
|
|
699
676
|
type CancelSqlQueryResponses = {
|
|
700
677
|
/**
|
|
@@ -718,7 +695,7 @@ export declare namespace analytic_service {
|
|
|
718
695
|
slug: string;
|
|
719
696
|
};
|
|
720
697
|
query?: never;
|
|
721
|
-
url: '/
|
|
698
|
+
url: '/v1/analytics/{owner}/{slug}/sql/execute';
|
|
722
699
|
};
|
|
723
700
|
type ExecuteSqlResponses = {
|
|
724
701
|
/**
|
|
@@ -740,7 +717,7 @@ export declare namespace analytic_service {
|
|
|
740
717
|
slug: string;
|
|
741
718
|
};
|
|
742
719
|
query?: never;
|
|
743
|
-
url: '/
|
|
720
|
+
url: '/v1/analytics/{owner}/{slug}/sql/execute/async';
|
|
744
721
|
};
|
|
745
722
|
type ExecuteSqlAsyncResponses = {
|
|
746
723
|
/**
|
|
@@ -772,7 +749,7 @@ export declare namespace analytic_service {
|
|
|
772
749
|
*/
|
|
773
750
|
version?: number;
|
|
774
751
|
};
|
|
775
|
-
url: '/
|
|
752
|
+
url: '/v1/analytics/{owner}/{slug}/sql/query_execution_detail/{executionId}';
|
|
776
753
|
};
|
|
777
754
|
type QuerySqlExecutionDetailResponses = {
|
|
778
755
|
/**
|
|
@@ -804,7 +781,7 @@ export declare namespace analytic_service {
|
|
|
804
781
|
*/
|
|
805
782
|
version?: number;
|
|
806
783
|
};
|
|
807
|
-
url: '/
|
|
784
|
+
url: '/v1/analytics/{owner}/{slug}/sql/query_result/{executionId}';
|
|
808
785
|
};
|
|
809
786
|
type QuerySqlResultResponses = {
|
|
810
787
|
/**
|
|
@@ -826,7 +803,7 @@ export declare namespace analytic_service {
|
|
|
826
803
|
slug: string;
|
|
827
804
|
};
|
|
828
805
|
query?: never;
|
|
829
|
-
url: '/
|
|
806
|
+
url: '/v1/analytics/{owner}/{slug}/sql/refreshable_materialized_view';
|
|
830
807
|
};
|
|
831
808
|
type SaveRefreshableMaterializedViewResponses = {
|
|
832
809
|
/**
|
|
@@ -854,7 +831,7 @@ export declare namespace analytic_service {
|
|
|
854
831
|
*/
|
|
855
832
|
projectId?: string;
|
|
856
833
|
};
|
|
857
|
-
url: '/
|
|
834
|
+
url: '/v1/analytics/{owner}/{slug}/sql/refreshable_materialized_view/{name}';
|
|
858
835
|
};
|
|
859
836
|
type DeleteRefreshableMaterializedViewResponses = {
|
|
860
837
|
/**
|
|
@@ -884,7 +861,7 @@ export declare namespace analytic_service {
|
|
|
884
861
|
*/
|
|
885
862
|
projectId?: string;
|
|
886
863
|
};
|
|
887
|
-
url: '/
|
|
864
|
+
url: '/v1/analytics/{owner}/{slug}/sql/refreshable_materialized_view/{name}';
|
|
888
865
|
};
|
|
889
866
|
type GetRefreshableMaterializedStatusResponses = {
|
|
890
867
|
/**
|
|
@@ -911,7 +888,7 @@ export declare namespace analytic_service {
|
|
|
911
888
|
*/
|
|
912
889
|
projectId?: string;
|
|
913
890
|
};
|
|
914
|
-
url: '/
|
|
891
|
+
url: '/v1/analytics/{owner}/{slug}/sql/refreshable_materialized_views';
|
|
915
892
|
};
|
|
916
893
|
type ListRefreshableMaterializedViewsResponses = {
|
|
917
894
|
/**
|
|
@@ -933,7 +910,7 @@ export declare namespace analytic_service {
|
|
|
933
910
|
slug: string;
|
|
934
911
|
};
|
|
935
912
|
query?: never;
|
|
936
|
-
url: '/
|
|
913
|
+
url: '/v1/analytics/{owner}/{slug}/sql/save';
|
|
937
914
|
};
|
|
938
915
|
type SaveSqlResponses = {
|
|
939
916
|
/**
|
|
@@ -955,7 +932,7 @@ export declare namespace analytic_service {
|
|
|
955
932
|
slug: string;
|
|
956
933
|
};
|
|
957
934
|
query?: never;
|
|
958
|
-
url: '/
|
|
935
|
+
url: '/v1/analytics/{owner}/{slug}/sql/save';
|
|
959
936
|
};
|
|
960
937
|
type SaveSql2Responses = {
|
|
961
938
|
/**
|
|
@@ -978,7 +955,7 @@ export declare namespace analytic_service {
|
|
|
978
955
|
includeExternals?: boolean;
|
|
979
956
|
includeDash?: boolean;
|
|
980
957
|
};
|
|
981
|
-
url: '/
|
|
958
|
+
url: '/v1/analytics/{owner}/{slug}/sql/tables';
|
|
982
959
|
};
|
|
983
960
|
type QueryTablesResponses = {
|
|
984
961
|
/**
|
|
@@ -994,7 +971,7 @@ export declare namespace analytic_service {
|
|
|
994
971
|
slug: string;
|
|
995
972
|
};
|
|
996
973
|
query?: never;
|
|
997
|
-
url: '/
|
|
974
|
+
url: '/v1/eventlogs/{owner}/{slug}';
|
|
998
975
|
};
|
|
999
976
|
type QueryLogResponses = {
|
|
1000
977
|
/**
|
|
@@ -1045,7 +1022,7 @@ export declare namespace analytic_service {
|
|
|
1045
1022
|
*/
|
|
1046
1023
|
'cachePolicy.noCache'?: boolean;
|
|
1047
1024
|
};
|
|
1048
|
-
url: '/
|
|
1025
|
+
url: '/v1/eventlogs/{owner}/{slug}/query';
|
|
1049
1026
|
};
|
|
1050
1027
|
type QueryLog2Responses = {
|
|
1051
1028
|
/**
|
|
@@ -1064,7 +1041,7 @@ export declare namespace analytic_service {
|
|
|
1064
1041
|
version?: number;
|
|
1065
1042
|
name?: string;
|
|
1066
1043
|
};
|
|
1067
|
-
url: '/
|
|
1044
|
+
url: '/v1/sql/table';
|
|
1068
1045
|
};
|
|
1069
1046
|
type QueryTable2Responses = {
|
|
1070
1047
|
/**
|
|
@@ -1082,7 +1059,7 @@ export declare namespace analytic_service {
|
|
|
1082
1059
|
projectId?: string;
|
|
1083
1060
|
version?: number;
|
|
1084
1061
|
};
|
|
1085
|
-
url: '/
|
|
1062
|
+
url: '/v1/sql/tables';
|
|
1086
1063
|
};
|
|
1087
1064
|
type ListTables2Responses = {
|
|
1088
1065
|
/**
|
|
@@ -1102,7 +1079,7 @@ export declare namespace analytic_service {
|
|
|
1102
1079
|
projectId?: string;
|
|
1103
1080
|
version?: number;
|
|
1104
1081
|
};
|
|
1105
|
-
url: '/
|
|
1082
|
+
url: '/v1/sql/{owner}/{slug}/table/{name}';
|
|
1106
1083
|
};
|
|
1107
1084
|
type QueryTableResponses = {
|
|
1108
1085
|
/**
|
|
@@ -1121,7 +1098,7 @@ export declare namespace analytic_service {
|
|
|
1121
1098
|
projectId?: string;
|
|
1122
1099
|
version?: number;
|
|
1123
1100
|
};
|
|
1124
|
-
url: '/
|
|
1101
|
+
url: '/v1/sql/{owner}/{slug}/tables';
|
|
1125
1102
|
};
|
|
1126
1103
|
type ListTablesResponses = {
|
|
1127
1104
|
/**
|
|
@@ -1427,16 +1404,6 @@ export declare namespace common {
|
|
|
1427
1404
|
createdAt?: string;
|
|
1428
1405
|
syncAt?: string;
|
|
1429
1406
|
};
|
|
1430
|
-
type ProjectVariables = {
|
|
1431
|
-
projectId?: string;
|
|
1432
|
-
variables?: Array<ProjectVariablesVariable>;
|
|
1433
|
-
};
|
|
1434
|
-
type ProjectVariablesVariable = {
|
|
1435
|
-
key?: string;
|
|
1436
|
-
value?: string;
|
|
1437
|
-
isSecret?: boolean;
|
|
1438
|
-
updatedAt?: string;
|
|
1439
|
-
};
|
|
1440
1407
|
type ProjectView = {
|
|
1441
1408
|
id?: string;
|
|
1442
1409
|
projectId?: string;
|
|
@@ -1836,7 +1803,7 @@ export declare namespace google {
|
|
|
1836
1803
|
networkId?: string;
|
|
1837
1804
|
txHash?: string;
|
|
1838
1805
|
};
|
|
1839
|
-
url: '/
|
|
1806
|
+
url: '/v1/move/call_trace';
|
|
1840
1807
|
};
|
|
1841
1808
|
type GetCallTraceResponses = {
|
|
1842
1809
|
/**
|
|
@@ -1867,7 +1834,7 @@ export declare namespace google {
|
|
|
1867
1834
|
*/
|
|
1868
1835
|
ignoreGasCost?: boolean;
|
|
1869
1836
|
};
|
|
1870
|
-
url: '/
|
|
1837
|
+
url: '/v1/solidity/{owner}/{slug}/fork/{forkId}/bundle/{bundleId}/call_trace';
|
|
1871
1838
|
};
|
|
1872
1839
|
type GetCallTraceOnForkBundleResponses = {
|
|
1873
1840
|
/**
|
|
@@ -1898,7 +1865,7 @@ export declare namespace google {
|
|
|
1898
1865
|
*/
|
|
1899
1866
|
ignoreGasCost?: boolean;
|
|
1900
1867
|
};
|
|
1901
|
-
url: '/
|
|
1868
|
+
url: '/v1/solidity/{owner}/{slug}/fork/{forkId}/simulation/{simulationId}/call_trace';
|
|
1902
1869
|
};
|
|
1903
1870
|
type GetCallTraceOnForkSimulationResponses = {
|
|
1904
1871
|
/**
|
|
@@ -1929,7 +1896,7 @@ export declare namespace google {
|
|
|
1929
1896
|
*/
|
|
1930
1897
|
ignoreGasCost?: boolean;
|
|
1931
1898
|
};
|
|
1932
|
-
url: '/
|
|
1899
|
+
url: '/v1/solidity/{owner}/{slug}/fork/{forkId}/transaction/{txHash}/call_trace';
|
|
1933
1900
|
};
|
|
1934
1901
|
type GetCallTraceOnForkTransactionResponses = {
|
|
1935
1902
|
/**
|
|
@@ -1960,7 +1927,7 @@ export declare namespace google {
|
|
|
1960
1927
|
*/
|
|
1961
1928
|
ignoreGasCost?: boolean;
|
|
1962
1929
|
};
|
|
1963
|
-
url: '/
|
|
1930
|
+
url: '/v1/solidity/{owner}/{slug}/{chainId}/bundle/{bundleId}/call_trace';
|
|
1964
1931
|
};
|
|
1965
1932
|
type GetCallTraceByBundleResponses = {
|
|
1966
1933
|
/**
|
|
@@ -1991,7 +1958,7 @@ export declare namespace google {
|
|
|
1991
1958
|
*/
|
|
1992
1959
|
ignoreGasCost?: boolean;
|
|
1993
1960
|
};
|
|
1994
|
-
url: '/
|
|
1961
|
+
url: '/v1/solidity/{owner}/{slug}/{chainId}/simulation/{simulationId}/call_trace';
|
|
1995
1962
|
};
|
|
1996
1963
|
type GetCallTraceBySimulationResponses = {
|
|
1997
1964
|
/**
|
|
@@ -2022,7 +1989,7 @@ export declare namespace google {
|
|
|
2022
1989
|
*/
|
|
2023
1990
|
ignoreGasCost?: boolean;
|
|
2024
1991
|
};
|
|
2025
|
-
url: '/
|
|
1992
|
+
url: '/v1/solidity/{owner}/{slug}/{chainId}/transaction/{txHash}/call_trace';
|
|
2026
1993
|
};
|
|
2027
1994
|
type GetCallTraceByTransactionResponses = {
|
|
2028
1995
|
/**
|
|
@@ -2081,7 +2048,7 @@ export declare namespace insights_service {
|
|
|
2081
2048
|
offset?: number;
|
|
2082
2049
|
searchQuery?: string;
|
|
2083
2050
|
};
|
|
2084
|
-
url: '/
|
|
2051
|
+
url: '/v1/insights/coins';
|
|
2085
2052
|
};
|
|
2086
2053
|
type ListCoins2Responses = {
|
|
2087
2054
|
/**
|
|
@@ -2103,7 +2070,7 @@ export declare namespace insights_service {
|
|
|
2103
2070
|
offset?: number;
|
|
2104
2071
|
searchQuery?: string;
|
|
2105
2072
|
};
|
|
2106
|
-
url: '/
|
|
2073
|
+
url: '/v1/insights/{owner}/{slug}/coins';
|
|
2107
2074
|
};
|
|
2108
2075
|
type ListCoinsResponses = {
|
|
2109
2076
|
/**
|
|
@@ -2125,7 +2092,7 @@ export declare namespace insights_service {
|
|
|
2125
2092
|
slug: string;
|
|
2126
2093
|
};
|
|
2127
2094
|
query?: never;
|
|
2128
|
-
url: '/
|
|
2095
|
+
url: '/v1/insights/{owner}/{slug}/query';
|
|
2129
2096
|
};
|
|
2130
2097
|
type QueryResponses = {
|
|
2131
2098
|
/**
|
|
@@ -2233,7 +2200,7 @@ export declare namespace metrics_service {
|
|
|
2233
2200
|
labelLimit?: string;
|
|
2234
2201
|
labelSearchQuery?: string;
|
|
2235
2202
|
};
|
|
2236
|
-
url: '/
|
|
2203
|
+
url: '/v1/metrics';
|
|
2237
2204
|
};
|
|
2238
2205
|
type GetMetricsResponses = {
|
|
2239
2206
|
/**
|
|
@@ -2255,7 +2222,7 @@ export declare namespace metrics_service {
|
|
|
2255
2222
|
slug: string;
|
|
2256
2223
|
};
|
|
2257
2224
|
query?: never;
|
|
2258
|
-
url: '/
|
|
2225
|
+
url: '/v1/metrics/{owner}/{slug}/query';
|
|
2259
2226
|
};
|
|
2260
2227
|
type QueryInstantResponses = {
|
|
2261
2228
|
/**
|
|
@@ -2277,7 +2244,7 @@ export declare namespace metrics_service {
|
|
|
2277
2244
|
slug: string;
|
|
2278
2245
|
};
|
|
2279
2246
|
query?: never;
|
|
2280
|
-
url: '/
|
|
2247
|
+
url: '/v1/metrics/{owner}/{slug}/query_range';
|
|
2281
2248
|
};
|
|
2282
2249
|
type QueryRangeResponses = {
|
|
2283
2250
|
/**
|
|
@@ -2324,7 +2291,7 @@ export declare namespace move_service {
|
|
|
2324
2291
|
networkId?: string;
|
|
2325
2292
|
txDigest?: string;
|
|
2326
2293
|
};
|
|
2327
|
-
url: '/
|
|
2294
|
+
url: '/v1/move/sui_call_trace';
|
|
2328
2295
|
};
|
|
2329
2296
|
type GetSuiCallTraceResponses = {
|
|
2330
2297
|
/**
|
|
@@ -2426,7 +2393,7 @@ export declare namespace price_service {
|
|
|
2426
2393
|
source?: string;
|
|
2427
2394
|
'experimentalFlag.enablePythSource'?: boolean;
|
|
2428
2395
|
};
|
|
2429
|
-
url: '/
|
|
2396
|
+
url: '/v1/prices';
|
|
2430
2397
|
};
|
|
2431
2398
|
type GetPriceResponses = {
|
|
2432
2399
|
/**
|
|
@@ -2439,7 +2406,7 @@ export declare namespace price_service {
|
|
|
2439
2406
|
body: price_service.AddCoinByGeckoRequest;
|
|
2440
2407
|
path?: never;
|
|
2441
2408
|
query?: never;
|
|
2442
|
-
url: '/
|
|
2409
|
+
url: '/v1/prices/add_coin_by_gecko';
|
|
2443
2410
|
};
|
|
2444
2411
|
type AddCoinByGeckoResponses = {
|
|
2445
2412
|
/**
|
|
@@ -2452,7 +2419,7 @@ export declare namespace price_service {
|
|
|
2452
2419
|
body: price_service.BatchGetPricesRequest;
|
|
2453
2420
|
path?: never;
|
|
2454
2421
|
query?: never;
|
|
2455
|
-
url: '/
|
|
2422
|
+
url: '/v1/prices/batch';
|
|
2456
2423
|
};
|
|
2457
2424
|
type BatchGetPricesResponses = {
|
|
2458
2425
|
/**
|
|
@@ -2465,7 +2432,7 @@ export declare namespace price_service {
|
|
|
2465
2432
|
body?: never;
|
|
2466
2433
|
path?: never;
|
|
2467
2434
|
query?: never;
|
|
2468
|
-
url: '/
|
|
2435
|
+
url: '/v1/prices/check_latest';
|
|
2469
2436
|
};
|
|
2470
2437
|
type CheckLatestPriceResponses = {
|
|
2471
2438
|
/**
|
|
@@ -2483,7 +2450,7 @@ export declare namespace price_service {
|
|
|
2483
2450
|
searchQuery?: string;
|
|
2484
2451
|
chain?: string;
|
|
2485
2452
|
};
|
|
2486
|
-
url: '/
|
|
2453
|
+
url: '/v1/prices/coins';
|
|
2487
2454
|
};
|
|
2488
2455
|
type PriceListCoinsResponses = {
|
|
2489
2456
|
/**
|
|
@@ -2533,12 +2500,6 @@ export declare namespace processor_service {
|
|
|
2533
2500
|
errorRecord?: common.ErrorRecord;
|
|
2534
2501
|
};
|
|
2535
2502
|
type ChainStateStatusState = 'UNKNOWN' | 'ERROR' | 'CATCHING_UP' | 'PROCESSING_LATEST' | 'QUEUING';
|
|
2536
|
-
type DownloadProcessorResponse = {
|
|
2537
|
-
url?: string;
|
|
2538
|
-
};
|
|
2539
|
-
type GetProcessorResponse = {
|
|
2540
|
-
processor?: Processor;
|
|
2541
|
-
};
|
|
2542
2503
|
type GetProcessorSourceFilesResponse = {
|
|
2543
2504
|
sourceFiles?: Array<ProcessorSourceFile>;
|
|
2544
2505
|
};
|
|
@@ -2580,85 +2541,15 @@ export declare namespace processor_service {
|
|
|
2580
2541
|
errorRecord?: common.ErrorRecord;
|
|
2581
2542
|
};
|
|
2582
2543
|
type GetProcessorStatusResponseProcessorStatusState = 'UNKNOWN' | 'ERROR' | 'STARTING' | 'PROCESSING';
|
|
2583
|
-
type GetProcessorWithProjectResponse = {
|
|
2584
|
-
processor?: Processor;
|
|
2585
|
-
project?: common.Project;
|
|
2586
|
-
};
|
|
2587
|
-
type GetProcessorsResponse = {
|
|
2588
|
-
processors?: Array<Processor>;
|
|
2589
|
-
};
|
|
2590
2544
|
type NetworkOverride = {
|
|
2591
2545
|
chain?: string;
|
|
2592
2546
|
host?: string;
|
|
2593
2547
|
};
|
|
2594
|
-
/**
|
|
2595
|
-
* This represents a processor which backend works on.
|
|
2596
|
-
*/
|
|
2597
|
-
type Processor = {
|
|
2598
|
-
/**
|
|
2599
|
-
* The unique processor id.
|
|
2600
|
-
*/
|
|
2601
|
-
processorId?: string;
|
|
2602
|
-
/**
|
|
2603
|
-
* The project this processor belongs to.
|
|
2604
|
-
*/
|
|
2605
|
-
projectId?: string;
|
|
2606
|
-
/**
|
|
2607
|
-
* The version of the code_url below.
|
|
2608
|
-
*/
|
|
2609
|
-
version?: number;
|
|
2610
|
-
sdkVersion?: string;
|
|
2611
|
-
/**
|
|
2612
|
-
* Call should be able to fetch the code to run from code_url.
|
|
2613
|
-
*/
|
|
2614
|
-
codeUrl?: string;
|
|
2615
|
-
chainStates?: Array<ChainState>;
|
|
2616
|
-
/**
|
|
2617
|
-
* If non empty, this is the contract associated with the processor.
|
|
2618
|
-
*/
|
|
2619
|
-
contractId?: string;
|
|
2620
|
-
versionState?: ProcessorVersionState;
|
|
2621
|
-
debug?: boolean;
|
|
2622
|
-
/**
|
|
2623
|
-
* The timescale-db sharding index of this processor.
|
|
2624
|
-
*/
|
|
2625
|
-
timescaleShardingIndex?: number;
|
|
2626
|
-
versionLabel?: string;
|
|
2627
|
-
ipfsHash?: string;
|
|
2628
|
-
debugFork?: string;
|
|
2629
|
-
/**
|
|
2630
|
-
* The created timestamp of the processor.
|
|
2631
|
-
*/
|
|
2632
|
-
createdAt?: string;
|
|
2633
|
-
/**
|
|
2634
|
-
* The clickhouse sharding index of this processor.
|
|
2635
|
-
*/
|
|
2636
|
-
clickhouseShardingIndex?: number;
|
|
2637
|
-
k8sClusterId?: number;
|
|
2638
|
-
enableMaterializedView?: boolean;
|
|
2639
|
-
referenceProjectId?: string;
|
|
2640
|
-
networkOverrides?: Array<NetworkOverride>;
|
|
2641
|
-
eventlogMigrateStatus?: number;
|
|
2642
|
-
eventlogVersion?: number;
|
|
2643
|
-
pause?: boolean;
|
|
2644
|
-
pauseAt?: string;
|
|
2645
|
-
pauseReason?: string;
|
|
2646
|
-
entitySchemaVersion?: number;
|
|
2647
|
-
driverVersion?: number;
|
|
2648
|
-
numWorkers?: number;
|
|
2649
|
-
isBinary?: boolean;
|
|
2650
|
-
chainId?: string;
|
|
2651
|
-
requiredChains?: Array<string>;
|
|
2652
|
-
createTxHash?: string;
|
|
2653
|
-
};
|
|
2654
2548
|
type ProcessorSourceFile = {
|
|
2655
2549
|
path?: string;
|
|
2656
2550
|
content?: string;
|
|
2657
2551
|
};
|
|
2658
2552
|
type ProcessorVersionState = 'UNKNOWN' | 'PENDING' | 'ACTIVE' | 'OBSOLETE';
|
|
2659
|
-
type UpdateChainProcessorStatusResponse = {
|
|
2660
|
-
[key: string]: unknown;
|
|
2661
|
-
};
|
|
2662
2553
|
type ActivatePendingVersionData = {
|
|
2663
2554
|
body?: never;
|
|
2664
2555
|
path: {
|
|
@@ -2666,7 +2557,7 @@ export declare namespace processor_service {
|
|
|
2666
2557
|
slug: string;
|
|
2667
2558
|
};
|
|
2668
2559
|
query?: never;
|
|
2669
|
-
url: '/
|
|
2560
|
+
url: '/v1/processors/{owner}/{slug}/activate_pending';
|
|
2670
2561
|
};
|
|
2671
2562
|
type ActivatePendingVersionResponses = {
|
|
2672
2563
|
/**
|
|
@@ -2689,7 +2580,7 @@ export declare namespace processor_service {
|
|
|
2689
2580
|
*/
|
|
2690
2581
|
version?: number;
|
|
2691
2582
|
};
|
|
2692
|
-
url: '/
|
|
2583
|
+
url: '/v1/processors/{owner}/{slug}/source_files';
|
|
2693
2584
|
};
|
|
2694
2585
|
type GetProcessorSourceFilesResponses = {
|
|
2695
2586
|
/**
|
|
@@ -2712,7 +2603,7 @@ export declare namespace processor_service {
|
|
|
2712
2603
|
*/
|
|
2713
2604
|
version?: 'ACTIVE' | 'PENDING' | 'ALL';
|
|
2714
2605
|
};
|
|
2715
|
-
url: '/
|
|
2606
|
+
url: '/v1/processors/{owner}/{slug}/status';
|
|
2716
2607
|
};
|
|
2717
2608
|
type GetProcessorStatusV2Responses = {
|
|
2718
2609
|
/**
|
|
@@ -2753,25 +2644,9 @@ export declare namespace solidity_service {
|
|
|
2753
2644
|
chainId?: string;
|
|
2754
2645
|
forkId?: string;
|
|
2755
2646
|
};
|
|
2756
|
-
type CompileSourceInternalResponse = {
|
|
2757
|
-
failure?: Failure;
|
|
2758
|
-
};
|
|
2759
|
-
type CompilerOptions = {
|
|
2760
|
-
language?: string;
|
|
2761
|
-
version?: string;
|
|
2762
|
-
settings?: Settings;
|
|
2763
|
-
specializations?: Specializations;
|
|
2764
|
-
};
|
|
2765
|
-
type ContractKeyInfo = {
|
|
2766
|
-
preprocessKey?: string;
|
|
2767
|
-
compilationKey?: string;
|
|
2768
|
-
};
|
|
2769
2647
|
type CreateForkResponse = {
|
|
2770
2648
|
fork?: Fork;
|
|
2771
2649
|
};
|
|
2772
|
-
type DecodeStateDiffResponse = {
|
|
2773
|
-
result?: string;
|
|
2774
|
-
};
|
|
2775
2650
|
type EstimatedPrice = {
|
|
2776
2651
|
confidence?: number;
|
|
2777
2652
|
price?: number;
|
|
@@ -2799,10 +2674,6 @@ export declare namespace solidity_service {
|
|
|
2799
2674
|
chainConfig?: BaseChainConfig;
|
|
2800
2675
|
nodeAdditionalHeaders?: string;
|
|
2801
2676
|
};
|
|
2802
|
-
type Failure = {
|
|
2803
|
-
error?: string;
|
|
2804
|
-
reason?: string;
|
|
2805
|
-
};
|
|
2806
2677
|
type Fork = {
|
|
2807
2678
|
id?: string;
|
|
2808
2679
|
type?: ForkType;
|
|
@@ -2854,31 +2725,6 @@ export declare namespace solidity_service {
|
|
|
2854
2725
|
page?: number;
|
|
2855
2726
|
pageSize?: number;
|
|
2856
2727
|
};
|
|
2857
|
-
type GetStorageSummaryInternalResponse = {
|
|
2858
|
-
results?: Array<StorageSummaryResult>;
|
|
2859
|
-
};
|
|
2860
|
-
type GetTraceCallInternalRequestBundle = {
|
|
2861
|
-
transactions?: Array<{
|
|
2862
|
-
[key: string]: unknown;
|
|
2863
|
-
}>;
|
|
2864
|
-
blockOverride?: BlockOverrides;
|
|
2865
|
-
};
|
|
2866
|
-
type GetTraceCallInternalRequestStateContext = {
|
|
2867
|
-
blockNumber?: string;
|
|
2868
|
-
transactionIndex?: number;
|
|
2869
|
-
};
|
|
2870
|
-
type GetTraceCallInternalResponse = {
|
|
2871
|
-
result?: Array<Array<{
|
|
2872
|
-
[key: string]: unknown;
|
|
2873
|
-
}>>;
|
|
2874
|
-
outputs?: Array<Array<{
|
|
2875
|
-
[key: string]: unknown;
|
|
2876
|
-
}>>;
|
|
2877
|
-
error?: string;
|
|
2878
|
-
};
|
|
2879
|
-
type GetTraceTransactionInternalResponse = {
|
|
2880
|
-
result?: string;
|
|
2881
|
-
};
|
|
2882
2728
|
type ListForksResponse = {
|
|
2883
2729
|
forks?: Array<Fork>;
|
|
2884
2730
|
};
|
|
@@ -2890,11 +2736,6 @@ export declare namespace solidity_service {
|
|
|
2890
2736
|
rpcEndpoint?: string;
|
|
2891
2737
|
version?: string;
|
|
2892
2738
|
};
|
|
2893
|
-
type Metadata = {
|
|
2894
|
-
useLiteralContent?: boolean;
|
|
2895
|
-
bytecodeHash?: string;
|
|
2896
|
-
appendCBOR?: boolean;
|
|
2897
|
-
};
|
|
2898
2739
|
type NodeEnvironment = {
|
|
2899
2740
|
chainId?: string;
|
|
2900
2741
|
baseFee?: string;
|
|
@@ -2906,34 +2747,6 @@ export declare namespace solidity_service {
|
|
|
2906
2747
|
forkBlockNumber?: string;
|
|
2907
2748
|
forkRetryBackoff?: string;
|
|
2908
2749
|
};
|
|
2909
|
-
type Optimizer = {
|
|
2910
|
-
enabled?: boolean;
|
|
2911
|
-
runs?: number;
|
|
2912
|
-
details?: OptimizerDetails;
|
|
2913
|
-
};
|
|
2914
|
-
type OptimizerDetails = {
|
|
2915
|
-
peephole?: boolean;
|
|
2916
|
-
jumpdestRemover?: boolean;
|
|
2917
|
-
yul?: boolean;
|
|
2918
|
-
yulDetails?: OptimizerDetailsYulDetails;
|
|
2919
|
-
};
|
|
2920
|
-
type OptimizerDetailsYulDetails = {
|
|
2921
|
-
stackAllocation?: boolean;
|
|
2922
|
-
optimizerSteps?: string;
|
|
2923
|
-
};
|
|
2924
|
-
type PreProcessCompilationInternalResponse = {
|
|
2925
|
-
preprocessedAddresses?: Array<string>;
|
|
2926
|
-
};
|
|
2927
|
-
type Settings = {
|
|
2928
|
-
remappings?: Array<string>;
|
|
2929
|
-
optimizer?: Optimizer;
|
|
2930
|
-
evmVersion?: string;
|
|
2931
|
-
metadata?: Metadata;
|
|
2932
|
-
viaIR?: boolean;
|
|
2933
|
-
compilationTarget?: {
|
|
2934
|
-
[key: string]: string;
|
|
2935
|
-
};
|
|
2936
|
-
};
|
|
2937
2750
|
type SimulateTransactionBundleResponse = {
|
|
2938
2751
|
bundleId?: string;
|
|
2939
2752
|
simulations?: Array<Simulation>;
|
|
@@ -3004,32 +2817,6 @@ export declare namespace solidity_service {
|
|
|
3004
2817
|
simulation: Simulation;
|
|
3005
2818
|
};
|
|
3006
2819
|
type SourceFetcherType = 'ETHERSCAN' | 'BLOCKSCOUT' | 'OKLINK' | 'ETHERSCAN_V2';
|
|
3007
|
-
type SourceInfo = {
|
|
3008
|
-
contractName?: string;
|
|
3009
|
-
options?: CompilerOptions;
|
|
3010
|
-
};
|
|
3011
|
-
type SourceMultiFile = {
|
|
3012
|
-
source?: {
|
|
3013
|
-
[key: string]: string;
|
|
3014
|
-
};
|
|
3015
|
-
compilerSettings?: string;
|
|
3016
|
-
};
|
|
3017
|
-
type SourceSpec = {
|
|
3018
|
-
id?: string;
|
|
3019
|
-
multiFile?: SourceMultiFile;
|
|
3020
|
-
standardJson?: {
|
|
3021
|
-
[key: string]: unknown;
|
|
3022
|
-
};
|
|
3023
|
-
metadata?: {
|
|
3024
|
-
[key: string]: unknown;
|
|
3025
|
-
};
|
|
3026
|
-
solidityVersion?: string;
|
|
3027
|
-
contractName?: string;
|
|
3028
|
-
constructorArgs?: string;
|
|
3029
|
-
};
|
|
3030
|
-
type Specializations = {
|
|
3031
|
-
constructorArguments?: string;
|
|
3032
|
-
};
|
|
3033
2820
|
type StateOverride = {
|
|
3034
2821
|
state?: {
|
|
3035
2822
|
[key: string]: string;
|
|
@@ -3040,13 +2827,6 @@ export declare namespace solidity_service {
|
|
|
3040
2827
|
balance?: string;
|
|
3041
2828
|
code?: string;
|
|
3042
2829
|
};
|
|
3043
|
-
type StorageSummaryResult = {
|
|
3044
|
-
address?: string;
|
|
3045
|
-
codeAddress?: string;
|
|
3046
|
-
stateVariables?: Array<{
|
|
3047
|
-
[key: string]: unknown;
|
|
3048
|
-
}>;
|
|
3049
|
-
};
|
|
3050
2830
|
type UpdateForkResponse = {
|
|
3051
2831
|
fork?: Fork;
|
|
3052
2832
|
};
|
|
@@ -3059,7 +2839,7 @@ export declare namespace solidity_service {
|
|
|
3059
2839
|
*/
|
|
3060
2840
|
chainId?: string;
|
|
3061
2841
|
};
|
|
3062
|
-
url: '/
|
|
2842
|
+
url: '/v1/solidity/estimated_gas_price';
|
|
3063
2843
|
};
|
|
3064
2844
|
type GetEstimatedGasPriceResponses = {
|
|
3065
2845
|
/**
|
|
@@ -3075,7 +2855,7 @@ export declare namespace solidity_service {
|
|
|
3075
2855
|
slug: string;
|
|
3076
2856
|
};
|
|
3077
2857
|
query?: never;
|
|
3078
|
-
url: '/
|
|
2858
|
+
url: '/v1/solidity/{owner}/{slug}/fork';
|
|
3079
2859
|
};
|
|
3080
2860
|
type ListForksResponses = {
|
|
3081
2861
|
/**
|
|
@@ -3091,7 +2871,7 @@ export declare namespace solidity_service {
|
|
|
3091
2871
|
slug: string;
|
|
3092
2872
|
};
|
|
3093
2873
|
query?: never;
|
|
3094
|
-
url: '/
|
|
2874
|
+
url: '/v1/solidity/{owner}/{slug}/fork';
|
|
3095
2875
|
};
|
|
3096
2876
|
type CreateForkResponses = {
|
|
3097
2877
|
/**
|
|
@@ -3108,7 +2888,7 @@ export declare namespace solidity_service {
|
|
|
3108
2888
|
forkId: string;
|
|
3109
2889
|
};
|
|
3110
2890
|
query?: never;
|
|
3111
|
-
url: '/
|
|
2891
|
+
url: '/v1/solidity/{owner}/{slug}/fork/{forkId}/simulation';
|
|
3112
2892
|
};
|
|
3113
2893
|
type SimulateTransactionOnForkResponses = {
|
|
3114
2894
|
/**
|
|
@@ -3125,7 +2905,7 @@ export declare namespace solidity_service {
|
|
|
3125
2905
|
forkId: string;
|
|
3126
2906
|
};
|
|
3127
2907
|
query?: never;
|
|
3128
|
-
url: '/
|
|
2908
|
+
url: '/v1/solidity/{owner}/{slug}/fork/{forkId}/simulation_bundle';
|
|
3129
2909
|
};
|
|
3130
2910
|
type SimulateTransactionBundleOnForkResponses = {
|
|
3131
2911
|
/**
|
|
@@ -3142,7 +2922,7 @@ export declare namespace solidity_service {
|
|
|
3142
2922
|
id: string;
|
|
3143
2923
|
};
|
|
3144
2924
|
query?: never;
|
|
3145
|
-
url: '/
|
|
2925
|
+
url: '/v1/solidity/{owner}/{slug}/fork/{id}';
|
|
3146
2926
|
};
|
|
3147
2927
|
type GetForkResponses = {
|
|
3148
2928
|
/**
|
|
@@ -3159,7 +2939,7 @@ export declare namespace solidity_service {
|
|
|
3159
2939
|
id: string;
|
|
3160
2940
|
};
|
|
3161
2941
|
query?: never;
|
|
3162
|
-
url: '/
|
|
2942
|
+
url: '/v1/solidity/{owner}/{slug}/fork/{id}';
|
|
3163
2943
|
};
|
|
3164
2944
|
type UpdateForkResponses = {
|
|
3165
2945
|
/**
|
|
@@ -3176,7 +2956,7 @@ export declare namespace solidity_service {
|
|
|
3176
2956
|
id: string;
|
|
3177
2957
|
};
|
|
3178
2958
|
query?: never;
|
|
3179
|
-
url: '/
|
|
2959
|
+
url: '/v1/solidity/{owner}/{slug}/fork/{id}/info';
|
|
3180
2960
|
};
|
|
3181
2961
|
type GetForkInfoResponses = {
|
|
3182
2962
|
/**
|
|
@@ -3207,7 +2987,7 @@ export declare namespace solidity_service {
|
|
|
3207
2987
|
limit?: number;
|
|
3208
2988
|
pageToken?: string;
|
|
3209
2989
|
};
|
|
3210
|
-
url: '/
|
|
2990
|
+
url: '/v1/solidity/{owner}/{slug}/search_transactions';
|
|
3211
2991
|
};
|
|
3212
2992
|
type SearchTransactionsResponses = {
|
|
3213
2993
|
/**
|
|
@@ -3227,7 +3007,7 @@ export declare namespace solidity_service {
|
|
|
3227
3007
|
page?: number;
|
|
3228
3008
|
pageSize?: number;
|
|
3229
3009
|
};
|
|
3230
|
-
url: '/
|
|
3010
|
+
url: '/v1/solidity/{owner}/{slug}/simulation';
|
|
3231
3011
|
};
|
|
3232
3012
|
type GetSimulationsResponses = {
|
|
3233
3013
|
/**
|
|
@@ -3244,7 +3024,7 @@ export declare namespace solidity_service {
|
|
|
3244
3024
|
simulationId: string;
|
|
3245
3025
|
};
|
|
3246
3026
|
query?: never;
|
|
3247
|
-
url: '/
|
|
3027
|
+
url: '/v1/solidity/{owner}/{slug}/simulation/{simulationId}';
|
|
3248
3028
|
};
|
|
3249
3029
|
type GetSimulationResponses = {
|
|
3250
3030
|
/**
|
|
@@ -3261,7 +3041,7 @@ export declare namespace solidity_service {
|
|
|
3261
3041
|
bundleId: string;
|
|
3262
3042
|
};
|
|
3263
3043
|
query?: never;
|
|
3264
|
-
url: '/
|
|
3044
|
+
url: '/v1/solidity/{owner}/{slug}/simulation_bundle/{bundleId}';
|
|
3265
3045
|
};
|
|
3266
3046
|
type GetSimulationBundleInProjectResponses = {
|
|
3267
3047
|
/**
|
|
@@ -3278,7 +3058,7 @@ export declare namespace solidity_service {
|
|
|
3278
3058
|
chainId: string;
|
|
3279
3059
|
};
|
|
3280
3060
|
query?: never;
|
|
3281
|
-
url: '/
|
|
3061
|
+
url: '/v1/solidity/{owner}/{slug}/{chainId}/simulation';
|
|
3282
3062
|
};
|
|
3283
3063
|
type SimulateTransactionResponses = {
|
|
3284
3064
|
/**
|
|
@@ -3295,7 +3075,7 @@ export declare namespace solidity_service {
|
|
|
3295
3075
|
chainId: string;
|
|
3296
3076
|
};
|
|
3297
3077
|
query?: never;
|
|
3298
|
-
url: '/
|
|
3078
|
+
url: '/v1/solidity/{owner}/{slug}/{chainId}/simulation_bundle';
|
|
3299
3079
|
};
|
|
3300
3080
|
type SimulateTransactionBundleResponses = {
|
|
3301
3081
|
/**
|
|
@@ -3321,6 +3101,7 @@ export declare namespace web_service {
|
|
|
3321
3101
|
sqlQueryId?: string;
|
|
3322
3102
|
sqlExecuteEngine?: analytic_service.ExecuteEngine;
|
|
3323
3103
|
enableExperimentalFeatures?: boolean;
|
|
3104
|
+
overlayGraphs?: Array<OverlayGraph>;
|
|
3324
3105
|
};
|
|
3325
3106
|
type ChartDataSourceType = 'METRICS' | 'NOTES' | 'ANALYTICS' | 'INSIGHTS' | 'EVENTS' | 'RETENTION' | 'SQL';
|
|
3326
3107
|
type ChartConfig = {
|
|
@@ -3619,6 +3400,23 @@ export declare namespace web_service {
|
|
|
3619
3400
|
type NoteAlignment = 'LEFT' | 'CENTER' | 'RIGHT';
|
|
3620
3401
|
type NoteFontSize = 'MD' | 'SM' | 'LG' | 'XL' | 'XXL';
|
|
3621
3402
|
type NoteVerticalAlignment = 'TOP' | 'MIDDLE' | 'BOTTOM';
|
|
3403
|
+
/**
|
|
3404
|
+
* An additional graph overlaid on the primary chart, with its own queries
|
|
3405
|
+
* and Y-axis configuration. Chart type defaults to the parent chart type.
|
|
3406
|
+
*/
|
|
3407
|
+
type OverlayGraph = {
|
|
3408
|
+
insightsQueries?: Array<insights_service.QueryRequestQuery>;
|
|
3409
|
+
formulas?: Array<common.Formula>;
|
|
3410
|
+
yAxis?: ChartConfigYAxisConfig;
|
|
3411
|
+
name?: string;
|
|
3412
|
+
lineConfig?: ChartConfigLineConfig;
|
|
3413
|
+
valueConfig?: ChartConfigValueConfig;
|
|
3414
|
+
dataConfig?: ChartConfigDataConfig;
|
|
3415
|
+
sqlQuery?: string;
|
|
3416
|
+
sqlQueryId?: string;
|
|
3417
|
+
sqlExecuteEngine?: analytic_service.ExecuteEngine;
|
|
3418
|
+
chartType?: ChartType2;
|
|
3419
|
+
};
|
|
3622
3420
|
type Panel = {
|
|
3623
3421
|
id?: string;
|
|
3624
3422
|
name?: string;
|
|
@@ -3652,7 +3450,7 @@ export declare namespace web_service {
|
|
|
3652
3450
|
*/
|
|
3653
3451
|
slug?: string;
|
|
3654
3452
|
};
|
|
3655
|
-
url: '/
|
|
3453
|
+
url: '/v1/dashboards';
|
|
3656
3454
|
};
|
|
3657
3455
|
type ListDashboardsResponses = {
|
|
3658
3456
|
/**
|
|
@@ -3665,7 +3463,7 @@ export declare namespace web_service {
|
|
|
3665
3463
|
body: ImportDashboardRequest;
|
|
3666
3464
|
path?: never;
|
|
3667
3465
|
query?: never;
|
|
3668
|
-
url: '/
|
|
3466
|
+
url: '/v1/dashboards/json';
|
|
3669
3467
|
};
|
|
3670
3468
|
type ImportDashboardResponses = {
|
|
3671
3469
|
/**
|
|
@@ -3696,7 +3494,7 @@ export declare namespace web_service {
|
|
|
3696
3494
|
*/
|
|
3697
3495
|
slug?: string;
|
|
3698
3496
|
};
|
|
3699
|
-
url: '/
|
|
3497
|
+
url: '/v1/dashboards/{dashboardId}';
|
|
3700
3498
|
};
|
|
3701
3499
|
type DeleteDashboardResponses = {
|
|
3702
3500
|
/**
|
|
@@ -3727,7 +3525,7 @@ export declare namespace web_service {
|
|
|
3727
3525
|
*/
|
|
3728
3526
|
slug?: string;
|
|
3729
3527
|
};
|
|
3730
|
-
url: '/
|
|
3528
|
+
url: '/v1/dashboards/{dashboardId}';
|
|
3731
3529
|
};
|
|
3732
3530
|
type GetDashboardResponses = {
|
|
3733
3531
|
/**
|
|
@@ -3745,7 +3543,7 @@ export declare namespace web_service {
|
|
|
3745
3543
|
limit?: number;
|
|
3746
3544
|
offset?: number;
|
|
3747
3545
|
};
|
|
3748
|
-
url: '/
|
|
3546
|
+
url: '/v1/dashboards/{dashboardId}/history';
|
|
3749
3547
|
};
|
|
3750
3548
|
type GetDashboardHistoryResponses = {
|
|
3751
3549
|
/**
|
|
@@ -3760,7 +3558,7 @@ export declare namespace web_service {
|
|
|
3760
3558
|
dashboardId: string;
|
|
3761
3559
|
};
|
|
3762
3560
|
query?: never;
|
|
3763
|
-
url: '/
|
|
3561
|
+
url: '/v1/dashboards/{dashboardId}/json';
|
|
3764
3562
|
};
|
|
3765
3563
|
type ExportDashboardResponses = {
|
|
3766
3564
|
/**
|
|
@@ -3791,7 +3589,7 @@ export declare namespace web_service {
|
|
|
3791
3589
|
*/
|
|
3792
3590
|
projectId?: string;
|
|
3793
3591
|
};
|
|
3794
|
-
url: '/
|
|
3592
|
+
url: '/v1/projects/{owner}/{slug}/dashboards';
|
|
3795
3593
|
};
|
|
3796
3594
|
type ListDashboards2Responses = {
|
|
3797
3595
|
/**
|
|
@@ -3822,7 +3620,7 @@ export declare namespace web_service {
|
|
|
3822
3620
|
*/
|
|
3823
3621
|
projectId?: string;
|
|
3824
3622
|
};
|
|
3825
|
-
url: '/
|
|
3623
|
+
url: '/v1/projects/{owner}/{slug}/dashboards/{dashboardId}';
|
|
3826
3624
|
};
|
|
3827
3625
|
type GetDashboard2Responses = {
|
|
3828
3626
|
/**
|
|
@@ -3835,7 +3633,7 @@ export declare namespace web_service {
|
|
|
3835
3633
|
body?: never;
|
|
3836
3634
|
path?: never;
|
|
3837
3635
|
query?: never;
|
|
3838
|
-
url: '/
|
|
3636
|
+
url: '/v1/users/link';
|
|
3839
3637
|
};
|
|
3840
3638
|
type CreateLinkSessionResponses = {
|
|
3841
3639
|
/**
|
|
@@ -3854,7 +3652,7 @@ export declare namespace solidit_service {
|
|
|
3854
3652
|
id: string;
|
|
3855
3653
|
};
|
|
3856
3654
|
query?: never;
|
|
3857
|
-
url: '/
|
|
3655
|
+
url: '/v1/solidity/{owner}/{slug}/fork/{id}';
|
|
3858
3656
|
};
|
|
3859
3657
|
type DeleteForkResponses = {
|
|
3860
3658
|
/**
|