minutework 0.1.10 → 0.1.12

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.
Files changed (41) hide show
  1. package/EXTERNAL_ALPHA.md +3 -0
  2. package/README.md +2 -0
  3. package/dist/cli.js +0 -0
  4. package/dist/index.js +12 -1
  5. package/dist/index.js.map +1 -1
  6. package/dist/init.js +5 -64
  7. package/dist/init.js.map +1 -1
  8. package/dist/orchestrator-context.js +1 -1
  9. package/dist/orchestrator-context.js.map +1 -1
  10. package/dist/orchestrator-state.d.ts +4 -4
  11. package/dist/orchestrator.js +1 -1
  12. package/dist/orchestrator.js.map +1 -1
  13. package/dist/reporting.js +1 -1
  14. package/dist/reporting.js.map +1 -1
  15. package/dist/sandbox.js +1 -1
  16. package/dist/sandbox.js.map +1 -1
  17. package/dist/workspace-assets.d.ts +56 -0
  18. package/dist/workspace-assets.js +409 -0
  19. package/dist/workspace-assets.js.map +1 -0
  20. package/dist/workspace.d.ts +8 -0
  21. package/dist/workspace.js +158 -0
  22. package/dist/workspace.js.map +1 -0
  23. package/package.json +7 -5
  24. package/vendor/workspace-mcp/cli.d.ts +2 -0
  25. package/vendor/workspace-mcp/cli.js +5 -0
  26. package/vendor/workspace-mcp/cli.js.map +1 -0
  27. package/vendor/workspace-mcp/context.d.ts +89 -0
  28. package/vendor/workspace-mcp/context.js +1840 -0
  29. package/vendor/workspace-mcp/context.js.map +1 -0
  30. package/vendor/workspace-mcp/index.d.ts +5 -0
  31. package/vendor/workspace-mcp/index.js +4 -0
  32. package/vendor/workspace-mcp/index.js.map +1 -0
  33. package/vendor/workspace-mcp/runtime-state.d.ts +23 -0
  34. package/vendor/workspace-mcp/runtime-state.js +88 -0
  35. package/vendor/workspace-mcp/runtime-state.js.map +1 -0
  36. package/vendor/workspace-mcp/server.d.ts +17 -0
  37. package/vendor/workspace-mcp/server.js +94 -0
  38. package/vendor/workspace-mcp/server.js.map +1 -0
  39. package/vendor/workspace-mcp/types.d.ts +1527 -0
  40. package/vendor/workspace-mcp/types.js +432 -0
  41. package/vendor/workspace-mcp/types.js.map +1 -0
@@ -0,0 +1,1527 @@
1
+ import { z } from "zod";
2
+ export declare const DiagnosticSeveritySchema: z.ZodEnum<{
3
+ info: "info";
4
+ warning: "warning";
5
+ error: "error";
6
+ }>;
7
+ export declare const WorkspaceDiagnosticSchema: z.ZodObject<{
8
+ action: z.ZodOptional<z.ZodString>;
9
+ code: z.ZodString;
10
+ detail: z.ZodString;
11
+ path: z.ZodOptional<z.ZodString>;
12
+ severity: z.ZodEnum<{
13
+ info: "info";
14
+ warning: "warning";
15
+ error: "error";
16
+ }>;
17
+ summary: z.ZodString;
18
+ }, z.core.$strip>;
19
+ export declare const WorkspaceStarterSchema: z.ZodObject<{
20
+ absolutePath: z.ZodString;
21
+ enabled: z.ZodBoolean;
22
+ id: z.ZodString;
23
+ path: z.ZodString;
24
+ }, z.core.$strip>;
25
+ export declare const NormalizedWorkspaceStarterConfigSchema: z.ZodObject<{
26
+ absolutePath: z.ZodString;
27
+ enabled: z.ZodBoolean;
28
+ path: z.ZodString;
29
+ }, z.core.$strip>;
30
+ export declare const FilePresenceSchema: z.ZodObject<{
31
+ exists: z.ZodBoolean;
32
+ path: z.ZodString;
33
+ }, z.core.$strip>;
34
+ export declare const BindingPayloadSchema: z.ZodObject<{
35
+ authProfileId: z.ZodString;
36
+ environment: z.ZodEnum<{
37
+ preview: "preview";
38
+ live: "live";
39
+ }>;
40
+ platformBaseUrl: z.ZodString;
41
+ propertyKey: z.ZodString;
42
+ releaseClass: z.ZodLiteral<"ssr_container">;
43
+ tenantId: z.ZodString;
44
+ tenantSlug: z.ZodString;
45
+ workspaceName: z.ZodString;
46
+ }, z.core.$strip>;
47
+ export declare const BindingStatusSchema: z.ZodObject<{
48
+ binding: z.ZodNullable<z.ZodObject<{
49
+ authProfileId: z.ZodString;
50
+ environment: z.ZodEnum<{
51
+ preview: "preview";
52
+ live: "live";
53
+ }>;
54
+ platformBaseUrl: z.ZodString;
55
+ propertyKey: z.ZodString;
56
+ releaseClass: z.ZodLiteral<"ssr_container">;
57
+ tenantId: z.ZodString;
58
+ tenantSlug: z.ZodString;
59
+ workspaceName: z.ZodString;
60
+ }, z.core.$strip>>;
61
+ exists: z.ZodBoolean;
62
+ matchesActiveAuthProfile: z.ZodNullable<z.ZodBoolean>;
63
+ path: z.ZodString;
64
+ status: z.ZodEnum<{
65
+ linked: "linked";
66
+ missing: "missing";
67
+ }>;
68
+ }, z.core.$strip>;
69
+ export declare const AuthProfileSummarySchema: z.ZodObject<{
70
+ createdAt: z.ZodString;
71
+ expiresAt: z.ZodString;
72
+ id: z.ZodString;
73
+ platformBaseUrl: z.ZodString;
74
+ scopeTemplate: z.ZodString;
75
+ scopes: z.ZodArray<z.ZodString>;
76
+ tenantId: z.ZodString;
77
+ tenantName: z.ZodString;
78
+ tenantSlug: z.ZodString;
79
+ tokenKind: z.ZodString;
80
+ user: z.ZodObject<{
81
+ email: z.ZodString;
82
+ id: z.ZodString;
83
+ username: z.ZodString;
84
+ }, z.core.$strip>;
85
+ }, z.core.$strip>;
86
+ export declare const AuthStatusSchema: z.ZodObject<{
87
+ authRoot: z.ZodString;
88
+ currentProfilePath: z.ZodString;
89
+ expiresInSeconds: z.ZodNullable<z.ZodNumber>;
90
+ profile: z.ZodNullable<z.ZodObject<{
91
+ createdAt: z.ZodString;
92
+ expiresAt: z.ZodString;
93
+ id: z.ZodString;
94
+ platformBaseUrl: z.ZodString;
95
+ scopeTemplate: z.ZodString;
96
+ scopes: z.ZodArray<z.ZodString>;
97
+ tenantId: z.ZodString;
98
+ tenantName: z.ZodString;
99
+ tenantSlug: z.ZodString;
100
+ tokenKind: z.ZodString;
101
+ user: z.ZodObject<{
102
+ email: z.ZodString;
103
+ id: z.ZodString;
104
+ username: z.ZodString;
105
+ }, z.core.$strip>;
106
+ }, z.core.$strip>>;
107
+ profilePath: z.ZodNullable<z.ZodString>;
108
+ status: z.ZodEnum<{
109
+ missing: "missing";
110
+ active: "active";
111
+ expired: "expired";
112
+ }>;
113
+ }, z.core.$strip>;
114
+ export declare const ArtifactStatusSchema: z.ZodObject<{
115
+ canonicalPath: z.ZodString;
116
+ detail: z.ZodString;
117
+ exists: z.ZodBoolean;
118
+ id: z.ZodString;
119
+ prerequisiteCodes: z.ZodArray<z.ZodString>;
120
+ status: z.ZodEnum<{
121
+ available: "available";
122
+ blocked: "blocked";
123
+ ready: "ready";
124
+ reserved: "reserved";
125
+ }>;
126
+ }, z.core.$strip>;
127
+ export declare const NormalizedWorkspaceConfigSchema: z.ZodObject<{
128
+ localState: z.ZodObject<{
129
+ directory: z.ZodString;
130
+ directoryPath: z.ZodString;
131
+ }, z.core.$strip>;
132
+ platform: z.ZodNullable<z.ZodObject<{
133
+ baseUrl: z.ZodNullable<z.ZodString>;
134
+ defaultEnvironment: z.ZodNullable<z.ZodEnum<{
135
+ preview: "preview";
136
+ live: "live";
137
+ }>>;
138
+ }, z.core.$strip>>;
139
+ mcp: z.ZodObject<{
140
+ claudeDesktopSamplePath: z.ZodString;
141
+ claudeDesktopSampleAbsolutePath: z.ZodString;
142
+ cursorConfigPath: z.ZodString;
143
+ cursorConfigAbsolutePath: z.ZodString;
144
+ }, z.core.$strip>;
145
+ schema: z.ZodObject<{
146
+ directory: z.ZodString;
147
+ directoryPath: z.ZodString;
148
+ entrypoint: z.ZodString;
149
+ entrypointPath: z.ZodString;
150
+ }, z.core.$strip>;
151
+ starters: z.ZodObject<{
152
+ sidecar: z.ZodObject<{
153
+ absolutePath: z.ZodString;
154
+ enabled: z.ZodBoolean;
155
+ path: z.ZodString;
156
+ }, z.core.$strip>;
157
+ tenantApp: z.ZodObject<{
158
+ absolutePath: z.ZodString;
159
+ enabled: z.ZodBoolean;
160
+ path: z.ZodString;
161
+ }, z.core.$strip>;
162
+ }, z.core.$strip>;
163
+ workspace: z.ZodObject<{
164
+ name: z.ZodString;
165
+ }, z.core.$strip>;
166
+ }, z.core.$strip>;
167
+ export declare const ResolvedPlatformSchema: z.ZodObject<{
168
+ baseUrl: z.ZodString;
169
+ hasLegacyOverride: z.ZodBoolean;
170
+ source: z.ZodEnum<{
171
+ shellEnv: "shellEnv";
172
+ workspaceConfig: "workspaceConfig";
173
+ workspaceDefault: "workspaceDefault";
174
+ }>;
175
+ }, z.core.$strip>;
176
+ export declare const WorkspaceSnapshotSchema: z.ZodObject<{
177
+ authStatus: z.ZodObject<{
178
+ authRoot: z.ZodString;
179
+ currentProfilePath: z.ZodString;
180
+ expiresInSeconds: z.ZodNullable<z.ZodNumber>;
181
+ profile: z.ZodNullable<z.ZodObject<{
182
+ createdAt: z.ZodString;
183
+ expiresAt: z.ZodString;
184
+ id: z.ZodString;
185
+ platformBaseUrl: z.ZodString;
186
+ scopeTemplate: z.ZodString;
187
+ scopes: z.ZodArray<z.ZodString>;
188
+ tenantId: z.ZodString;
189
+ tenantName: z.ZodString;
190
+ tenantSlug: z.ZodString;
191
+ tokenKind: z.ZodString;
192
+ user: z.ZodObject<{
193
+ email: z.ZodString;
194
+ id: z.ZodString;
195
+ username: z.ZodString;
196
+ }, z.core.$strip>;
197
+ }, z.core.$strip>>;
198
+ profilePath: z.ZodNullable<z.ZodString>;
199
+ status: z.ZodEnum<{
200
+ missing: "missing";
201
+ active: "active";
202
+ expired: "expired";
203
+ }>;
204
+ }, z.core.$strip>;
205
+ bindingStatus: z.ZodObject<{
206
+ binding: z.ZodNullable<z.ZodObject<{
207
+ authProfileId: z.ZodString;
208
+ environment: z.ZodEnum<{
209
+ preview: "preview";
210
+ live: "live";
211
+ }>;
212
+ platformBaseUrl: z.ZodString;
213
+ propertyKey: z.ZodString;
214
+ releaseClass: z.ZodLiteral<"ssr_container">;
215
+ tenantId: z.ZodString;
216
+ tenantSlug: z.ZodString;
217
+ workspaceName: z.ZodString;
218
+ }, z.core.$strip>>;
219
+ exists: z.ZodBoolean;
220
+ matchesActiveAuthProfile: z.ZodNullable<z.ZodBoolean>;
221
+ path: z.ZodString;
222
+ status: z.ZodEnum<{
223
+ linked: "linked";
224
+ missing: "missing";
225
+ }>;
226
+ }, z.core.$strip>;
227
+ config: z.ZodObject<{
228
+ localState: z.ZodObject<{
229
+ directory: z.ZodString;
230
+ directoryPath: z.ZodString;
231
+ }, z.core.$strip>;
232
+ platform: z.ZodNullable<z.ZodObject<{
233
+ baseUrl: z.ZodNullable<z.ZodString>;
234
+ defaultEnvironment: z.ZodNullable<z.ZodEnum<{
235
+ preview: "preview";
236
+ live: "live";
237
+ }>>;
238
+ }, z.core.$strip>>;
239
+ mcp: z.ZodObject<{
240
+ claudeDesktopSamplePath: z.ZodString;
241
+ claudeDesktopSampleAbsolutePath: z.ZodString;
242
+ cursorConfigPath: z.ZodString;
243
+ cursorConfigAbsolutePath: z.ZodString;
244
+ }, z.core.$strip>;
245
+ schema: z.ZodObject<{
246
+ directory: z.ZodString;
247
+ directoryPath: z.ZodString;
248
+ entrypoint: z.ZodString;
249
+ entrypointPath: z.ZodString;
250
+ }, z.core.$strip>;
251
+ starters: z.ZodObject<{
252
+ sidecar: z.ZodObject<{
253
+ absolutePath: z.ZodString;
254
+ enabled: z.ZodBoolean;
255
+ path: z.ZodString;
256
+ }, z.core.$strip>;
257
+ tenantApp: z.ZodObject<{
258
+ absolutePath: z.ZodString;
259
+ enabled: z.ZodBoolean;
260
+ path: z.ZodString;
261
+ }, z.core.$strip>;
262
+ }, z.core.$strip>;
263
+ workspace: z.ZodObject<{
264
+ name: z.ZodString;
265
+ }, z.core.$strip>;
266
+ }, z.core.$strip>;
267
+ configPath: z.ZodString;
268
+ diagnostics: z.ZodArray<z.ZodObject<{
269
+ action: z.ZodOptional<z.ZodString>;
270
+ code: z.ZodString;
271
+ detail: z.ZodString;
272
+ path: z.ZodOptional<z.ZodString>;
273
+ severity: z.ZodEnum<{
274
+ info: "info";
275
+ warning: "warning";
276
+ error: "error";
277
+ }>;
278
+ summary: z.ZodString;
279
+ }, z.core.$strip>>;
280
+ ide: z.ZodObject<{
281
+ claudeDesktopSample: z.ZodObject<{
282
+ exists: z.ZodBoolean;
283
+ path: z.ZodString;
284
+ }, z.core.$strip>;
285
+ cursorConfig: z.ZodObject<{
286
+ exists: z.ZodBoolean;
287
+ path: z.ZodString;
288
+ }, z.core.$strip>;
289
+ }, z.core.$strip>;
290
+ resolvedPlatform: z.ZodObject<{
291
+ baseUrl: z.ZodString;
292
+ hasLegacyOverride: z.ZodBoolean;
293
+ source: z.ZodEnum<{
294
+ shellEnv: "shellEnv";
295
+ workspaceConfig: "workspaceConfig";
296
+ workspaceDefault: "workspaceDefault";
297
+ }>;
298
+ }, z.core.$strip>;
299
+ schema: z.ZodObject<{
300
+ directory: z.ZodString;
301
+ directoryExists: z.ZodBoolean;
302
+ directoryPath: z.ZodString;
303
+ entrypoint: z.ZodString;
304
+ entrypointExists: z.ZodBoolean;
305
+ entrypointPath: z.ZodString;
306
+ }, z.core.$strip>;
307
+ starters: z.ZodArray<z.ZodObject<{
308
+ absolutePath: z.ZodString;
309
+ enabled: z.ZodBoolean;
310
+ id: z.ZodString;
311
+ path: z.ZodString;
312
+ }, z.core.$strip>>;
313
+ workspaceName: z.ZodString;
314
+ workspaceRoot: z.ZodString;
315
+ }, z.core.$strip>;
316
+ export declare const SchemaStatusSchema: z.ZodObject<{
317
+ artifacts: z.ZodArray<z.ZodObject<{
318
+ canonicalPath: z.ZodString;
319
+ detail: z.ZodString;
320
+ exists: z.ZodBoolean;
321
+ id: z.ZodString;
322
+ prerequisiteCodes: z.ZodArray<z.ZodString>;
323
+ status: z.ZodEnum<{
324
+ available: "available";
325
+ blocked: "blocked";
326
+ ready: "ready";
327
+ reserved: "reserved";
328
+ }>;
329
+ }, z.core.$strip>>;
330
+ compileGraph: z.ZodNullable<z.ZodObject<{
331
+ artifacts: z.ZodObject<{
332
+ clientTypesPath: z.ZodString;
333
+ compileGraphPath: z.ZodString;
334
+ openapiPath: z.ZodString;
335
+ }, z.core.$strict>;
336
+ documents: z.ZodObject<{
337
+ actionManifests: z.ZodArray<z.ZodObject<{
338
+ action_id: z.ZodString;
339
+ action_kind: z.ZodUnion<readonly [z.ZodEnum<{
340
+ create: "create";
341
+ }>, z.ZodLiteral<"invoke">]>;
342
+ app_id: z.ZodString;
343
+ definition: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
344
+ description: z.ZodString;
345
+ entity_name: z.ZodString;
346
+ input_schema_key: z.ZodOptional<z.ZodNullable<z.ZodString>>;
347
+ output_schema_key: z.ZodOptional<z.ZodNullable<z.ZodString>>;
348
+ primitive: z.ZodOptional<z.ZodString>;
349
+ schema_key: z.ZodString;
350
+ version: z.ZodLiteral<"ActionManifestV1">;
351
+ }, z.core.$strict>>;
352
+ appManifests: z.ZodArray<z.ZodObject<{
353
+ actions: z.ZodArray<z.ZodString>;
354
+ app_class: z.ZodEnum<{
355
+ declarative: "declarative";
356
+ hybrid: "hybrid";
357
+ code_backed: "code_backed";
358
+ sidecar: "sidecar";
359
+ }>;
360
+ app_id: z.ZodString;
361
+ app_version: z.ZodString;
362
+ description: z.ZodString;
363
+ display_name: z.ZodString;
364
+ flows: z.ZodOptional<z.ZodArray<z.ZodString>>;
365
+ integration_dependencies: z.ZodOptional<z.ZodArray<z.ZodString>>;
366
+ ontology_mappings: z.ZodOptional<z.ZodArray<z.ZodString>>;
367
+ projection_contracts: z.ZodOptional<z.ZodArray<z.ZodString>>;
368
+ queries: z.ZodArray<z.ZodString>;
369
+ required_secrets: z.ZodOptional<z.ZodArray<z.ZodObject<{
370
+ description: z.ZodString;
371
+ key: z.ZodString;
372
+ }, z.core.$strict>>>;
373
+ routes: z.ZodArray<z.ZodString>;
374
+ schemas: z.ZodArray<z.ZodString>;
375
+ skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
376
+ version: z.ZodLiteral<"AppManifestV1">;
377
+ }, z.core.$strict>>;
378
+ flowManifests: z.ZodArray<z.ZodObject<{
379
+ app_id: z.ZodString;
380
+ definition: z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
381
+ description: z.ZodString;
382
+ flow_id: z.ZodString;
383
+ version: z.ZodLiteral<"FlowManifestV1">;
384
+ }, z.core.$strict>>;
385
+ ontologyMappingManifests: z.ZodArray<z.ZodObject<{
386
+ app_id: z.ZodString;
387
+ definition: z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
388
+ local_kind: z.ZodString;
389
+ mapping_id: z.ZodString;
390
+ version: z.ZodLiteral<"OntologyMappingManifestV1">;
391
+ }, z.core.$strict>>;
392
+ projectionContracts: z.ZodArray<z.ZodObject<{
393
+ app_id: z.ZodString;
394
+ contract_id: z.ZodString;
395
+ definition: z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
396
+ version: z.ZodLiteral<"ProjectionContractV1">;
397
+ }, z.core.$strict>>;
398
+ queryManifests: z.ZodArray<z.ZodObject<{
399
+ app_id: z.ZodString;
400
+ definition: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
401
+ description: z.ZodString;
402
+ entity_name: z.ZodString;
403
+ primitive: z.ZodOptional<z.ZodString>;
404
+ query_id: z.ZodString;
405
+ query_kind: z.ZodUnion<readonly [z.ZodEnum<{
406
+ detail: "detail";
407
+ list: "list";
408
+ }>, z.ZodLiteral<"connector">]>;
409
+ schema_key: z.ZodString;
410
+ version: z.ZodLiteral<"QueryManifestV1">;
411
+ }, z.core.$strict>>;
412
+ releaseMetadata: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
413
+ routeManifests: z.ZodArray<z.ZodObject<{
414
+ action_id: z.ZodNullable<z.ZodString>;
415
+ app_id: z.ZodString;
416
+ auth_mode: z.ZodEnum<{
417
+ internal_only: "internal_only";
418
+ runtime_token: "runtime_token";
419
+ }>;
420
+ description: z.ZodString;
421
+ method: z.ZodEnum<{
422
+ DELETE: "DELETE";
423
+ GET: "GET";
424
+ PATCH: "PATCH";
425
+ POST: "POST";
426
+ PUT: "PUT";
427
+ }>;
428
+ path: z.ZodString;
429
+ query_id: z.ZodNullable<z.ZodString>;
430
+ route_id: z.ZodString;
431
+ version: z.ZodLiteral<"RouteManifestV1">;
432
+ }, z.core.$strict>>;
433
+ schemaDefinitions: z.ZodArray<z.ZodObject<{
434
+ defaultSortField: z.ZodNullable<z.ZodString>;
435
+ description: z.ZodString;
436
+ displayName: z.ZodString;
437
+ entityName: z.ZodString;
438
+ fields: z.ZodArray<z.ZodObject<{
439
+ constraints: z.ZodArray<z.ZodObject<{
440
+ constraintType: z.ZodString;
441
+ errorMessage: z.ZodOptional<z.ZodString>;
442
+ sortOrder: z.ZodNumber;
443
+ value: z.ZodString;
444
+ }, z.core.$strict>>;
445
+ defaultValue: z.ZodNullable<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
446
+ description: z.ZodString;
447
+ fieldKey: z.ZodString;
448
+ fieldType: z.ZodString;
449
+ isIndexed: z.ZodBoolean;
450
+ isRequired: z.ZodBoolean;
451
+ sortOrder: z.ZodNumber;
452
+ }, z.core.$strict>>;
453
+ isArchivable: z.ZodBoolean;
454
+ namespace: z.ZodString;
455
+ relations: z.ZodArray<z.ZodObject<{
456
+ description: z.ZodOptional<z.ZodString>;
457
+ fieldKey: z.ZodOptional<z.ZodString>;
458
+ relationType: z.ZodString;
459
+ sortOrder: z.ZodNumber;
460
+ targetSchemaKey: z.ZodString;
461
+ }, z.core.$strict>>;
462
+ schemaKey: z.ZodString;
463
+ schemaVersion: z.ZodString;
464
+ version: z.ZodLiteral<"SchemaDefinitionV1">;
465
+ }, z.core.$strict>>;
466
+ skillManifests: z.ZodArray<z.ZodObject<{
467
+ app_id: z.ZodString;
468
+ definition: z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
469
+ instructions: z.ZodString;
470
+ name: z.ZodString;
471
+ skill_id: z.ZodString;
472
+ version: z.ZodLiteral<"SkillManifestV1">;
473
+ }, z.core.$strict>>;
474
+ }, z.core.$strict>;
475
+ sources: z.ZodObject<{
476
+ config: z.ZodObject<{
477
+ path: z.ZodString;
478
+ sha256: z.ZodString;
479
+ }, z.core.$strict>;
480
+ selectedInput: z.ZodObject<{
481
+ kind: z.ZodEnum<{
482
+ "schema.mw": "schema.mw";
483
+ "connector-pack.ts": "connector-pack.ts";
484
+ "schema.ts": "schema.ts";
485
+ }>;
486
+ path: z.ZodString;
487
+ sha256: z.ZodString;
488
+ }, z.core.$strict>;
489
+ }, z.core.$strict>;
490
+ version: z.ZodLiteral<"MinuteWorkCompileGraphV1">;
491
+ workspace: z.ZodObject<{
492
+ configPath: z.ZodString;
493
+ localStateDirectory: z.ZodString;
494
+ name: z.ZodString;
495
+ starters: z.ZodObject<{
496
+ sidecar: z.ZodBoolean;
497
+ tenantApp: z.ZodBoolean;
498
+ }, z.core.$strict>;
499
+ }, z.core.$strict>;
500
+ }, z.core.$strict>>;
501
+ diagnostics: z.ZodArray<z.ZodObject<{
502
+ action: z.ZodOptional<z.ZodString>;
503
+ code: z.ZodString;
504
+ detail: z.ZodString;
505
+ path: z.ZodOptional<z.ZodString>;
506
+ severity: z.ZodEnum<{
507
+ info: "info";
508
+ warning: "warning";
509
+ error: "error";
510
+ }>;
511
+ summary: z.ZodString;
512
+ }, z.core.$strip>>;
513
+ directoryExists: z.ZodBoolean;
514
+ entrypointExists: z.ZodBoolean;
515
+ schemaDirectoryPath: z.ZodString;
516
+ schemaEntrypointPath: z.ZodString;
517
+ selectedInput: z.ZodNullable<z.ZodObject<{
518
+ kind: z.ZodEnum<{
519
+ "schema.mw": "schema.mw";
520
+ "connector-pack.ts": "connector-pack.ts";
521
+ "schema.ts": "schema.ts";
522
+ }>;
523
+ path: z.ZodString;
524
+ }, z.core.$strict>>;
525
+ validateReport: z.ZodObject<{
526
+ artifactPaths: z.ZodObject<{
527
+ clientTypesPath: z.ZodString;
528
+ compileGraphPath: z.ZodString;
529
+ openapiPath: z.ZodString;
530
+ }, z.core.$strict>;
531
+ compileEligible: z.ZodBoolean;
532
+ diagnostics: z.ZodArray<z.ZodObject<{
533
+ code: z.ZodString;
534
+ detail: z.ZodString;
535
+ path: z.ZodOptional<z.ZodString>;
536
+ severity: z.ZodEnum<{
537
+ error: "error";
538
+ info: "info";
539
+ warning: "warning";
540
+ }>;
541
+ summary: z.ZodString;
542
+ }, z.core.$strict>>;
543
+ selectedInput: z.ZodNullable<z.ZodObject<{
544
+ kind: z.ZodEnum<{
545
+ "schema.mw": "schema.mw";
546
+ "connector-pack.ts": "connector-pack.ts";
547
+ "schema.ts": "schema.ts";
548
+ }>;
549
+ path: z.ZodString;
550
+ }, z.core.$strict>>;
551
+ status: z.ZodEnum<{
552
+ error: "error";
553
+ ok: "ok";
554
+ }>;
555
+ version: z.ZodLiteral<"MinuteWorkValidateReportV1">;
556
+ workspace: z.ZodObject<{
557
+ configPath: z.ZodString;
558
+ localStateDirectory: z.ZodString;
559
+ name: z.ZodString;
560
+ starters: z.ZodObject<{
561
+ sidecar: z.ZodBoolean;
562
+ tenantApp: z.ZodBoolean;
563
+ }, z.core.$strict>;
564
+ }, z.core.$strict>;
565
+ }, z.core.$strict>;
566
+ workspaceRoot: z.ZodString;
567
+ }, z.core.$strip>;
568
+ export declare const LocalRuntimeCompileGraphStateSchema: z.ZodObject<{
569
+ detail: z.ZodString;
570
+ path: z.ZodString;
571
+ status: z.ZodEnum<{
572
+ missing: "missing";
573
+ blocked: "blocked";
574
+ corrupted: "corrupted";
575
+ current: "current";
576
+ stale: "stale";
577
+ }>;
578
+ }, z.core.$strip>;
579
+ export declare const LocalRuntimeSurfaceSchema: z.ZodObject<{
580
+ detail: z.ZodString;
581
+ id: z.ZodEnum<{
582
+ sidecar: "sidecar";
583
+ schema_compile: "schema_compile";
584
+ tenant_app: "tenant_app";
585
+ }>;
586
+ path: z.ZodString;
587
+ status: z.ZodEnum<{
588
+ missing: "missing";
589
+ blocked: "blocked";
590
+ ready: "ready";
591
+ disabled: "disabled";
592
+ }>;
593
+ }, z.core.$strip>;
594
+ export declare const LocalRuntimeCommandStepSchema: z.ZodObject<{
595
+ args: z.ZodArray<z.ZodString>;
596
+ cwd: z.ZodString;
597
+ detail: z.ZodString;
598
+ id: z.ZodString;
599
+ program: z.ZodString;
600
+ }, z.core.$strip>;
601
+ export declare const LocalRuntimeCommandSchema: z.ZodObject<{
602
+ canonicalPath: z.ZodString;
603
+ detail: z.ZodString;
604
+ name: z.ZodString;
605
+ prerequisiteCodes: z.ZodArray<z.ZodString>;
606
+ status: z.ZodEnum<{
607
+ blocked: "blocked";
608
+ ready: "ready";
609
+ }>;
610
+ steps: z.ZodArray<z.ZodObject<{
611
+ args: z.ZodArray<z.ZodString>;
612
+ cwd: z.ZodString;
613
+ detail: z.ZodString;
614
+ id: z.ZodString;
615
+ program: z.ZodString;
616
+ }, z.core.$strip>>;
617
+ }, z.core.$strip>;
618
+ export declare const LocalRuntimeActivityGraphStatusSchema: z.ZodEnum<{
619
+ missing: "missing";
620
+ current: "current";
621
+ stale: "stale";
622
+ }>;
623
+ export declare const LocalRuntimeActivityStepStatusSchema: z.ZodEnum<{
624
+ pending: "pending";
625
+ running: "running";
626
+ completed: "completed";
627
+ failed: "failed";
628
+ interrupted: "interrupted";
629
+ skipped: "skipped";
630
+ }>;
631
+ export declare const LocalRuntimeActivityOutcomeSchema: z.ZodObject<{
632
+ errorCode: z.ZodNullable<z.ZodString>;
633
+ exitCode: z.ZodNullable<z.ZodNumber>;
634
+ failedStepId: z.ZodNullable<z.ZodString>;
635
+ signal: z.ZodNullable<z.ZodString>;
636
+ }, z.core.$strip>;
637
+ export declare const PersistedLocalRuntimeActivityStepSchema: z.ZodObject<{
638
+ args: z.ZodArray<z.ZodString>;
639
+ cwd: z.ZodString;
640
+ endedAt: z.ZodNullable<z.ZodString>;
641
+ exitCode: z.ZodNullable<z.ZodNumber>;
642
+ id: z.ZodString;
643
+ pid: z.ZodNullable<z.ZodNumber>;
644
+ program: z.ZodString;
645
+ signal: z.ZodNullable<z.ZodString>;
646
+ startedAt: z.ZodNullable<z.ZodString>;
647
+ status: z.ZodEnum<{
648
+ pending: "pending";
649
+ running: "running";
650
+ completed: "completed";
651
+ failed: "failed";
652
+ interrupted: "interrupted";
653
+ skipped: "skipped";
654
+ }>;
655
+ }, z.core.$strip>;
656
+ export declare const PersistedLocalRuntimeDevRecordSchema: z.ZodObject<{
657
+ compileGraphDigest: z.ZodNullable<z.ZodString>;
658
+ controllerPid: z.ZodNumber;
659
+ endedAt: z.ZodNullable<z.ZodString>;
660
+ outcome: z.ZodObject<{
661
+ errorCode: z.ZodNullable<z.ZodString>;
662
+ exitCode: z.ZodNullable<z.ZodNumber>;
663
+ failedStepId: z.ZodNullable<z.ZodString>;
664
+ signal: z.ZodNullable<z.ZodString>;
665
+ }, z.core.$strip>;
666
+ startedAt: z.ZodString;
667
+ steps: z.ZodArray<z.ZodObject<{
668
+ args: z.ZodArray<z.ZodString>;
669
+ cwd: z.ZodString;
670
+ endedAt: z.ZodNullable<z.ZodString>;
671
+ exitCode: z.ZodNullable<z.ZodNumber>;
672
+ id: z.ZodString;
673
+ pid: z.ZodNullable<z.ZodNumber>;
674
+ program: z.ZodString;
675
+ signal: z.ZodNullable<z.ZodString>;
676
+ startedAt: z.ZodNullable<z.ZodString>;
677
+ status: z.ZodEnum<{
678
+ pending: "pending";
679
+ running: "running";
680
+ completed: "completed";
681
+ failed: "failed";
682
+ interrupted: "interrupted";
683
+ skipped: "skipped";
684
+ }>;
685
+ }, z.core.$strip>>;
686
+ updatedAt: z.ZodString;
687
+ version: z.ZodLiteral<"MinuteWorkLocalRuntimeActivityV1">;
688
+ command: z.ZodLiteral<"dev">;
689
+ status: z.ZodEnum<{
690
+ running: "running";
691
+ failed: "failed";
692
+ interrupted: "interrupted";
693
+ exited: "exited";
694
+ }>;
695
+ }, z.core.$strip>;
696
+ export declare const PersistedLocalRuntimeTestRecordSchema: z.ZodObject<{
697
+ compileGraphDigest: z.ZodNullable<z.ZodString>;
698
+ controllerPid: z.ZodNumber;
699
+ endedAt: z.ZodNullable<z.ZodString>;
700
+ outcome: z.ZodObject<{
701
+ errorCode: z.ZodNullable<z.ZodString>;
702
+ exitCode: z.ZodNullable<z.ZodNumber>;
703
+ failedStepId: z.ZodNullable<z.ZodString>;
704
+ signal: z.ZodNullable<z.ZodString>;
705
+ }, z.core.$strip>;
706
+ startedAt: z.ZodString;
707
+ steps: z.ZodArray<z.ZodObject<{
708
+ args: z.ZodArray<z.ZodString>;
709
+ cwd: z.ZodString;
710
+ endedAt: z.ZodNullable<z.ZodString>;
711
+ exitCode: z.ZodNullable<z.ZodNumber>;
712
+ id: z.ZodString;
713
+ pid: z.ZodNullable<z.ZodNumber>;
714
+ program: z.ZodString;
715
+ signal: z.ZodNullable<z.ZodString>;
716
+ startedAt: z.ZodNullable<z.ZodString>;
717
+ status: z.ZodEnum<{
718
+ pending: "pending";
719
+ running: "running";
720
+ completed: "completed";
721
+ failed: "failed";
722
+ interrupted: "interrupted";
723
+ skipped: "skipped";
724
+ }>;
725
+ }, z.core.$strip>>;
726
+ updatedAt: z.ZodString;
727
+ version: z.ZodLiteral<"MinuteWorkLocalRuntimeActivityV1">;
728
+ command: z.ZodLiteral<"test">;
729
+ status: z.ZodEnum<{
730
+ running: "running";
731
+ failed: "failed";
732
+ interrupted: "interrupted";
733
+ passed: "passed";
734
+ }>;
735
+ }, z.core.$strip>;
736
+ export declare const LocalRuntimeDevActivitySchema: z.ZodObject<{
737
+ compileGraphDigest: z.ZodNullable<z.ZodString>;
738
+ controllerPid: z.ZodNullable<z.ZodNumber>;
739
+ detail: z.ZodString;
740
+ endedAt: z.ZodNullable<z.ZodString>;
741
+ filePath: z.ZodString;
742
+ graphStatus: z.ZodEnum<{
743
+ missing: "missing";
744
+ current: "current";
745
+ stale: "stale";
746
+ }>;
747
+ outcome: z.ZodObject<{
748
+ errorCode: z.ZodNullable<z.ZodString>;
749
+ exitCode: z.ZodNullable<z.ZodNumber>;
750
+ failedStepId: z.ZodNullable<z.ZodString>;
751
+ signal: z.ZodNullable<z.ZodString>;
752
+ }, z.core.$strip>;
753
+ startedAt: z.ZodNullable<z.ZodString>;
754
+ steps: z.ZodArray<z.ZodObject<{
755
+ args: z.ZodArray<z.ZodString>;
756
+ cwd: z.ZodString;
757
+ endedAt: z.ZodNullable<z.ZodString>;
758
+ exitCode: z.ZodNullable<z.ZodNumber>;
759
+ id: z.ZodString;
760
+ pid: z.ZodNullable<z.ZodNumber>;
761
+ program: z.ZodString;
762
+ signal: z.ZodNullable<z.ZodString>;
763
+ startedAt: z.ZodNullable<z.ZodString>;
764
+ status: z.ZodEnum<{
765
+ pending: "pending";
766
+ running: "running";
767
+ completed: "completed";
768
+ failed: "failed";
769
+ interrupted: "interrupted";
770
+ skipped: "skipped";
771
+ }>;
772
+ }, z.core.$strip>>;
773
+ updatedAt: z.ZodNullable<z.ZodString>;
774
+ status: z.ZodEnum<{
775
+ missing: "missing";
776
+ corrupted: "corrupted";
777
+ stale: "stale";
778
+ running: "running";
779
+ failed: "failed";
780
+ interrupted: "interrupted";
781
+ exited: "exited";
782
+ }>;
783
+ }, z.core.$strip>;
784
+ export declare const LocalRuntimeTestActivitySchema: z.ZodObject<{
785
+ compileGraphDigest: z.ZodNullable<z.ZodString>;
786
+ controllerPid: z.ZodNullable<z.ZodNumber>;
787
+ detail: z.ZodString;
788
+ endedAt: z.ZodNullable<z.ZodString>;
789
+ filePath: z.ZodString;
790
+ graphStatus: z.ZodEnum<{
791
+ missing: "missing";
792
+ current: "current";
793
+ stale: "stale";
794
+ }>;
795
+ outcome: z.ZodObject<{
796
+ errorCode: z.ZodNullable<z.ZodString>;
797
+ exitCode: z.ZodNullable<z.ZodNumber>;
798
+ failedStepId: z.ZodNullable<z.ZodString>;
799
+ signal: z.ZodNullable<z.ZodString>;
800
+ }, z.core.$strip>;
801
+ startedAt: z.ZodNullable<z.ZodString>;
802
+ steps: z.ZodArray<z.ZodObject<{
803
+ args: z.ZodArray<z.ZodString>;
804
+ cwd: z.ZodString;
805
+ endedAt: z.ZodNullable<z.ZodString>;
806
+ exitCode: z.ZodNullable<z.ZodNumber>;
807
+ id: z.ZodString;
808
+ pid: z.ZodNullable<z.ZodNumber>;
809
+ program: z.ZodString;
810
+ signal: z.ZodNullable<z.ZodString>;
811
+ startedAt: z.ZodNullable<z.ZodString>;
812
+ status: z.ZodEnum<{
813
+ pending: "pending";
814
+ running: "running";
815
+ completed: "completed";
816
+ failed: "failed";
817
+ interrupted: "interrupted";
818
+ skipped: "skipped";
819
+ }>;
820
+ }, z.core.$strip>>;
821
+ updatedAt: z.ZodNullable<z.ZodString>;
822
+ status: z.ZodEnum<{
823
+ missing: "missing";
824
+ corrupted: "corrupted";
825
+ stale: "stale";
826
+ running: "running";
827
+ failed: "failed";
828
+ interrupted: "interrupted";
829
+ passed: "passed";
830
+ }>;
831
+ }, z.core.$strip>;
832
+ export declare const LocalRuntimeStatusSchema: z.ZodObject<{
833
+ activity: z.ZodObject<{
834
+ dev: z.ZodObject<{
835
+ compileGraphDigest: z.ZodNullable<z.ZodString>;
836
+ controllerPid: z.ZodNullable<z.ZodNumber>;
837
+ detail: z.ZodString;
838
+ endedAt: z.ZodNullable<z.ZodString>;
839
+ filePath: z.ZodString;
840
+ graphStatus: z.ZodEnum<{
841
+ missing: "missing";
842
+ current: "current";
843
+ stale: "stale";
844
+ }>;
845
+ outcome: z.ZodObject<{
846
+ errorCode: z.ZodNullable<z.ZodString>;
847
+ exitCode: z.ZodNullable<z.ZodNumber>;
848
+ failedStepId: z.ZodNullable<z.ZodString>;
849
+ signal: z.ZodNullable<z.ZodString>;
850
+ }, z.core.$strip>;
851
+ startedAt: z.ZodNullable<z.ZodString>;
852
+ steps: z.ZodArray<z.ZodObject<{
853
+ args: z.ZodArray<z.ZodString>;
854
+ cwd: z.ZodString;
855
+ endedAt: z.ZodNullable<z.ZodString>;
856
+ exitCode: z.ZodNullable<z.ZodNumber>;
857
+ id: z.ZodString;
858
+ pid: z.ZodNullable<z.ZodNumber>;
859
+ program: z.ZodString;
860
+ signal: z.ZodNullable<z.ZodString>;
861
+ startedAt: z.ZodNullable<z.ZodString>;
862
+ status: z.ZodEnum<{
863
+ pending: "pending";
864
+ running: "running";
865
+ completed: "completed";
866
+ failed: "failed";
867
+ interrupted: "interrupted";
868
+ skipped: "skipped";
869
+ }>;
870
+ }, z.core.$strip>>;
871
+ updatedAt: z.ZodNullable<z.ZodString>;
872
+ status: z.ZodEnum<{
873
+ missing: "missing";
874
+ corrupted: "corrupted";
875
+ stale: "stale";
876
+ running: "running";
877
+ failed: "failed";
878
+ interrupted: "interrupted";
879
+ exited: "exited";
880
+ }>;
881
+ }, z.core.$strip>;
882
+ test: z.ZodObject<{
883
+ compileGraphDigest: z.ZodNullable<z.ZodString>;
884
+ controllerPid: z.ZodNullable<z.ZodNumber>;
885
+ detail: z.ZodString;
886
+ endedAt: z.ZodNullable<z.ZodString>;
887
+ filePath: z.ZodString;
888
+ graphStatus: z.ZodEnum<{
889
+ missing: "missing";
890
+ current: "current";
891
+ stale: "stale";
892
+ }>;
893
+ outcome: z.ZodObject<{
894
+ errorCode: z.ZodNullable<z.ZodString>;
895
+ exitCode: z.ZodNullable<z.ZodNumber>;
896
+ failedStepId: z.ZodNullable<z.ZodString>;
897
+ signal: z.ZodNullable<z.ZodString>;
898
+ }, z.core.$strip>;
899
+ startedAt: z.ZodNullable<z.ZodString>;
900
+ steps: z.ZodArray<z.ZodObject<{
901
+ args: z.ZodArray<z.ZodString>;
902
+ cwd: z.ZodString;
903
+ endedAt: z.ZodNullable<z.ZodString>;
904
+ exitCode: z.ZodNullable<z.ZodNumber>;
905
+ id: z.ZodString;
906
+ pid: z.ZodNullable<z.ZodNumber>;
907
+ program: z.ZodString;
908
+ signal: z.ZodNullable<z.ZodString>;
909
+ startedAt: z.ZodNullable<z.ZodString>;
910
+ status: z.ZodEnum<{
911
+ pending: "pending";
912
+ running: "running";
913
+ completed: "completed";
914
+ failed: "failed";
915
+ interrupted: "interrupted";
916
+ skipped: "skipped";
917
+ }>;
918
+ }, z.core.$strip>>;
919
+ updatedAt: z.ZodNullable<z.ZodString>;
920
+ status: z.ZodEnum<{
921
+ missing: "missing";
922
+ corrupted: "corrupted";
923
+ stale: "stale";
924
+ running: "running";
925
+ failed: "failed";
926
+ interrupted: "interrupted";
927
+ passed: "passed";
928
+ }>;
929
+ }, z.core.$strip>;
930
+ }, z.core.$strip>;
931
+ commands: z.ZodArray<z.ZodObject<{
932
+ canonicalPath: z.ZodString;
933
+ detail: z.ZodString;
934
+ name: z.ZodString;
935
+ prerequisiteCodes: z.ZodArray<z.ZodString>;
936
+ status: z.ZodEnum<{
937
+ blocked: "blocked";
938
+ ready: "ready";
939
+ }>;
940
+ steps: z.ZodArray<z.ZodObject<{
941
+ args: z.ZodArray<z.ZodString>;
942
+ cwd: z.ZodString;
943
+ detail: z.ZodString;
944
+ id: z.ZodString;
945
+ program: z.ZodString;
946
+ }, z.core.$strip>>;
947
+ }, z.core.$strip>>;
948
+ compileGraph: z.ZodObject<{
949
+ detail: z.ZodString;
950
+ path: z.ZodString;
951
+ status: z.ZodEnum<{
952
+ missing: "missing";
953
+ blocked: "blocked";
954
+ corrupted: "corrupted";
955
+ current: "current";
956
+ stale: "stale";
957
+ }>;
958
+ }, z.core.$strip>;
959
+ prerequisites: z.ZodObject<{
960
+ hasCurrentCompileGraph: z.ZodBoolean;
961
+ hasEnabledPreviewSurface: z.ZodBoolean;
962
+ hasSelectedInput: z.ZodBoolean;
963
+ }, z.core.$strip>;
964
+ status: z.ZodEnum<{
965
+ blocked: "blocked";
966
+ ready: "ready";
967
+ }>;
968
+ surfaces: z.ZodArray<z.ZodObject<{
969
+ detail: z.ZodString;
970
+ id: z.ZodEnum<{
971
+ sidecar: "sidecar";
972
+ schema_compile: "schema_compile";
973
+ tenant_app: "tenant_app";
974
+ }>;
975
+ path: z.ZodString;
976
+ status: z.ZodEnum<{
977
+ missing: "missing";
978
+ blocked: "blocked";
979
+ ready: "ready";
980
+ disabled: "disabled";
981
+ }>;
982
+ }, z.core.$strip>>;
983
+ topology: z.ZodObject<{
984
+ devSessionPath: z.ZodString;
985
+ localStateDirectoryPath: z.ZodString;
986
+ sandboxRoot: z.ZodString;
987
+ testRunPath: z.ZodString;
988
+ }, z.core.$strip>;
989
+ workspaceRoot: z.ZodString;
990
+ }, z.core.$strip>;
991
+ export declare const CapabilityInventoryUnknownSchema: z.ZodObject<{
992
+ detail: z.ZodString;
993
+ id: z.ZodString;
994
+ nextCheck: z.ZodNullable<z.ZodString>;
995
+ }, z.core.$strip>;
996
+ export declare const CapabilityGapLayerSchema: z.ZodEnum<{
997
+ baseline_capability: "baseline_capability";
998
+ runtime_primitive: "runtime_primitive";
999
+ reviewed_skill: "reviewed_skill";
1000
+ app_pack: "app_pack";
1001
+ overlay_only: "overlay_only";
1002
+ attached_app: "attached_app";
1003
+ }>;
1004
+ export declare const CapabilityGapReusabilitySchema: z.ZodEnum<{
1005
+ tenantLocalOnly: "tenantLocalOnly";
1006
+ likelyReusable: "likelyReusable";
1007
+ }>;
1008
+ export declare const CapabilityGapEntrySchema: z.ZodObject<{
1009
+ currentWorkaround: z.ZodString;
1010
+ evidence: z.ZodArray<z.ZodString>;
1011
+ gapId: z.ZodString;
1012
+ layer: z.ZodEnum<{
1013
+ baseline_capability: "baseline_capability";
1014
+ runtime_primitive: "runtime_primitive";
1015
+ reviewed_skill: "reviewed_skill";
1016
+ app_pack: "app_pack";
1017
+ overlay_only: "overlay_only";
1018
+ attached_app: "attached_app";
1019
+ }>;
1020
+ reusability: z.ZodEnum<{
1021
+ tenantLocalOnly: "tenantLocalOnly";
1022
+ likelyReusable: "likelyReusable";
1023
+ }>;
1024
+ suggestedSharedSubstrate: z.ZodString;
1025
+ title: z.ZodString;
1026
+ whyCurrentStateViolatesArchitecture: z.ZodString;
1027
+ }, z.core.$strip>;
1028
+ export declare const CapabilityGapReportSchema: z.ZodObject<{
1029
+ gaps: z.ZodArray<z.ZodObject<{
1030
+ currentWorkaround: z.ZodString;
1031
+ evidence: z.ZodArray<z.ZodString>;
1032
+ gapId: z.ZodString;
1033
+ layer: z.ZodEnum<{
1034
+ baseline_capability: "baseline_capability";
1035
+ runtime_primitive: "runtime_primitive";
1036
+ reviewed_skill: "reviewed_skill";
1037
+ app_pack: "app_pack";
1038
+ overlay_only: "overlay_only";
1039
+ attached_app: "attached_app";
1040
+ }>;
1041
+ reusability: z.ZodEnum<{
1042
+ tenantLocalOnly: "tenantLocalOnly";
1043
+ likelyReusable: "likelyReusable";
1044
+ }>;
1045
+ suggestedSharedSubstrate: z.ZodString;
1046
+ title: z.ZodString;
1047
+ whyCurrentStateViolatesArchitecture: z.ZodString;
1048
+ }, z.core.$strip>>;
1049
+ generatedAt: z.ZodString;
1050
+ updatedAt: z.ZodString;
1051
+ version: z.ZodLiteral<"MinuteWorkCapabilityGapReportV1">;
1052
+ }, z.core.$strip>;
1053
+ export declare const CapabilityGapReportContractSchema: z.ZodObject<{
1054
+ canonicalPath: z.ZodString;
1055
+ detail: z.ZodString;
1056
+ fileStatus: z.ZodEnum<{
1057
+ missing: "missing";
1058
+ available: "available";
1059
+ corrupted: "corrupted";
1060
+ }>;
1061
+ gapCount: z.ZodNullable<z.ZodNumber>;
1062
+ layerValues: z.ZodArray<z.ZodEnum<{
1063
+ baseline_capability: "baseline_capability";
1064
+ runtime_primitive: "runtime_primitive";
1065
+ reviewed_skill: "reviewed_skill";
1066
+ app_pack: "app_pack";
1067
+ overlay_only: "overlay_only";
1068
+ attached_app: "attached_app";
1069
+ }>>;
1070
+ reusabilityValues: z.ZodArray<z.ZodEnum<{
1071
+ tenantLocalOnly: "tenantLocalOnly";
1072
+ likelyReusable: "likelyReusable";
1073
+ }>>;
1074
+ version: z.ZodLiteral<"MinuteWorkCapabilityGapReportV1">;
1075
+ }, z.core.$strip>;
1076
+ export declare const PreviewDeployTerminalReceiptStateSchema: z.ZodObject<{
1077
+ deploymentState: z.ZodEnum<{
1078
+ ready: "ready";
1079
+ pending: "pending";
1080
+ failed: "failed";
1081
+ activated: "activated";
1082
+ rolled_back: "rolled_back";
1083
+ }>;
1084
+ errorDetail: z.ZodString;
1085
+ previewUrl: z.ZodString;
1086
+ receiptId: z.ZodString;
1087
+ receiptStatus: z.ZodString;
1088
+ rollbackStatus: z.ZodEnum<{
1089
+ not_applicable: "not_applicable";
1090
+ not_needed: "not_needed";
1091
+ previous_preview_preserved: "previous_preview_preserved";
1092
+ }>;
1093
+ updatedAt: z.ZodString;
1094
+ }, z.core.$strip>;
1095
+ export declare const PreviewDeployStateSchema: z.ZodObject<{
1096
+ currentPreviewUrl: z.ZodString;
1097
+ lastCompiledReleaseDigest: z.ZodNullable<z.ZodString>;
1098
+ lastRequestedAt: z.ZodNullable<z.ZodString>;
1099
+ lastRequestedReceiptId: z.ZodNullable<z.ZodString>;
1100
+ lastRequestedReleaseKey: z.ZodNullable<z.ZodString>;
1101
+ lastTerminalReceipt: z.ZodNullable<z.ZodObject<{
1102
+ deploymentState: z.ZodEnum<{
1103
+ ready: "ready";
1104
+ pending: "pending";
1105
+ failed: "failed";
1106
+ activated: "activated";
1107
+ rolled_back: "rolled_back";
1108
+ }>;
1109
+ errorDetail: z.ZodString;
1110
+ previewUrl: z.ZodString;
1111
+ receiptId: z.ZodString;
1112
+ receiptStatus: z.ZodString;
1113
+ rollbackStatus: z.ZodEnum<{
1114
+ not_applicable: "not_applicable";
1115
+ not_needed: "not_needed";
1116
+ previous_preview_preserved: "previous_preview_preserved";
1117
+ }>;
1118
+ updatedAt: z.ZodString;
1119
+ }, z.core.$strip>>;
1120
+ propertyKey: z.ZodString;
1121
+ releaseClass: z.ZodLiteral<"ssr_container">;
1122
+ version: z.ZodLiteral<"MinuteWorkPreviewDeployStateV1">;
1123
+ }, z.core.$strip>;
1124
+ export declare const DeployCompiledReleaseSchema: z.ZodObject<{
1125
+ releaseDigest: z.ZodString;
1126
+ releaseKey: z.ZodString;
1127
+ runtimeContentRef: z.ZodString;
1128
+ sourceDigest: z.ZodString;
1129
+ starterId: z.ZodLiteral<"tenant-app">;
1130
+ workspaceName: z.ZodString;
1131
+ }, z.core.$strip>;
1132
+ export declare const DeployTargetStatusSchema: z.ZodObject<{
1133
+ canonicalPath: z.ZodString;
1134
+ compiledRelease: z.ZodNullable<z.ZodObject<{
1135
+ releaseDigest: z.ZodString;
1136
+ releaseKey: z.ZodString;
1137
+ runtimeContentRef: z.ZodString;
1138
+ sourceDigest: z.ZodString;
1139
+ starterId: z.ZodLiteral<"tenant-app">;
1140
+ workspaceName: z.ZodString;
1141
+ }, z.core.$strip>>;
1142
+ currentTarget: z.ZodBoolean;
1143
+ currentPreviewUrl: z.ZodNullable<z.ZodString>;
1144
+ detail: z.ZodString;
1145
+ environment: z.ZodEnum<{
1146
+ preview: "preview";
1147
+ live: "live";
1148
+ }>;
1149
+ lastRequestedAt: z.ZodNullable<z.ZodString>;
1150
+ lastRequestedReceiptId: z.ZodNullable<z.ZodString>;
1151
+ lastRequestedReleaseKey: z.ZodNullable<z.ZodString>;
1152
+ lastTerminalReceipt: z.ZodNullable<z.ZodObject<{
1153
+ deploymentState: z.ZodEnum<{
1154
+ ready: "ready";
1155
+ pending: "pending";
1156
+ failed: "failed";
1157
+ activated: "activated";
1158
+ rolled_back: "rolled_back";
1159
+ }>;
1160
+ errorDetail: z.ZodString;
1161
+ previewUrl: z.ZodString;
1162
+ receiptId: z.ZodString;
1163
+ receiptStatus: z.ZodString;
1164
+ rollbackStatus: z.ZodEnum<{
1165
+ not_applicable: "not_applicable";
1166
+ not_needed: "not_needed";
1167
+ previous_preview_preserved: "previous_preview_preserved";
1168
+ }>;
1169
+ updatedAt: z.ZodString;
1170
+ }, z.core.$strip>>;
1171
+ propertyKey: z.ZodNullable<z.ZodString>;
1172
+ prerequisiteCodes: z.ZodArray<z.ZodString>;
1173
+ releaseClass: z.ZodNullable<z.ZodLiteral<"ssr_container">>;
1174
+ status: z.ZodEnum<{
1175
+ blocked: "blocked";
1176
+ ready: "ready";
1177
+ failed: "failed";
1178
+ deployed: "deployed";
1179
+ unsupported: "unsupported";
1180
+ }>;
1181
+ }, z.core.$strip>;
1182
+ export declare const DeployStatusSchema: z.ZodObject<{
1183
+ status: z.ZodEnum<{
1184
+ blocked: "blocked";
1185
+ ready: "ready";
1186
+ failed: "failed";
1187
+ deployed: "deployed";
1188
+ }>;
1189
+ targetContext: z.ZodObject<{
1190
+ activeEnvironment: z.ZodNullable<z.ZodEnum<{
1191
+ preview: "preview";
1192
+ live: "live";
1193
+ }>>;
1194
+ platformBaseUrl: z.ZodNullable<z.ZodString>;
1195
+ propertyKey: z.ZodNullable<z.ZodString>;
1196
+ releaseClass: z.ZodNullable<z.ZodLiteral<"ssr_container">>;
1197
+ tenantId: z.ZodNullable<z.ZodString>;
1198
+ tenantSlug: z.ZodNullable<z.ZodString>;
1199
+ workspaceName: z.ZodNullable<z.ZodString>;
1200
+ }, z.core.$strip>;
1201
+ targets: z.ZodArray<z.ZodObject<{
1202
+ canonicalPath: z.ZodString;
1203
+ compiledRelease: z.ZodNullable<z.ZodObject<{
1204
+ releaseDigest: z.ZodString;
1205
+ releaseKey: z.ZodString;
1206
+ runtimeContentRef: z.ZodString;
1207
+ sourceDigest: z.ZodString;
1208
+ starterId: z.ZodLiteral<"tenant-app">;
1209
+ workspaceName: z.ZodString;
1210
+ }, z.core.$strip>>;
1211
+ currentTarget: z.ZodBoolean;
1212
+ currentPreviewUrl: z.ZodNullable<z.ZodString>;
1213
+ detail: z.ZodString;
1214
+ environment: z.ZodEnum<{
1215
+ preview: "preview";
1216
+ live: "live";
1217
+ }>;
1218
+ lastRequestedAt: z.ZodNullable<z.ZodString>;
1219
+ lastRequestedReceiptId: z.ZodNullable<z.ZodString>;
1220
+ lastRequestedReleaseKey: z.ZodNullable<z.ZodString>;
1221
+ lastTerminalReceipt: z.ZodNullable<z.ZodObject<{
1222
+ deploymentState: z.ZodEnum<{
1223
+ ready: "ready";
1224
+ pending: "pending";
1225
+ failed: "failed";
1226
+ activated: "activated";
1227
+ rolled_back: "rolled_back";
1228
+ }>;
1229
+ errorDetail: z.ZodString;
1230
+ previewUrl: z.ZodString;
1231
+ receiptId: z.ZodString;
1232
+ receiptStatus: z.ZodString;
1233
+ rollbackStatus: z.ZodEnum<{
1234
+ not_applicable: "not_applicable";
1235
+ not_needed: "not_needed";
1236
+ previous_preview_preserved: "previous_preview_preserved";
1237
+ }>;
1238
+ updatedAt: z.ZodString;
1239
+ }, z.core.$strip>>;
1240
+ propertyKey: z.ZodNullable<z.ZodString>;
1241
+ prerequisiteCodes: z.ZodArray<z.ZodString>;
1242
+ releaseClass: z.ZodNullable<z.ZodLiteral<"ssr_container">>;
1243
+ status: z.ZodEnum<{
1244
+ blocked: "blocked";
1245
+ ready: "ready";
1246
+ failed: "failed";
1247
+ deployed: "deployed";
1248
+ unsupported: "unsupported";
1249
+ }>;
1250
+ }, z.core.$strip>>;
1251
+ workspaceRoot: z.ZodString;
1252
+ }, z.core.$strip>;
1253
+ export declare const CapabilityInventorySchema: z.ZodObject<{
1254
+ alphaConstraints: z.ZodObject<{
1255
+ deferred: z.ZodArray<z.ZodString>;
1256
+ detail: z.ZodString;
1257
+ hostedPreviewDeploy: z.ZodString;
1258
+ localAuthoring: z.ZodString;
1259
+ supportedLocalAuthoringSurfaces: z.ZodArray<z.ZodEnum<{
1260
+ sidecar: "sidecar";
1261
+ "tenant-app": "tenant-app";
1262
+ both: "both";
1263
+ }>>;
1264
+ }, z.core.$strip>;
1265
+ authAndBindingInventory: z.ZodObject<{
1266
+ authStatus: z.ZodEnum<{
1267
+ missing: "missing";
1268
+ active: "active";
1269
+ expired: "expired";
1270
+ }>;
1271
+ bindingStatus: z.ZodEnum<{
1272
+ linked: "linked";
1273
+ missing: "missing";
1274
+ }>;
1275
+ detail: z.ZodString;
1276
+ matchesActiveAuthProfile: z.ZodNullable<z.ZodBoolean>;
1277
+ platformBaseUrl: z.ZodNullable<z.ZodString>;
1278
+ }, z.core.$strip>;
1279
+ capabilityGapReportContract: z.ZodObject<{
1280
+ canonicalPath: z.ZodString;
1281
+ detail: z.ZodString;
1282
+ fileStatus: z.ZodEnum<{
1283
+ missing: "missing";
1284
+ available: "available";
1285
+ corrupted: "corrupted";
1286
+ }>;
1287
+ gapCount: z.ZodNullable<z.ZodNumber>;
1288
+ layerValues: z.ZodArray<z.ZodEnum<{
1289
+ baseline_capability: "baseline_capability";
1290
+ runtime_primitive: "runtime_primitive";
1291
+ reviewed_skill: "reviewed_skill";
1292
+ app_pack: "app_pack";
1293
+ overlay_only: "overlay_only";
1294
+ attached_app: "attached_app";
1295
+ }>>;
1296
+ reusabilityValues: z.ZodArray<z.ZodEnum<{
1297
+ tenantLocalOnly: "tenantLocalOnly";
1298
+ likelyReusable: "likelyReusable";
1299
+ }>>;
1300
+ version: z.ZodLiteral<"MinuteWorkCapabilityGapReportV1">;
1301
+ }, z.core.$strip>;
1302
+ compileGraphInventory: z.ZodObject<{
1303
+ artifactPath: z.ZodString;
1304
+ detail: z.ZodString;
1305
+ documentCounts: z.ZodObject<{
1306
+ actionManifests: z.ZodNumber;
1307
+ appManifests: z.ZodNumber;
1308
+ flowManifests: z.ZodNumber;
1309
+ ontologyMappingManifests: z.ZodNumber;
1310
+ projectionContracts: z.ZodNumber;
1311
+ queryManifests: z.ZodNumber;
1312
+ releaseMetadata: z.ZodNumber;
1313
+ routeManifests: z.ZodNumber;
1314
+ schemaDefinitions: z.ZodNumber;
1315
+ skillManifests: z.ZodNumber;
1316
+ }, z.core.$strip>;
1317
+ selectedInput: z.ZodNullable<z.ZodObject<{
1318
+ kind: z.ZodEnum<{
1319
+ "schema.mw": "schema.mw";
1320
+ "connector-pack.ts": "connector-pack.ts";
1321
+ "schema.ts": "schema.ts";
1322
+ }>;
1323
+ path: z.ZodString;
1324
+ }, z.core.$strict>>;
1325
+ status: z.ZodEnum<{
1326
+ missing: "missing";
1327
+ blocked: "blocked";
1328
+ corrupted: "corrupted";
1329
+ current: "current";
1330
+ stale: "stale";
1331
+ }>;
1332
+ }, z.core.$strip>;
1333
+ knownLocalSurface: z.ZodObject<{
1334
+ builderGuidance: z.ZodObject<{
1335
+ claudeMdPath: z.ZodString;
1336
+ detail: z.ZodString;
1337
+ skillsDirectoryPath: z.ZodString;
1338
+ }, z.core.$strip>;
1339
+ contractualDefaults: z.ZodArray<z.ZodString>;
1340
+ workspaceMcpTools: z.ZodArray<z.ZodObject<{
1341
+ description: z.ZodString;
1342
+ id: z.ZodString;
1343
+ }, z.core.$strip>>;
1344
+ }, z.core.$strip>;
1345
+ publicationInventory: z.ZodObject<{
1346
+ activeEnvironment: z.ZodNullable<z.ZodEnum<{
1347
+ preview: "preview";
1348
+ live: "live";
1349
+ }>>;
1350
+ detail: z.ZodString;
1351
+ liveTarget: z.ZodObject<{
1352
+ canonicalPath: z.ZodString;
1353
+ compiledRelease: z.ZodNullable<z.ZodObject<{
1354
+ releaseDigest: z.ZodString;
1355
+ releaseKey: z.ZodString;
1356
+ runtimeContentRef: z.ZodString;
1357
+ sourceDigest: z.ZodString;
1358
+ starterId: z.ZodLiteral<"tenant-app">;
1359
+ workspaceName: z.ZodString;
1360
+ }, z.core.$strip>>;
1361
+ currentTarget: z.ZodBoolean;
1362
+ currentPreviewUrl: z.ZodNullable<z.ZodString>;
1363
+ detail: z.ZodString;
1364
+ environment: z.ZodEnum<{
1365
+ preview: "preview";
1366
+ live: "live";
1367
+ }>;
1368
+ lastRequestedAt: z.ZodNullable<z.ZodString>;
1369
+ lastRequestedReceiptId: z.ZodNullable<z.ZodString>;
1370
+ lastRequestedReleaseKey: z.ZodNullable<z.ZodString>;
1371
+ lastTerminalReceipt: z.ZodNullable<z.ZodObject<{
1372
+ deploymentState: z.ZodEnum<{
1373
+ ready: "ready";
1374
+ pending: "pending";
1375
+ failed: "failed";
1376
+ activated: "activated";
1377
+ rolled_back: "rolled_back";
1378
+ }>;
1379
+ errorDetail: z.ZodString;
1380
+ previewUrl: z.ZodString;
1381
+ receiptId: z.ZodString;
1382
+ receiptStatus: z.ZodString;
1383
+ rollbackStatus: z.ZodEnum<{
1384
+ not_applicable: "not_applicable";
1385
+ not_needed: "not_needed";
1386
+ previous_preview_preserved: "previous_preview_preserved";
1387
+ }>;
1388
+ updatedAt: z.ZodString;
1389
+ }, z.core.$strip>>;
1390
+ propertyKey: z.ZodNullable<z.ZodString>;
1391
+ prerequisiteCodes: z.ZodArray<z.ZodString>;
1392
+ releaseClass: z.ZodNullable<z.ZodLiteral<"ssr_container">>;
1393
+ status: z.ZodEnum<{
1394
+ blocked: "blocked";
1395
+ ready: "ready";
1396
+ failed: "failed";
1397
+ deployed: "deployed";
1398
+ unsupported: "unsupported";
1399
+ }>;
1400
+ }, z.core.$strip>;
1401
+ previewTarget: z.ZodObject<{
1402
+ canonicalPath: z.ZodString;
1403
+ compiledRelease: z.ZodNullable<z.ZodObject<{
1404
+ releaseDigest: z.ZodString;
1405
+ releaseKey: z.ZodString;
1406
+ runtimeContentRef: z.ZodString;
1407
+ sourceDigest: z.ZodString;
1408
+ starterId: z.ZodLiteral<"tenant-app">;
1409
+ workspaceName: z.ZodString;
1410
+ }, z.core.$strip>>;
1411
+ currentTarget: z.ZodBoolean;
1412
+ currentPreviewUrl: z.ZodNullable<z.ZodString>;
1413
+ detail: z.ZodString;
1414
+ environment: z.ZodEnum<{
1415
+ preview: "preview";
1416
+ live: "live";
1417
+ }>;
1418
+ lastRequestedAt: z.ZodNullable<z.ZodString>;
1419
+ lastRequestedReceiptId: z.ZodNullable<z.ZodString>;
1420
+ lastRequestedReleaseKey: z.ZodNullable<z.ZodString>;
1421
+ lastTerminalReceipt: z.ZodNullable<z.ZodObject<{
1422
+ deploymentState: z.ZodEnum<{
1423
+ ready: "ready";
1424
+ pending: "pending";
1425
+ failed: "failed";
1426
+ activated: "activated";
1427
+ rolled_back: "rolled_back";
1428
+ }>;
1429
+ errorDetail: z.ZodString;
1430
+ previewUrl: z.ZodString;
1431
+ receiptId: z.ZodString;
1432
+ receiptStatus: z.ZodString;
1433
+ rollbackStatus: z.ZodEnum<{
1434
+ not_applicable: "not_applicable";
1435
+ not_needed: "not_needed";
1436
+ previous_preview_preserved: "previous_preview_preserved";
1437
+ }>;
1438
+ updatedAt: z.ZodString;
1439
+ }, z.core.$strip>>;
1440
+ propertyKey: z.ZodNullable<z.ZodString>;
1441
+ prerequisiteCodes: z.ZodArray<z.ZodString>;
1442
+ releaseClass: z.ZodNullable<z.ZodLiteral<"ssr_container">>;
1443
+ status: z.ZodEnum<{
1444
+ blocked: "blocked";
1445
+ ready: "ready";
1446
+ failed: "failed";
1447
+ deployed: "deployed";
1448
+ unsupported: "unsupported";
1449
+ }>;
1450
+ }, z.core.$strip>;
1451
+ }, z.core.$strip>;
1452
+ recommendedNextChecks: z.ZodArray<z.ZodString>;
1453
+ starterSurfaceInventory: z.ZodObject<{
1454
+ detail: z.ZodString;
1455
+ enabledStarters: z.ZodArray<z.ZodEnum<{
1456
+ sidecar: "sidecar";
1457
+ "tenant-app": "tenant-app";
1458
+ }>>;
1459
+ localRuntimeSurfaces: z.ZodArray<z.ZodObject<{
1460
+ detail: z.ZodString;
1461
+ id: z.ZodEnum<{
1462
+ sidecar: "sidecar";
1463
+ schema_compile: "schema_compile";
1464
+ tenant_app: "tenant_app";
1465
+ }>;
1466
+ path: z.ZodString;
1467
+ status: z.ZodEnum<{
1468
+ missing: "missing";
1469
+ blocked: "blocked";
1470
+ ready: "ready";
1471
+ disabled: "disabled";
1472
+ }>;
1473
+ }, z.core.$strip>>;
1474
+ }, z.core.$strip>;
1475
+ unknowns: z.ZodArray<z.ZodObject<{
1476
+ detail: z.ZodString;
1477
+ id: z.ZodString;
1478
+ nextCheck: z.ZodNullable<z.ZodString>;
1479
+ }, z.core.$strip>>;
1480
+ workspaceRoot: z.ZodString;
1481
+ }, z.core.$strip>;
1482
+ export declare const WorkspaceDoctorSchema: z.ZodObject<{
1483
+ diagnostics: z.ZodArray<z.ZodObject<{
1484
+ action: z.ZodOptional<z.ZodString>;
1485
+ code: z.ZodString;
1486
+ detail: z.ZodString;
1487
+ path: z.ZodOptional<z.ZodString>;
1488
+ severity: z.ZodEnum<{
1489
+ info: "info";
1490
+ warning: "warning";
1491
+ error: "error";
1492
+ }>;
1493
+ summary: z.ZodString;
1494
+ }, z.core.$strip>>;
1495
+ recommendedActions: z.ZodArray<z.ZodString>;
1496
+ summary: z.ZodObject<{
1497
+ errorCount: z.ZodNumber;
1498
+ infoCount: z.ZodNumber;
1499
+ warningCount: z.ZodNumber;
1500
+ }, z.core.$strip>;
1501
+ workspaceRoot: z.ZodString;
1502
+ }, z.core.$strip>;
1503
+ export type WorkspaceDiagnostic = z.infer<typeof WorkspaceDiagnosticSchema>;
1504
+ export type BindingPayload = z.infer<typeof BindingPayloadSchema>;
1505
+ export type BindingStatus = z.infer<typeof BindingStatusSchema>;
1506
+ export type AuthProfileSummary = z.infer<typeof AuthProfileSummarySchema>;
1507
+ export type AuthStatus = z.infer<typeof AuthStatusSchema>;
1508
+ export type ArtifactStatus = z.infer<typeof ArtifactStatusSchema>;
1509
+ export type NormalizedWorkspaceConfig = z.infer<typeof NormalizedWorkspaceConfigSchema>;
1510
+ export type ResolvedPlatform = z.infer<typeof ResolvedPlatformSchema>;
1511
+ export type WorkspaceSnapshot = z.infer<typeof WorkspaceSnapshotSchema>;
1512
+ export type SchemaStatus = z.infer<typeof SchemaStatusSchema>;
1513
+ export type LocalRuntimeStatus = z.infer<typeof LocalRuntimeStatusSchema>;
1514
+ export type CapabilityInventoryUnknown = z.infer<typeof CapabilityInventoryUnknownSchema>;
1515
+ export type CapabilityGapEntry = z.infer<typeof CapabilityGapEntrySchema>;
1516
+ export type CapabilityGapReport = z.infer<typeof CapabilityGapReportSchema>;
1517
+ export type CapabilityGapLayer = z.infer<typeof CapabilityGapLayerSchema>;
1518
+ export type CapabilityGapReusability = z.infer<typeof CapabilityGapReusabilitySchema>;
1519
+ export type CapabilityInventory = z.infer<typeof CapabilityInventorySchema>;
1520
+ export type PersistedLocalRuntimeActivityStep = z.infer<typeof PersistedLocalRuntimeActivityStepSchema>;
1521
+ export type PersistedLocalRuntimeDevRecord = z.infer<typeof PersistedLocalRuntimeDevRecordSchema>;
1522
+ export type PersistedLocalRuntimeTestRecord = z.infer<typeof PersistedLocalRuntimeTestRecordSchema>;
1523
+ export type PreviewDeployTerminalReceiptState = z.infer<typeof PreviewDeployTerminalReceiptStateSchema>;
1524
+ export type PreviewDeployState = z.infer<typeof PreviewDeployStateSchema>;
1525
+ export type DeployCompiledRelease = z.infer<typeof DeployCompiledReleaseSchema>;
1526
+ export type DeployStatus = z.infer<typeof DeployStatusSchema>;
1527
+ export type WorkspaceDoctor = z.infer<typeof WorkspaceDoctorSchema>;