@supernova-studio/client 1.48.5 → 1.48.6
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 +821 -1
- package/dist/index.d.ts +821 -1
- package/dist/index.js +11 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10280,20 +10280,27 @@ var DTOForgeProjectContextV2 = _zod.z.object({
|
|
|
10280
10280
|
iconSet: DTOForgeIconSet,
|
|
10281
10281
|
theme: DTOForgeProjectTheme,
|
|
10282
10282
|
createdAt: _zod.z.coerce.date(),
|
|
10283
|
-
updatedAt: _zod.z.coerce.date()
|
|
10283
|
+
updatedAt: _zod.z.coerce.date(),
|
|
10284
|
+
thumbnail: DTOFileReference.optional()
|
|
10284
10285
|
});
|
|
10285
10286
|
var DTOForgeProjectContextCreateV2 = DTOForgeProjectContextV2.omit({
|
|
10286
10287
|
id: true,
|
|
10287
10288
|
createdAt: true,
|
|
10288
10289
|
updatedAt: true,
|
|
10289
|
-
isArchived: true
|
|
10290
|
+
isArchived: true,
|
|
10291
|
+
thumbnail: true
|
|
10292
|
+
}).extend({
|
|
10293
|
+
thumbnailFileId: _zod.z.string().optional()
|
|
10290
10294
|
});
|
|
10291
10295
|
var DTOForgeProjectContextUpdateV2 = DTOForgeProjectContextV2.omit({
|
|
10292
10296
|
id: true,
|
|
10293
10297
|
workspaceId: true,
|
|
10294
10298
|
createdAt: true,
|
|
10295
|
-
updatedAt: true
|
|
10296
|
-
|
|
10299
|
+
updatedAt: true,
|
|
10300
|
+
thumbnail: true
|
|
10301
|
+
}).partial().extend({
|
|
10302
|
+
thumbnailFileId: _zod.z.string().optional()
|
|
10303
|
+
});
|
|
10297
10304
|
var DTOForgeProjectContextResponseV2 = _zod.z.object({ context: DTOForgeProjectContextV2 });
|
|
10298
10305
|
var DTOForgeProjectContextListQueryV2 = _zod.z.object({
|
|
10299
10306
|
workspaceId: _zod.z.string(),
|