@blockscout/autoscout-types 1.8.2-alpha.1 → 1.9.1
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
CHANGED
|
@@ -104,6 +104,7 @@ export interface DeployConfig {
|
|
|
104
104
|
api_docs_tabs?: StringList | undefined;
|
|
105
105
|
stats_plugin_config?: StatsPluginConfig | undefined;
|
|
106
106
|
user_ops_plugin_config?: UserOpsPluginConfig | undefined;
|
|
107
|
+
monitoring?: MonitoringConfig | undefined;
|
|
107
108
|
}
|
|
108
109
|
export interface Footer {
|
|
109
110
|
columns: FooterColumn[];
|
|
@@ -181,6 +182,10 @@ export interface IndexerConfig {
|
|
|
181
182
|
/** BLOCK_TRANSFORMER */
|
|
182
183
|
block_transformer: IndexerBlockTransformer;
|
|
183
184
|
}
|
|
185
|
+
export interface MonitoringConfig {
|
|
186
|
+
enabled?: boolean | undefined;
|
|
187
|
+
client_label?: string | undefined;
|
|
188
|
+
}
|
|
184
189
|
/** https://github.com/blockscout/docs/blob/df6996a0f8e553c2d4b1c3dcda6ef2518a8b39f9/for-developers/information-and-settings/env-variables/backend-envs-chain-specific.md?plain=1#L102-L119 */
|
|
185
190
|
export interface OptimismConfig {
|
|
186
191
|
/** changes blockscout env INDEXER_OPTIMISM_L1_RPC */
|
package/dist/v1/config.ts
CHANGED
|
@@ -123,6 +123,7 @@ export interface DeployConfig {
|
|
|
123
123
|
api_docs_tabs?: StringList | undefined;
|
|
124
124
|
stats_plugin_config?: StatsPluginConfig | undefined;
|
|
125
125
|
user_ops_plugin_config?: UserOpsPluginConfig | undefined;
|
|
126
|
+
monitoring?: MonitoringConfig | undefined;
|
|
126
127
|
}
|
|
127
128
|
|
|
128
129
|
export interface Footer {
|
|
@@ -236,6 +237,11 @@ export interface IndexerConfig {
|
|
|
236
237
|
block_transformer: IndexerBlockTransformer;
|
|
237
238
|
}
|
|
238
239
|
|
|
240
|
+
export interface MonitoringConfig {
|
|
241
|
+
enabled?: boolean | undefined;
|
|
242
|
+
client_label?: string | undefined;
|
|
243
|
+
}
|
|
244
|
+
|
|
239
245
|
/** https://github.com/blockscout/docs/blob/df6996a0f8e553c2d4b1c3dcda6ef2518a8b39f9/for-developers/information-and-settings/env-variables/backend-envs-chain-specific.md?plain=1#L102-L119 */
|
|
240
246
|
export interface OptimismConfig {
|
|
241
247
|
/** changes blockscout env INDEXER_OPTIMISM_L1_RPC */
|
package/dist/v1/config_schema.ts
CHANGED