@blockscout/autoscout-types 1.11.1-alpha.1 → 1.12.0

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.
@@ -240,7 +240,7 @@ export interface OptimismConfig {
240
240
  /** Deprecated: use parent_chain.base_url instead */
241
241
  l1_blockscout_url?: string | undefined;
242
242
  /** NEXT_PUBLIC_ROLLUP_L2_WITHDRAWAL_URL */
243
- l2_withdrawal_url: string;
243
+ l2_withdrawal_url?: string | undefined;
244
244
  /** NEXT_PUBLIC_FAULT_PROOF_ENABLED */
245
245
  l2_fault_proof_enabled?: boolean | undefined;
246
246
  /** NEXT_PUBLIC_HAS_MUD_FRAMEWORK */
package/dist/v1/config.ts CHANGED
@@ -325,7 +325,9 @@ export interface OptimismConfig {
325
325
  | string
326
326
  | undefined;
327
327
  /** NEXT_PUBLIC_ROLLUP_L2_WITHDRAWAL_URL */
328
- l2_withdrawal_url: string;
328
+ l2_withdrawal_url?:
329
+ | string
330
+ | undefined;
329
331
  /** NEXT_PUBLIC_FAULT_PROOF_ENABLED */
330
332
  l2_fault_proof_enabled?:
331
333
  | boolean
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockscout/autoscout-types",
3
- "version": "1.11.1-alpha.1",
3
+ "version": "1.12.0",
4
4
  "description": "TypeScript definitions for Autoscout microservice",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",