@supernova-studio/client 1.42.6 → 1.42.7
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 +10 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +12 -10
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +23 -21
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -180,9 +180,9 @@ import { z as z169 } from "zod";
|
|
|
180
180
|
import { z as z170 } from "zod";
|
|
181
181
|
import { z as z172 } from "zod";
|
|
182
182
|
import { z as z171 } from "zod";
|
|
183
|
-
import { z as z174 } from "zod";
|
|
184
183
|
import { z as z173 } from "zod";
|
|
185
184
|
import { z as z175 } from "zod";
|
|
185
|
+
import { z as z174 } from "zod";
|
|
186
186
|
import { z as z176 } from "zod";
|
|
187
187
|
import { z as z177 } from "zod";
|
|
188
188
|
import { z as z178 } from "zod";
|
|
@@ -5161,38 +5161,38 @@ var ForgeIterationMessage = z172.object({
|
|
|
5161
5161
|
type: z172.enum(["Note", "Action", "Steps"]),
|
|
5162
5162
|
text: z172.string()
|
|
5163
5163
|
});
|
|
5164
|
-
var
|
|
5165
|
-
var
|
|
5166
|
-
|
|
5167
|
-
|
|
5164
|
+
var ForgeProjectArtifactContentData = DocumentationPageContentData;
|
|
5165
|
+
var ForgeProjectArtifactContent = z173.object({
|
|
5166
|
+
id: z173.string(),
|
|
5167
|
+
artifactId: z173.string(),
|
|
5168
5168
|
projectId: z173.string(),
|
|
5169
|
-
name: z173.string(),
|
|
5170
|
-
sortOrder: SortOrder.default(0),
|
|
5171
5169
|
createdAt: z173.coerce.date(),
|
|
5172
5170
|
updatedAt: z173.coerce.date(),
|
|
5173
|
-
|
|
5171
|
+
data: ForgeProjectArtifactContentData
|
|
5174
5172
|
});
|
|
5175
|
-
var
|
|
5173
|
+
var ForgeProjectSectionChildType = z174.enum(["Artifact", "Feature"]);
|
|
5174
|
+
var SortOrder = z174.number().int();
|
|
5175
|
+
var ForgeSection = z174.object({
|
|
5176
5176
|
id: Id,
|
|
5177
5177
|
projectId: z174.string(),
|
|
5178
|
-
|
|
5179
|
-
title: z174.string(),
|
|
5180
|
-
previewUrl: z174.string().nullish(),
|
|
5178
|
+
name: z174.string(),
|
|
5181
5179
|
sortOrder: SortOrder.default(0),
|
|
5182
5180
|
createdAt: z174.coerce.date(),
|
|
5183
5181
|
updatedAt: z174.coerce.date(),
|
|
5184
|
-
|
|
5185
|
-
sectionId: Id.optional(),
|
|
5186
|
-
threadId: z174.string().optional()
|
|
5182
|
+
childType: ForgeProjectSectionChildType
|
|
5187
5183
|
});
|
|
5188
|
-
var
|
|
5189
|
-
|
|
5190
|
-
id: z175.string(),
|
|
5191
|
-
artifactId: z175.string(),
|
|
5184
|
+
var ForgeProjectArtifact = z175.object({
|
|
5185
|
+
id: Id,
|
|
5192
5186
|
projectId: z175.string(),
|
|
5187
|
+
iterationId: z175.string().nullish(),
|
|
5188
|
+
title: z175.string(),
|
|
5189
|
+
previewUrl: z175.string().nullish(),
|
|
5190
|
+
sortOrder: SortOrder.default(0),
|
|
5193
5191
|
createdAt: z175.coerce.date(),
|
|
5194
5192
|
updatedAt: z175.coerce.date(),
|
|
5195
|
-
|
|
5193
|
+
createdByUserId: z175.string(),
|
|
5194
|
+
sectionId: Id.optional(),
|
|
5195
|
+
threadId: z175.string().optional()
|
|
5196
5196
|
});
|
|
5197
5197
|
var ProjectFeatureStatus = z176.enum(["Draft", "ReadyForDevelopment"]);
|
|
5198
5198
|
var ProjectFeature = z176.object({
|
|
@@ -10295,7 +10295,9 @@ var DTOForgeProjectListResponse = z328.object({
|
|
|
10295
10295
|
)
|
|
10296
10296
|
});
|
|
10297
10297
|
var DTOForgeProjectResponse = z328.object({
|
|
10298
|
-
project: DTOForgeProject
|
|
10298
|
+
project: DTOForgeProject.extend({
|
|
10299
|
+
effectiveRole: DTOForgeProjectRole
|
|
10300
|
+
})
|
|
10299
10301
|
});
|
|
10300
10302
|
|
|
10301
10303
|
// src/api/dto/forge/threads.ts
|