@supernova-studio/client 1.55.0 → 1.55.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 +7 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +5 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -10519,6 +10519,11 @@ var DTOThreadMessageFinalizeInput = z325.object({
|
|
|
10519
10519
|
var DTOThreadMessageRetryInput = z325.object({
|
|
10520
10520
|
agentMessageId: Id,
|
|
10521
10521
|
runtimeError: z325.string().optional(),
|
|
10522
|
+
/**
|
|
10523
|
+
* When `true`, the retry message will be sent to a thread started by the user's message
|
|
10524
|
+
* Useful when user retries a message created in the main thread, but expects the retry to be sent as a thread reply
|
|
10525
|
+
*/
|
|
10526
|
+
shouldReplyInThread: z325.boolean().optional(),
|
|
10522
10527
|
message: DTOThreadMessage.pick({ id: true, body: true }).optional()
|
|
10523
10528
|
});
|
|
10524
10529
|
var DTOThreadMessageUpdateInput = DTOThreadMessage.pick({
|