minutework 0.1.43 → 0.1.45

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.
@@ -77,11 +77,11 @@ flows, or the default MinuteWork site model.
77
77
  ## Current Baseline Catalog
78
78
 
79
79
  <!-- builder-doc-sync:mw-core-site:start -->
80
- - Baseline schemas: `mw.core.site.config`, `mw.core.site.page`,
81
- `mw.core.site.nav`, `mw.core.site.form`, `mw.core.site.submission`
80
+ - Baseline schemas: `mw.core.site.config`, `mw.core.site.page`, `mw.core.site.nav`,
81
+ `mw.core.site.form`, `mw.core.site.submission`
82
82
  - Query surfaces: `site.get_public_config`, `site.get_page_by_path`,
83
83
  `site.list_navigation`, `site.get_form_definition`
84
- - Action surfaces: `site.upsert_config`, `site.upsert_page`,
85
- `site.upsert_navigation`, `site.upsert_form`
84
+ - Action surfaces: `site.upsert_config`, `site.upsert_page`, `site.upsert_navigation`,
85
+ `site.upsert_form`
86
86
  - Reserved next schema: `mw.core.site.post`
87
87
  <!-- builder-doc-sync:mw-core-site:end -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "minutework",
3
- "version": "0.1.43",
3
+ "version": "0.1.45",
4
4
  "description": "MinuteWork CLI for workspace scaffolding, local preview workflows, and hosted preview deploys.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -25,7 +25,7 @@
25
25
  "jiti": "^2.6.1",
26
26
  "zod": "^4.3.6",
27
27
  "@minutework/platform-config": "0.1.3",
28
- "@minutework/schema-compiler": "0.1.6"
28
+ "@minutework/schema-compiler": "0.1.8"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/node": "^24.9.1",
@@ -381,7 +381,12 @@ export declare const SchemaStatusSchema: z.ZodObject<{
381
381
  action_kind: z.ZodUnion<readonly [z.ZodEnum<{
382
382
  create: "create";
383
383
  }>, z.ZodLiteral<"invoke">]>;
384
+ agent_exposed: z.ZodOptional<z.ZodBoolean>;
384
385
  app_id: z.ZodString;
386
+ approval_required: z.ZodOptional<z.ZodBoolean>;
387
+ approval_scope: z.ZodOptional<z.ZodString>;
388
+ approval_summary_template: z.ZodOptional<z.ZodString>;
389
+ approval_timeout_sec: z.ZodOptional<z.ZodNumber>;
385
390
  definition: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
386
391
  description: z.ZodString;
387
392
  entity_name: z.ZodString;
@@ -467,6 +472,7 @@ export declare const SchemaStatusSchema: z.ZodObject<{
467
472
  version: z.ZodLiteral<"ProjectionContractV1">;
468
473
  }, z.core.$strict>>;
469
474
  queryManifests: z.ZodArray<z.ZodObject<{
475
+ agent_exposed: z.ZodOptional<z.ZodBoolean>;
470
476
  app_id: z.ZodString;
471
477
  definition: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
472
478
  description: z.ZodString;