Cloudflare/queues
Cloudflare Queues — queue management, consumers, message operations
2026.08.28.2
Hardened codegen: instance names sanitized against path traversal; 429 rate-limit retry with Retry-After; string schema patterns emit regex validation; output schemas passthrough unknown fields; apiToken now optional and vault-wireable with CLOUDFLARE_API_TOKEN env fallback.
Global Arguments
| Argument | Type | Description |
|---|---|---|
| apiToken? | string | Cloudflare API token; overrides the CLOUDFLARE_API_TOKEN environment variable. Wire with a vault.get(...) expression to source it from a vault. |
| accountId | string | Cloudflare account ID |
| Argument | Type | Description |
|---|---|---|
| queue_name | unknown |
| Argument | Type | Description |
|---|---|---|
| queue_id | string |
| Argument | Type | Description |
|---|---|---|
| queue_id | string | |
| consumers? | array | |
| consumers_total_count? | number | |
| created_on? | string | |
| modified_on? | string | |
| producers? | array | |
| producers_total_count? | number | |
| queue_name? | unknown | |
| settings? | unknown |
| Argument | Type | Description |
|---|---|---|
| queue_id | string | |
| consumers? | array | |
| consumers_total_count? | number | |
| created_on? | string | |
| modified_on? | string | |
| producers? | array | |
| producers_total_count? | number | |
| queue_name? | unknown | |
| settings? | unknown |
| Argument | Type | Description |
|---|---|---|
| queue_id | string |
| Argument | Type | Description |
|---|---|---|
| queue_id | string |
| Argument | Type | Description |
|---|---|---|
| queue_id | string | |
| body | union | Request body for creating or updating a consumer |
| Argument | Type | Description |
|---|---|---|
| consumer_id | string | |
| queue_id | string |
| Argument | Type | Description |
|---|---|---|
| consumer_id | string | |
| queue_id | string | |
| body | union | Request body for creating or updating a consumer |
| Argument | Type | Description |
|---|---|---|
| consumer_id | string | |
| queue_id | string |
| Argument | Type | Description |
|---|---|---|
| queue_id | string | |
| delay_seconds? | number | The number of seconds to wait for attempting to deliver this message to consu... |
| Argument | Type | Description |
|---|---|---|
| queue_id | string | |
| acks? | array | |
| retries? | array |
| Argument | Type | Description |
|---|---|---|
| queue_id | string | |
| delay_seconds? | number | The number of seconds to wait for attempting to deliver this batch to consumers |
| messages? | array |
| Argument | Type | Description |
|---|---|---|
| queue_id | string | |
| batch_size? | unknown |
| Argument | Type | Description |
|---|---|---|
| queue_id | string | |
| acks? | array | |
| retries? | array |
| Argument | Type | Description |
|---|---|---|
| queue_id | string | |
| batch_size? | unknown | |
| visibility_timeout_ms? | unknown |
| Argument | Type | Description |
|---|---|---|
| queue_id | string |
| Argument | Type | Description |
|---|---|---|
| queue_id | string | |
| delete_messages_permanently? | boolean | Confimation that all messages will be deleted permanently. |
Resources
2026.08.28.1
Changed: Normalized the extension license to Apache-2.0 and corrected the copyright holder to "Sean Escriva". Extensions that previously shipped an MIT LICENSE.md are now Apache-2.0, consistent with the repository root and every other extension. No code or behavioral changes.
Upgrade note: License text only. No API, schema, or runtime behavior changed.
2026.08.26.2
Fixed: Restored inline npm:zod@4.4.3 import specifiers so the registry
quality scorer can resolve dependencies and score the extension. An earlier
release used a bare "zod" import-map specifier, which published but scored as
unscored.
Changed: Retained explicit compilerOptions.strict in deno.json. No
behavioral or schema changes.
2026.08.26.2
Fixed: Restored inline npm:zod@4.4.3 import specifiers so the registry
quality scorer can resolve dependencies and score the extension. An earlier
release used a bare "zod" import-map specifier, which published but scored as
unscored.
Changed: Retained explicit compilerOptions.strict in deno.json. No
behavioral or schema changes.
2026.08.25.1
Changed: Updated labels for improved extension discoverability. Added cross-cutting category labels (security, observability, finops, infrastructure, networking, compliance, devops, ai, incident-response) where applicable.
updated labels
2026.08.24.1
Added: Output metadata attributes for observability.
durationMs: Method execution duration in milliseconds.collectedBy: Extension name that produced the data.fetchedAt: ISO 8601 timestamp when data was fetched (added to resources that previously lacked it).
2026.08.21.2
Changed:
- Errors raised when a Cloudflare API call fails now name the HTTP method
and path that was attempted (e.g.
Cloudflare API POST /accounts/.../queues/xxx/messages/ack failed with HTTP 400 ...) instead of a bareCloudflare API error: .... Network-level failures (DNS, connection reset, timeout) are now also caught and wrapped with the same operation context instead of surfacing a rawfetcherror. create_queues_ack_messagesandcreate_queues_ack_preview_messagesnow reject requests where bothacksandretriesare empty, since such a request has no effect on the queue.create_queues_push_messagesnow rejects an emptymessagesarray before making a request, instead of sending a no-op batch to Cloudflare.
No breaking changes. Existing calls that already supplied at least one ack, retry, or message are unaffected.
2026.08.21.1
Changed: Added .describe() and .min(1) to the queue_id and
consumer_id identifier arguments used across most methods. No behavioral
changes.
2026.07.27.1
Fixed: Regenerated from scripts/cloudflare-codegen after two generator
bugs were repaired (webframp/swamp-extensions#284).
Methods referencing an undeclared path parameter did not compile. The generator derived a method's arguments schema and execute signature from the OpenAPI
parameterslist, 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 witharguments: z.object({})and an unused_argsparameter whose body still interpolatedargs.<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.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 withCloudflare 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.27.1
Fixed: Regenerated from scripts/cloudflare-codegen after two generator
bugs were repaired (webframp/swamp-extensions#284).
Methods referencing an undeclared path parameter did not compile. The generator derived a method's arguments schema and execute signature from the OpenAPI
parameterslist, 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 witharguments: z.object({})and an unused_argsparameter whose body still interpolatedargs.<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.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 withCloudflare 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
Added: Initial code-generated release of @webframp/cloudflare/queues with 19 methods covering the Cloudflare queues API surface.
- 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