@koda-sl/baker-cli 0.103.0 → 0.104.0-dev.3ea70eed7

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/dist/cli.js CHANGED
@@ -9,7 +9,7 @@ import {
9
9
  defaultRegistry,
10
10
  generateCatalog,
11
11
  validateCanvasDeep
12
- } from "./chunk-3JVYU72O.js";
12
+ } from "./chunk-26K7V346.js";
13
13
 
14
14
  // src/cli.ts
15
15
  import { defineCommand as defineCommand152, runMain } from "citty";
@@ -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";