@supernova-studio/model 1.10.6 → 1.10.7

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/index.mjs CHANGED
@@ -6181,10 +6181,10 @@ var ForgeAvatarBuilder = z189.object({
6181
6181
  var ForgeAgent = z189.object({
6182
6182
  avatar: z189.union([z189.string(), ForgeAvatarBuilder]),
6183
6183
  avatarUrl: z189.string().optional(),
6184
- behavior: z189.enum(["coder", "writer", "designer"]),
6184
+ behavior: z189.enum(["Coder", "Writer", "Designer"]),
6185
6185
  id: z189.string(),
6186
6186
  name: z189.string(),
6187
- personality: z189.enum(["neutral", "assertive", "crazy"]),
6187
+ personality: z189.enum(["Neutral", "Assertive", "Crazy"]),
6188
6188
  projectId: z189.string()
6189
6189
  });
6190
6190
 
@@ -6241,7 +6241,7 @@ var ForgeParticipant = z191.object({
6241
6241
  agentId: z191.string().optional(),
6242
6242
  agent: ForgeAgent.optional(),
6243
6243
  projectIterationId: z191.string(),
6244
- role: z191.enum(["editor", "viewer"]),
6244
+ role: z191.enum(["Editor", "Viewer"]),
6245
6245
  type: z191.enum(["Agent", "User"]),
6246
6246
  userId: z191.string().optional(),
6247
6247
  user: User.optional()
@@ -6260,7 +6260,7 @@ var ForgeIterationMessage = z192.object({
6260
6260
  participant: ForgeParticipant,
6261
6261
  projectIterationId: z192.string(),
6262
6262
  steps: z192.array(ForgeIterationMessageStep).optional(),
6263
- type: z192.enum(["note", "action", "steps"]),
6263
+ type: z192.enum(["Note", "Action", "Steps"]),
6264
6264
  text: z192.string()
6265
6265
  });
6266
6266
 
@@ -6291,8 +6291,8 @@ var ForgeProjectContext = z194.object({
6291
6291
  meta: ForgeMeta,
6292
6292
  name: z194.string(),
6293
6293
  npmProxySettings: NpmRegistryConfig,
6294
- platform: z194.enum(["react", "vue", "angular"]),
6295
- styling: z194.enum(["css", "tailwind"]),
6294
+ platform: z194.enum(["React", "Vue", "Angular"]),
6295
+ styling: z194.enum(["CSS", "Tailwind"]),
6296
6296
  tailwindConfig: ForgeProjectContextTailwindConfig.optional(),
6297
6297
  updatedAt: z194.coerce.date(),
6298
6298
  workspaceId: z194.string()
@@ -6328,7 +6328,7 @@ import { z as z197 } from "zod";
6328
6328
  var ForgeProjectTag = z197.array(z197.string()).default([]);
6329
6329
  var ForgeProject = z197.object({
6330
6330
  createdAt: z197.coerce.date(),
6331
- createdByUserId: z197.string(),
6331
+ createdByUserId: z197.string().optional(),
6332
6332
  fpContextId: z197.string(),
6333
6333
  id: z197.string(),
6334
6334
  instruction: z197.string().nullable(),