@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.
@@ -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 */
@@ -21,4 +21,8 @@ export interface ServerSizeSchemaDetails {
21
21
  cost_per_hour: string;
22
22
  cpu: string;
23
23
  memory: string;
24
+ disk_overage_cost_per_gb_hour: string;
25
+ free_disk_quota_gb: string;
26
+ user_ops_cost_per_hour: string;
27
+ stats_cost_per_hour: string;
24
28
  }
@@ -31,4 +31,8 @@ export interface ServerSizeSchemaDetails {
31
31
  cost_per_hour: string;
32
32
  cpu: string;
33
33
  memory: string;
34
+ disk_overage_cost_per_gb_hour: string;
35
+ free_disk_quota_gb: string;
36
+ user_ops_cost_per_hour: string;
37
+ stats_cost_per_hour: string;
34
38
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockscout/autoscout-types",
3
- "version": "1.8.2-alpha.1",
3
+ "version": "1.9.1",
4
4
  "description": "TypeScript definitions for Autoscout microservice",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",