@blockscout/autoscout-types 0.0.11 → 0.0.13
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/v1/config.d.ts +16 -2
- package/dist/v1/config.js +1 -1
- package/dist/v1/config.ts +17 -2
- package/package.json +1 -1
package/dist/v1/config.d.ts
CHANGED
|
@@ -43,7 +43,7 @@ export declare enum AdTextProvider {
|
|
|
43
43
|
}
|
|
44
44
|
export declare enum AdBannerProvider {
|
|
45
45
|
UNSPECIFIED_AD_BANNER_PROVIDER = "UNSPECIFIED_AD_BANNER_PROVIDER",
|
|
46
|
-
|
|
46
|
+
SLISE = "SLISE",
|
|
47
47
|
BANNER_NONE = "BANNER_NONE",
|
|
48
48
|
UNRECOGNIZED = "UNRECOGNIZED"
|
|
49
49
|
}
|
|
@@ -67,7 +67,7 @@ export interface DeployConfig {
|
|
|
67
67
|
rpc_ws_url?: string | undefined;
|
|
68
68
|
public_rpc_url?: string | undefined;
|
|
69
69
|
wallet_connect_project_id?: string | undefined;
|
|
70
|
-
eip_1559_elasticity?:
|
|
70
|
+
eip_1559_elasticity?: string | undefined;
|
|
71
71
|
navigation_layout: NavigationLayout;
|
|
72
72
|
favicon_url?: string | undefined;
|
|
73
73
|
og_image_url?: string | undefined;
|
|
@@ -81,6 +81,12 @@ export interface DeployConfig {
|
|
|
81
81
|
ads?: Ads | undefined;
|
|
82
82
|
meta_og?: MetaOg | undefined;
|
|
83
83
|
final_config?: FinalConfig | undefined;
|
|
84
|
+
api_spec_url?: string | undefined;
|
|
85
|
+
hide_navigation: string[];
|
|
86
|
+
menu_other: MenuItem[];
|
|
87
|
+
disable_graphql?: boolean | undefined;
|
|
88
|
+
maintenance_banner?: string | undefined;
|
|
89
|
+
skip_cname_check?: boolean | undefined;
|
|
84
90
|
}
|
|
85
91
|
export interface Footer {
|
|
86
92
|
columns: FooterColumn[];
|
|
@@ -110,6 +116,10 @@ export interface FinalConfigField {
|
|
|
110
116
|
json_path: string;
|
|
111
117
|
value: string;
|
|
112
118
|
}
|
|
119
|
+
export interface MenuItem {
|
|
120
|
+
text: string;
|
|
121
|
+
url: string;
|
|
122
|
+
}
|
|
113
123
|
/** https://github.com/blockscout/docs/blob/df6996a0f8e553c2d4b1c3dcda6ef2518a8b39f9/for-developers/information-and-settings/env-variables/backend-envs-chain-specific.md?plain=1#L102-L119 */
|
|
114
124
|
export interface OptimismConfig {
|
|
115
125
|
/** changes blockscout env INDEXER_OPTIMISM_L1_RPC */
|
|
@@ -140,6 +150,10 @@ export interface OptimismConfig {
|
|
|
140
150
|
l2_fault_proof_enabled?: boolean | undefined;
|
|
141
151
|
/** NEXT_PUBLIC_HAS_MUD_FRAMEWORK */
|
|
142
152
|
has_mud_framework?: boolean | undefined;
|
|
153
|
+
beacon_rpc_url?: string | undefined;
|
|
154
|
+
beacon_blob_fetcher_reference_slot?: string | undefined;
|
|
155
|
+
beacon_blob_fetcher_slot_duration?: string | undefined;
|
|
156
|
+
beacon_blob_fetcher_reference_timestamp?: string | undefined;
|
|
143
157
|
}
|
|
144
158
|
/** https://github.com/blockscout/docs/blob/594e4c2ef83556b3cb41e9fd43bca776afb63c05/for-developers/information-and-settings/env-variables/backend-envs-chain-specific.md?plain=1#L136 */
|
|
145
159
|
export interface ArbitrumConfig {
|
package/dist/v1/config.js
CHANGED
|
@@ -59,7 +59,7 @@ var AdTextProvider;
|
|
|
59
59
|
var AdBannerProvider;
|
|
60
60
|
(function (AdBannerProvider) {
|
|
61
61
|
AdBannerProvider["UNSPECIFIED_AD_BANNER_PROVIDER"] = "UNSPECIFIED_AD_BANNER_PROVIDER";
|
|
62
|
-
AdBannerProvider["
|
|
62
|
+
AdBannerProvider["SLISE"] = "SLISE";
|
|
63
63
|
AdBannerProvider["BANNER_NONE"] = "BANNER_NONE";
|
|
64
64
|
AdBannerProvider["UNRECOGNIZED"] = "UNRECOGNIZED";
|
|
65
65
|
})(AdBannerProvider || (exports.AdBannerProvider = AdBannerProvider = {}));
|
package/dist/v1/config.ts
CHANGED
|
@@ -57,7 +57,7 @@ export enum AdTextProvider {
|
|
|
57
57
|
|
|
58
58
|
export enum AdBannerProvider {
|
|
59
59
|
UNSPECIFIED_AD_BANNER_PROVIDER = "UNSPECIFIED_AD_BANNER_PROVIDER",
|
|
60
|
-
|
|
60
|
+
SLISE = "SLISE",
|
|
61
61
|
BANNER_NONE = "BANNER_NONE",
|
|
62
62
|
UNRECOGNIZED = "UNRECOGNIZED",
|
|
63
63
|
}
|
|
@@ -82,7 +82,7 @@ export interface DeployConfig {
|
|
|
82
82
|
rpc_ws_url?: string | undefined;
|
|
83
83
|
public_rpc_url?: string | undefined;
|
|
84
84
|
wallet_connect_project_id?: string | undefined;
|
|
85
|
-
eip_1559_elasticity?:
|
|
85
|
+
eip_1559_elasticity?: string | undefined;
|
|
86
86
|
navigation_layout: NavigationLayout;
|
|
87
87
|
favicon_url?: string | undefined;
|
|
88
88
|
og_image_url?: string | undefined;
|
|
@@ -98,6 +98,12 @@ export interface DeployConfig {
|
|
|
98
98
|
ads?: Ads | undefined;
|
|
99
99
|
meta_og?: MetaOg | undefined;
|
|
100
100
|
final_config?: FinalConfig | undefined;
|
|
101
|
+
api_spec_url?: string | undefined;
|
|
102
|
+
hide_navigation: string[];
|
|
103
|
+
menu_other: MenuItem[];
|
|
104
|
+
disable_graphql?: boolean | undefined;
|
|
105
|
+
maintenance_banner?: string | undefined;
|
|
106
|
+
skip_cname_check?: boolean | undefined;
|
|
101
107
|
}
|
|
102
108
|
|
|
103
109
|
export interface Footer {
|
|
@@ -135,6 +141,11 @@ export interface FinalConfigField {
|
|
|
135
141
|
value: string;
|
|
136
142
|
}
|
|
137
143
|
|
|
144
|
+
export interface MenuItem {
|
|
145
|
+
text: string;
|
|
146
|
+
url: string;
|
|
147
|
+
}
|
|
148
|
+
|
|
138
149
|
/** https://github.com/blockscout/docs/blob/df6996a0f8e553c2d4b1c3dcda6ef2518a8b39f9/for-developers/information-and-settings/env-variables/backend-envs-chain-specific.md?plain=1#L102-L119 */
|
|
139
150
|
export interface OptimismConfig {
|
|
140
151
|
/** changes blockscout env INDEXER_OPTIMISM_L1_RPC */
|
|
@@ -187,6 +198,10 @@ export interface OptimismConfig {
|
|
|
187
198
|
| undefined;
|
|
188
199
|
/** NEXT_PUBLIC_HAS_MUD_FRAMEWORK */
|
|
189
200
|
has_mud_framework?: boolean | undefined;
|
|
201
|
+
beacon_rpc_url?: string | undefined;
|
|
202
|
+
beacon_blob_fetcher_reference_slot?: string | undefined;
|
|
203
|
+
beacon_blob_fetcher_slot_duration?: string | undefined;
|
|
204
|
+
beacon_blob_fetcher_reference_timestamp?: string | undefined;
|
|
190
205
|
}
|
|
191
206
|
|
|
192
207
|
/** https://github.com/blockscout/docs/blob/594e4c2ef83556b3cb41e9fd43bca776afb63c05/for-developers/information-and-settings/env-variables/backend-envs-chain-specific.md?plain=1#L136 */
|