@orq-ai/node 3.8.0-rc.30 → 3.8.0-rc.31
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/bin/mcp-server.js +542 -542
- package/bin/mcp-server.js.map +40 -40
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/components/deployments.d.ts +8 -8
- package/models/components/deployments.d.ts.map +1 -1
- package/models/components/deployments.js +8 -8
- package/models/components/deployments.js.map +1 -1
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.d.ts +8 -8
- package/models/operations/createdatasetitem.d.ts.map +1 -1
- package/models/operations/createdatasetitem.js +10 -10
- package/models/operations/createdatasetitem.js.map +1 -1
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.d.ts +36 -36
- package/models/operations/createeval.d.ts.map +1 -1
- package/models/operations/createeval.js +56 -56
- package/models/operations/createeval.js.map +1 -1
- package/models/operations/createprompt.d.ts +8 -8
- package/models/operations/createprompt.js +8 -8
- package/models/operations/deploymentcreatemetric.d.ts +8 -8
- package/models/operations/deploymentcreatemetric.d.ts.map +1 -1
- package/models/operations/deploymentcreatemetric.js +8 -8
- package/models/operations/deploymentcreatemetric.js.map +1 -1
- package/models/operations/deploymentgetconfig.d.ts +12 -12
- package/models/operations/deploymentgetconfig.d.ts.map +1 -1
- package/models/operations/deploymentgetconfig.js +12 -12
- package/models/operations/deploymentgetconfig.js.map +1 -1
- package/models/operations/deploymentinvoke.d.ts +4 -4
- package/models/operations/deploymentinvoke.js +8 -8
- package/models/operations/deployments.d.ts +4 -4
- package/models/operations/deployments.js +4 -4
- package/models/operations/deploymentstream.d.ts +12 -12
- package/models/operations/deploymentstream.d.ts.map +1 -1
- package/models/operations/deploymentstream.js +12 -12
- package/models/operations/deploymentstream.js.map +1 -1
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getallprompts.d.ts +4 -4
- package/models/operations/getallprompts.js +4 -4
- package/models/operations/getevals.d.ts +36 -36
- package/models/operations/getevals.d.ts.map +1 -1
- package/models/operations/getevals.js +108 -108
- package/models/operations/getevals.js.map +1 -1
- package/models/operations/getoneprompt.d.ts +4 -4
- package/models/operations/getoneprompt.js +4 -4
- package/models/operations/getpromptversion.d.ts +4 -4
- package/models/operations/getpromptversion.js +4 -4
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.d.ts +4 -4
- package/models/operations/listdatasetdatapoints.d.ts.map +1 -1
- package/models/operations/listdatasetdatapoints.js +6 -6
- package/models/operations/listdatasetdatapoints.js.map +1 -1
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/listpromptversions.d.ts +4 -4
- package/models/operations/listpromptversions.js +4 -4
- package/models/operations/postv2modelslitellmimport.d.ts +4 -4
- package/models/operations/postv2modelslitellmimport.js +8 -8
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.d.ts +4 -4
- package/models/operations/retrievedatapoint.d.ts.map +1 -1
- package/models/operations/retrievedatapoint.js +6 -6
- package/models/operations/retrievedatapoint.js.map +1 -1
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.d.ts +8 -8
- package/models/operations/updatedatapoint.d.ts.map +1 -1
- package/models/operations/updatedatapoint.js +10 -10
- package/models/operations/updatedatapoint.js.map +1 -1
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.d.ts +38 -38
- package/models/operations/updateeval.d.ts.map +1 -1
- package/models/operations/updateeval.js +60 -60
- package/models/operations/updateeval.js.map +1 -1
- package/models/operations/updateprompt.d.ts +8 -8
- package/models/operations/updateprompt.js +8 -8
- package/package.json +1 -1
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/deployments.ts +16 -16
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +18 -18
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +121 -121
- package/src/models/operations/createprompt.ts +19 -19
- package/src/models/operations/deploymentcreatemetric.ts +22 -18
- package/src/models/operations/deploymentgetconfig.ts +26 -26
- package/src/models/operations/deploymentinvoke.ts +13 -13
- package/src/models/operations/deployments.ts +10 -10
- package/src/models/operations/deploymentstream.ts +26 -26
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/getallprompts.ts +10 -10
- package/src/models/operations/getevals.ts +220 -220
- package/src/models/operations/getoneprompt.ts +10 -10
- package/src/models/operations/getpromptversion.ts +10 -10
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +16 -12
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/listpromptversions.ts +10 -10
- package/src/models/operations/postv2modelslitellmimport.ts +18 -18
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +10 -10
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +21 -19
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +139 -139
- package/src/models/operations/updateprompt.ts +20 -20
|
@@ -48,7 +48,7 @@ export type UpdatePromptResponseFormat1 = {
|
|
|
48
48
|
*
|
|
49
49
|
* Important: when using JSON mode, you must also instruct the model to produce JSON yourself via a system or user message. Without this, the model may generate an unending stream of whitespace until the generation reaches the token limit, resulting in a long-running and seemingly "stuck" request. Also note that the message content may be partially cut off if finish_reason="length", which indicates the generation exceeded max_tokens or the conversation exceeded the max context length.
|
|
50
50
|
*/
|
|
51
|
-
export type UpdatePromptResponseFormat =
|
|
51
|
+
export type UpdatePromptResponseFormat = UpdatePromptResponseFormat1 | UpdatePromptResponseFormat2;
|
|
52
52
|
/**
|
|
53
53
|
* The version of photoReal to use. Must be v1 or v2. Only available for `leonardoai` provider
|
|
54
54
|
*/
|
|
@@ -146,7 +146,7 @@ export type UpdatePromptModelParameters = {
|
|
|
146
146
|
*
|
|
147
147
|
* Important: when using JSON mode, you must also instruct the model to produce JSON yourself via a system or user message. Without this, the model may generate an unending stream of whitespace until the generation reaches the token limit, resulting in a long-running and seemingly "stuck" request. Also note that the message content may be partially cut off if finish_reason="length", which indicates the generation exceeded max_tokens or the conversation exceeded the max context length.
|
|
148
148
|
*/
|
|
149
|
-
responseFormat?:
|
|
149
|
+
responseFormat?: UpdatePromptResponseFormat1 | UpdatePromptResponseFormat2 | null | undefined;
|
|
150
150
|
/**
|
|
151
151
|
* The version of photoReal to use. Must be v1 or v2. Only available for `leonardoai` provider
|
|
152
152
|
*/
|
|
@@ -455,7 +455,7 @@ export type UpdatePromptResponseFormatPrompts1 = {
|
|
|
455
455
|
*
|
|
456
456
|
* Important: when using JSON mode, you must also instruct the model to produce JSON yourself via a system or user message. Without this, the model may generate an unending stream of whitespace until the generation reaches the token limit, resulting in a long-running and seemingly "stuck" request. Also note that the message content may be partially cut off if finish_reason="length", which indicates the generation exceeded max_tokens or the conversation exceeded the max context length.
|
|
457
457
|
*/
|
|
458
|
-
export type UpdatePromptPromptsResponseFormat =
|
|
458
|
+
export type UpdatePromptPromptsResponseFormat = UpdatePromptResponseFormatPrompts1 | UpdatePromptResponseFormatPrompts2;
|
|
459
459
|
/**
|
|
460
460
|
* The version of photoReal to use. Must be v1 or v2. Only available for `leonardoai` provider
|
|
461
461
|
*/
|
|
@@ -553,7 +553,7 @@ export type UpdatePromptPromptsModelParameters = {
|
|
|
553
553
|
*
|
|
554
554
|
* Important: when using JSON mode, you must also instruct the model to produce JSON yourself via a system or user message. Without this, the model may generate an unending stream of whitespace until the generation reaches the token limit, resulting in a long-running and seemingly "stuck" request. Also note that the message content may be partially cut off if finish_reason="length", which indicates the generation exceeded max_tokens or the conversation exceeded the max context length.
|
|
555
555
|
*/
|
|
556
|
-
responseFormat?:
|
|
556
|
+
responseFormat?: UpdatePromptResponseFormatPrompts1 | UpdatePromptResponseFormatPrompts2 | null | undefined;
|
|
557
557
|
/**
|
|
558
558
|
* The version of photoReal to use. Must be v1 or v2. Only available for `leonardoai` provider
|
|
559
559
|
*/
|
|
@@ -942,7 +942,7 @@ export declare function updatePromptResponseFormat1FromJSON(jsonString: string):
|
|
|
942
942
|
/** @internal */
|
|
943
943
|
export declare const UpdatePromptResponseFormat$inboundSchema: z.ZodType<UpdatePromptResponseFormat, z.ZodTypeDef, unknown>;
|
|
944
944
|
/** @internal */
|
|
945
|
-
export type UpdatePromptResponseFormat$Outbound =
|
|
945
|
+
export type UpdatePromptResponseFormat$Outbound = UpdatePromptResponseFormat1$Outbound | UpdatePromptResponseFormat2$Outbound;
|
|
946
946
|
/** @internal */
|
|
947
947
|
export declare const UpdatePromptResponseFormat$outboundSchema: z.ZodType<UpdatePromptResponseFormat$Outbound, z.ZodTypeDef, UpdatePromptResponseFormat>;
|
|
948
948
|
/**
|
|
@@ -1037,7 +1037,7 @@ export type UpdatePromptModelParameters$Outbound = {
|
|
|
1037
1037
|
dimensions?: string | undefined;
|
|
1038
1038
|
quality?: string | undefined;
|
|
1039
1039
|
style?: string | undefined;
|
|
1040
|
-
responseFormat?:
|
|
1040
|
+
responseFormat?: UpdatePromptResponseFormat1$Outbound | UpdatePromptResponseFormat2$Outbound | null | undefined;
|
|
1041
1041
|
photoRealVersion?: string | undefined;
|
|
1042
1042
|
encoding_format?: string | undefined;
|
|
1043
1043
|
reasoningEffort?: string | undefined;
|
|
@@ -1824,7 +1824,7 @@ export declare function updatePromptResponseFormatPrompts1FromJSON(jsonString: s
|
|
|
1824
1824
|
/** @internal */
|
|
1825
1825
|
export declare const UpdatePromptPromptsResponseFormat$inboundSchema: z.ZodType<UpdatePromptPromptsResponseFormat, z.ZodTypeDef, unknown>;
|
|
1826
1826
|
/** @internal */
|
|
1827
|
-
export type UpdatePromptPromptsResponseFormat$Outbound =
|
|
1827
|
+
export type UpdatePromptPromptsResponseFormat$Outbound = UpdatePromptResponseFormatPrompts1$Outbound | UpdatePromptResponseFormatPrompts2$Outbound;
|
|
1828
1828
|
/** @internal */
|
|
1829
1829
|
export declare const UpdatePromptPromptsResponseFormat$outboundSchema: z.ZodType<UpdatePromptPromptsResponseFormat$Outbound, z.ZodTypeDef, UpdatePromptPromptsResponseFormat>;
|
|
1830
1830
|
/**
|
|
@@ -1919,7 +1919,7 @@ export type UpdatePromptPromptsModelParameters$Outbound = {
|
|
|
1919
1919
|
dimensions?: string | undefined;
|
|
1920
1920
|
quality?: string | undefined;
|
|
1921
1921
|
style?: string | undefined;
|
|
1922
|
-
responseFormat?:
|
|
1922
|
+
responseFormat?: UpdatePromptResponseFormatPrompts1$Outbound | UpdatePromptResponseFormatPrompts2$Outbound | null | undefined;
|
|
1923
1923
|
photoRealVersion?: string | undefined;
|
|
1924
1924
|
encoding_format?: string | undefined;
|
|
1925
1925
|
reasoningEffort?: string | undefined;
|
|
@@ -511,13 +511,13 @@ function updatePromptResponseFormat1FromJSON(jsonString) {
|
|
|
511
511
|
}
|
|
512
512
|
/** @internal */
|
|
513
513
|
exports.UpdatePromptResponseFormat$inboundSchema = z.union([
|
|
514
|
-
z.lazy(() => exports.UpdatePromptResponseFormat2$inboundSchema),
|
|
515
514
|
z.lazy(() => exports.UpdatePromptResponseFormat1$inboundSchema),
|
|
515
|
+
z.lazy(() => exports.UpdatePromptResponseFormat2$inboundSchema),
|
|
516
516
|
]);
|
|
517
517
|
/** @internal */
|
|
518
518
|
exports.UpdatePromptResponseFormat$outboundSchema = z.union([
|
|
519
|
-
z.lazy(() => exports.UpdatePromptResponseFormat2$outboundSchema),
|
|
520
519
|
z.lazy(() => exports.UpdatePromptResponseFormat1$outboundSchema),
|
|
520
|
+
z.lazy(() => exports.UpdatePromptResponseFormat2$outboundSchema),
|
|
521
521
|
]);
|
|
522
522
|
/**
|
|
523
523
|
* @internal
|
|
@@ -596,8 +596,8 @@ exports.UpdatePromptModelParameters$inboundSchema = z.object({
|
|
|
596
596
|
quality: z.string().optional(),
|
|
597
597
|
style: z.string().optional(),
|
|
598
598
|
responseFormat: z.nullable(z.union([
|
|
599
|
-
z.lazy(() => exports.UpdatePromptResponseFormat2$inboundSchema),
|
|
600
599
|
z.lazy(() => exports.UpdatePromptResponseFormat1$inboundSchema),
|
|
600
|
+
z.lazy(() => exports.UpdatePromptResponseFormat2$inboundSchema),
|
|
601
601
|
])).optional(),
|
|
602
602
|
photoRealVersion: exports.UpdatePromptPhotoRealVersion$inboundSchema.optional(),
|
|
603
603
|
encoding_format: exports.UpdatePromptEncodingFormat$inboundSchema.optional(),
|
|
@@ -623,8 +623,8 @@ exports.UpdatePromptModelParameters$outboundSchema = z.object({
|
|
|
623
623
|
quality: z.string().optional(),
|
|
624
624
|
style: z.string().optional(),
|
|
625
625
|
responseFormat: z.nullable(z.union([
|
|
626
|
-
z.lazy(() => exports.UpdatePromptResponseFormat2$outboundSchema),
|
|
627
626
|
z.lazy(() => exports.UpdatePromptResponseFormat1$outboundSchema),
|
|
627
|
+
z.lazy(() => exports.UpdatePromptResponseFormat2$outboundSchema),
|
|
628
628
|
])).optional(),
|
|
629
629
|
photoRealVersion: exports.UpdatePromptPhotoRealVersion$outboundSchema.optional(),
|
|
630
630
|
encodingFormat: exports.UpdatePromptEncodingFormat$outboundSchema.optional(),
|
|
@@ -1456,13 +1456,13 @@ function updatePromptResponseFormatPrompts1FromJSON(jsonString) {
|
|
|
1456
1456
|
}
|
|
1457
1457
|
/** @internal */
|
|
1458
1458
|
exports.UpdatePromptPromptsResponseFormat$inboundSchema = z.union([
|
|
1459
|
-
z.lazy(() => exports.UpdatePromptResponseFormatPrompts2$inboundSchema),
|
|
1460
1459
|
z.lazy(() => exports.UpdatePromptResponseFormatPrompts1$inboundSchema),
|
|
1460
|
+
z.lazy(() => exports.UpdatePromptResponseFormatPrompts2$inboundSchema),
|
|
1461
1461
|
]);
|
|
1462
1462
|
/** @internal */
|
|
1463
1463
|
exports.UpdatePromptPromptsResponseFormat$outboundSchema = z.union([
|
|
1464
|
-
z.lazy(() => exports.UpdatePromptResponseFormatPrompts2$outboundSchema),
|
|
1465
1464
|
z.lazy(() => exports.UpdatePromptResponseFormatPrompts1$outboundSchema),
|
|
1465
|
+
z.lazy(() => exports.UpdatePromptResponseFormatPrompts2$outboundSchema),
|
|
1466
1466
|
]);
|
|
1467
1467
|
/**
|
|
1468
1468
|
* @internal
|
|
@@ -1541,8 +1541,8 @@ exports.UpdatePromptPromptsModelParameters$inboundSchema = z.object({
|
|
|
1541
1541
|
quality: z.string().optional(),
|
|
1542
1542
|
style: z.string().optional(),
|
|
1543
1543
|
responseFormat: z.nullable(z.union([
|
|
1544
|
-
z.lazy(() => exports.UpdatePromptResponseFormatPrompts2$inboundSchema),
|
|
1545
1544
|
z.lazy(() => exports.UpdatePromptResponseFormatPrompts1$inboundSchema),
|
|
1545
|
+
z.lazy(() => exports.UpdatePromptResponseFormatPrompts2$inboundSchema),
|
|
1546
1546
|
])).optional(),
|
|
1547
1547
|
photoRealVersion: exports.UpdatePromptPromptsPhotoRealVersion$inboundSchema
|
|
1548
1548
|
.optional(),
|
|
@@ -1569,8 +1569,8 @@ exports.UpdatePromptPromptsModelParameters$outboundSchema = z.object({
|
|
|
1569
1569
|
quality: z.string().optional(),
|
|
1570
1570
|
style: z.string().optional(),
|
|
1571
1571
|
responseFormat: z.nullable(z.union([
|
|
1572
|
-
z.lazy(() => exports.UpdatePromptResponseFormatPrompts2$outboundSchema),
|
|
1573
1572
|
z.lazy(() => exports.UpdatePromptResponseFormatPrompts1$outboundSchema),
|
|
1573
|
+
z.lazy(() => exports.UpdatePromptResponseFormatPrompts2$outboundSchema),
|
|
1574
1574
|
])).optional(),
|
|
1575
1575
|
photoRealVersion: exports.UpdatePromptPromptsPhotoRealVersion$outboundSchema
|
|
1576
1576
|
.optional(),
|
package/package.json
CHANGED
package/src/lib/config.ts
CHANGED
|
@@ -68,7 +68,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
68
68
|
export const SDK_METADATA = {
|
|
69
69
|
language: "typescript",
|
|
70
70
|
openapiDocVersion: "2.0",
|
|
71
|
-
sdkVersion: "3.8.0-rc.
|
|
72
|
-
genVersion: "2.
|
|
73
|
-
userAgent: "speakeasy-sdk/typescript 3.8.0-rc.
|
|
71
|
+
sdkVersion: "3.8.0-rc.31",
|
|
72
|
+
genVersion: "2.630.6",
|
|
73
|
+
userAgent: "speakeasy-sdk/typescript 3.8.0-rc.31 2.630.6 2.0 @orq-ai/node",
|
|
74
74
|
} as const;
|
package/src/mcp-server/server.ts
CHANGED
|
@@ -402,10 +402,10 @@ export type DeveloperMessage = {
|
|
|
402
402
|
};
|
|
403
403
|
|
|
404
404
|
export type PrefixMessages =
|
|
405
|
+
| ToolMessage
|
|
405
406
|
| DeveloperMessage
|
|
406
407
|
| SystemMessage
|
|
407
408
|
| UserMessage
|
|
408
|
-
| ToolMessage
|
|
409
409
|
| AssistantMessage;
|
|
410
410
|
|
|
411
411
|
/**
|
|
@@ -807,10 +807,10 @@ export type MessagesDeveloperMessage = {
|
|
|
807
807
|
};
|
|
808
808
|
|
|
809
809
|
export type Messages =
|
|
810
|
+
| MessagesToolMessage
|
|
810
811
|
| MessagesDeveloperMessage
|
|
811
812
|
| MessagesSystemMessage
|
|
812
813
|
| MessagesUserMessage
|
|
813
|
-
| MessagesToolMessage
|
|
814
814
|
| MessagesAssistantMessage;
|
|
815
815
|
|
|
816
816
|
/**
|
|
@@ -1169,10 +1169,10 @@ export type Deployments = {
|
|
|
1169
1169
|
*/
|
|
1170
1170
|
prefixMessages?:
|
|
1171
1171
|
| Array<
|
|
1172
|
+
| ToolMessage
|
|
1172
1173
|
| DeveloperMessage
|
|
1173
1174
|
| SystemMessage
|
|
1174
1175
|
| UserMessage
|
|
1175
|
-
| ToolMessage
|
|
1176
1176
|
| AssistantMessage
|
|
1177
1177
|
>
|
|
1178
1178
|
| undefined;
|
|
@@ -1181,10 +1181,10 @@ export type Deployments = {
|
|
|
1181
1181
|
*/
|
|
1182
1182
|
messages?:
|
|
1183
1183
|
| Array<
|
|
1184
|
+
| MessagesToolMessage
|
|
1184
1185
|
| MessagesDeveloperMessage
|
|
1185
1186
|
| MessagesSystemMessage
|
|
1186
1187
|
| MessagesUserMessage
|
|
1187
|
-
| MessagesToolMessage
|
|
1188
1188
|
| MessagesAssistantMessage
|
|
1189
1189
|
>
|
|
1190
1190
|
| undefined;
|
|
@@ -2859,19 +2859,19 @@ export const PrefixMessages$inboundSchema: z.ZodType<
|
|
|
2859
2859
|
z.ZodTypeDef,
|
|
2860
2860
|
unknown
|
|
2861
2861
|
> = z.union([
|
|
2862
|
+
z.lazy(() => ToolMessage$inboundSchema),
|
|
2862
2863
|
z.lazy(() => DeveloperMessage$inboundSchema),
|
|
2863
2864
|
z.lazy(() => SystemMessage$inboundSchema),
|
|
2864
2865
|
z.lazy(() => UserMessage$inboundSchema),
|
|
2865
|
-
z.lazy(() => ToolMessage$inboundSchema),
|
|
2866
2866
|
z.lazy(() => AssistantMessage$inboundSchema),
|
|
2867
2867
|
]);
|
|
2868
2868
|
|
|
2869
2869
|
/** @internal */
|
|
2870
2870
|
export type PrefixMessages$Outbound =
|
|
2871
|
+
| ToolMessage$Outbound
|
|
2871
2872
|
| DeveloperMessage$Outbound
|
|
2872
2873
|
| SystemMessage$Outbound
|
|
2873
2874
|
| UserMessage$Outbound
|
|
2874
|
-
| ToolMessage$Outbound
|
|
2875
2875
|
| AssistantMessage$Outbound;
|
|
2876
2876
|
|
|
2877
2877
|
/** @internal */
|
|
@@ -2880,10 +2880,10 @@ export const PrefixMessages$outboundSchema: z.ZodType<
|
|
|
2880
2880
|
z.ZodTypeDef,
|
|
2881
2881
|
PrefixMessages
|
|
2882
2882
|
> = z.union([
|
|
2883
|
+
z.lazy(() => ToolMessage$outboundSchema),
|
|
2883
2884
|
z.lazy(() => DeveloperMessage$outboundSchema),
|
|
2884
2885
|
z.lazy(() => SystemMessage$outboundSchema),
|
|
2885
2886
|
z.lazy(() => UserMessage$outboundSchema),
|
|
2886
|
-
z.lazy(() => ToolMessage$outboundSchema),
|
|
2887
2887
|
z.lazy(() => AssistantMessage$outboundSchema),
|
|
2888
2888
|
]);
|
|
2889
2889
|
|
|
@@ -4542,19 +4542,19 @@ export const Messages$inboundSchema: z.ZodType<
|
|
|
4542
4542
|
z.ZodTypeDef,
|
|
4543
4543
|
unknown
|
|
4544
4544
|
> = z.union([
|
|
4545
|
+
z.lazy(() => MessagesToolMessage$inboundSchema),
|
|
4545
4546
|
z.lazy(() => MessagesDeveloperMessage$inboundSchema),
|
|
4546
4547
|
z.lazy(() => MessagesSystemMessage$inboundSchema),
|
|
4547
4548
|
z.lazy(() => MessagesUserMessage$inboundSchema),
|
|
4548
|
-
z.lazy(() => MessagesToolMessage$inboundSchema),
|
|
4549
4549
|
z.lazy(() => MessagesAssistantMessage$inboundSchema),
|
|
4550
4550
|
]);
|
|
4551
4551
|
|
|
4552
4552
|
/** @internal */
|
|
4553
4553
|
export type Messages$Outbound =
|
|
4554
|
+
| MessagesToolMessage$Outbound
|
|
4554
4555
|
| MessagesDeveloperMessage$Outbound
|
|
4555
4556
|
| MessagesSystemMessage$Outbound
|
|
4556
4557
|
| MessagesUserMessage$Outbound
|
|
4557
|
-
| MessagesToolMessage$Outbound
|
|
4558
4558
|
| MessagesAssistantMessage$Outbound;
|
|
4559
4559
|
|
|
4560
4560
|
/** @internal */
|
|
@@ -4563,10 +4563,10 @@ export const Messages$outboundSchema: z.ZodType<
|
|
|
4563
4563
|
z.ZodTypeDef,
|
|
4564
4564
|
Messages
|
|
4565
4565
|
> = z.union([
|
|
4566
|
+
z.lazy(() => MessagesToolMessage$outboundSchema),
|
|
4566
4567
|
z.lazy(() => MessagesDeveloperMessage$outboundSchema),
|
|
4567
4568
|
z.lazy(() => MessagesSystemMessage$outboundSchema),
|
|
4568
4569
|
z.lazy(() => MessagesUserMessage$outboundSchema),
|
|
4569
|
-
z.lazy(() => MessagesToolMessage$outboundSchema),
|
|
4570
4570
|
z.lazy(() => MessagesAssistantMessage$outboundSchema),
|
|
4571
4571
|
]);
|
|
4572
4572
|
|
|
@@ -7109,19 +7109,19 @@ export const Deployments$inboundSchema: z.ZodType<
|
|
|
7109
7109
|
context: z.record(z.any()).optional(),
|
|
7110
7110
|
prefix_messages: z.array(
|
|
7111
7111
|
z.union([
|
|
7112
|
+
z.lazy(() => ToolMessage$inboundSchema),
|
|
7112
7113
|
z.lazy(() => DeveloperMessage$inboundSchema),
|
|
7113
7114
|
z.lazy(() => SystemMessage$inboundSchema),
|
|
7114
7115
|
z.lazy(() => UserMessage$inboundSchema),
|
|
7115
|
-
z.lazy(() => ToolMessage$inboundSchema),
|
|
7116
7116
|
z.lazy(() => AssistantMessage$inboundSchema),
|
|
7117
7117
|
]),
|
|
7118
7118
|
).optional(),
|
|
7119
7119
|
messages: z.array(
|
|
7120
7120
|
z.union([
|
|
7121
|
+
z.lazy(() => MessagesToolMessage$inboundSchema),
|
|
7121
7122
|
z.lazy(() => MessagesDeveloperMessage$inboundSchema),
|
|
7122
7123
|
z.lazy(() => MessagesSystemMessage$inboundSchema),
|
|
7123
7124
|
z.lazy(() => MessagesUserMessage$inboundSchema),
|
|
7124
|
-
z.lazy(() => MessagesToolMessage$inboundSchema),
|
|
7125
7125
|
z.lazy(() => MessagesAssistantMessage$inboundSchema),
|
|
7126
7126
|
]),
|
|
7127
7127
|
).optional(),
|
|
@@ -7163,19 +7163,19 @@ export type Deployments$Outbound = {
|
|
|
7163
7163
|
context?: { [k: string]: any } | undefined;
|
|
7164
7164
|
prefix_messages?:
|
|
7165
7165
|
| Array<
|
|
7166
|
+
| ToolMessage$Outbound
|
|
7166
7167
|
| DeveloperMessage$Outbound
|
|
7167
7168
|
| SystemMessage$Outbound
|
|
7168
7169
|
| UserMessage$Outbound
|
|
7169
|
-
| ToolMessage$Outbound
|
|
7170
7170
|
| AssistantMessage$Outbound
|
|
7171
7171
|
>
|
|
7172
7172
|
| undefined;
|
|
7173
7173
|
messages?:
|
|
7174
7174
|
| Array<
|
|
7175
|
+
| MessagesToolMessage$Outbound
|
|
7175
7176
|
| MessagesDeveloperMessage$Outbound
|
|
7176
7177
|
| MessagesSystemMessage$Outbound
|
|
7177
7178
|
| MessagesUserMessage$Outbound
|
|
7178
|
-
| MessagesToolMessage$Outbound
|
|
7179
7179
|
| MessagesAssistantMessage$Outbound
|
|
7180
7180
|
>
|
|
7181
7181
|
| undefined;
|
|
@@ -7214,19 +7214,19 @@ export const Deployments$outboundSchema: z.ZodType<
|
|
|
7214
7214
|
context: z.record(z.any()).optional(),
|
|
7215
7215
|
prefixMessages: z.array(
|
|
7216
7216
|
z.union([
|
|
7217
|
+
z.lazy(() => ToolMessage$outboundSchema),
|
|
7217
7218
|
z.lazy(() => DeveloperMessage$outboundSchema),
|
|
7218
7219
|
z.lazy(() => SystemMessage$outboundSchema),
|
|
7219
7220
|
z.lazy(() => UserMessage$outboundSchema),
|
|
7220
|
-
z.lazy(() => ToolMessage$outboundSchema),
|
|
7221
7221
|
z.lazy(() => AssistantMessage$outboundSchema),
|
|
7222
7222
|
]),
|
|
7223
7223
|
).optional(),
|
|
7224
7224
|
messages: z.array(
|
|
7225
7225
|
z.union([
|
|
7226
|
+
z.lazy(() => MessagesToolMessage$outboundSchema),
|
|
7226
7227
|
z.lazy(() => MessagesDeveloperMessage$outboundSchema),
|
|
7227
7228
|
z.lazy(() => MessagesSystemMessage$outboundSchema),
|
|
7228
7229
|
z.lazy(() => MessagesUserMessage$outboundSchema),
|
|
7229
|
-
z.lazy(() => MessagesToolMessage$outboundSchema),
|
|
7230
7230
|
z.lazy(() => MessagesAssistantMessage$outboundSchema),
|
|
7231
7231
|
]),
|
|
7232
7232
|
).optional(),
|
|
@@ -182,7 +182,7 @@ export const CreateContactResponseBody$inboundSchema: z.ZodType<
|
|
|
182
182
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
183
183
|
.optional(),
|
|
184
184
|
updated: z.string().datetime({ offset: true }).default(
|
|
185
|
-
"2025-06-
|
|
185
|
+
"2025-06-17T09:09:46.815Z",
|
|
186
186
|
).transform(v => new Date(v)),
|
|
187
187
|
}).transform((v) => {
|
|
188
188
|
return remap$(v, {
|
|
@@ -223,7 +223,7 @@ export const CreateContactResponseBody$outboundSchema: z.ZodType<
|
|
|
223
223
|
tags: z.array(z.string()).optional(),
|
|
224
224
|
metadata: z.record(z.any()).optional(),
|
|
225
225
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
226
|
-
updated: z.date().default(() => new Date("2025-06-
|
|
226
|
+
updated: z.date().default(() => new Date("2025-06-17T09:09:46.815Z"))
|
|
227
227
|
.transform(v => v.toISOString()),
|
|
228
228
|
}).transform((v) => {
|
|
229
229
|
return remap$(v, {
|
|
@@ -211,7 +211,7 @@ export const CreateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
211
211
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
212
212
|
.optional(),
|
|
213
213
|
updated: z.string().datetime({ offset: true }).default(
|
|
214
|
-
"2025-06-
|
|
214
|
+
"2025-06-17T09:09:46.815Z",
|
|
215
215
|
).transform(v => new Date(v)),
|
|
216
216
|
}).transform((v) => {
|
|
217
217
|
return remap$(v, {
|
|
@@ -251,7 +251,7 @@ export const CreateDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
251
251
|
updatedById: z.string().optional(),
|
|
252
252
|
metadata: z.lazy(() => CreateDatasetMetadata$outboundSchema),
|
|
253
253
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
254
|
-
updated: z.date().default(() => new Date("2025-06-
|
|
254
|
+
updated: z.date().default(() => new Date("2025-06-17T09:09:46.815Z"))
|
|
255
255
|
.transform(v => v.toISOString()),
|
|
256
256
|
}).transform((v) => {
|
|
257
257
|
return remap$(v, {
|
|
@@ -432,10 +432,10 @@ export type CreateDatasetItemMessagesDeveloperMessage = {
|
|
|
432
432
|
};
|
|
433
433
|
|
|
434
434
|
export type CreateDatasetItemMessages =
|
|
435
|
+
| CreateDatasetItemMessagesToolMessage
|
|
435
436
|
| CreateDatasetItemMessagesDeveloperMessage
|
|
436
437
|
| CreateDatasetItemMessagesSystemMessage
|
|
437
438
|
| CreateDatasetItemMessagesUserMessage
|
|
438
|
-
| CreateDatasetItemMessagesToolMessage
|
|
439
439
|
| CreateDatasetItemMessagesAssistantMessage;
|
|
440
440
|
|
|
441
441
|
export type CreateDatasetItemRequestBody = {
|
|
@@ -448,10 +448,10 @@ export type CreateDatasetItemRequestBody = {
|
|
|
448
448
|
*/
|
|
449
449
|
messages?:
|
|
450
450
|
| Array<
|
|
451
|
+
| CreateDatasetItemMessagesToolMessage
|
|
451
452
|
| CreateDatasetItemMessagesDeveloperMessage
|
|
452
453
|
| CreateDatasetItemMessagesSystemMessage
|
|
453
454
|
| CreateDatasetItemMessagesUserMessage
|
|
454
|
-
| CreateDatasetItemMessagesToolMessage
|
|
455
455
|
| CreateDatasetItemMessagesAssistantMessage
|
|
456
456
|
>
|
|
457
457
|
| undefined;
|
|
@@ -908,10 +908,10 @@ export type CreateDatasetItemMessagesDatasetsDeveloperMessage = {
|
|
|
908
908
|
};
|
|
909
909
|
|
|
910
910
|
export type CreateDatasetItemDatasetsMessages =
|
|
911
|
+
| CreateDatasetItemMessagesDatasetsToolMessage
|
|
911
912
|
| CreateDatasetItemMessagesDatasetsDeveloperMessage
|
|
912
913
|
| CreateDatasetItemMessagesDatasetsSystemMessage
|
|
913
914
|
| CreateDatasetItemMessagesDatasetsUserMessage
|
|
914
|
-
| CreateDatasetItemMessagesDatasetsToolMessage
|
|
915
915
|
| CreateDatasetItemMessagesDatasetsAssistantMessage;
|
|
916
916
|
|
|
917
917
|
/**
|
|
@@ -935,10 +935,10 @@ export type CreateDatasetItemResponseBody = {
|
|
|
935
935
|
*/
|
|
936
936
|
messages?:
|
|
937
937
|
| Array<
|
|
938
|
+
| CreateDatasetItemMessagesDatasetsToolMessage
|
|
938
939
|
| CreateDatasetItemMessagesDatasetsDeveloperMessage
|
|
939
940
|
| CreateDatasetItemMessagesDatasetsSystemMessage
|
|
940
941
|
| CreateDatasetItemMessagesDatasetsUserMessage
|
|
941
|
-
| CreateDatasetItemMessagesDatasetsToolMessage
|
|
942
942
|
| CreateDatasetItemMessagesDatasetsAssistantMessage
|
|
943
943
|
>
|
|
944
944
|
| undefined;
|
|
@@ -2789,19 +2789,19 @@ export const CreateDatasetItemMessages$inboundSchema: z.ZodType<
|
|
|
2789
2789
|
z.ZodTypeDef,
|
|
2790
2790
|
unknown
|
|
2791
2791
|
> = z.union([
|
|
2792
|
+
z.lazy(() => CreateDatasetItemMessagesToolMessage$inboundSchema),
|
|
2792
2793
|
z.lazy(() => CreateDatasetItemMessagesDeveloperMessage$inboundSchema),
|
|
2793
2794
|
z.lazy(() => CreateDatasetItemMessagesSystemMessage$inboundSchema),
|
|
2794
2795
|
z.lazy(() => CreateDatasetItemMessagesUserMessage$inboundSchema),
|
|
2795
|
-
z.lazy(() => CreateDatasetItemMessagesToolMessage$inboundSchema),
|
|
2796
2796
|
z.lazy(() => CreateDatasetItemMessagesAssistantMessage$inboundSchema),
|
|
2797
2797
|
]);
|
|
2798
2798
|
|
|
2799
2799
|
/** @internal */
|
|
2800
2800
|
export type CreateDatasetItemMessages$Outbound =
|
|
2801
|
+
| CreateDatasetItemMessagesToolMessage$Outbound
|
|
2801
2802
|
| CreateDatasetItemMessagesDeveloperMessage$Outbound
|
|
2802
2803
|
| CreateDatasetItemMessagesSystemMessage$Outbound
|
|
2803
2804
|
| CreateDatasetItemMessagesUserMessage$Outbound
|
|
2804
|
-
| CreateDatasetItemMessagesToolMessage$Outbound
|
|
2805
2805
|
| CreateDatasetItemMessagesAssistantMessage$Outbound;
|
|
2806
2806
|
|
|
2807
2807
|
/** @internal */
|
|
@@ -2810,10 +2810,10 @@ export const CreateDatasetItemMessages$outboundSchema: z.ZodType<
|
|
|
2810
2810
|
z.ZodTypeDef,
|
|
2811
2811
|
CreateDatasetItemMessages
|
|
2812
2812
|
> = z.union([
|
|
2813
|
+
z.lazy(() => CreateDatasetItemMessagesToolMessage$outboundSchema),
|
|
2813
2814
|
z.lazy(() => CreateDatasetItemMessagesDeveloperMessage$outboundSchema),
|
|
2814
2815
|
z.lazy(() => CreateDatasetItemMessagesSystemMessage$outboundSchema),
|
|
2815
2816
|
z.lazy(() => CreateDatasetItemMessagesUserMessage$outboundSchema),
|
|
2816
|
-
z.lazy(() => CreateDatasetItemMessagesToolMessage$outboundSchema),
|
|
2817
2817
|
z.lazy(() => CreateDatasetItemMessagesAssistantMessage$outboundSchema),
|
|
2818
2818
|
]);
|
|
2819
2819
|
|
|
@@ -2857,10 +2857,10 @@ export const CreateDatasetItemRequestBody$inboundSchema: z.ZodType<
|
|
|
2857
2857
|
inputs: z.record(z.any()).optional(),
|
|
2858
2858
|
messages: z.array(
|
|
2859
2859
|
z.union([
|
|
2860
|
+
z.lazy(() => CreateDatasetItemMessagesToolMessage$inboundSchema),
|
|
2860
2861
|
z.lazy(() => CreateDatasetItemMessagesDeveloperMessage$inboundSchema),
|
|
2861
2862
|
z.lazy(() => CreateDatasetItemMessagesSystemMessage$inboundSchema),
|
|
2862
2863
|
z.lazy(() => CreateDatasetItemMessagesUserMessage$inboundSchema),
|
|
2863
|
-
z.lazy(() => CreateDatasetItemMessagesToolMessage$inboundSchema),
|
|
2864
2864
|
z.lazy(() => CreateDatasetItemMessagesAssistantMessage$inboundSchema),
|
|
2865
2865
|
]),
|
|
2866
2866
|
).optional(),
|
|
@@ -2876,10 +2876,10 @@ export type CreateDatasetItemRequestBody$Outbound = {
|
|
|
2876
2876
|
inputs?: { [k: string]: any } | undefined;
|
|
2877
2877
|
messages?:
|
|
2878
2878
|
| Array<
|
|
2879
|
+
| CreateDatasetItemMessagesToolMessage$Outbound
|
|
2879
2880
|
| CreateDatasetItemMessagesDeveloperMessage$Outbound
|
|
2880
2881
|
| CreateDatasetItemMessagesSystemMessage$Outbound
|
|
2881
2882
|
| CreateDatasetItemMessagesUserMessage$Outbound
|
|
2882
|
-
| CreateDatasetItemMessagesToolMessage$Outbound
|
|
2883
2883
|
| CreateDatasetItemMessagesAssistantMessage$Outbound
|
|
2884
2884
|
>
|
|
2885
2885
|
| undefined;
|
|
@@ -2895,10 +2895,10 @@ export const CreateDatasetItemRequestBody$outboundSchema: z.ZodType<
|
|
|
2895
2895
|
inputs: z.record(z.any()).optional(),
|
|
2896
2896
|
messages: z.array(
|
|
2897
2897
|
z.union([
|
|
2898
|
+
z.lazy(() => CreateDatasetItemMessagesToolMessage$outboundSchema),
|
|
2898
2899
|
z.lazy(() => CreateDatasetItemMessagesDeveloperMessage$outboundSchema),
|
|
2899
2900
|
z.lazy(() => CreateDatasetItemMessagesSystemMessage$outboundSchema),
|
|
2900
2901
|
z.lazy(() => CreateDatasetItemMessagesUserMessage$outboundSchema),
|
|
2901
|
-
z.lazy(() => CreateDatasetItemMessagesToolMessage$outboundSchema),
|
|
2902
2902
|
z.lazy(() => CreateDatasetItemMessagesAssistantMessage$outboundSchema),
|
|
2903
2903
|
]),
|
|
2904
2904
|
).optional(),
|
|
@@ -5014,19 +5014,19 @@ export const CreateDatasetItemDatasetsMessages$inboundSchema: z.ZodType<
|
|
|
5014
5014
|
z.ZodTypeDef,
|
|
5015
5015
|
unknown
|
|
5016
5016
|
> = z.union([
|
|
5017
|
+
z.lazy(() => CreateDatasetItemMessagesDatasetsToolMessage$inboundSchema),
|
|
5017
5018
|
z.lazy(() => CreateDatasetItemMessagesDatasetsDeveloperMessage$inboundSchema),
|
|
5018
5019
|
z.lazy(() => CreateDatasetItemMessagesDatasetsSystemMessage$inboundSchema),
|
|
5019
5020
|
z.lazy(() => CreateDatasetItemMessagesDatasetsUserMessage$inboundSchema),
|
|
5020
|
-
z.lazy(() => CreateDatasetItemMessagesDatasetsToolMessage$inboundSchema),
|
|
5021
5021
|
z.lazy(() => CreateDatasetItemMessagesDatasetsAssistantMessage$inboundSchema),
|
|
5022
5022
|
]);
|
|
5023
5023
|
|
|
5024
5024
|
/** @internal */
|
|
5025
5025
|
export type CreateDatasetItemDatasetsMessages$Outbound =
|
|
5026
|
+
| CreateDatasetItemMessagesDatasetsToolMessage$Outbound
|
|
5026
5027
|
| CreateDatasetItemMessagesDatasetsDeveloperMessage$Outbound
|
|
5027
5028
|
| CreateDatasetItemMessagesDatasetsSystemMessage$Outbound
|
|
5028
5029
|
| CreateDatasetItemMessagesDatasetsUserMessage$Outbound
|
|
5029
|
-
| CreateDatasetItemMessagesDatasetsToolMessage$Outbound
|
|
5030
5030
|
| CreateDatasetItemMessagesDatasetsAssistantMessage$Outbound;
|
|
5031
5031
|
|
|
5032
5032
|
/** @internal */
|
|
@@ -5035,12 +5035,12 @@ export const CreateDatasetItemDatasetsMessages$outboundSchema: z.ZodType<
|
|
|
5035
5035
|
z.ZodTypeDef,
|
|
5036
5036
|
CreateDatasetItemDatasetsMessages
|
|
5037
5037
|
> = z.union([
|
|
5038
|
+
z.lazy(() => CreateDatasetItemMessagesDatasetsToolMessage$outboundSchema),
|
|
5038
5039
|
z.lazy(() =>
|
|
5039
5040
|
CreateDatasetItemMessagesDatasetsDeveloperMessage$outboundSchema
|
|
5040
5041
|
),
|
|
5041
5042
|
z.lazy(() => CreateDatasetItemMessagesDatasetsSystemMessage$outboundSchema),
|
|
5042
5043
|
z.lazy(() => CreateDatasetItemMessagesDatasetsUserMessage$outboundSchema),
|
|
5043
|
-
z.lazy(() => CreateDatasetItemMessagesDatasetsToolMessage$outboundSchema),
|
|
5044
5044
|
z.lazy(() =>
|
|
5045
5045
|
CreateDatasetItemMessagesDatasetsAssistantMessage$outboundSchema
|
|
5046
5046
|
),
|
|
@@ -5091,6 +5091,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
|
|
|
5091
5091
|
inputs: z.record(z.any()).optional(),
|
|
5092
5092
|
messages: z.array(
|
|
5093
5093
|
z.union([
|
|
5094
|
+
z.lazy(() => CreateDatasetItemMessagesDatasetsToolMessage$inboundSchema),
|
|
5094
5095
|
z.lazy(() =>
|
|
5095
5096
|
CreateDatasetItemMessagesDatasetsDeveloperMessage$inboundSchema
|
|
5096
5097
|
),
|
|
@@ -5098,7 +5099,6 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
|
|
|
5098
5099
|
CreateDatasetItemMessagesDatasetsSystemMessage$inboundSchema
|
|
5099
5100
|
),
|
|
5100
5101
|
z.lazy(() => CreateDatasetItemMessagesDatasetsUserMessage$inboundSchema),
|
|
5101
|
-
z.lazy(() => CreateDatasetItemMessagesDatasetsToolMessage$inboundSchema),
|
|
5102
5102
|
z.lazy(() =>
|
|
5103
5103
|
CreateDatasetItemMessagesDatasetsAssistantMessage$inboundSchema
|
|
5104
5104
|
),
|
|
@@ -5111,7 +5111,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
|
|
|
5111
5111
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
5112
5112
|
.optional(),
|
|
5113
5113
|
updated: z.string().datetime({ offset: true }).default(
|
|
5114
|
-
"2025-06-
|
|
5114
|
+
"2025-06-17T09:09:46.815Z",
|
|
5115
5115
|
).transform(v => new Date(v)),
|
|
5116
5116
|
}).transform((v) => {
|
|
5117
5117
|
return remap$(v, {
|
|
@@ -5131,10 +5131,10 @@ export type CreateDatasetItemResponseBody$Outbound = {
|
|
|
5131
5131
|
inputs?: { [k: string]: any } | undefined;
|
|
5132
5132
|
messages?:
|
|
5133
5133
|
| Array<
|
|
5134
|
+
| CreateDatasetItemMessagesDatasetsToolMessage$Outbound
|
|
5134
5135
|
| CreateDatasetItemMessagesDatasetsDeveloperMessage$Outbound
|
|
5135
5136
|
| CreateDatasetItemMessagesDatasetsSystemMessage$Outbound
|
|
5136
5137
|
| CreateDatasetItemMessagesDatasetsUserMessage$Outbound
|
|
5137
|
-
| CreateDatasetItemMessagesDatasetsToolMessage$Outbound
|
|
5138
5138
|
| CreateDatasetItemMessagesDatasetsAssistantMessage$Outbound
|
|
5139
5139
|
>
|
|
5140
5140
|
| undefined;
|
|
@@ -5157,6 +5157,7 @@ export const CreateDatasetItemResponseBody$outboundSchema: z.ZodType<
|
|
|
5157
5157
|
inputs: z.record(z.any()).optional(),
|
|
5158
5158
|
messages: z.array(
|
|
5159
5159
|
z.union([
|
|
5160
|
+
z.lazy(() => CreateDatasetItemMessagesDatasetsToolMessage$outboundSchema),
|
|
5160
5161
|
z.lazy(() =>
|
|
5161
5162
|
CreateDatasetItemMessagesDatasetsDeveloperMessage$outboundSchema
|
|
5162
5163
|
),
|
|
@@ -5164,7 +5165,6 @@ export const CreateDatasetItemResponseBody$outboundSchema: z.ZodType<
|
|
|
5164
5165
|
CreateDatasetItemMessagesDatasetsSystemMessage$outboundSchema
|
|
5165
5166
|
),
|
|
5166
5167
|
z.lazy(() => CreateDatasetItemMessagesDatasetsUserMessage$outboundSchema),
|
|
5167
|
-
z.lazy(() => CreateDatasetItemMessagesDatasetsToolMessage$outboundSchema),
|
|
5168
5168
|
z.lazy(() =>
|
|
5169
5169
|
CreateDatasetItemMessagesDatasetsAssistantMessage$outboundSchema
|
|
5170
5170
|
),
|
|
@@ -5175,7 +5175,7 @@ export const CreateDatasetItemResponseBody$outboundSchema: z.ZodType<
|
|
|
5175
5175
|
createdById: z.string().optional(),
|
|
5176
5176
|
updatedById: z.string().optional(),
|
|
5177
5177
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
5178
|
-
updated: z.date().default(() => new Date("2025-06-
|
|
5178
|
+
updated: z.date().default(() => new Date("2025-06-17T09:09:46.815Z"))
|
|
5179
5179
|
.transform(v => v.toISOString()),
|
|
5180
5180
|
}).transform((v) => {
|
|
5181
5181
|
return remap$(v, {
|
|
@@ -751,7 +751,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
751
751
|
z.ZodTypeDef,
|
|
752
752
|
unknown
|
|
753
753
|
> = z.object({
|
|
754
|
-
_id: z.string().default("
|
|
754
|
+
_id: z.string().default("01JXYJDX0M3GK2KCRJ2J8CWET7"),
|
|
755
755
|
display_name: z.string(),
|
|
756
756
|
description: z.string().optional(),
|
|
757
757
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -795,7 +795,7 @@ export const CreateDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
795
795
|
z.ZodTypeDef,
|
|
796
796
|
CreateDatasourceResponseBody
|
|
797
797
|
> = z.object({
|
|
798
|
-
id: z.string().default("
|
|
798
|
+
id: z.string().default("01JXYJDX0M3GK2KCRJ2J8CWET7"),
|
|
799
799
|
displayName: z.string(),
|
|
800
800
|
description: z.string().optional(),
|
|
801
801
|
status: CreateDatasourceStatus$outboundSchema,
|