Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion bad-bits/worker-configuration.d.ts
Original file line number Diff line number Diff line change
@@ -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");
Expand Down Expand Up @@ -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.
*
Expand Down Expand Up @@ -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.
*
Expand Down
14 changes: 13 additions & 1 deletion indexer/worker-configuration.d.ts
Original file line number Diff line number Diff line change
@@ -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");
Expand Down Expand Up @@ -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.
*
Expand Down Expand Up @@ -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.
*
Expand Down
200 changes: 189 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"vitest": "3.1.4",
"wrangler": "^4.61.0"
"wrangler": "^4.61.1"
}
}
14 changes: 13 additions & 1 deletion payment-settler/worker-configuration.d.ts
Original file line number Diff line number Diff line change
@@ -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");
Expand Down Expand Up @@ -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.
*
Expand Down Expand Up @@ -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.
*
Expand Down
Loading
Loading