@supernova-studio/client 1.22.0 → 1.22.2
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 +185 -61
- package/dist/index.d.ts +185 -61
- package/dist/index.js +24 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +23 -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,14 @@ 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
|
+
});
|
|
9219
|
+
var DTOFeatureIterationPromoteInput = z312.object({
|
|
9220
|
+
id: Id
|
|
9221
|
+
});
|
|
9211
9222
|
var DTOFeatureMessageResponse = z312.object({
|
|
9212
9223
|
message: DTOFeatureMessage
|
|
9213
9224
|
});
|
|
@@ -9225,6 +9236,12 @@ var DTOFeatureArtifactResponse = z312.object({
|
|
|
9225
9236
|
var DTOFeatureArtifactListResponse = z312.object({
|
|
9226
9237
|
artifacts: DTOFeatureArtifact.array()
|
|
9227
9238
|
});
|
|
9239
|
+
var DTOFeatureIterationResponse = z312.object({
|
|
9240
|
+
iteration: DTOFeatureIteration
|
|
9241
|
+
});
|
|
9242
|
+
var DTOFeatureIterationListResponse = z312.object({
|
|
9243
|
+
iterations: DTOFeatureIteration.array()
|
|
9244
|
+
});
|
|
9228
9245
|
var DTOFeatureEventMessagesSent = z312.object({
|
|
9229
9246
|
type: z312.literal("MessagesSent"),
|
|
9230
9247
|
data: DTOFeatureMessage.array()
|
|
@@ -18229,6 +18246,10 @@ export {
|
|
|
18229
18246
|
DTOFeatureEventReactionsDeleted,
|
|
18230
18247
|
DTOFeatureEventReactionsSent,
|
|
18231
18248
|
DTOFeatureIteration,
|
|
18249
|
+
DTOFeatureIterationCreateInput,
|
|
18250
|
+
DTOFeatureIterationListResponse,
|
|
18251
|
+
DTOFeatureIterationPromoteInput,
|
|
18252
|
+
DTOFeatureIterationResponse,
|
|
18232
18253
|
DTOFeatureMessage,
|
|
18233
18254
|
DTOFeatureMessageAgentSender,
|
|
18234
18255
|
DTOFeatureMessageAttachments,
|