@orq-ai/node 3.10.8 → 3.10.10
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 +261 -131
- package/bin/mcp-server.js.map +35 -35
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/lib/config.js.map +1 -1
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/mcp-server.js.map +1 -1
- package/mcp-server/server.js +1 -1
- package/mcp-server/server.js.map +1 -1
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +2 -2
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +16 -16
- package/models/operations/createprompt.d.ts +78 -0
- package/models/operations/createprompt.d.ts.map +1 -1
- package/models/operations/createprompt.js +56 -5
- package/models/operations/createprompt.js.map +1 -1
- package/models/operations/deploymentgetconfig.d.ts +39 -0
- package/models/operations/deploymentgetconfig.d.ts.map +1 -1
- package/models/operations/deploymentgetconfig.js +36 -11
- package/models/operations/deploymentgetconfig.js.map +1 -1
- package/models/operations/deployments.d.ts +39 -0
- package/models/operations/deployments.d.ts.map +1 -1
- package/models/operations/deployments.js +28 -3
- 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 +39 -0
- package/models/operations/getallprompts.d.ts.map +1 -1
- package/models/operations/getallprompts.js +28 -3
- package/models/operations/getallprompts.js.map +1 -1
- package/models/operations/getevals.js +28 -28
- package/models/operations/getoneprompt.d.ts +39 -0
- package/models/operations/getoneprompt.d.ts.map +1 -1
- package/models/operations/getoneprompt.js +28 -3
- package/models/operations/getoneprompt.js.map +1 -1
- package/models/operations/getpromptversion.d.ts +39 -0
- package/models/operations/getpromptversion.d.ts.map +1 -1
- package/models/operations/getpromptversion.js +28 -3
- package/models/operations/getpromptversion.js.map +1 -1
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +2 -2
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/listpromptversions.d.ts +39 -0
- package/models/operations/listpromptversions.d.ts.map +1 -1
- package/models/operations/listpromptversions.js +28 -3
- package/models/operations/listpromptversions.js.map +1 -1
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.js +2 -2
- 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.js +2 -2
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +16 -16
- package/models/operations/updateprompt.d.ts +78 -0
- package/models/operations/updateprompt.d.ts.map +1 -1
- package/models/operations/updateprompt.js +55 -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/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +2 -2
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +16 -16
- package/src/models/operations/createprompt.ts +80 -0
- package/src/models/operations/deploymentgetconfig.ts +43 -0
- package/src/models/operations/deployments.ts +41 -0
- 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 +41 -0
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/getoneprompt.ts +41 -0
- package/src/models/operations/getpromptversion.ts +43 -0
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +2 -2
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/listpromptversions.ts +43 -0
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +2 -2
- 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 +2 -2
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +16 -16
- package/src/models/operations/updateprompt.ts +84 -0
|
@@ -111,6 +111,19 @@ export type UpdatePromptReasoningEffort = ClosedEnum<
|
|
|
111
111
|
typeof UpdatePromptReasoningEffort
|
|
112
112
|
>;
|
|
113
113
|
|
|
114
|
+
/**
|
|
115
|
+
* Controls the verbosity of the model output.
|
|
116
|
+
*/
|
|
117
|
+
export const UpdatePromptVerbosity = {
|
|
118
|
+
Low: "low",
|
|
119
|
+
Medium: "medium",
|
|
120
|
+
High: "high",
|
|
121
|
+
} as const;
|
|
122
|
+
/**
|
|
123
|
+
* Controls the verbosity of the model output.
|
|
124
|
+
*/
|
|
125
|
+
export type UpdatePromptVerbosity = ClosedEnum<typeof UpdatePromptVerbosity>;
|
|
126
|
+
|
|
114
127
|
/**
|
|
115
128
|
* Model Parameters: Not all parameters apply to every model
|
|
116
129
|
*/
|
|
@@ -195,6 +208,10 @@ export type UpdatePromptModelParameters = {
|
|
|
195
208
|
* Gives the model enhanced reasoning capabilities for complex tasks. A value of 0 disables thinking. The minimum budget tokens for thinking are 1024. The Budget Tokens should never exceed the Max Tokens parameter. Only supported by `Anthropic`
|
|
196
209
|
*/
|
|
197
210
|
budgetTokens?: number | undefined;
|
|
211
|
+
/**
|
|
212
|
+
* Controls the verbosity of the model output.
|
|
213
|
+
*/
|
|
214
|
+
verbosity?: UpdatePromptVerbosity | undefined;
|
|
198
215
|
};
|
|
199
216
|
|
|
200
217
|
export const UpdatePromptProvider = {
|
|
@@ -583,6 +600,21 @@ export type UpdatePromptPromptsReasoningEffort = ClosedEnum<
|
|
|
583
600
|
typeof UpdatePromptPromptsReasoningEffort
|
|
584
601
|
>;
|
|
585
602
|
|
|
603
|
+
/**
|
|
604
|
+
* Controls the verbosity of the model output.
|
|
605
|
+
*/
|
|
606
|
+
export const UpdatePromptPromptsVerbosity = {
|
|
607
|
+
Low: "low",
|
|
608
|
+
Medium: "medium",
|
|
609
|
+
High: "high",
|
|
610
|
+
} as const;
|
|
611
|
+
/**
|
|
612
|
+
* Controls the verbosity of the model output.
|
|
613
|
+
*/
|
|
614
|
+
export type UpdatePromptPromptsVerbosity = ClosedEnum<
|
|
615
|
+
typeof UpdatePromptPromptsVerbosity
|
|
616
|
+
>;
|
|
617
|
+
|
|
586
618
|
/**
|
|
587
619
|
* Model Parameters: Not all parameters apply to every model
|
|
588
620
|
*/
|
|
@@ -667,6 +699,10 @@ export type UpdatePromptPromptsModelParameters = {
|
|
|
667
699
|
* Gives the model enhanced reasoning capabilities for complex tasks. A value of 0 disables thinking. The minimum budget tokens for thinking are 1024. The Budget Tokens should never exceed the Max Tokens parameter. Only supported by `Anthropic`
|
|
668
700
|
*/
|
|
669
701
|
budgetTokens?: number | undefined;
|
|
702
|
+
/**
|
|
703
|
+
* Controls the verbosity of the model output.
|
|
704
|
+
*/
|
|
705
|
+
verbosity?: UpdatePromptPromptsVerbosity | undefined;
|
|
670
706
|
};
|
|
671
707
|
|
|
672
708
|
export const UpdatePromptPromptsProvider = {
|
|
@@ -1324,6 +1360,27 @@ export namespace UpdatePromptReasoningEffort$ {
|
|
|
1324
1360
|
export const outboundSchema = UpdatePromptReasoningEffort$outboundSchema;
|
|
1325
1361
|
}
|
|
1326
1362
|
|
|
1363
|
+
/** @internal */
|
|
1364
|
+
export const UpdatePromptVerbosity$inboundSchema: z.ZodNativeEnum<
|
|
1365
|
+
typeof UpdatePromptVerbosity
|
|
1366
|
+
> = z.nativeEnum(UpdatePromptVerbosity);
|
|
1367
|
+
|
|
1368
|
+
/** @internal */
|
|
1369
|
+
export const UpdatePromptVerbosity$outboundSchema: z.ZodNativeEnum<
|
|
1370
|
+
typeof UpdatePromptVerbosity
|
|
1371
|
+
> = UpdatePromptVerbosity$inboundSchema;
|
|
1372
|
+
|
|
1373
|
+
/**
|
|
1374
|
+
* @internal
|
|
1375
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1376
|
+
*/
|
|
1377
|
+
export namespace UpdatePromptVerbosity$ {
|
|
1378
|
+
/** @deprecated use `UpdatePromptVerbosity$inboundSchema` instead. */
|
|
1379
|
+
export const inboundSchema = UpdatePromptVerbosity$inboundSchema;
|
|
1380
|
+
/** @deprecated use `UpdatePromptVerbosity$outboundSchema` instead. */
|
|
1381
|
+
export const outboundSchema = UpdatePromptVerbosity$outboundSchema;
|
|
1382
|
+
}
|
|
1383
|
+
|
|
1327
1384
|
/** @internal */
|
|
1328
1385
|
export const UpdatePromptModelParameters$inboundSchema: z.ZodType<
|
|
1329
1386
|
UpdatePromptModelParameters,
|
|
@@ -1352,6 +1409,7 @@ export const UpdatePromptModelParameters$inboundSchema: z.ZodType<
|
|
|
1352
1409
|
encoding_format: UpdatePromptEncodingFormat$inboundSchema.optional(),
|
|
1353
1410
|
reasoningEffort: UpdatePromptReasoningEffort$inboundSchema.optional(),
|
|
1354
1411
|
budgetTokens: z.number().optional(),
|
|
1412
|
+
verbosity: UpdatePromptVerbosity$inboundSchema.optional(),
|
|
1355
1413
|
}).transform((v) => {
|
|
1356
1414
|
return remap$(v, {
|
|
1357
1415
|
"encoding_format": "encodingFormat",
|
|
@@ -1381,6 +1439,7 @@ export type UpdatePromptModelParameters$Outbound = {
|
|
|
1381
1439
|
encoding_format?: string | undefined;
|
|
1382
1440
|
reasoningEffort?: string | undefined;
|
|
1383
1441
|
budgetTokens?: number | undefined;
|
|
1442
|
+
verbosity?: string | undefined;
|
|
1384
1443
|
};
|
|
1385
1444
|
|
|
1386
1445
|
/** @internal */
|
|
@@ -1411,6 +1470,7 @@ export const UpdatePromptModelParameters$outboundSchema: z.ZodType<
|
|
|
1411
1470
|
encodingFormat: UpdatePromptEncodingFormat$outboundSchema.optional(),
|
|
1412
1471
|
reasoningEffort: UpdatePromptReasoningEffort$outboundSchema.optional(),
|
|
1413
1472
|
budgetTokens: z.number().optional(),
|
|
1473
|
+
verbosity: UpdatePromptVerbosity$outboundSchema.optional(),
|
|
1414
1474
|
}).transform((v) => {
|
|
1415
1475
|
return remap$(v, {
|
|
1416
1476
|
encodingFormat: "encoding_format",
|
|
@@ -2995,6 +3055,27 @@ export namespace UpdatePromptPromptsReasoningEffort$ {
|
|
|
2995
3055
|
UpdatePromptPromptsReasoningEffort$outboundSchema;
|
|
2996
3056
|
}
|
|
2997
3057
|
|
|
3058
|
+
/** @internal */
|
|
3059
|
+
export const UpdatePromptPromptsVerbosity$inboundSchema: z.ZodNativeEnum<
|
|
3060
|
+
typeof UpdatePromptPromptsVerbosity
|
|
3061
|
+
> = z.nativeEnum(UpdatePromptPromptsVerbosity);
|
|
3062
|
+
|
|
3063
|
+
/** @internal */
|
|
3064
|
+
export const UpdatePromptPromptsVerbosity$outboundSchema: z.ZodNativeEnum<
|
|
3065
|
+
typeof UpdatePromptPromptsVerbosity
|
|
3066
|
+
> = UpdatePromptPromptsVerbosity$inboundSchema;
|
|
3067
|
+
|
|
3068
|
+
/**
|
|
3069
|
+
* @internal
|
|
3070
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3071
|
+
*/
|
|
3072
|
+
export namespace UpdatePromptPromptsVerbosity$ {
|
|
3073
|
+
/** @deprecated use `UpdatePromptPromptsVerbosity$inboundSchema` instead. */
|
|
3074
|
+
export const inboundSchema = UpdatePromptPromptsVerbosity$inboundSchema;
|
|
3075
|
+
/** @deprecated use `UpdatePromptPromptsVerbosity$outboundSchema` instead. */
|
|
3076
|
+
export const outboundSchema = UpdatePromptPromptsVerbosity$outboundSchema;
|
|
3077
|
+
}
|
|
3078
|
+
|
|
2998
3079
|
/** @internal */
|
|
2999
3080
|
export const UpdatePromptPromptsModelParameters$inboundSchema: z.ZodType<
|
|
3000
3081
|
UpdatePromptPromptsModelParameters,
|
|
@@ -3024,6 +3105,7 @@ export const UpdatePromptPromptsModelParameters$inboundSchema: z.ZodType<
|
|
|
3024
3105
|
encoding_format: UpdatePromptPromptsEncodingFormat$inboundSchema.optional(),
|
|
3025
3106
|
reasoningEffort: UpdatePromptPromptsReasoningEffort$inboundSchema.optional(),
|
|
3026
3107
|
budgetTokens: z.number().optional(),
|
|
3108
|
+
verbosity: UpdatePromptPromptsVerbosity$inboundSchema.optional(),
|
|
3027
3109
|
}).transform((v) => {
|
|
3028
3110
|
return remap$(v, {
|
|
3029
3111
|
"encoding_format": "encodingFormat",
|
|
@@ -3053,6 +3135,7 @@ export type UpdatePromptPromptsModelParameters$Outbound = {
|
|
|
3053
3135
|
encoding_format?: string | undefined;
|
|
3054
3136
|
reasoningEffort?: string | undefined;
|
|
3055
3137
|
budgetTokens?: number | undefined;
|
|
3138
|
+
verbosity?: string | undefined;
|
|
3056
3139
|
};
|
|
3057
3140
|
|
|
3058
3141
|
/** @internal */
|
|
@@ -3084,6 +3167,7 @@ export const UpdatePromptPromptsModelParameters$outboundSchema: z.ZodType<
|
|
|
3084
3167
|
encodingFormat: UpdatePromptPromptsEncodingFormat$outboundSchema.optional(),
|
|
3085
3168
|
reasoningEffort: UpdatePromptPromptsReasoningEffort$outboundSchema.optional(),
|
|
3086
3169
|
budgetTokens: z.number().optional(),
|
|
3170
|
+
verbosity: UpdatePromptPromptsVerbosity$outboundSchema.optional(),
|
|
3087
3171
|
}).transform((v) => {
|
|
3088
3172
|
return remap$(v, {
|
|
3089
3173
|
encodingFormat: "encoding_format",
|