@1claw/openapi-spec 0.60.0 → 0.61.1

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.
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @1claw/openapi-spec (v0.59.10)
1
+ # @1claw/openapi-spec (v0.61.0)
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,24 @@ openapi-generator generate \
42
42
  import spec from "@1claw/openapi-spec/openapi.json";
43
43
  ```
44
44
 
45
+ ## What's in the spec (v0.61.0)
46
+
47
+ Additive only — no path or parameter renames, so generated clients keep compiling.
48
+
49
+ - **Fleet management** — `GET /v1/platform/apps/{appId}/fleets/{template_id}`
50
+ and `/agents`; `POST .../bulk-patch`, `.../rollout`, `.../pause`. Four new
51
+ schemas: `FleetSummaryResponse`, `ListFleetAgentsResponse`, `FleetAgent`,
52
+ `FleetRolloutResponse`.
53
+ - **Two things the descriptions state deliberately**, because a client that
54
+ guesses either wrong causes damage at cohort scale: read
55
+ `bulk_patchable_fields` off the fleet summary rather than hard-coding it (it
56
+ excludes guardrails and capability flags and may narrow further), and expect
57
+ `job_id` to be `null` for a dry run.
58
+ - **`spec_hash` on `PlatformTemplateResponse`** — distinguishes a template
59
+ version bump that changed nothing from one that did.
60
+ - New nullable fields use 3.1 union types (`type: [string, "null"]`) rather
61
+ than the 3.0 `nullable:` keyword the rest of the file still uses.
62
+
45
63
  ## What's in the spec (v0.59.10)
46
64
 
47
65
  Additive only — no path or parameter renames, so generated clients keep compiling.