@supernova-studio/client 1.47.2 → 1.47.4
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 +37 -2
- package/dist/index.d.ts +37 -2
- package/dist/index.js +9 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -9671,6 +9671,10 @@ var DTOFeatureIterationUpdateArtifactsByMessageInput = z314.object({
|
|
|
9671
9671
|
var DTOFeatureAgentWorkFinalizeInput = z314.object({
|
|
9672
9672
|
messageId: Id
|
|
9673
9673
|
});
|
|
9674
|
+
var DTOFeatureUpdateThemeInput = z314.object({
|
|
9675
|
+
parentMessageId: z314.string().optional(),
|
|
9676
|
+
themeCss: z314.string()
|
|
9677
|
+
});
|
|
9674
9678
|
var DTOFeatureMessageResponse = z314.object({
|
|
9675
9679
|
message: DTOFeatureMessage
|
|
9676
9680
|
});
|
|
@@ -10491,6 +10495,7 @@ var DTOForgeProject = z331.object({
|
|
|
10491
10495
|
defaultRole: DTOForgeProjectDefaultRole.default("Viewer"),
|
|
10492
10496
|
isArchived: z331.boolean(),
|
|
10493
10497
|
emoji: z331.string().optional(),
|
|
10498
|
+
tokenThemeSetId: z331.string().optional(),
|
|
10494
10499
|
createdAt: z331.coerce.date(),
|
|
10495
10500
|
createdByUserId: z331.string().optional(),
|
|
10496
10501
|
lastUserActivityAt: z331.coerce.date().optional(),
|
|
@@ -10518,7 +10523,8 @@ var DTOForgeProjectCreate = DTOForgeProject.pick({
|
|
|
10518
10523
|
tags: true,
|
|
10519
10524
|
accessMode: true,
|
|
10520
10525
|
defaultRole: true,
|
|
10521
|
-
emoji: true
|
|
10526
|
+
emoji: true,
|
|
10527
|
+
tokenThemeSetId: true
|
|
10522
10528
|
}).extend({
|
|
10523
10529
|
/** @deprecated use `name` and `description` properties on project */
|
|
10524
10530
|
meta: DTOForgeProject.shape.meta.optional(),
|
|
@@ -19614,6 +19620,7 @@ export {
|
|
|
19614
19620
|
DTOFeatureMessageUpdateInput,
|
|
19615
19621
|
DTOFeatureMessageUserSender,
|
|
19616
19622
|
DTOFeatureSandbox,
|
|
19623
|
+
DTOFeatureUpdateThemeInput,
|
|
19617
19624
|
DTOFigmaComponent,
|
|
19618
19625
|
DTOFigmaComponentGroup,
|
|
19619
19626
|
DTOFigmaComponentGroupListResponse,
|