11/* eslint-disable */
2- // Generated by Wrangler by running `wrangler types` (hash: d1762921ce9ce60578e7e61df0f8e97d )
2+ // Generated by Wrangler by running `wrangler types` (hash: 0f6ea38d8b9ed234c528c82214007cdc )
33// Runtime types generated with workerd@1.20251210.0 2025-06-20 nodejs_compat
44declare namespace Cloudflare {
55 interface GlobalProps {
@@ -11,6 +11,7 @@ declare namespace Cloudflare {
1111 CONFIRMATION_DEPTH : "4" ;
1212 MAX_NBTC_MINT_TX_RETRIES : "1" ;
1313 BTC_BLOCK_PROCESSING_BATCH_SIZE : "100" ;
14+ AUTH_BEARER_TOKEN : "" ;
1415 DB : D1Database ;
1516 NBTC_MINTING_SIGNER_MNEMONIC : SecretsStoreSecret ;
1617 SuiIndexer : Fetcher /* sui-indexer */ ;
@@ -21,7 +22,7 @@ type StringifyValues<EnvType extends Record<string, unknown>> = {
2122 [ Binding in keyof EnvType ] : EnvType [ Binding ] extends string ? EnvType [ Binding ] : string ;
2223} ;
2324declare namespace NodeJS {
24- interface ProcessEnv extends StringifyValues < Pick < Cloudflare . Env , "CONFIRMATION_DEPTH" | "MAX_NBTC_MINT_TX_RETRIES" | "BTC_BLOCK_PROCESSING_BATCH_SIZE" > > { }
25+ interface ProcessEnv extends StringifyValues < Pick < Cloudflare . Env , "CONFIRMATION_DEPTH" | "MAX_NBTC_MINT_TX_RETRIES" | "BTC_BLOCK_PROCESSING_BATCH_SIZE" | "AUTH_BEARER_TOKEN" > > { }
2526}
2627
2728// Begin runtime types
@@ -9383,7 +9384,7 @@ interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
93839384 certNotAfter : "" ;
93849385}
93859386/** Possible outcomes of TLS verification */
9386- declare type CertVerificationStatus =
9387+ declare type CertVerificationStatus =
93879388/** Authentication succeeded */
93889389"SUCCESS"
93899390/** No certificate was presented */
@@ -9447,7 +9448,7 @@ interface D1ExecResult {
94479448 count : number ;
94489449 duration : number ;
94499450}
9450- type D1SessionConstraint =
9451+ type D1SessionConstraint =
94519452// Indicates that the first query should go to the primary, and the rest queries
94529453// using the same D1DatabaseSession will go to any replica that is consistent with
94539454// the bookmark maintained by the session (returned by the first query).
@@ -10028,7 +10029,7 @@ declare namespace Rpc {
1002810029 // The reason for using a generic type here is to build a serializable subset of structured
1002910030 // cloneable composite types. This allows types defined with the "interface" keyword to pass the
1003010031 // serializable check as well. Otherwise, only types defined with the "type" keyword would pass.
10031- type Serializable < T > =
10032+ type Serializable < T > =
1003210033 // Structured cloneables
1003310034 BaseType
1003410035 // Structured cloneable composites
0 commit comments