@supernova-studio/model 1.38.0 → 1.38.1

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.d.mts CHANGED
@@ -157265,7 +157265,6 @@ declare const ForgeProjectContextTailwindConfig: z.ZodObject<{
157265
157265
  }>;
157266
157266
  type ForgeProjectContextTailwindConfig = z.infer<typeof ForgeProjectContextTailwindConfig>;
157267
157267
  declare const ForgeProjectContext: z.ZodObject<{
157268
- createdAt: z.ZodDate;
157269
157268
  definition: z.ZodString;
157270
157269
  dependencies: z.ZodArray<z.ZodObject<{
157271
157270
  packageName: z.ZodString;
@@ -157366,6 +157365,7 @@ declare const ForgeProjectContext: z.ZodObject<{
157366
157365
  version: string;
157367
157366
  content: string;
157368
157367
  }>>;
157368
+ createdAt: z.ZodDate;
157369
157369
  updatedAt: z.ZodDate;
157370
157370
  workspaceId: z.ZodString;
157371
157371
  }, "strip", z.ZodTypeAny, {
package/dist/index.d.ts CHANGED
@@ -157265,7 +157265,6 @@ declare const ForgeProjectContextTailwindConfig: z.ZodObject<{
157265
157265
  }>;
157266
157266
  type ForgeProjectContextTailwindConfig = z.infer<typeof ForgeProjectContextTailwindConfig>;
157267
157267
  declare const ForgeProjectContext: z.ZodObject<{
157268
- createdAt: z.ZodDate;
157269
157268
  definition: z.ZodString;
157270
157269
  dependencies: z.ZodArray<z.ZodObject<{
157271
157270
  packageName: z.ZodString;
@@ -157366,6 +157365,7 @@ declare const ForgeProjectContext: z.ZodObject<{
157366
157365
  version: string;
157367
157366
  content: string;
157368
157367
  }>>;
157368
+ createdAt: z.ZodDate;
157369
157369
  updatedAt: z.ZodDate;
157370
157370
  workspaceId: z.ZodString;
157371
157371
  }, "strip", z.ZodTypeAny, {
package/dist/index.js CHANGED
@@ -5938,7 +5938,6 @@ var ForgeProjectContextTailwindConfig = _zod.z.object({
5938
5938
  version: _zod.z.string()
5939
5939
  });
5940
5940
  var ForgeProjectContext = _zod.z.object({
5941
- createdAt: _zod.z.coerce.date(),
5942
5941
  definition: _zod.z.string(),
5943
5942
  dependencies: _zod.z.array(ForgeProjectContextDependency),
5944
5943
  designSystemId: _zod.z.string(),
@@ -5949,6 +5948,7 @@ var ForgeProjectContext = _zod.z.object({
5949
5948
  platform: _zod.z.enum(["React", "Vue", "Angular"]),
5950
5949
  styling: _zod.z.enum(["CSS", "Tailwind"]),
5951
5950
  tailwindConfig: ForgeProjectContextTailwindConfig.optional(),
5951
+ createdAt: _zod.z.coerce.date(),
5952
5952
  updatedAt: _zod.z.coerce.date(),
5953
5953
  workspaceId: _zod.z.string()
5954
5954
  });