diff --git a/bad-bits/worker-configuration.d.ts b/bad-bits/worker-configuration.d.ts index ae081827..cb1595c0 100644 --- a/bad-bits/worker-configuration.d.ts +++ b/bad-bits/worker-configuration.d.ts @@ -1,6 +1,6 @@ /* eslint-disable */ // Generated by Wrangler by running `wrangler types` (hash: 7aa29caec8d2adb164a68963c50cf89b) -// Runtime types generated with workerd@1.20260124.0 2025-09-08 nodejs_compat +// Runtime types generated with workerd@1.20260128.0 2025-09-08 nodejs_compat declare namespace Cloudflare { interface GlobalProps { mainModule: typeof import("./bin/scheduler"); @@ -1409,6 +1409,12 @@ declare abstract class PromiseRejectionEvent extends Event { */ declare class FormData { constructor(); + /** + * The **`append()`** method of the FormData interface appends a new value onto an existing key inside a `FormData` object, or adds the key if it does not already exist. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/append) + */ + append(name: string, value: string | Blob): void; /** * The **`append()`** method of the FormData interface appends a new value onto an existing key inside a `FormData` object, or adds the key if it does not already exist. * @@ -1445,6 +1451,12 @@ declare class FormData { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/has) */ has(name: string): boolean; + /** + * The **`set()`** method of the FormData interface sets a new value for an existing key inside a `FormData` object, or adds the key/value if it does not already exist. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/set) + */ + set(name: string, value: string | Blob): void; /** * The **`set()`** method of the FormData interface sets a new value for an existing key inside a `FormData` object, or adds the key/value if it does not already exist. * diff --git a/indexer/worker-configuration.d.ts b/indexer/worker-configuration.d.ts index d26abcab..70c588f1 100644 --- a/indexer/worker-configuration.d.ts +++ b/indexer/worker-configuration.d.ts @@ -1,6 +1,6 @@ /* eslint-disable */ // Generated by Wrangler by running `wrangler types` (hash: 917c9c63765870fd75519be92f568141) -// Runtime types generated with workerd@1.20260124.0 2025-09-08 nodejs_compat +// Runtime types generated with workerd@1.20260128.0 2025-09-08 nodejs_compat declare namespace Cloudflare { interface GlobalProps { mainModule: typeof import("./bin/indexer"); @@ -1457,6 +1457,12 @@ declare abstract class PromiseRejectionEvent extends Event { */ declare class FormData { constructor(); + /** + * The **`append()`** method of the FormData interface appends a new value onto an existing key inside a `FormData` object, or adds the key if it does not already exist. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/append) + */ + append(name: string, value: string | Blob): void; /** * The **`append()`** method of the FormData interface appends a new value onto an existing key inside a `FormData` object, or adds the key if it does not already exist. * @@ -1493,6 +1499,12 @@ declare class FormData { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/has) */ has(name: string): boolean; + /** + * The **`set()`** method of the FormData interface sets a new value for an existing key inside a `FormData` object, or adds the key/value if it does not already exist. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/set) + */ + set(name: string, value: string | Blob): void; /** * The **`set()`** method of the FormData interface sets a new value for an existing key inside a `FormData` object, or adds the key/value if it does not already exist. * diff --git a/package-lock.json b/package-lock.json index e551a8fc..d5036a4b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -29,7 +29,7 @@ "prettier": "^3.8.1", "typescript": "^5.9.3", "vitest": "3.1.4", - "wrangler": "^4.61.0" + "wrangler": "^4.61.1" } }, "bad-bits": { @@ -156,9 +156,9 @@ } }, "node_modules/@cloudflare/unenv-preset": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/@cloudflare/unenv-preset/-/unenv-preset-2.11.0.tgz", - "integrity": "sha512-z3hxFajL765VniNPGV0JRStZolNz63gU3B3AktwoGdDlnQvz5nP+Ah4RL04PONlZQjwmDdGHowEStJ94+RsaJg==", + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/@cloudflare/unenv-preset/-/unenv-preset-2.12.0.tgz", + "integrity": "sha512-NK4vN+2Z/GbfGS4BamtbbVk1rcu5RmqaYGiyHJQrA09AoxdZPHDF3W/EhgI0YSK8p3vRo/VNCtbSJFPON7FWMQ==", "dev": true, "license": "MIT OR Apache-2.0", "peerDependencies": { @@ -189,6 +189,22 @@ "vitest": "2.0.x - 3.2.x" } }, + "node_modules/@cloudflare/vitest-pool-workers/node_modules/@cloudflare/unenv-preset": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/@cloudflare/unenv-preset/-/unenv-preset-2.11.0.tgz", + "integrity": "sha512-z3hxFajL765VniNPGV0JRStZolNz63gU3B3AktwoGdDlnQvz5nP+Ah4RL04PONlZQjwmDdGHowEStJ94+RsaJg==", + "dev": true, + "license": "MIT OR Apache-2.0", + "peerDependencies": { + "unenv": "2.0.0-rc.24", + "workerd": "^1.20260115.0" + }, + "peerDependenciesMeta": { + "workerd": { + "optional": true + } + } + }, "node_modules/@cloudflare/vitest-pool-workers/node_modules/@esbuild/aix-ppc64": { "version": "0.27.0", "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.0.tgz", @@ -673,6 +689,41 @@ "@esbuild/win32-x64": "0.27.0" } }, + "node_modules/@cloudflare/vitest-pool-workers/node_modules/wrangler": { + "version": "4.61.0", + "resolved": "https://registry.npmjs.org/wrangler/-/wrangler-4.61.0.tgz", + "integrity": "sha512-Kb8NMe1B/HM7/ds3hU+fcV1U7T996vRKJ0UU/qqgNUMwdemTRA+sSaH3mQvQslIBbprHHU81s0huA6fDIcwiaQ==", + "dev": true, + "license": "MIT OR Apache-2.0", + "dependencies": { + "@cloudflare/kv-asset-handler": "0.4.2", + "@cloudflare/unenv-preset": "2.11.0", + "blake3-wasm": "2.1.5", + "esbuild": "0.27.0", + "miniflare": "4.20260124.0", + "path-to-regexp": "6.3.0", + "unenv": "2.0.0-rc.24", + "workerd": "1.20260124.0" + }, + "bin": { + "wrangler": "bin/wrangler.js", + "wrangler2": "bin/wrangler.js" + }, + "engines": { + "node": ">=20.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + }, + "peerDependencies": { + "@cloudflare/workers-types": "^4.20260124.0" + }, + "peerDependenciesMeta": { + "@cloudflare/workers-types": { + "optional": true + } + } + }, "node_modules/@cloudflare/workerd-darwin-64": { "version": "1.20260124.0", "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20260124.0.tgz", @@ -14089,20 +14140,20 @@ } }, "node_modules/wrangler": { - "version": "4.61.0", - "resolved": "https://registry.npmjs.org/wrangler/-/wrangler-4.61.0.tgz", - "integrity": "sha512-Kb8NMe1B/HM7/ds3hU+fcV1U7T996vRKJ0UU/qqgNUMwdemTRA+sSaH3mQvQslIBbprHHU81s0huA6fDIcwiaQ==", + "version": "4.61.1", + "resolved": "https://registry.npmjs.org/wrangler/-/wrangler-4.61.1.tgz", + "integrity": "sha512-hfYQ16VLPkNi8xE1/V3052S2stM5e+vq3Idpt83sXoDC3R7R1CLgMkK6M6+Qp3G+9GVDNyHCkvohMPdfFTaD4Q==", "dev": true, "license": "MIT OR Apache-2.0", "dependencies": { "@cloudflare/kv-asset-handler": "0.4.2", - "@cloudflare/unenv-preset": "2.11.0", + "@cloudflare/unenv-preset": "2.12.0", "blake3-wasm": "2.1.5", "esbuild": "0.27.0", - "miniflare": "4.20260124.0", + "miniflare": "4.20260128.0", "path-to-regexp": "6.3.0", "unenv": "2.0.0-rc.24", - "workerd": "1.20260124.0" + "workerd": "1.20260128.0" }, "bin": { "wrangler": "bin/wrangler.js", @@ -14115,7 +14166,7 @@ "fsevents": "~2.3.2" }, "peerDependencies": { - "@cloudflare/workers-types": "^4.20260124.0" + "@cloudflare/workers-types": "^4.20260128.0" }, "peerDependenciesMeta": { "@cloudflare/workers-types": { @@ -14123,6 +14174,91 @@ } } }, + "node_modules/wrangler/node_modules/@cloudflare/workerd-darwin-64": { + "version": "1.20260128.0", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20260128.0.tgz", + "integrity": "sha512-XJN8zWWNG3JwAUqqwMLNKJ9fZfdlQkx/zTTHW/BB8wHat9LjKD6AzxqCu432YmfjR+NxEKCzUOxMu1YOxlVxmg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=16" + } + }, + "node_modules/wrangler/node_modules/@cloudflare/workerd-darwin-arm64": { + "version": "1.20260128.0", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20260128.0.tgz", + "integrity": "sha512-vKnRcmnm402GQ5DOdfT5H34qeR2m07nhnTtky8mTkNWP+7xmkz32AMdclwMmfO/iX9ncyKwSqmml2wPG32eq/w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=16" + } + }, + "node_modules/wrangler/node_modules/@cloudflare/workerd-linux-64": { + "version": "1.20260128.0", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20260128.0.tgz", + "integrity": "sha512-RiaR+Qugof/c6oI5SagD2J5wJmIfI8wQWaV2Y9905Raj6sAYOFaEKfzkKnoLLLNYb4NlXicBrffJi1j7R/ypUA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=16" + } + }, + "node_modules/wrangler/node_modules/@cloudflare/workerd-linux-arm64": { + "version": "1.20260128.0", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20260128.0.tgz", + "integrity": "sha512-U39U9vcXLXYDbrJ112Q7D0LDUUnM54oXfAxPgrL2goBwio7Z6RnsM25TRvm+Q06F4+FeDOC4D51JXlFHb9t1OA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=16" + } + }, + "node_modules/wrangler/node_modules/@cloudflare/workerd-windows-64": { + "version": "1.20260128.0", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20260128.0.tgz", + "integrity": "sha512-fdJwSqRkJsAJFJ7+jy0th2uMO6fwaDA8Ny6+iFCssfzlNkc4dP/twXo+3F66FMLMe/6NIqjzVts0cpiv7ERYbQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=16" + } + }, "node_modules/wrangler/node_modules/@esbuild/aix-ppc64": { "version": "0.27.0", "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.0.tgz", @@ -14603,6 +14739,48 @@ "@esbuild/win32-x64": "0.27.0" } }, + "node_modules/wrangler/node_modules/miniflare": { + "version": "4.20260128.0", + "resolved": "https://registry.npmjs.org/miniflare/-/miniflare-4.20260128.0.tgz", + "integrity": "sha512-AVCn3vDRY+YXu1sP4mRn81ssno6VUqxo29uY2QVfgxXU2TMLvhRIoGwm7RglJ3Gzfuidit5R86CMQ6AvdFTGAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@cspotcode/source-map-support": "0.8.1", + "sharp": "^0.34.5", + "undici": "7.18.2", + "workerd": "1.20260128.0", + "ws": "8.18.0", + "youch": "4.1.0-beta.10" + }, + "bin": { + "miniflare": "bootstrap.js" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/wrangler/node_modules/workerd": { + "version": "1.20260128.0", + "resolved": "https://registry.npmjs.org/workerd/-/workerd-1.20260128.0.tgz", + "integrity": "sha512-EhLJGptSGFi8AEErLiamO3PoGpbRqL+v4Ve36H2B38VxmDgFOSmDhfepBnA14sCQzGf1AEaoZX2DCwZsmO74yQ==", + "dev": true, + "hasInstallScript": true, + "license": "Apache-2.0", + "bin": { + "workerd": "bin/workerd" + }, + "engines": { + "node": ">=16" + }, + "optionalDependencies": { + "@cloudflare/workerd-darwin-64": "1.20260128.0", + "@cloudflare/workerd-darwin-arm64": "1.20260128.0", + "@cloudflare/workerd-linux-64": "1.20260128.0", + "@cloudflare/workerd-linux-arm64": "1.20260128.0", + "@cloudflare/workerd-windows-64": "1.20260128.0" + } + }, "node_modules/wrap-ansi": { "version": "8.1.0", "dev": true, diff --git a/package.json b/package.json index aa0bda1a..30aba63f 100644 --- a/package.json +++ b/package.json @@ -37,6 +37,6 @@ "prettier": "^3.8.1", "typescript": "^5.9.3", "vitest": "3.1.4", - "wrangler": "^4.61.0" + "wrangler": "^4.61.1" } } diff --git a/payment-settler/worker-configuration.d.ts b/payment-settler/worker-configuration.d.ts index 26b063be..41391f45 100644 --- a/payment-settler/worker-configuration.d.ts +++ b/payment-settler/worker-configuration.d.ts @@ -1,6 +1,6 @@ /* eslint-disable */ // Generated by Wrangler by running `wrangler types` (hash: 7a360c24720624381a7554cb02dfe698) -// Runtime types generated with workerd@1.20260124.0 2025-09-08 nodejs_compat +// Runtime types generated with workerd@1.20260128.0 2025-09-08 nodejs_compat declare namespace Cloudflare { interface GlobalProps { mainModule: typeof import("./bin/payment-settler"); @@ -1437,6 +1437,12 @@ declare abstract class PromiseRejectionEvent extends Event { */ declare class FormData { constructor(); + /** + * The **`append()`** method of the FormData interface appends a new value onto an existing key inside a `FormData` object, or adds the key if it does not already exist. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/append) + */ + append(name: string, value: string | Blob): void; /** * The **`append()`** method of the FormData interface appends a new value onto an existing key inside a `FormData` object, or adds the key if it does not already exist. * @@ -1473,6 +1479,12 @@ declare class FormData { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/has) */ has(name: string): boolean; + /** + * The **`set()`** method of the FormData interface sets a new value for an existing key inside a `FormData` object, or adds the key/value if it does not already exist. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/set) + */ + set(name: string, value: string | Blob): void; /** * The **`set()`** method of the FormData interface sets a new value for an existing key inside a `FormData` object, or adds the key/value if it does not already exist. * diff --git a/piece-retriever/worker-configuration.d.ts b/piece-retriever/worker-configuration.d.ts index 950a012b..0ec0caf7 100644 --- a/piece-retriever/worker-configuration.d.ts +++ b/piece-retriever/worker-configuration.d.ts @@ -1,6 +1,6 @@ /* eslint-disable */ // Generated by Wrangler by running `wrangler types` (hash: 74ca5a6d6686aeac288540449e936a17) -// Runtime types generated with workerd@1.20260124.0 2025-09-08 enable_request_signal,nodejs_compat +// Runtime types generated with workerd@1.20260128.0 2025-09-08 enable_request_signal,nodejs_compat declare namespace Cloudflare { interface GlobalProps { mainModule: typeof import("./bin/piece-retriever"); @@ -1429,6 +1429,12 @@ declare abstract class PromiseRejectionEvent extends Event { */ declare class FormData { constructor(); + /** + * The **`append()`** method of the FormData interface appends a new value onto an existing key inside a `FormData` object, or adds the key if it does not already exist. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/append) + */ + append(name: string, value: string | Blob): void; /** * The **`append()`** method of the FormData interface appends a new value onto an existing key inside a `FormData` object, or adds the key if it does not already exist. * @@ -1465,6 +1471,12 @@ declare class FormData { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/has) */ has(name: string): boolean; + /** + * The **`set()`** method of the FormData interface sets a new value for an existing key inside a `FormData` object, or adds the key/value if it does not already exist. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/set) + */ + set(name: string, value: string | Blob): void; /** * The **`set()`** method of the FormData interface sets a new value for an existing key inside a `FormData` object, or adds the key/value if it does not already exist. * diff --git a/retrieval/worker-configuration.d.ts b/retrieval/worker-configuration.d.ts index e8f1e445..717890e4 100644 --- a/retrieval/worker-configuration.d.ts +++ b/retrieval/worker-configuration.d.ts @@ -1,6 +1,6 @@ /* eslint-disable */ // Generated by Wrangler by running `wrangler types` (hash: 55993b9e106514ba8b15f5d1b038e479) -// Runtime types generated with workerd@1.20260124.0 2025-09-08 nodejs_compat +// Runtime types generated with workerd@1.20260128.0 2025-09-08 nodejs_compat declare namespace Cloudflare { interface GlobalProps { mainModule: typeof import("./index"); @@ -1397,6 +1397,12 @@ declare abstract class PromiseRejectionEvent extends Event { */ declare class FormData { constructor(); + /** + * The **`append()`** method of the FormData interface appends a new value onto an existing key inside a `FormData` object, or adds the key if it does not already exist. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/append) + */ + append(name: string, value: string | Blob): void; /** * The **`append()`** method of the FormData interface appends a new value onto an existing key inside a `FormData` object, or adds the key if it does not already exist. * @@ -1433,6 +1439,12 @@ declare class FormData { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/has) */ has(name: string): boolean; + /** + * The **`set()`** method of the FormData interface sets a new value for an existing key inside a `FormData` object, or adds the key/value if it does not already exist. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/set) + */ + set(name: string, value: string | Blob): void; /** * The **`set()`** method of the FormData interface sets a new value for an existing key inside a `FormData` object, or adds the key/value if it does not already exist. * diff --git a/stats-api/worker-configuration.d.ts b/stats-api/worker-configuration.d.ts index e664a180..c29ae289 100644 --- a/stats-api/worker-configuration.d.ts +++ b/stats-api/worker-configuration.d.ts @@ -1,6 +1,6 @@ /* eslint-disable */ // Generated by Wrangler by running `wrangler types` (hash: e4b047ac4c5ed3c0f282b587208e4904) -// Runtime types generated with workerd@1.20260124.0 2025-09-08 nodejs_compat +// Runtime types generated with workerd@1.20260128.0 2025-09-08 nodejs_compat declare namespace Cloudflare { interface GlobalProps { mainModule: typeof import("./bin/api"); @@ -1405,6 +1405,12 @@ declare abstract class PromiseRejectionEvent extends Event { */ declare class FormData { constructor(); + /** + * The **`append()`** method of the FormData interface appends a new value onto an existing key inside a `FormData` object, or adds the key if it does not already exist. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/append) + */ + append(name: string, value: string | Blob): void; /** * The **`append()`** method of the FormData interface appends a new value onto an existing key inside a `FormData` object, or adds the key if it does not already exist. * @@ -1441,6 +1447,12 @@ declare class FormData { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/has) */ has(name: string): boolean; + /** + * The **`set()`** method of the FormData interface sets a new value for an existing key inside a `FormData` object, or adds the key/value if it does not already exist. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/set) + */ + set(name: string, value: string | Blob): void; /** * The **`set()`** method of the FormData interface sets a new value for an existing key inside a `FormData` object, or adds the key/value if it does not already exist. * diff --git a/tail-handler/worker-configuration.d.ts b/tail-handler/worker-configuration.d.ts index ddfd07d4..071f748e 100644 --- a/tail-handler/worker-configuration.d.ts +++ b/tail-handler/worker-configuration.d.ts @@ -1,6 +1,6 @@ /* eslint-disable */ // Generated by Wrangler by running `wrangler types` (hash: 06a0390591bfef67f02ed6503dd25f42) -// Runtime types generated with workerd@1.20260124.0 2025-09-08 nodejs_compat +// Runtime types generated with workerd@1.20260128.0 2025-09-08 nodejs_compat declare namespace Cloudflare { interface GlobalProps { mainModule: typeof import("./src/index"); @@ -1405,6 +1405,12 @@ declare abstract class PromiseRejectionEvent extends Event { */ declare class FormData { constructor(); + /** + * The **`append()`** method of the FormData interface appends a new value onto an existing key inside a `FormData` object, or adds the key if it does not already exist. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/append) + */ + append(name: string, value: string | Blob): void; /** * The **`append()`** method of the FormData interface appends a new value onto an existing key inside a `FormData` object, or adds the key if it does not already exist. * @@ -1441,6 +1447,12 @@ declare class FormData { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/has) */ has(name: string): boolean; + /** + * The **`set()`** method of the FormData interface sets a new value for an existing key inside a `FormData` object, or adds the key/value if it does not already exist. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/set) + */ + set(name: string, value: string | Blob): void; /** * The **`set()`** method of the FormData interface sets a new value for an existing key inside a `FormData` object, or adds the key/value if it does not already exist. * diff --git a/terminator/worker-configuration.d.ts b/terminator/worker-configuration.d.ts index f474f80c..66f7fc31 100644 --- a/terminator/worker-configuration.d.ts +++ b/terminator/worker-configuration.d.ts @@ -1,6 +1,6 @@ /* eslint-disable */ -// Generated by Wrangler by running `wrangler types` (hash: 28402479c89b8f59a0c4f7e0e0032679) -// Runtime types generated with workerd@1.20260124.0 2025-09-08 nodejs_compat +// Generated by Wrangler by running `wrangler types` (hash: 2bb414105768e1a2b2bd532b243568be) +// Runtime types generated with workerd@1.20260128.0 2025-09-08 nodejs_compat declare namespace Cloudflare { interface GlobalProps { mainModule: typeof import("./bin/terminator"); @@ -11,7 +11,7 @@ declare namespace Cloudflare { ENVIRONMENT: "dev"; RPC_URL: "https://api.calibration.node.glif.io/"; FILBEAM_OPERATOR_CONTRACT_ADDRESS: "0x0000000000000000000000000000000000000000"; - FILBEAM_CONTROLLER_PRIVATE_KEY: string; + FILCDN_CONTROLLER_ADDRESS_PRIVATE_KEY: string; TRANSACTION_MONITOR_WORKFLOW: Workflow[0]['payload']>; } interface CalibrationEnv { @@ -20,7 +20,7 @@ declare namespace Cloudflare { ENVIRONMENT: "calibration"; RPC_URL: "https://api.calibration.node.glif.io/"; FILBEAM_OPERATOR_CONTRACT_ADDRESS: "0x5991E4F9fcEF4AE23959eE03638B4688A7e1EcfF"; - FILBEAM_CONTROLLER_PRIVATE_KEY: string; + FILCDN_CONTROLLER_ADDRESS_PRIVATE_KEY: string; TRANSACTION_MONITOR_WORKFLOW: Workflow[0]['payload']>; } interface MainnetEnv { @@ -29,11 +29,11 @@ declare namespace Cloudflare { ENVIRONMENT: "mainnet"; RPC_URL: "https://api.node.glif.io/"; FILBEAM_OPERATOR_CONTRACT_ADDRESS: "0x9E90749D298C4ca43Bb468CA859Dfe167F9CdCf2"; - FILBEAM_CONTROLLER_PRIVATE_KEY: string; + FILCDN_CONTROLLER_ADDRESS_PRIVATE_KEY: string; TRANSACTION_MONITOR_WORKFLOW: Workflow[0]['payload']>; } interface Env { - FILBEAM_CONTROLLER_PRIVATE_KEY: string; + FILCDN_CONTROLLER_ADDRESS_PRIVATE_KEY: string; DB: D1Database; TRANSACTION_QUEUE: Queue; ENVIRONMENT?: "dev" | "calibration" | "mainnet"; @@ -47,7 +47,7 @@ type StringifyValues> = { [Binding in keyof EnvType]: EnvType[Binding] extends string ? EnvType[Binding] : string; }; declare namespace NodeJS { - interface ProcessEnv extends StringifyValues> {} + interface ProcessEnv extends StringifyValues> {} } // Begin runtime types @@ -1425,6 +1425,12 @@ declare abstract class PromiseRejectionEvent extends Event { */ declare class FormData { constructor(); + /** + * The **`append()`** method of the FormData interface appends a new value onto an existing key inside a `FormData` object, or adds the key if it does not already exist. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/append) + */ + append(name: string, value: string | Blob): void; /** * The **`append()`** method of the FormData interface appends a new value onto an existing key inside a `FormData` object, or adds the key if it does not already exist. * @@ -1461,6 +1467,12 @@ declare class FormData { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/has) */ has(name: string): boolean; + /** + * The **`set()`** method of the FormData interface sets a new value for an existing key inside a `FormData` object, or adds the key/value if it does not already exist. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/set) + */ + set(name: string, value: string | Blob): void; /** * The **`set()`** method of the FormData interface sets a new value for an existing key inside a `FormData` object, or adds the key/value if it does not already exist. * diff --git a/usage-reporter/worker-configuration.d.ts b/usage-reporter/worker-configuration.d.ts index 9c16a562..f0d2492e 100644 --- a/usage-reporter/worker-configuration.d.ts +++ b/usage-reporter/worker-configuration.d.ts @@ -1,6 +1,6 @@ /* eslint-disable */ // Generated by Wrangler by running `wrangler types` (hash: a7270e0c84affc03c77c652655fddc23) -// Runtime types generated with workerd@1.20260124.0 2025-09-08 nodejs_compat +// Runtime types generated with workerd@1.20260128.0 2025-09-08 nodejs_compat declare namespace Cloudflare { interface GlobalProps { mainModule: typeof import("./bin/usage-reporter"); @@ -1429,6 +1429,12 @@ declare abstract class PromiseRejectionEvent extends Event { */ declare class FormData { constructor(); + /** + * The **`append()`** method of the FormData interface appends a new value onto an existing key inside a `FormData` object, or adds the key if it does not already exist. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/append) + */ + append(name: string, value: string | Blob): void; /** * The **`append()`** method of the FormData interface appends a new value onto an existing key inside a `FormData` object, or adds the key if it does not already exist. * @@ -1465,6 +1471,12 @@ declare class FormData { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/has) */ has(name: string): boolean; + /** + * The **`set()`** method of the FormData interface sets a new value for an existing key inside a `FormData` object, or adds the key/value if it does not already exist. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/set) + */ + set(name: string, value: string | Blob): void; /** * The **`set()`** method of the FormData interface sets a new value for an existing key inside a `FormData` object, or adds the key/value if it does not already exist. * diff --git a/workflows/worker-configuration.d.ts b/workflows/worker-configuration.d.ts index f0fc9a6e..206fde0a 100644 --- a/workflows/worker-configuration.d.ts +++ b/workflows/worker-configuration.d.ts @@ -1,6 +1,6 @@ /* eslint-disable */ // Generated by Wrangler by running `wrangler types` (hash: fe521aa636a96e0008ee7e2a532cb2ec) -// Runtime types generated with workerd@1.20260124.0 2025-09-08 nodejs_compat +// Runtime types generated with workerd@1.20260128.0 2025-09-08 nodejs_compat declare namespace Cloudflare { interface GlobalProps { mainModule: typeof import("./lib/transaction-monitor-workflow"); @@ -1395,6 +1395,12 @@ declare abstract class PromiseRejectionEvent extends Event { */ declare class FormData { constructor(); + /** + * The **`append()`** method of the FormData interface appends a new value onto an existing key inside a `FormData` object, or adds the key if it does not already exist. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/append) + */ + append(name: string, value: string | Blob): void; /** * The **`append()`** method of the FormData interface appends a new value onto an existing key inside a `FormData` object, or adds the key if it does not already exist. * @@ -1431,6 +1437,12 @@ declare class FormData { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/has) */ has(name: string): boolean; + /** + * The **`set()`** method of the FormData interface sets a new value for an existing key inside a `FormData` object, or adds the key/value if it does not already exist. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/set) + */ + set(name: string, value: string | Blob): void; /** * The **`set()`** method of the FormData interface sets a new value for an existing key inside a `FormData` object, or adds the key/value if it does not already exist. * diff --git a/x402-piece-gateway/worker-configuration.d.ts b/x402-piece-gateway/worker-configuration.d.ts index f7abab85..731e4779 100644 --- a/x402-piece-gateway/worker-configuration.d.ts +++ b/x402-piece-gateway/worker-configuration.d.ts @@ -1,6 +1,6 @@ /* eslint-disable */ // Generated by Wrangler by running `wrangler types` (hash: 423789f4518de25cafd886421a7d8dd8) -// Runtime types generated with workerd@1.20260124.0 2025-09-08 enable_request_signal,nodejs_compat +// Runtime types generated with workerd@1.20260128.0 2025-09-08 enable_request_signal,nodejs_compat declare namespace Cloudflare { interface GlobalProps { mainModule: typeof import("./bin/x402-piece-gateway"); @@ -1419,6 +1419,12 @@ declare abstract class PromiseRejectionEvent extends Event { */ declare class FormData { constructor(); + /** + * The **`append()`** method of the FormData interface appends a new value onto an existing key inside a `FormData` object, or adds the key if it does not already exist. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/append) + */ + append(name: string, value: string | Blob): void; /** * The **`append()`** method of the FormData interface appends a new value onto an existing key inside a `FormData` object, or adds the key if it does not already exist. * @@ -1455,6 +1461,12 @@ declare class FormData { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/has) */ has(name: string): boolean; + /** + * The **`set()`** method of the FormData interface sets a new value for an existing key inside a `FormData` object, or adds the key/value if it does not already exist. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/set) + */ + set(name: string, value: string | Blob): void; /** * The **`set()`** method of the FormData interface sets a new value for an existing key inside a `FormData` object, or adds the key/value if it does not already exist. *