@blockscout/autoscout-types 1.3.1 → 1.3.2

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.
@@ -163,6 +163,8 @@ export interface IndexerConfig {
163
163
  token_balances_batch_size?: string | undefined;
164
164
  /** INDEXER_TOKEN_BALANCES_CONCURRENCY */
165
165
  token_balances_concurrency?: string | undefined;
166
+ /** INDEXER_DISABLE_PENDING_TRANSACTIONS_FETCHER */
167
+ disable_pending_fetcher?: boolean | undefined;
166
168
  }
167
169
  /** https://github.com/blockscout/docs/blob/df6996a0f8e553c2d4b1c3dcda6ef2518a8b39f9/for-developers/information-and-settings/env-variables/backend-envs-chain-specific.md?plain=1#L102-L119 */
168
170
  export interface OptimismConfig {
package/dist/v1/config.ts CHANGED
@@ -209,7 +209,11 @@ export interface IndexerConfig {
209
209
  | string
210
210
  | undefined;
211
211
  /** INDEXER_TOKEN_BALANCES_CONCURRENCY */
212
- token_balances_concurrency?: string | undefined;
212
+ token_balances_concurrency?:
213
+ | string
214
+ | undefined;
215
+ /** INDEXER_DISABLE_PENDING_TRANSACTIONS_FETCHER */
216
+ disable_pending_fetcher?: boolean | undefined;
213
217
  }
214
218
 
215
219
  /** https://github.com/blockscout/docs/blob/df6996a0f8e553c2d4b1c3dcda6ef2518a8b39f9/for-developers/information-and-settings/env-variables/backend-envs-chain-specific.md?plain=1#L102-L119 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockscout/autoscout-types",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "TypeScript definitions for Autoscout microservice",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",