@orq-ai/node 3.6.0-rc.32 → 3.6.0-rc.34
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 +1027 -181
- package/bin/mcp-server.js.map +30 -30
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/operations/bulkcreatedatapoints.d.ts +194 -12
- package/models/operations/bulkcreatedatapoints.d.ts.map +1 -1
- package/models/operations/bulkcreatedatapoints.js +192 -4
- package/models/operations/bulkcreatedatapoints.js.map +1 -1
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.d.ts +194 -12
- package/models/operations/createdatasetitem.d.ts.map +1 -1
- package/models/operations/createdatasetitem.js +191 -4
- package/models/operations/createdatasetitem.js.map +1 -1
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createprompt.d.ts +194 -12
- package/models/operations/createprompt.d.ts.map +1 -1
- package/models/operations/createprompt.js +192 -5
- package/models/operations/createprompt.js.map +1 -1
- package/models/operations/deploymentgetconfig.d.ts +97 -6
- package/models/operations/deploymentgetconfig.d.ts.map +1 -1
- package/models/operations/deploymentgetconfig.js +104 -10
- package/models/operations/deploymentgetconfig.js.map +1 -1
- package/models/operations/deployments.d.ts +105 -14
- package/models/operations/deployments.d.ts.map +1 -1
- package/models/operations/deployments.js +108 -15
- package/models/operations/deployments.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 +97 -6
- package/models/operations/getallprompts.d.ts.map +1 -1
- package/models/operations/getallprompts.js +96 -3
- package/models/operations/getallprompts.js.map +1 -1
- package/models/operations/getoneprompt.d.ts +97 -6
- package/models/operations/getoneprompt.d.ts.map +1 -1
- package/models/operations/getoneprompt.js +96 -3
- package/models/operations/getoneprompt.js.map +1 -1
- package/models/operations/getpromptversion.d.ts +97 -6
- package/models/operations/getpromptversion.d.ts.map +1 -1
- package/models/operations/getpromptversion.js +96 -3
- package/models/operations/getpromptversion.js.map +1 -1
- package/models/operations/listdatasetdatapoints.d.ts +97 -6
- package/models/operations/listdatasetdatapoints.d.ts.map +1 -1
- package/models/operations/listdatasetdatapoints.js +98 -4
- 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 +97 -6
- package/models/operations/listpromptversions.d.ts.map +1 -1
- package/models/operations/listpromptversions.js +96 -3
- package/models/operations/listpromptversions.js.map +1 -1
- package/models/operations/retrievedatapoint.d.ts +97 -6
- package/models/operations/retrievedatapoint.d.ts.map +1 -1
- package/models/operations/retrievedatapoint.js +97 -3
- 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/updatedatapoint.d.ts +194 -12
- package/models/operations/updatedatapoint.d.ts.map +1 -1
- package/models/operations/updatedatapoint.js +191 -4
- 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/updateprompt.d.ts +194 -12
- package/models/operations/updateprompt.d.ts.map +1 -1
- package/models/operations/updateprompt.js +192 -5
- package/models/operations/updateprompt.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/operations/bulkcreatedatapoints.ts +416 -12
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +410 -13
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createprompt.ts +400 -12
- package/src/models/operations/deploymentgetconfig.ts +211 -6
- package/src/models/operations/deployments.ts +211 -23
- 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 +200 -6
- package/src/models/operations/getoneprompt.ts +195 -6
- package/src/models/operations/getpromptversion.ts +204 -6
- package/src/models/operations/listdatasetdatapoints.ts +207 -8
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/listpromptversions.ts +202 -6
- package/src/models/operations/retrievedatapoint.ts +204 -8
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +412 -14
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateprompt.ts +400 -12
|
@@ -995,6 +995,33 @@ export declare const DeploymentGetConfigRole: {
|
|
|
995
995
|
* The role of the prompt message
|
|
996
996
|
*/
|
|
997
997
|
export type DeploymentGetConfigRole = ClosedEnum<typeof DeploymentGetConfigRole>;
|
|
998
|
+
/**
|
|
999
|
+
* The type of the content part. Always `file`.
|
|
1000
|
+
*/
|
|
1001
|
+
export declare const DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType: {
|
|
1002
|
+
readonly File: "file";
|
|
1003
|
+
};
|
|
1004
|
+
/**
|
|
1005
|
+
* The type of the content part. Always `file`.
|
|
1006
|
+
*/
|
|
1007
|
+
export type DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType = ClosedEnum<typeof DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType>;
|
|
1008
|
+
export type DeploymentGetConfig2File = {
|
|
1009
|
+
/**
|
|
1010
|
+
* The base64 encoded file data, used when passing the file to the model as a string.
|
|
1011
|
+
*/
|
|
1012
|
+
fileData: string;
|
|
1013
|
+
/**
|
|
1014
|
+
* The name of the file, used when passing the file to the model as a string.
|
|
1015
|
+
*/
|
|
1016
|
+
filename?: string | undefined;
|
|
1017
|
+
};
|
|
1018
|
+
export type DeploymentGetConfig23 = {
|
|
1019
|
+
/**
|
|
1020
|
+
* The type of the content part. Always `file`.
|
|
1021
|
+
*/
|
|
1022
|
+
type: DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType;
|
|
1023
|
+
file: DeploymentGetConfig2File;
|
|
1024
|
+
};
|
|
998
1025
|
export declare const DeploymentGetConfig2DeploymentsResponse200Type: {
|
|
999
1026
|
readonly ImageUrl: "image_url";
|
|
1000
1027
|
};
|
|
@@ -1031,11 +1058,11 @@ export type DeploymentGetConfig21 = {
|
|
|
1031
1058
|
type: DeploymentGetConfig2DeploymentsResponseType;
|
|
1032
1059
|
text: string;
|
|
1033
1060
|
};
|
|
1034
|
-
export type DeploymentGetConfigContentDeploymentsResponse2 = DeploymentGetConfig21 | DeploymentGetConfig2Deployments2;
|
|
1061
|
+
export type DeploymentGetConfigContentDeploymentsResponse2 = DeploymentGetConfig21 | DeploymentGetConfig2Deployments2 | DeploymentGetConfig23;
|
|
1035
1062
|
/**
|
|
1036
1063
|
* The contents of the user message. Either the text content of the message or an array of content parts with a defined type, each can be of type `text` or `image_url` when passing in images. You can pass multiple images by adding multiple `image_url` content parts.
|
|
1037
1064
|
*/
|
|
1038
|
-
export type DeploymentGetConfigContent = string | Array<DeploymentGetConfig21 | DeploymentGetConfig2Deployments2>;
|
|
1065
|
+
export type DeploymentGetConfigContent = string | Array<DeploymentGetConfig21 | DeploymentGetConfig2Deployments2 | DeploymentGetConfig23>;
|
|
1039
1066
|
export declare const DeploymentGetConfigDeploymentsResponseType: {
|
|
1040
1067
|
readonly Function: "function";
|
|
1041
1068
|
};
|
|
@@ -1061,7 +1088,7 @@ export type DeploymentGetConfigMessages = {
|
|
|
1061
1088
|
/**
|
|
1062
1089
|
* The contents of the user message. Either the text content of the message or an array of content parts with a defined type, each can be of type `text` or `image_url` when passing in images. You can pass multiple images by adding multiple `image_url` content parts.
|
|
1063
1090
|
*/
|
|
1064
|
-
content: string | Array<DeploymentGetConfig21 | DeploymentGetConfig2Deployments2>;
|
|
1091
|
+
content: string | Array<DeploymentGetConfig21 | DeploymentGetConfig2Deployments2 | DeploymentGetConfig23>;
|
|
1065
1092
|
toolCalls?: Array<DeploymentGetConfigToolCalls> | undefined;
|
|
1066
1093
|
toolCallId?: string | undefined;
|
|
1067
1094
|
};
|
|
@@ -4045,6 +4072,70 @@ export declare namespace DeploymentGetConfigRole$ {
|
|
|
4045
4072
|
}>;
|
|
4046
4073
|
}
|
|
4047
4074
|
/** @internal */
|
|
4075
|
+
export declare const DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType$inboundSchema: z.ZodNativeEnum<typeof DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType>;
|
|
4076
|
+
/** @internal */
|
|
4077
|
+
export declare const DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType$outboundSchema: z.ZodNativeEnum<typeof DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType>;
|
|
4078
|
+
/**
|
|
4079
|
+
* @internal
|
|
4080
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4081
|
+
*/
|
|
4082
|
+
export declare namespace DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType$ {
|
|
4083
|
+
/** @deprecated use `DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType$inboundSchema` instead. */
|
|
4084
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
4085
|
+
readonly File: "file";
|
|
4086
|
+
}>;
|
|
4087
|
+
/** @deprecated use `DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType$outboundSchema` instead. */
|
|
4088
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
4089
|
+
readonly File: "file";
|
|
4090
|
+
}>;
|
|
4091
|
+
}
|
|
4092
|
+
/** @internal */
|
|
4093
|
+
export declare const DeploymentGetConfig2File$inboundSchema: z.ZodType<DeploymentGetConfig2File, z.ZodTypeDef, unknown>;
|
|
4094
|
+
/** @internal */
|
|
4095
|
+
export type DeploymentGetConfig2File$Outbound = {
|
|
4096
|
+
file_data: string;
|
|
4097
|
+
filename?: string | undefined;
|
|
4098
|
+
};
|
|
4099
|
+
/** @internal */
|
|
4100
|
+
export declare const DeploymentGetConfig2File$outboundSchema: z.ZodType<DeploymentGetConfig2File$Outbound, z.ZodTypeDef, DeploymentGetConfig2File>;
|
|
4101
|
+
/**
|
|
4102
|
+
* @internal
|
|
4103
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4104
|
+
*/
|
|
4105
|
+
export declare namespace DeploymentGetConfig2File$ {
|
|
4106
|
+
/** @deprecated use `DeploymentGetConfig2File$inboundSchema` instead. */
|
|
4107
|
+
const inboundSchema: z.ZodType<DeploymentGetConfig2File, z.ZodTypeDef, unknown>;
|
|
4108
|
+
/** @deprecated use `DeploymentGetConfig2File$outboundSchema` instead. */
|
|
4109
|
+
const outboundSchema: z.ZodType<DeploymentGetConfig2File$Outbound, z.ZodTypeDef, DeploymentGetConfig2File>;
|
|
4110
|
+
/** @deprecated use `DeploymentGetConfig2File$Outbound` instead. */
|
|
4111
|
+
type Outbound = DeploymentGetConfig2File$Outbound;
|
|
4112
|
+
}
|
|
4113
|
+
export declare function deploymentGetConfig2FileToJSON(deploymentGetConfig2File: DeploymentGetConfig2File): string;
|
|
4114
|
+
export declare function deploymentGetConfig2FileFromJSON(jsonString: string): SafeParseResult<DeploymentGetConfig2File, SDKValidationError>;
|
|
4115
|
+
/** @internal */
|
|
4116
|
+
export declare const DeploymentGetConfig23$inboundSchema: z.ZodType<DeploymentGetConfig23, z.ZodTypeDef, unknown>;
|
|
4117
|
+
/** @internal */
|
|
4118
|
+
export type DeploymentGetConfig23$Outbound = {
|
|
4119
|
+
type: string;
|
|
4120
|
+
file: DeploymentGetConfig2File$Outbound;
|
|
4121
|
+
};
|
|
4122
|
+
/** @internal */
|
|
4123
|
+
export declare const DeploymentGetConfig23$outboundSchema: z.ZodType<DeploymentGetConfig23$Outbound, z.ZodTypeDef, DeploymentGetConfig23>;
|
|
4124
|
+
/**
|
|
4125
|
+
* @internal
|
|
4126
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4127
|
+
*/
|
|
4128
|
+
export declare namespace DeploymentGetConfig23$ {
|
|
4129
|
+
/** @deprecated use `DeploymentGetConfig23$inboundSchema` instead. */
|
|
4130
|
+
const inboundSchema: z.ZodType<DeploymentGetConfig23, z.ZodTypeDef, unknown>;
|
|
4131
|
+
/** @deprecated use `DeploymentGetConfig23$outboundSchema` instead. */
|
|
4132
|
+
const outboundSchema: z.ZodType<DeploymentGetConfig23$Outbound, z.ZodTypeDef, DeploymentGetConfig23>;
|
|
4133
|
+
/** @deprecated use `DeploymentGetConfig23$Outbound` instead. */
|
|
4134
|
+
type Outbound = DeploymentGetConfig23$Outbound;
|
|
4135
|
+
}
|
|
4136
|
+
export declare function deploymentGetConfig23ToJSON(deploymentGetConfig23: DeploymentGetConfig23): string;
|
|
4137
|
+
export declare function deploymentGetConfig23FromJSON(jsonString: string): SafeParseResult<DeploymentGetConfig23, SDKValidationError>;
|
|
4138
|
+
/** @internal */
|
|
4048
4139
|
export declare const DeploymentGetConfig2DeploymentsResponse200Type$inboundSchema: z.ZodNativeEnum<typeof DeploymentGetConfig2DeploymentsResponse200Type>;
|
|
4049
4140
|
/** @internal */
|
|
4050
4141
|
export declare const DeploymentGetConfig2DeploymentsResponse200Type$outboundSchema: z.ZodNativeEnum<typeof DeploymentGetConfig2DeploymentsResponse200Type>;
|
|
@@ -4153,7 +4244,7 @@ export declare function deploymentGetConfig21FromJSON(jsonString: string): SafeP
|
|
|
4153
4244
|
/** @internal */
|
|
4154
4245
|
export declare const DeploymentGetConfigContentDeploymentsResponse2$inboundSchema: z.ZodType<DeploymentGetConfigContentDeploymentsResponse2, z.ZodTypeDef, unknown>;
|
|
4155
4246
|
/** @internal */
|
|
4156
|
-
export type DeploymentGetConfigContentDeploymentsResponse2$Outbound = DeploymentGetConfig21$Outbound | DeploymentGetConfig2Deployments2$Outbound;
|
|
4247
|
+
export type DeploymentGetConfigContentDeploymentsResponse2$Outbound = DeploymentGetConfig21$Outbound | DeploymentGetConfig2Deployments2$Outbound | DeploymentGetConfig23$Outbound;
|
|
4157
4248
|
/** @internal */
|
|
4158
4249
|
export declare const DeploymentGetConfigContentDeploymentsResponse2$outboundSchema: z.ZodType<DeploymentGetConfigContentDeploymentsResponse2$Outbound, z.ZodTypeDef, DeploymentGetConfigContentDeploymentsResponse2>;
|
|
4159
4250
|
/**
|
|
@@ -4173,7 +4264,7 @@ export declare function deploymentGetConfigContentDeploymentsResponse2FromJSON(j
|
|
|
4173
4264
|
/** @internal */
|
|
4174
4265
|
export declare const DeploymentGetConfigContent$inboundSchema: z.ZodType<DeploymentGetConfigContent, z.ZodTypeDef, unknown>;
|
|
4175
4266
|
/** @internal */
|
|
4176
|
-
export type DeploymentGetConfigContent$Outbound = string | Array<DeploymentGetConfig21$Outbound | DeploymentGetConfig2Deployments2$Outbound>;
|
|
4267
|
+
export type DeploymentGetConfigContent$Outbound = string | Array<DeploymentGetConfig21$Outbound | DeploymentGetConfig2Deployments2$Outbound | DeploymentGetConfig23$Outbound>;
|
|
4177
4268
|
/** @internal */
|
|
4178
4269
|
export declare const DeploymentGetConfigContent$outboundSchema: z.ZodType<DeploymentGetConfigContent$Outbound, z.ZodTypeDef, DeploymentGetConfigContent>;
|
|
4179
4270
|
/**
|
|
@@ -4261,7 +4352,7 @@ export declare const DeploymentGetConfigMessages$inboundSchema: z.ZodType<Deploy
|
|
|
4261
4352
|
/** @internal */
|
|
4262
4353
|
export type DeploymentGetConfigMessages$Outbound = {
|
|
4263
4354
|
role: string;
|
|
4264
|
-
content: string | Array<DeploymentGetConfig21$Outbound | DeploymentGetConfig2Deployments2$Outbound>;
|
|
4355
|
+
content: string | Array<DeploymentGetConfig21$Outbound | DeploymentGetConfig2Deployments2$Outbound | DeploymentGetConfig23$Outbound>;
|
|
4265
4356
|
tool_calls?: Array<DeploymentGetConfigToolCalls$Outbound> | undefined;
|
|
4266
4357
|
tool_call_id?: string | undefined;
|
|
4267
4358
|
};
|