@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.d.mts
CHANGED
|
@@ -333626,6 +333626,11 @@ type DTOThreadMessageFinalizeInput = z$1.infer<typeof DTOThreadMessageFinalizeIn
|
|
|
333626
333626
|
declare const DTOThreadMessageRetryInput: z$1.ZodObject<{
|
|
333627
333627
|
agentMessageId: z$1.ZodString;
|
|
333628
333628
|
runtimeError: z$1.ZodOptional<z$1.ZodString>;
|
|
333629
|
+
/**
|
|
333630
|
+
* When `true`, the retry message will be sent to a thread started by the user's message
|
|
333631
|
+
* Useful when user retries a message created in the main thread, but expects the retry to be sent as a thread reply
|
|
333632
|
+
*/
|
|
333633
|
+
shouldReplyInThread: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
333629
333634
|
message: z$1.ZodOptional<z$1.ZodObject<Pick<{
|
|
333630
333635
|
id: z$1.ZodString;
|
|
333631
333636
|
threadId: z$1.ZodString;
|
|
@@ -333789,6 +333794,7 @@ declare const DTOThreadMessageRetryInput: z$1.ZodObject<{
|
|
|
333789
333794
|
body: string;
|
|
333790
333795
|
} | undefined;
|
|
333791
333796
|
runtimeError?: string | undefined;
|
|
333797
|
+
shouldReplyInThread?: boolean | undefined;
|
|
333792
333798
|
}, {
|
|
333793
333799
|
agentMessageId: string;
|
|
333794
333800
|
message?: {
|
|
@@ -333796,6 +333802,7 @@ declare const DTOThreadMessageRetryInput: z$1.ZodObject<{
|
|
|
333796
333802
|
body: string;
|
|
333797
333803
|
} | undefined;
|
|
333798
333804
|
runtimeError?: string | undefined;
|
|
333805
|
+
shouldReplyInThread?: boolean | undefined;
|
|
333799
333806
|
}>;
|
|
333800
333807
|
type DTOThreadMessageRetryInput = z$1.infer<typeof DTOThreadMessageRetryInput>;
|
|
333801
333808
|
declare const DTOThreadMessageCreateInput: z$1.ZodObject<Pick<{
|
package/dist/index.d.ts
CHANGED
|
@@ -333626,6 +333626,11 @@ type DTOThreadMessageFinalizeInput = z$1.infer<typeof DTOThreadMessageFinalizeIn
|
|
|
333626
333626
|
declare const DTOThreadMessageRetryInput: z$1.ZodObject<{
|
|
333627
333627
|
agentMessageId: z$1.ZodString;
|
|
333628
333628
|
runtimeError: z$1.ZodOptional<z$1.ZodString>;
|
|
333629
|
+
/**
|
|
333630
|
+
* When `true`, the retry message will be sent to a thread started by the user's message
|
|
333631
|
+
* Useful when user retries a message created in the main thread, but expects the retry to be sent as a thread reply
|
|
333632
|
+
*/
|
|
333633
|
+
shouldReplyInThread: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
333629
333634
|
message: z$1.ZodOptional<z$1.ZodObject<Pick<{
|
|
333630
333635
|
id: z$1.ZodString;
|
|
333631
333636
|
threadId: z$1.ZodString;
|
|
@@ -333789,6 +333794,7 @@ declare const DTOThreadMessageRetryInput: z$1.ZodObject<{
|
|
|
333789
333794
|
body: string;
|
|
333790
333795
|
} | undefined;
|
|
333791
333796
|
runtimeError?: string | undefined;
|
|
333797
|
+
shouldReplyInThread?: boolean | undefined;
|
|
333792
333798
|
}, {
|
|
333793
333799
|
agentMessageId: string;
|
|
333794
333800
|
message?: {
|
|
@@ -333796,6 +333802,7 @@ declare const DTOThreadMessageRetryInput: z$1.ZodObject<{
|
|
|
333796
333802
|
body: string;
|
|
333797
333803
|
} | undefined;
|
|
333798
333804
|
runtimeError?: string | undefined;
|
|
333805
|
+
shouldReplyInThread?: boolean | undefined;
|
|
333799
333806
|
}>;
|
|
333800
333807
|
type DTOThreadMessageRetryInput = z$1.infer<typeof DTOThreadMessageRetryInput>;
|
|
333801
333808
|
declare const DTOThreadMessageCreateInput: z$1.ZodObject<Pick<{
|
package/dist/index.js
CHANGED
|
@@ -10519,6 +10519,11 @@ var DTOThreadMessageFinalizeInput = _zod2.default.object({
|
|
|
10519
10519
|
var DTOThreadMessageRetryInput = _zod2.default.object({
|
|
10520
10520
|
agentMessageId: Id,
|
|
10521
10521
|
runtimeError: _zod2.default.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: _zod2.default.boolean().optional(),
|
|
10522
10527
|
message: DTOThreadMessage.pick({ id: true, body: true }).optional()
|
|
10523
10528
|
});
|
|
10524
10529
|
var DTOThreadMessageUpdateInput = DTOThreadMessage.pick({
|