Skip to main content

Cloudflare/tunnel

@webframp/cloudflare/tunnelv2026.08.21.1· 1d agoMODELS
01README

Cloudflare Tunnel — tunnel management, configurations, connections

02Release Notes

2026.08.21.1

Changed: Errors and validation now say what went wrong and where.

  • Cloudflare API failures (HTTP errors and success: false API responses) now name the HTTP method and path that was attempted, in addition to the original status/message. Previously the error read only Cloudflare API error: <message>, with no indication of which endpoint the method call was hitting — now it reads Cloudflare API request failed: GET /accounts/<account>/cfd_tunnel/<id>: <message>. This applies to every method on this model, since they all share the same request helper.
  • tunnel_id and connector_id are now validated as non-empty before any request is made. Passing an empty string previously sent a request to a malformed URL and produced a confusing 404 from Cloudflare; each now fails fast with a <field> must not be empty message.

Upgrade note: No method was added, removed, or renamed. Existing callers that always pass non-empty identifiers see no behavioral change beyond clearer error text.

03Models1
@webframp/cloudflare/tunnelv2026.08.21.1cloudflare/tunnel.ts

Global Arguments

ArgumentTypeDescription
apiTokenstringCloudflare API token
accountIdstringCloudflare account ID
fn list_cloudflare_tunnels(name?: string, is_deleted?: boolean, existed_at?: string, uuid?: string, was_active_at?: string, was_inactive_at?: string, include_prefix?: string, exclude_prefix?: string, status?: string, per_page?: string, page?: string)
List Cloudflare Tunnels
ArgumentTypeDescription
name?string
is_deleted?boolean
existed_at?string
uuid?string
was_active_at?string
was_inactive_at?string
include_prefix?string
exclude_prefix?string
status?string
per_page?string
page?string
fn create_a_cloudflare_tunnel(config_src?: unknown, name: unknown, tunnel_secret?: unknown)
Create a Cloudflare Tunnel
ArgumentTypeDescription
config_src?unknown
nameunknown
tunnel_secret?unknown
fn get_a_cloudflare_tunnel(tunnel_id: string)
Get a Cloudflare Tunnel
ArgumentTypeDescription
tunnel_idstring
fn update_a_cloudflare_tunnel(tunnel_id: string, name?: unknown, tunnel_secret?: unknown)
Update a Cloudflare Tunnel
ArgumentTypeDescription
tunnel_idstring
name?unknown
tunnel_secret?unknown
fn delete_a_cloudflare_tunnel(tunnel_id: string)
Delete a Cloudflare Tunnel
ArgumentTypeDescription
tunnel_idstring
fn get_configuration(tunnel_id: string)
Get configuration
ArgumentTypeDescription
tunnel_idstring
fn put_configuration(tunnel_id: string, config?: unknown)
Put configuration
ArgumentTypeDescription
tunnel_idstring
config?unknown
fn list_cloudflare_tunnel_connections(tunnel_id: string)
List Cloudflare Tunnel connections
ArgumentTypeDescription
tunnel_idstring
fn delete_cloudflare_tunnel_clean_up_cloudflare_tunnel_connections(tunnel_id: string, client_id?: string)
Clean up Cloudflare Tunnel connections
ArgumentTypeDescription
tunnel_idstring
client_id?string
fn get_cloudflare_tunnel_connector(tunnel_id: string, connector_id: string)
Get Cloudflare Tunnel connector
ArgumentTypeDescription
tunnel_idstring
connector_idstring
fn get_a_cloudflare_tunnel_management_token(tunnel_id: string, resources: array)
Get a Cloudflare Tunnel management token
ArgumentTypeDescription
tunnel_idstring
resourcesarray
fn get_a_cloudflare_tunnel_token(tunnel_id: string)
Get a Cloudflare Tunnel token
ArgumentTypeDescription
tunnel_idstring
fn list_all_tunnels(name?: string, is_deleted?: boolean, existed_at?: string, uuid?: string, was_active_at?: string, was_inactive_at?: string, include_prefix?: string, exclude_prefix?: string, tun_types?: string, status?: string, per_page?: string, page?: string)
List All Tunnels
ArgumentTypeDescription
name?string
is_deleted?boolean
existed_at?string
uuid?string
was_active_at?string
was_inactive_at?string
include_prefix?string
exclude_prefix?string
tun_types?string
status?string
per_page?string
page?string

Resources

cloudflare_tunnels(infinite)— List Cloudflare Tunnels
a_cloudflare_tunnel(infinite)— Create a Cloudflare Tunnel
configuration(infinite)— Get configuration
put_configuration(infinite)— Put configuration
cloudflare_tunnel_connections(infinite)— List Cloudflare Tunnel connections
cloudflare_tunnel_connector(infinite)— Get Cloudflare Tunnel connector
a_cloudflare_tunnel_management_token(infinite)— Get a Cloudflare Tunnel management token
a_cloudflare_tunnel_token(infinite)— Get a Cloudflare Tunnel token
all_tunnels(infinite)— List All Tunnels
04Previous Versions2
2026.07.27.1

2026.07.27.1

Fixed: Regenerated from scripts/cloudflare-codegen after two generator bugs were repaired (webframp/swamp-extensions#284).

  1. Methods referencing an undeclared path parameter did not compile. The generator derived a method's arguments schema and execute signature from the OpenAPI parameters list, but built the request URL from the path template. Where the Cloudflare spec omits a declaration for a {placeholder} — which it does in several places — the result was a method with arguments: z.object({}) and an unused _args parameter whose body still interpolated args.<name>. Those methods failed type checking and were uncallable even if they had compiled, because the argument was never declared. Path-template placeholders are now unioned into the declared parameters, so the schema, the signature, and the body agree.

  2. Generated tests could request a URL the mock server did not serve. Test arguments merged the request-body fixture over the path-parameter values, so a body property sharing a name with a path parameter (commonly id) substituted its own example value into the URL. The request then missed the mock and failed with Cloudflare API error: Not found. Path parameters now take precedence, matching what the generated model already does by excluding path-parameter names from the request body.

Upgrade note: No API surface change and no method was added or removed. If this extension type-checked and tested cleanly before, its behavior is unchanged and only the version moved. Extensions that previously failed deno check or deno task test now pass.

2026.07.19.1

2026.07.19.1

Added: Initial code-generated release of @webframp/cloudflare/tunnel with 13 methods covering the Cloudflare tunnel API surface.

05Stats
A
100 / 100
Downloads
4
Archive size
7.9 KB
  • Has README or module doc2/2earned
  • README has a code example1/1earned
  • README is substantive1/1earned
  • Most symbols documented1/1earned
  • No slow types (deprecated)1/1earned
  • Dependencies pass trust audit2/2earned
  • Has description1/1earned
  • Platform support declared (or universal)2/2earned
  • License declared1/1earned
  • Verified public repository2/2earned
06Platforms
07Labels