@1claw/openapi-spec 0.59.9 → 0.60.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/README.md +21 -1
  2. package/openapi.json +3532 -312
  3. package/openapi.yaml +2193 -63
  4. package/package.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @1claw/openapi-spec (v0.59.4)
1
+ # @1claw/openapi-spec (v0.59.10)
2
2
 
3
3
  > ⭐ **Star [1clawAI/agent-templates](https://github.com/1clawAI/agent-templates)** — ready-to-run agent templates wired to 1Claw. It is our single starred repo.
4
4
 
@@ -42,6 +42,26 @@ openapi-generator generate \
42
42
  import spec from "@1claw/openapi-spec/openapi.json";
43
43
  ```
44
44
 
45
+ ## What's in the spec (v0.59.10)
46
+
47
+ Additive only — no path or parameter renames, so generated clients keep compiling.
48
+
49
+ - **Browser device management** — `GET /v1/browser/devices` and
50
+ `DELETE /v1/browser/devices/{id}`. Revoked devices are listed rather than
51
+ hidden; revocation is what makes a leaked `bb_` bridge credential stop working.
52
+ - **The fill request gained four required fields** — `form_path`, `field_names`,
53
+ `redirect_chain` and `current_generation` on
54
+ `POST /v1/agents/{id}/browser/fills`. They were optional and the server filled
55
+ them in when absent, which turned three of its own policy checks off. A request
56
+ missing any of them is refused with a 400 naming them. Send
57
+ `current_generation` as the generation observed *now*: the same value as
58
+ `generation` makes the staleness check compare a value to itself.
59
+ - **`POST /v1/vaults` documents 409** for a duplicate name, and what 400 covers
60
+ (empty, or over 255 characters). Both were 500s. `CreateVaultRequest.name`
61
+ carries the real constraints.
62
+ - **`POST /v1/runtimes/{id}/chat` documents 503** — the runtime's last start
63
+ failed under 120s ago and is not being retried yet.
64
+
45
65
  ## What's in the spec (v0.59.4)
46
66
 
47
67
  ### Platform connection expansion (v0.59.4)