@supernova-studio/client 1.47.2 → 1.47.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 +25 -1
- package/dist/index.d.ts +25 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -10491,6 +10491,7 @@ var DTOForgeProject = z331.object({
|
|
|
10491
10491
|
defaultRole: DTOForgeProjectDefaultRole.default("Viewer"),
|
|
10492
10492
|
isArchived: z331.boolean(),
|
|
10493
10493
|
emoji: z331.string().optional(),
|
|
10494
|
+
tokenThemeSetId: z331.string().optional(),
|
|
10494
10495
|
createdAt: z331.coerce.date(),
|
|
10495
10496
|
createdByUserId: z331.string().optional(),
|
|
10496
10497
|
lastUserActivityAt: z331.coerce.date().optional(),
|
|
@@ -10518,7 +10519,8 @@ var DTOForgeProjectCreate = DTOForgeProject.pick({
|
|
|
10518
10519
|
tags: true,
|
|
10519
10520
|
accessMode: true,
|
|
10520
10521
|
defaultRole: true,
|
|
10521
|
-
emoji: true
|
|
10522
|
+
emoji: true,
|
|
10523
|
+
tokenThemeSetId: true
|
|
10522
10524
|
}).extend({
|
|
10523
10525
|
/** @deprecated use `name` and `description` properties on project */
|
|
10524
10526
|
meta: DTOForgeProject.shape.meta.optional(),
|