@supernova-studio/client 1.22.0 → 1.22.1
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 +177 -61
- package/dist/index.d.ts +177 -61
- package/dist/index.js +20 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +19 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -9086,8 +9086,7 @@ var DTOFeatureMessageUserSender = z312.object({
|
|
|
9086
9086
|
userId: z312.string()
|
|
9087
9087
|
});
|
|
9088
9088
|
var DTOFeatureMessageAgentSender = z312.object({
|
|
9089
|
-
type: z312.literal("Agent")
|
|
9090
|
-
agentType: z312.enum(["Cody"])
|
|
9089
|
+
type: z312.literal("Agent")
|
|
9091
9090
|
});
|
|
9092
9091
|
var DTOFeatureMessageSystemSender = z312.object({
|
|
9093
9092
|
type: z312.literal("System"),
|
|
@@ -9165,6 +9164,10 @@ var DTOFeatureArtifact = z312.object({
|
|
|
9165
9164
|
});
|
|
9166
9165
|
var DTOFeatureIteration = z312.object({
|
|
9167
9166
|
id: Id,
|
|
9167
|
+
/**
|
|
9168
|
+
* ID of the iteration that this iteration is based on
|
|
9169
|
+
*/
|
|
9170
|
+
baseIterationId: z312.string().optional(),
|
|
9168
9171
|
/**
|
|
9169
9172
|
* Message ID that triggered creation of the iteration
|
|
9170
9173
|
*/
|
|
@@ -9208,6 +9211,11 @@ var DTOFeatureArtifactCreateInput = z312.object({
|
|
|
9208
9211
|
var DTOFeatureArtifactDeleteInput = z312.object({
|
|
9209
9212
|
id: Id
|
|
9210
9213
|
});
|
|
9214
|
+
var DTOFeatureIterationCreateInput = DTOFeatureIteration.pick({
|
|
9215
|
+
id: true,
|
|
9216
|
+
artifactIds: true,
|
|
9217
|
+
startedFromMessageId: true
|
|
9218
|
+
});
|
|
9211
9219
|
var DTOFeatureMessageResponse = z312.object({
|
|
9212
9220
|
message: DTOFeatureMessage
|
|
9213
9221
|
});
|
|
@@ -9225,6 +9233,12 @@ var DTOFeatureArtifactResponse = z312.object({
|
|
|
9225
9233
|
var DTOFeatureArtifactListResponse = z312.object({
|
|
9226
9234
|
artifacts: DTOFeatureArtifact.array()
|
|
9227
9235
|
});
|
|
9236
|
+
var DTOFeatureIterationResponse = z312.object({
|
|
9237
|
+
iteration: DTOFeatureIteration
|
|
9238
|
+
});
|
|
9239
|
+
var DTOFeatureIterationListResponse = z312.object({
|
|
9240
|
+
iterations: DTOFeatureIteration.array()
|
|
9241
|
+
});
|
|
9228
9242
|
var DTOFeatureEventMessagesSent = z312.object({
|
|
9229
9243
|
type: z312.literal("MessagesSent"),
|
|
9230
9244
|
data: DTOFeatureMessage.array()
|
|
@@ -18229,6 +18243,9 @@ export {
|
|
|
18229
18243
|
DTOFeatureEventReactionsDeleted,
|
|
18230
18244
|
DTOFeatureEventReactionsSent,
|
|
18231
18245
|
DTOFeatureIteration,
|
|
18246
|
+
DTOFeatureIterationCreateInput,
|
|
18247
|
+
DTOFeatureIterationListResponse,
|
|
18248
|
+
DTOFeatureIterationResponse,
|
|
18232
18249
|
DTOFeatureMessage,
|
|
18233
18250
|
DTOFeatureMessageAgentSender,
|
|
18234
18251
|
DTOFeatureMessageAttachments,
|