@supernova-studio/client 1.47.4 → 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 +12 -4
- package/dist/index.d.ts +12 -4
- package/dist/index.js +7 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -10562,12 +10562,15 @@ var DTOForgeRelationDelete = z332.object({
|
|
|
10562
10562
|
targetItemId: z332.string().uuid()
|
|
10563
10563
|
});
|
|
10564
10564
|
var DTOForgeRelationListInput = z332.object({
|
|
10565
|
-
projectId: z332.string()
|
|
10566
|
-
depth: z332.number().min(0).optional()
|
|
10565
|
+
projectId: z332.string()
|
|
10567
10566
|
});
|
|
10568
10567
|
var DTOForgeRelationListResponse = z332.object({
|
|
10569
10568
|
relations: z332.array(DTOForgeRelation)
|
|
10570
10569
|
});
|
|
10570
|
+
var DTOForgeEntity = z332.object({
|
|
10571
|
+
id: z332.string().uuid(),
|
|
10572
|
+
type: DTOForgeRelationType
|
|
10573
|
+
});
|
|
10571
10574
|
|
|
10572
10575
|
// src/api/dto/forge/threads.ts
|
|
10573
10576
|
import { z as z333 } from "zod";
|
|
@@ -19697,6 +19700,7 @@ export {
|
|
|
19697
19700
|
DTOForgeChatThreadUpdateResponse,
|
|
19698
19701
|
DTOForgeComponentSet,
|
|
19699
19702
|
DTOForgeComponentSetTypeV2,
|
|
19703
|
+
DTOForgeEntity,
|
|
19700
19704
|
DTOForgeFeatureRoom,
|
|
19701
19705
|
DTOForgeFeatureRoomResponse,
|
|
19702
19706
|
DTOForgeFigmaArtifact,
|