@supernova-studio/model 1.14.2 → 1.14.3
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
|
@@ -158201,6 +158201,7 @@ declare const ForgeProject: z.ZodObject<{
|
|
|
158201
158201
|
workspaceId: z.ZodString;
|
|
158202
158202
|
accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
|
|
158203
158203
|
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
158204
|
+
emoji: z.ZodOptional<z.ZodString>;
|
|
158204
158205
|
}, "strip", z.ZodTypeAny, {
|
|
158205
158206
|
instruction: string | null;
|
|
158206
158207
|
id: string;
|
|
@@ -158215,6 +158216,7 @@ declare const ForgeProject: z.ZodObject<{
|
|
|
158215
158216
|
accessMode: "Open" | "InviteOnly";
|
|
158216
158217
|
fpContextId: string;
|
|
158217
158218
|
updatedAt?: Date | undefined;
|
|
158219
|
+
emoji?: string | undefined;
|
|
158218
158220
|
createdByUserId?: string | undefined;
|
|
158219
158221
|
isArchived?: boolean | undefined;
|
|
158220
158222
|
}, {
|
|
@@ -158231,6 +158233,7 @@ declare const ForgeProject: z.ZodObject<{
|
|
|
158231
158233
|
fpContextId: string;
|
|
158232
158234
|
updatedAt?: Date | undefined;
|
|
158233
158235
|
tags?: string[] | undefined;
|
|
158236
|
+
emoji?: string | undefined;
|
|
158234
158237
|
createdByUserId?: string | undefined;
|
|
158235
158238
|
isArchived?: boolean | undefined;
|
|
158236
158239
|
}>;
|
package/dist/index.d.ts
CHANGED
|
@@ -158201,6 +158201,7 @@ declare const ForgeProject: z.ZodObject<{
|
|
|
158201
158201
|
workspaceId: z.ZodString;
|
|
158202
158202
|
accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
|
|
158203
158203
|
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
158204
|
+
emoji: z.ZodOptional<z.ZodString>;
|
|
158204
158205
|
}, "strip", z.ZodTypeAny, {
|
|
158205
158206
|
instruction: string | null;
|
|
158206
158207
|
id: string;
|
|
@@ -158215,6 +158216,7 @@ declare const ForgeProject: z.ZodObject<{
|
|
|
158215
158216
|
accessMode: "Open" | "InviteOnly";
|
|
158216
158217
|
fpContextId: string;
|
|
158217
158218
|
updatedAt?: Date | undefined;
|
|
158219
|
+
emoji?: string | undefined;
|
|
158218
158220
|
createdByUserId?: string | undefined;
|
|
158219
158221
|
isArchived?: boolean | undefined;
|
|
158220
158222
|
}, {
|
|
@@ -158231,6 +158233,7 @@ declare const ForgeProject: z.ZodObject<{
|
|
|
158231
158233
|
fpContextId: string;
|
|
158232
158234
|
updatedAt?: Date | undefined;
|
|
158233
158235
|
tags?: string[] | undefined;
|
|
158236
|
+
emoji?: string | undefined;
|
|
158234
158237
|
createdByUserId?: string | undefined;
|
|
158235
158238
|
isArchived?: boolean | undefined;
|
|
158236
158239
|
}>;
|
package/dist/index.js
CHANGED
|
@@ -6427,7 +6427,8 @@ var ForgeProject = _zod.z.object({
|
|
|
6427
6427
|
updatedAt: _zod.z.coerce.date().optional(),
|
|
6428
6428
|
workspaceId: _zod.z.string(),
|
|
6429
6429
|
accessMode: ForgeProjectAccessMode,
|
|
6430
|
-
isArchived: _zod.z.boolean().optional()
|
|
6430
|
+
isArchived: _zod.z.boolean().optional(),
|
|
6431
|
+
emoji: _zod.z.string().optional()
|
|
6431
6432
|
});
|
|
6432
6433
|
|
|
6433
6434
|
// src/integrations/external-oauth-request.ts
|