minutework 0.1.49 → 0.1.50

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "minutework",
3
- "version": "0.1.49",
3
+ "version": "0.1.50",
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.11"
28
+ "@minutework/schema-compiler": "0.1.12"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/node": "^24.9.1",
@@ -521,6 +521,7 @@ export declare const SchemaStatusSchema: z.ZodObject<{
521
521
  queryManifests: z.ZodArray<z.ZodObject<{
522
522
  agent_exposed: z.ZodOptional<z.ZodBoolean>;
523
523
  app_id: z.ZodString;
524
+ bridge_adapter_ref: z.ZodOptional<z.ZodString>;
524
525
  definition: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
525
526
  description: z.ZodString;
526
527
  entity_name: z.ZodString;
@@ -530,6 +531,7 @@ export declare const SchemaStatusSchema: z.ZodObject<{
530
531
  detail: "detail";
531
532
  list: "list";
532
533
  }>, z.ZodLiteral<"connector">]>;
534
+ query_resolver: z.ZodOptional<z.ZodString>;
533
535
  required_roles: z.ZodOptional<z.ZodArray<z.ZodString>>;
534
536
  schema_key: z.ZodString;
535
537
  version: z.ZodLiteral<"QueryManifestV1">;