Skip to content

Commit 4e49d3e

Browse files
add missing type for send_email's experimental_remote field (#10571)
1 parent 3b78839 commit 4e49d3e

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.changeset/four-news-read.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"wrangler": patch
3+
---
4+
5+
add missing type for `send_email`'s `experimental_remote` field

packages/wrangler/src/config/environment.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -692,6 +692,8 @@ export interface EnvironmentNonInheritable {
692692
destination_address?: string;
693693
/** If this binding should be restricted to a set of verified addresses */
694694
allowed_destination_addresses?: string[];
695+
/** Whether the binding should be remote or not (only available under `--x-remote-bindings`) */
696+
experimental_remote?: boolean;
695697
}[];
696698

697699
/**

0 commit comments

Comments
 (0)