@blockscout/autoscout-types 0.0.11 → 0.0.12

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.
@@ -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?: number | undefined;
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,11 @@ 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;
84
89
  }
85
90
  export interface Footer {
86
91
  columns: FooterColumn[];
@@ -110,6 +115,10 @@ export interface FinalConfigField {
110
115
  json_path: string;
111
116
  value: string;
112
117
  }
118
+ export interface MenuItem {
119
+ text: string;
120
+ url: string;
121
+ }
113
122
  /** https://github.com/blockscout/docs/blob/df6996a0f8e553c2d4b1c3dcda6ef2518a8b39f9/for-developers/information-and-settings/env-variables/backend-envs-chain-specific.md?plain=1#L102-L119 */
114
123
  export interface OptimismConfig {
115
124
  /** changes blockscout env INDEXER_OPTIMISM_L1_RPC */
@@ -140,6 +149,10 @@ export interface OptimismConfig {
140
149
  l2_fault_proof_enabled?: boolean | undefined;
141
150
  /** NEXT_PUBLIC_HAS_MUD_FRAMEWORK */
142
151
  has_mud_framework?: boolean | undefined;
152
+ beacon_rpc_url?: string | undefined;
153
+ beacon_blob_fetcher_reference_slot?: string | undefined;
154
+ beacon_blob_fetcher_slot_duration?: string | undefined;
155
+ beacon_blob_fetcher_reference_timestamp?: string | undefined;
143
156
  }
144
157
  /** https://github.com/blockscout/docs/blob/594e4c2ef83556b3cb41e9fd43bca776afb63c05/for-developers/information-and-settings/env-variables/backend-envs-chain-specific.md?plain=1#L136 */
145
158
  export interface ArbitrumConfig {
package/dist/v1/config.ts CHANGED
@@ -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?: number | undefined;
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,11 @@ 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;
101
106
  }
102
107
 
103
108
  export interface Footer {
@@ -135,6 +140,11 @@ export interface FinalConfigField {
135
140
  value: string;
136
141
  }
137
142
 
143
+ export interface MenuItem {
144
+ text: string;
145
+ url: string;
146
+ }
147
+
138
148
  /** https://github.com/blockscout/docs/blob/df6996a0f8e553c2d4b1c3dcda6ef2518a8b39f9/for-developers/information-and-settings/env-variables/backend-envs-chain-specific.md?plain=1#L102-L119 */
139
149
  export interface OptimismConfig {
140
150
  /** changes blockscout env INDEXER_OPTIMISM_L1_RPC */
@@ -187,6 +197,10 @@ export interface OptimismConfig {
187
197
  | undefined;
188
198
  /** NEXT_PUBLIC_HAS_MUD_FRAMEWORK */
189
199
  has_mud_framework?: boolean | undefined;
200
+ beacon_rpc_url?: string | undefined;
201
+ beacon_blob_fetcher_reference_slot?: string | undefined;
202
+ beacon_blob_fetcher_slot_duration?: string | undefined;
203
+ beacon_blob_fetcher_reference_timestamp?: string | undefined;
190
204
  }
191
205
 
192
206
  /** https://github.com/blockscout/docs/blob/594e4c2ef83556b3cb41e9fd43bca776afb63c05/for-developers/information-and-settings/env-variables/backend-envs-chain-specific.md?plain=1#L136 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockscout/autoscout-types",
3
- "version": "0.0.11",
3
+ "version": "0.0.12",
4
4
  "description": "TypeScript definitions for Autoscout microservice",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",