@koda-sl/baker-cli 0.103.0 → 0.104.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.
- package/README.md +1 -0
- package/dist/cli.js +8 -0
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4282,6 +4282,7 @@ This CLI is designed for AI agent consumption. Key patterns:
|
|
|
4282
4282
|
## Internal Notes
|
|
4283
4283
|
|
|
4284
4284
|
- **0.103.0**: `baker actions ...` commands now type their `/api/actions/...` request/response payloads from the shared `@baker/api` contract package (also consumed by the backend) instead of hand-written local interfaces. No command, flag, or output-shape changes.
|
|
4285
|
+
- **0.104.0**: `baker actions tags ...` commands now type their `/api/actions/tags...` request/response payloads from the shared `@baker/api` contract package instead of hand-written local interfaces. No command, flag, or output-shape changes.
|
|
4285
4286
|
|
|
4286
4287
|
## Publishing
|
|
4287
4288
|
|
package/dist/cli.js
CHANGED
|
@@ -926,6 +926,14 @@ var actionsRemoveDraftOpRequestSchema = z2.object({
|
|
|
926
926
|
target: removeDraftOpTargetSchema
|
|
927
927
|
});
|
|
928
928
|
var actionsRemoveDraftOpResponseSchema = okOnlySchema();
|
|
929
|
+
var actionsTagsListResponseSchema = z2.object({ markdown: z2.string() });
|
|
930
|
+
var actionsTagsCreateRequestSchema = z2.object({
|
|
931
|
+
name: z2.string(),
|
|
932
|
+
description: z2.string().optional()
|
|
933
|
+
});
|
|
934
|
+
var actionsTagsCreateResponseSchema = okResponse(z2.object({ tagId: z2.string() }));
|
|
935
|
+
var actionsTagsDeleteRequestSchema = z2.object({ name: z2.string() });
|
|
936
|
+
var actionsTagsDeleteResponseSchema = okOnlySchema();
|
|
929
937
|
|
|
930
938
|
// src/commands/actions/complete.ts
|
|
931
939
|
import { defineCommand as defineCommand2 } from "citty";
|