@supernova-studio/client 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
@@ -5423,10 +5423,10 @@ var ForgeAvatarBuilder = z189.object({
5423
5423
  var ForgeAgent = z189.object({
5424
5424
  avatar: z189.union([z189.string(), ForgeAvatarBuilder]),
5425
5425
  avatarUrl: z189.string().optional(),
5426
- behavior: z189.enum(["coder", "writer", "designer"]),
5426
+ behavior: z189.enum(["Coder", "Writer", "Designer"]),
5427
5427
  id: z189.string(),
5428
5428
  name: z189.string(),
5429
- personality: z189.enum(["neutral", "assertive", "crazy"]),
5429
+ personality: z189.enum(["Neutral", "Assertive", "Crazy"]),
5430
5430
  projectId: z189.string()
5431
5431
  });
5432
5432
  var Artifact = z190.object({
@@ -5474,7 +5474,7 @@ var ForgeParticipant = z191.object({
5474
5474
  agentId: z191.string().optional(),
5475
5475
  agent: ForgeAgent.optional(),
5476
5476
  projectIterationId: z191.string(),
5477
- role: z191.enum(["editor", "viewer"]),
5477
+ role: z191.enum(["Editor", "Viewer"]),
5478
5478
  type: z191.enum(["Agent", "User"]),
5479
5479
  userId: z191.string().optional(),
5480
5480
  user: User.optional()
@@ -5491,7 +5491,7 @@ var ForgeIterationMessage = z192.object({
5491
5491
  participant: ForgeParticipant,
5492
5492
  projectIterationId: z192.string(),
5493
5493
  steps: z192.array(ForgeIterationMessageStep).optional(),
5494
- type: z192.enum(["note", "action", "steps"]),
5494
+ type: z192.enum(["Note", "Action", "Steps"]),
5495
5495
  text: z192.string()
5496
5496
  });
5497
5497
  var ForgeMeta = z193.object({
@@ -5516,8 +5516,8 @@ var ForgeProjectContext = z194.object({
5516
5516
  meta: ForgeMeta,
5517
5517
  name: z194.string(),
5518
5518
  npmProxySettings: NpmRegistryConfig,
5519
- platform: z194.enum(["react", "vue", "angular"]),
5520
- styling: z194.enum(["css", "tailwind"]),
5519
+ platform: z194.enum(["React", "Vue", "Angular"]),
5520
+ styling: z194.enum(["CSS", "Tailwind"]),
5521
5521
  tailwindConfig: ForgeProjectContextTailwindConfig.optional(),
5522
5522
  updatedAt: z194.coerce.date(),
5523
5523
  workspaceId: z194.string()
@@ -5544,7 +5544,7 @@ var ForgeProjectPrivilegeSchema = z196.object({
5544
5544
  var ForgeProjectTag = z197.array(z197.string()).default([]);
5545
5545
  var ForgeProject = z197.object({
5546
5546
  createdAt: z197.coerce.date(),
5547
- createdByUserId: z197.string(),
5547
+ createdByUserId: z197.string().optional(),
5548
5548
  fpContextId: z197.string(),
5549
5549
  id: z197.string(),
5550
5550
  instruction: z197.string().nullable(),