@supernova-studio/client 1.47.3 → 1.47.5
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 +23 -4
- package/dist/index.d.ts +23 -4
- package/dist/index.js +12 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -2
- 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
|
});
|
|
@@ -10558,12 +10562,15 @@ var DTOForgeRelationDelete = z332.object({
|
|
|
10558
10562
|
targetItemId: z332.string().uuid()
|
|
10559
10563
|
});
|
|
10560
10564
|
var DTOForgeRelationListInput = z332.object({
|
|
10561
|
-
projectId: z332.string()
|
|
10562
|
-
depth: z332.number().min(0).optional()
|
|
10565
|
+
projectId: z332.string()
|
|
10563
10566
|
});
|
|
10564
10567
|
var DTOForgeRelationListResponse = z332.object({
|
|
10565
10568
|
relations: z332.array(DTOForgeRelation)
|
|
10566
10569
|
});
|
|
10570
|
+
var DTOForgeEntity = z332.object({
|
|
10571
|
+
id: z332.string().uuid(),
|
|
10572
|
+
type: DTOForgeRelationType
|
|
10573
|
+
});
|
|
10567
10574
|
|
|
10568
10575
|
// src/api/dto/forge/threads.ts
|
|
10569
10576
|
import { z as z333 } from "zod";
|
|
@@ -19616,6 +19623,7 @@ export {
|
|
|
19616
19623
|
DTOFeatureMessageUpdateInput,
|
|
19617
19624
|
DTOFeatureMessageUserSender,
|
|
19618
19625
|
DTOFeatureSandbox,
|
|
19626
|
+
DTOFeatureUpdateThemeInput,
|
|
19619
19627
|
DTOFigmaComponent,
|
|
19620
19628
|
DTOFigmaComponentGroup,
|
|
19621
19629
|
DTOFigmaComponentGroupListResponse,
|
|
@@ -19692,6 +19700,7 @@ export {
|
|
|
19692
19700
|
DTOForgeChatThreadUpdateResponse,
|
|
19693
19701
|
DTOForgeComponentSet,
|
|
19694
19702
|
DTOForgeComponentSetTypeV2,
|
|
19703
|
+
DTOForgeEntity,
|
|
19695
19704
|
DTOForgeFeatureRoom,
|
|
19696
19705
|
DTOForgeFeatureRoomResponse,
|
|
19697
19706
|
DTOForgeFigmaArtifact,
|