@supernova-studio/model 1.37.8 → 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 +51 -51
- package/dist/index.d.ts +51 -51
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -247,7 +247,7 @@ var PriceSchema = z11.object({
|
|
|
247
247
|
|
|
248
248
|
// src/billing/product.ts
|
|
249
249
|
import { z as z12 } from "zod";
|
|
250
|
-
var ProductCodeSchema = z12.enum(["free", "team", "company", "enterprise"]);
|
|
250
|
+
var ProductCodeSchema = z12.enum(["free", "team", "company", "enterprise", "pro"]);
|
|
251
251
|
var ProductCode = ProductCodeSchema.enum;
|
|
252
252
|
|
|
253
253
|
// src/billing/subscription.ts
|
|
@@ -5938,7 +5938,6 @@ var ForgeProjectContextTailwindConfig = z177.object({
|
|
|
5938
5938
|
version: z177.string()
|
|
5939
5939
|
});
|
|
5940
5940
|
var ForgeProjectContext = z177.object({
|
|
5941
|
-
createdAt: z177.coerce.date(),
|
|
5942
5941
|
definition: z177.string(),
|
|
5943
5942
|
dependencies: z177.array(ForgeProjectContextDependency),
|
|
5944
5943
|
designSystemId: z177.string(),
|
|
@@ -5949,6 +5948,7 @@ var ForgeProjectContext = z177.object({
|
|
|
5949
5948
|
platform: z177.enum(["React", "Vue", "Angular"]),
|
|
5950
5949
|
styling: z177.enum(["CSS", "Tailwind"]),
|
|
5951
5950
|
tailwindConfig: ForgeProjectContextTailwindConfig.optional(),
|
|
5951
|
+
createdAt: z177.coerce.date(),
|
|
5952
5952
|
updatedAt: z177.coerce.date(),
|
|
5953
5953
|
workspaceId: z177.string()
|
|
5954
5954
|
});
|