create-interview-cockpit 0.6.0 → 0.8.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.
@@ -61,8 +61,17 @@ export interface ContextFile {
61
61
  * 'sandbox' = paired server+client sandbox saved as JSON,
62
62
  * 'infra' = Terraform-style infra lab workspace saved as JSON,
63
63
  * 'react' = React + TypeScript lab workspace,
64
- * 'nextjs' = Next.js App Router lab workspace. */
65
- origin?: "user" | "ai" | "upload" | "sandbox" | "infra" | "react" | "nextjs";
64
+ * 'nextjs' = Next.js App Router lab workspace,
65
+ * 'module-federation' = Webpack Module Federation lab workspace. */
66
+ origin?:
67
+ | "user"
68
+ | "ai"
69
+ | "upload"
70
+ | "sandbox"
71
+ | "infra"
72
+ | "react"
73
+ | "nextjs"
74
+ | "module-federation";
66
75
  /** Language hint for code snippets (e.g. 'typescript', 'javascript'). */
67
76
  language?: string;
68
77
  /** Short display label for code snippets. */