@supernova-studio/model 1.10.17 → 1.10.19
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 +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -165533,6 +165533,7 @@ declare const ForgeProject: z.ZodObject<{
|
|
|
165533
165533
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
165534
165534
|
workspaceId: z.ZodString;
|
|
165535
165535
|
accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
|
|
165536
|
+
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
165536
165537
|
}, "strip", z.ZodTypeAny, {
|
|
165537
165538
|
instruction: string | null;
|
|
165538
165539
|
id: string;
|
|
@@ -165548,6 +165549,7 @@ declare const ForgeProject: z.ZodObject<{
|
|
|
165548
165549
|
fpContextId: string;
|
|
165549
165550
|
updatedAt?: Date | undefined;
|
|
165550
165551
|
createdByUserId?: string | undefined;
|
|
165552
|
+
isArchived?: boolean | undefined;
|
|
165551
165553
|
}, {
|
|
165552
165554
|
instruction: string | null;
|
|
165553
165555
|
id: string;
|
|
@@ -165563,6 +165565,7 @@ declare const ForgeProject: z.ZodObject<{
|
|
|
165563
165565
|
updatedAt?: Date | undefined;
|
|
165564
165566
|
tags?: string[] | undefined;
|
|
165565
165567
|
createdByUserId?: string | undefined;
|
|
165568
|
+
isArchived?: boolean | undefined;
|
|
165566
165569
|
}>;
|
|
165567
165570
|
type ForgeProject = z.infer<typeof ForgeProject>;
|
|
165568
165571
|
type CreateForgeProject = Omit<DbCreateInputOmit<ForgeProject>, "workspaceId" | "createdByUserId">;
|
package/dist/index.d.ts
CHANGED
|
@@ -165533,6 +165533,7 @@ declare const ForgeProject: z.ZodObject<{
|
|
|
165533
165533
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
165534
165534
|
workspaceId: z.ZodString;
|
|
165535
165535
|
accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
|
|
165536
|
+
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
165536
165537
|
}, "strip", z.ZodTypeAny, {
|
|
165537
165538
|
instruction: string | null;
|
|
165538
165539
|
id: string;
|
|
@@ -165548,6 +165549,7 @@ declare const ForgeProject: z.ZodObject<{
|
|
|
165548
165549
|
fpContextId: string;
|
|
165549
165550
|
updatedAt?: Date | undefined;
|
|
165550
165551
|
createdByUserId?: string | undefined;
|
|
165552
|
+
isArchived?: boolean | undefined;
|
|
165551
165553
|
}, {
|
|
165552
165554
|
instruction: string | null;
|
|
165553
165555
|
id: string;
|
|
@@ -165563,6 +165565,7 @@ declare const ForgeProject: z.ZodObject<{
|
|
|
165563
165565
|
updatedAt?: Date | undefined;
|
|
165564
165566
|
tags?: string[] | undefined;
|
|
165565
165567
|
createdByUserId?: string | undefined;
|
|
165568
|
+
isArchived?: boolean | undefined;
|
|
165566
165569
|
}>;
|
|
165567
165570
|
type ForgeProject = z.infer<typeof ForgeProject>;
|
|
165568
165571
|
type CreateForgeProject = Omit<DbCreateInputOmit<ForgeProject>, "workspaceId" | "createdByUserId">;
|
package/dist/index.js
CHANGED
|
@@ -6374,7 +6374,8 @@ var ForgeProject = _zod.z.object({
|
|
|
6374
6374
|
tags: ForgeProjectTag,
|
|
6375
6375
|
updatedAt: _zod.z.coerce.date().optional(),
|
|
6376
6376
|
workspaceId: _zod.z.string(),
|
|
6377
|
-
accessMode: ForgeProjectAccessMode
|
|
6377
|
+
accessMode: ForgeProjectAccessMode,
|
|
6378
|
+
isArchived: _zod.z.boolean().optional()
|
|
6378
6379
|
});
|
|
6379
6380
|
|
|
6380
6381
|
// src/integrations/external-oauth-request.ts
|