@orq-ai/node 4.9.10 → 4.9.12
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/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/models/components/reasoningpart.js +1 -1
- package/models/operations/createcontact.js +1 -1
- package/models/operations/createdataset.js +1 -1
- package/models/operations/createdatasetitem.js +4 -4
- package/models/operations/createdatasource.js +1 -1
- package/models/operations/createeval.js +16 -16
- package/models/operations/createidentity.js +1 -1
- package/models/operations/createtool.js +6 -6
- package/models/operations/getalltools.js +6 -6
- package/models/operations/getevals.js +16 -16
- package/models/operations/getv2humanevalsets.js +2 -2
- package/models/operations/getv2humanevalsetsid.js +2 -2
- package/models/operations/listdatasetdatapoints.js +4 -4
- package/models/operations/listdatasets.js +1 -1
- package/models/operations/listdatasources.js +1 -1
- package/models/operations/listidentities.js +1 -1
- package/models/operations/patchv2humanevalsetsid.js +2 -2
- package/models/operations/postv2feedbackevaluation.js +3 -3
- package/models/operations/postv2humanevalsets.js +2 -2
- package/models/operations/retrievedatapoint.js +4 -4
- package/models/operations/retrievedataset.js +1 -1
- package/models/operations/retrievedatasource.js +1 -1
- package/models/operations/retrieveidentity.js +1 -1
- package/models/operations/retrievetool.js +6 -6
- package/models/operations/runagent.js +1 -1
- package/models/operations/streamrunagent.js +1 -1
- package/models/operations/updatedatapoint.js +4 -4
- package/models/operations/updatedataset.js +1 -1
- package/models/operations/updatedatasource.js +1 -1
- package/models/operations/updateeval.js +16 -16
- package/models/operations/updateidentity.js +1 -1
- package/models/operations/updatetool.js +7 -7
- package/package.json +7 -7
- package/packages/orq-rc/src/funcs/{reportingQuery.ts → contactsCreate.ts} +13 -13
- package/packages/orq-rc/src/funcs/identitiesCreate.ts +15 -10
- package/packages/orq-rc/src/funcs/identitiesDelete.ts +16 -7
- package/packages/orq-rc/src/funcs/identitiesList.ts +5 -6
- package/packages/orq-rc/src/funcs/identitiesRetrieve.ts +18 -6
- package/packages/orq-rc/src/funcs/identitiesUpdate.ts +15 -9
- package/packages/orq-rc/src/funcs/projectsCreate.ts +1 -1
- package/packages/orq-rc/src/funcs/projectsDelete.ts +0 -3
- package/packages/orq-rc/src/funcs/projectsList.ts +1 -1
- package/packages/orq-rc/src/funcs/remoteconfigsRetrieve.ts +163 -0
- package/packages/orq-rc/src/funcs/skillsCreate.ts +1 -1
- package/packages/orq-rc/src/funcs/skillsDelete.ts +0 -3
- package/packages/orq-rc/src/funcs/skillsGet.ts +1 -1
- package/packages/orq-rc/src/funcs/skillsList.ts +1 -1
- package/packages/orq-rc/src/funcs/skillsUpdate.ts +1 -1
- package/packages/orq-rc/src/lib/config.ts +2 -2
- package/packages/orq-rc/src/models/components/createprojectrequest.ts +0 -6
- package/packages/orq-rc/src/models/components/createprojectresponse.ts +0 -3
- package/packages/orq-rc/src/models/components/createskillrequest.ts +0 -18
- package/packages/orq-rc/src/models/components/createskillresponse.ts +0 -3
- package/packages/orq-rc/src/models/components/file.ts +3 -0
- package/packages/orq-rc/src/models/components/getprojectresponse.ts +0 -3
- package/packages/orq-rc/src/models/components/getskillresponse.ts +0 -3
- package/packages/orq-rc/src/models/components/index.ts +0 -15
- package/packages/orq-rc/src/models/components/invokedeploymentrequest.ts +10 -17
- package/packages/orq-rc/src/models/components/listprojectsresponse.ts +0 -12
- package/packages/orq-rc/src/models/components/listskillsresponse.ts +0 -12
- package/packages/orq-rc/src/models/components/modelref.ts +0 -6
- package/packages/orq-rc/src/models/components/project.ts +3 -42
- package/packages/orq-rc/src/models/components/reasoningpart.ts +1 -1
- package/packages/orq-rc/src/models/components/skill.ts +3 -37
- package/packages/orq-rc/src/models/components/updateprojectrequest.ts +0 -12
- package/packages/orq-rc/src/models/components/updateprojectresponse.ts +0 -3
- package/packages/orq-rc/src/models/components/updateskillrequest.ts +0 -21
- package/packages/orq-rc/src/models/components/updateskillresponse.ts +0 -3
- package/packages/orq-rc/src/models/errors/deleteidentity.ts +62 -0
- package/packages/orq-rc/src/models/errors/index.ts +3 -0
- package/packages/orq-rc/src/models/errors/retrieveidentity.ts +118 -0
- package/packages/orq-rc/src/models/errors/updateidentity.ts +54 -0
- package/packages/orq-rc/src/models/operations/createagentrequest.ts +3 -3
- package/packages/orq-rc/src/models/operations/createannotation.ts +11 -7
- package/packages/orq-rc/src/models/operations/createcontact.ts +156 -0
- package/packages/orq-rc/src/models/operations/createdataset.ts +4 -4
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +4 -4
- package/packages/orq-rc/src/models/operations/createdatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/createeval.ts +31 -45
- package/packages/orq-rc/src/models/operations/createidentity.ts +162 -0
- package/packages/orq-rc/src/models/operations/createknowledge.ts +9 -9
- package/packages/orq-rc/src/models/operations/creatememorystore.ts +3 -3
- package/packages/orq-rc/src/models/operations/createprompt.ts +3 -3
- package/packages/orq-rc/src/models/operations/createtool.ts +36 -36
- package/packages/orq-rc/src/models/operations/deleteidentity.ts +3 -0
- package/packages/orq-rc/src/models/operations/getalltools.ts +21 -21
- package/packages/orq-rc/src/models/operations/getevals.ts +16 -22
- package/packages/orq-rc/src/models/operations/getoneknowledge.ts +6 -6
- package/packages/orq-rc/src/models/operations/getv2humanevalsets.ts +2 -2
- package/packages/orq-rc/src/models/operations/getv2humanevalsetsid.ts +2 -2
- package/packages/orq-rc/src/models/operations/index.ts +3 -0
- package/packages/orq-rc/src/models/operations/invokeeval.ts +80 -83
- package/packages/orq-rc/src/models/operations/listagents.ts +3 -3
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +4 -4
- package/packages/orq-rc/src/models/operations/listdatasets.ts +1 -1
- package/packages/orq-rc/src/models/operations/listdatasources.ts +1 -1
- package/packages/orq-rc/src/models/operations/listidentities.ts +230 -9
- package/packages/orq-rc/src/models/operations/listknowledgebases.ts +6 -6
- package/packages/orq-rc/src/models/operations/patchv2humanevalsetsid.ts +2 -2
- package/packages/orq-rc/src/models/operations/postv2agentsa2a.ts +17 -14
- package/packages/orq-rc/src/models/operations/postv2feedback.ts +27 -34
- package/packages/orq-rc/src/models/operations/postv2feedbackevaluation.ts +3 -3
- package/packages/orq-rc/src/models/operations/postv2feedbackremove.ts +17 -14
- package/packages/orq-rc/src/models/operations/postv2humanevalsets.ts +2 -2
- package/packages/orq-rc/src/models/operations/projectdelete.ts +0 -3
- package/packages/orq-rc/src/models/operations/projectget.ts +0 -3
- package/packages/orq-rc/src/models/operations/projectlist.ts +0 -15
- package/packages/orq-rc/src/models/operations/projectupdate.ts +0 -3
- package/packages/orq-rc/src/models/operations/remoteconfigsgetconfig.ts +108 -0
- package/packages/orq-rc/src/models/operations/retrieveagentrequest.ts +3 -3
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +4 -4
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +1 -1
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/retrieveidentity.ts +138 -3
- package/packages/orq-rc/src/models/operations/retrievetool.ts +21 -21
- package/packages/orq-rc/src/models/operations/runagent.ts +4 -4
- package/packages/orq-rc/src/models/operations/skilldelete.ts +0 -3
- package/packages/orq-rc/src/models/operations/skilllist.ts +0 -12
- package/packages/orq-rc/src/models/operations/skillupdate.ts +0 -3
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +4 -4
- package/packages/orq-rc/src/models/operations/updateagent.ts +6 -6
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +4 -4
- package/packages/orq-rc/src/models/operations/updatedataset.ts +4 -4
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/updateeval.ts +23 -30
- package/packages/orq-rc/src/models/operations/updateidentity.ts +154 -5
- package/packages/orq-rc/src/models/operations/updateknowledge.ts +12 -12
- package/packages/orq-rc/src/models/operations/updateprompt.ts +3 -3
- package/packages/orq-rc/src/models/operations/updatetool.ts +37 -37
- package/packages/orq-rc/src/sdk/contacts.ts +27 -0
- package/packages/orq-rc/src/sdk/feedback.ts +8 -8
- package/packages/orq-rc/src/sdk/identities.ts +17 -18
- package/packages/orq-rc/src/sdk/projects.ts +2 -5
- package/packages/orq-rc/src/sdk/remoteconfigs.ts +24 -0
- package/packages/orq-rc/src/sdk/sdk.ts +22 -16
- package/packages/orq-rc/src/sdk/skills.ts +4 -7
- package/src/lib/config.ts +2 -2
- package/src/models/components/reasoningpart.ts +1 -1
- package/src/models/operations/createcontact.ts +1 -1
- package/src/models/operations/createdataset.ts +1 -1
- package/src/models/operations/createdatasetitem.ts +4 -4
- package/src/models/operations/createdatasource.ts +1 -1
- package/src/models/operations/createeval.ts +16 -16
- package/src/models/operations/createidentity.ts +1 -1
- package/src/models/operations/createtool.ts +6 -6
- package/src/models/operations/getalltools.ts +6 -6
- package/src/models/operations/getevals.ts +16 -16
- package/src/models/operations/getv2humanevalsets.ts +2 -2
- package/src/models/operations/getv2humanevalsetsid.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +4 -4
- package/src/models/operations/listdatasets.ts +1 -1
- package/src/models/operations/listdatasources.ts +1 -1
- package/src/models/operations/listidentities.ts +1 -1
- package/src/models/operations/patchv2humanevalsetsid.ts +2 -2
- package/src/models/operations/postv2feedbackevaluation.ts +3 -3
- package/src/models/operations/postv2humanevalsets.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +4 -4
- package/src/models/operations/retrievedataset.ts +1 -1
- package/src/models/operations/retrievedatasource.ts +1 -1
- package/src/models/operations/retrieveidentity.ts +1 -1
- package/src/models/operations/retrievetool.ts +6 -6
- package/src/models/operations/runagent.ts +1 -1
- package/src/models/operations/streamrunagent.ts +1 -1
- package/src/models/operations/updatedatapoint.ts +4 -4
- package/src/models/operations/updatedataset.ts +1 -1
- package/src/models/operations/updatedatasource.ts +1 -1
- package/src/models/operations/updateeval.ts +16 -16
- package/src/models/operations/updateidentity.ts +1 -1
- package/src/models/operations/updatetool.ts +7 -7
- package/packages/orq-rc/src/models/components/createidentityrequest.ts +0 -76
- package/packages/orq-rc/src/models/components/createidentityresponse.ts +0 -32
- package/packages/orq-rc/src/models/components/datapoint.ts +0 -60
- package/packages/orq-rc/src/models/components/deleteidentityresponse.ts +0 -27
- package/packages/orq-rc/src/models/components/filter.ts +0 -137
- package/packages/orq-rc/src/models/components/identity.ts +0 -83
- package/packages/orq-rc/src/models/components/identitymetrics.ts +0 -45
- package/packages/orq-rc/src/models/components/listidentitiesresponse.ts +0 -41
- package/packages/orq-rc/src/models/components/queryreportrequest.ts +0 -237
- package/packages/orq-rc/src/models/components/queryreportresponse.ts +0 -96
- package/packages/orq-rc/src/models/components/responsemeta.ts +0 -103
- package/packages/orq-rc/src/models/components/retrieveidentityresponse.ts +0 -32
- package/packages/orq-rc/src/models/components/totals.ts +0 -34
- package/packages/orq-rc/src/models/components/updateidentityrequest.ts +0 -75
- package/packages/orq-rc/src/models/components/updateidentityresponse.ts +0 -32
- package/packages/orq-rc/src/sdk/reporting.ts +0 -27
|
@@ -128,13 +128,13 @@ export type CreateKnowledgeRequestBody1 = {
|
|
|
128
128
|
*/
|
|
129
129
|
retrievalSettings?: RetrievalSettings | undefined;
|
|
130
130
|
/**
|
|
131
|
-
* Entity storage path
|
|
131
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
132
132
|
*
|
|
133
133
|
* @remarks
|
|
134
134
|
*
|
|
135
|
-
*
|
|
135
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
136
136
|
*
|
|
137
|
-
* With project-
|
|
137
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
138
138
|
*/
|
|
139
139
|
path: string;
|
|
140
140
|
};
|
|
@@ -236,13 +236,13 @@ export type ResponseBody2 = {
|
|
|
236
236
|
*/
|
|
237
237
|
domainId: string;
|
|
238
238
|
/**
|
|
239
|
-
* Entity storage path
|
|
239
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
240
240
|
*
|
|
241
241
|
* @remarks
|
|
242
242
|
*
|
|
243
|
-
*
|
|
243
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
244
244
|
*
|
|
245
|
-
* With project-
|
|
245
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
246
246
|
*/
|
|
247
247
|
path?: string | undefined;
|
|
248
248
|
createdById?: string | null | undefined;
|
|
@@ -357,13 +357,13 @@ export type ResponseBody1 = {
|
|
|
357
357
|
*/
|
|
358
358
|
domainId: string;
|
|
359
359
|
/**
|
|
360
|
-
* Entity storage path
|
|
360
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
361
361
|
*
|
|
362
362
|
* @remarks
|
|
363
363
|
*
|
|
364
|
-
*
|
|
364
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
365
365
|
*
|
|
366
|
-
* With project-
|
|
366
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
367
367
|
*/
|
|
368
368
|
path?: string | undefined;
|
|
369
369
|
createdById?: string | null | undefined;
|
|
@@ -30,13 +30,13 @@ export type CreateMemoryStoreRequestBody = {
|
|
|
30
30
|
*/
|
|
31
31
|
ttl?: number | undefined;
|
|
32
32
|
/**
|
|
33
|
-
* Entity storage path
|
|
33
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
34
34
|
*
|
|
35
35
|
* @remarks
|
|
36
36
|
*
|
|
37
|
-
*
|
|
37
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
38
38
|
*
|
|
39
|
-
* With project-
|
|
39
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
40
40
|
*/
|
|
41
41
|
path: string;
|
|
42
42
|
};
|
|
@@ -871,13 +871,13 @@ export type CreatePromptRequestBody = {
|
|
|
871
871
|
*/
|
|
872
872
|
prompt: PromptInput;
|
|
873
873
|
/**
|
|
874
|
-
* Entity storage path
|
|
874
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
875
875
|
*
|
|
876
876
|
* @remarks
|
|
877
877
|
*
|
|
878
|
-
*
|
|
878
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
879
879
|
*
|
|
880
|
-
* With project-
|
|
880
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
881
881
|
*/
|
|
882
882
|
path: string;
|
|
883
883
|
};
|
|
@@ -82,13 +82,13 @@ export type RequestBodyCodeTool = {
|
|
|
82
82
|
*/
|
|
83
83
|
export type RequestBodyCodeExecutionTool = {
|
|
84
84
|
/**
|
|
85
|
-
* Entity storage path
|
|
85
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
86
86
|
*
|
|
87
87
|
* @remarks
|
|
88
88
|
*
|
|
89
|
-
*
|
|
89
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
90
90
|
*
|
|
91
|
-
* With project-
|
|
91
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
92
92
|
*/
|
|
93
93
|
path: string;
|
|
94
94
|
/**
|
|
@@ -166,13 +166,13 @@ export type RequestBodyMcp = {
|
|
|
166
166
|
*/
|
|
167
167
|
export type RequestBodyMCPTool = {
|
|
168
168
|
/**
|
|
169
|
-
* Entity storage path
|
|
169
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
170
170
|
*
|
|
171
171
|
* @remarks
|
|
172
172
|
*
|
|
173
|
-
*
|
|
173
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
174
174
|
*
|
|
175
|
-
* With project-
|
|
175
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
176
176
|
*/
|
|
177
177
|
path: string;
|
|
178
178
|
/**
|
|
@@ -312,13 +312,13 @@ export type CreateToolRequestBodyHttp = {
|
|
|
312
312
|
*/
|
|
313
313
|
export type RequestBodyHTTPTool = {
|
|
314
314
|
/**
|
|
315
|
-
* Entity storage path
|
|
315
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
316
316
|
*
|
|
317
317
|
* @remarks
|
|
318
318
|
*
|
|
319
|
-
*
|
|
319
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
320
320
|
*
|
|
321
|
-
* With project-
|
|
321
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
322
322
|
*/
|
|
323
323
|
path: string;
|
|
324
324
|
/**
|
|
@@ -398,13 +398,13 @@ export type RequestBodyJsonSchema = {
|
|
|
398
398
|
*/
|
|
399
399
|
export type RequestBodyJSONSchemaTool = {
|
|
400
400
|
/**
|
|
401
|
-
* Entity storage path
|
|
401
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
402
402
|
*
|
|
403
403
|
* @remarks
|
|
404
404
|
*
|
|
405
|
-
*
|
|
405
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
406
406
|
*
|
|
407
|
-
* With project-
|
|
407
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
408
408
|
*/
|
|
409
409
|
path: string;
|
|
410
410
|
/**
|
|
@@ -499,13 +499,13 @@ export type RequestBodyFunction = {
|
|
|
499
499
|
*/
|
|
500
500
|
export type RequestBodyFunctionTool = {
|
|
501
501
|
/**
|
|
502
|
-
* Entity storage path
|
|
502
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
503
503
|
*
|
|
504
504
|
* @remarks
|
|
505
505
|
*
|
|
506
|
-
*
|
|
506
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
507
507
|
*
|
|
508
|
-
* With project-
|
|
508
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
509
509
|
*/
|
|
510
510
|
path: string;
|
|
511
511
|
/**
|
|
@@ -608,13 +608,13 @@ export type ResponseBodyCodeTool = {
|
|
|
608
608
|
export type ResponseBodyCodeExecutionTool = {
|
|
609
609
|
id: string;
|
|
610
610
|
/**
|
|
611
|
-
* Entity storage path
|
|
611
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
612
612
|
*
|
|
613
613
|
* @remarks
|
|
614
614
|
*
|
|
615
|
-
*
|
|
615
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
616
616
|
*
|
|
617
|
-
* With project-
|
|
617
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
618
618
|
*/
|
|
619
619
|
path: string;
|
|
620
620
|
/**
|
|
@@ -732,13 +732,13 @@ export type ResponseBodyMcp = {
|
|
|
732
732
|
export type ResponseBodyMCPTool = {
|
|
733
733
|
id: string;
|
|
734
734
|
/**
|
|
735
|
-
* Entity storage path
|
|
735
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
736
736
|
*
|
|
737
737
|
* @remarks
|
|
738
738
|
*
|
|
739
|
-
*
|
|
739
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
740
740
|
*
|
|
741
|
-
* With project-
|
|
741
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
742
742
|
*/
|
|
743
743
|
path: string;
|
|
744
744
|
/**
|
|
@@ -889,13 +889,13 @@ export type CreateToolResponseBodyHttp = {
|
|
|
889
889
|
export type ResponseBodyHTTPTool = {
|
|
890
890
|
id: string;
|
|
891
891
|
/**
|
|
892
|
-
* Entity storage path
|
|
892
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
893
893
|
*
|
|
894
894
|
* @remarks
|
|
895
895
|
*
|
|
896
|
-
*
|
|
896
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
897
897
|
*
|
|
898
|
-
* With project-
|
|
898
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
899
899
|
*/
|
|
900
900
|
path: string;
|
|
901
901
|
/**
|
|
@@ -990,13 +990,13 @@ export type ResponseBodyJsonSchema = {
|
|
|
990
990
|
export type ResponseBodyJSONSchemaTool = {
|
|
991
991
|
id: string;
|
|
992
992
|
/**
|
|
993
|
-
* Entity storage path
|
|
993
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
994
994
|
*
|
|
995
995
|
* @remarks
|
|
996
996
|
*
|
|
997
|
-
*
|
|
997
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
998
998
|
*
|
|
999
|
-
* With project-
|
|
999
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
1000
1000
|
*/
|
|
1001
1001
|
path: string;
|
|
1002
1002
|
/**
|
|
@@ -1101,13 +1101,13 @@ export type CreateToolResponseBodyFunction = {
|
|
|
1101
1101
|
export type ResponseBodyFunctionTool = {
|
|
1102
1102
|
id: string;
|
|
1103
1103
|
/**
|
|
1104
|
-
* Entity storage path
|
|
1104
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
1105
1105
|
*
|
|
1106
1106
|
* @remarks
|
|
1107
1107
|
*
|
|
1108
|
-
*
|
|
1108
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
1109
1109
|
*
|
|
1110
|
-
* With project-
|
|
1110
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
1111
1111
|
*/
|
|
1112
1112
|
path: string;
|
|
1113
1113
|
/**
|
|
@@ -1902,7 +1902,7 @@ export const ResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
1902
1902
|
z.ZodTypeDef,
|
|
1903
1903
|
unknown
|
|
1904
1904
|
> = z.object({
|
|
1905
|
-
_id: z.string().default("
|
|
1905
|
+
_id: z.string().default("tool_01KS0ARZ2DAPXRQRCC815586XE"),
|
|
1906
1906
|
path: z.string(),
|
|
1907
1907
|
key: z.string(),
|
|
1908
1908
|
display_name: z.string().optional(),
|
|
@@ -1999,7 +1999,7 @@ export const ResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
1999
1999
|
z.ZodTypeDef,
|
|
2000
2000
|
unknown
|
|
2001
2001
|
> = z.object({
|
|
2002
|
-
id: z.string().default("
|
|
2002
|
+
id: z.string().default("01KS0ARZ2DAVTYEPTSEJ785GN0"),
|
|
2003
2003
|
name: z.string(),
|
|
2004
2004
|
description: z.string().optional(),
|
|
2005
2005
|
schema: z.lazy(() => CreateToolResponseBodySchema$inboundSchema),
|
|
@@ -2055,7 +2055,7 @@ export const ResponseBodyMCPTool$inboundSchema: z.ZodType<
|
|
|
2055
2055
|
z.ZodTypeDef,
|
|
2056
2056
|
unknown
|
|
2057
2057
|
> = z.object({
|
|
2058
|
-
_id: z.string().default("
|
|
2058
|
+
_id: z.string().default("tool_01KS0ARZ2CKNJ0GJHDDMAJYG3B"),
|
|
2059
2059
|
path: z.string(),
|
|
2060
2060
|
key: z.string(),
|
|
2061
2061
|
display_name: z.string().optional(),
|
|
@@ -2241,7 +2241,7 @@ export const ResponseBodyHTTPTool$inboundSchema: z.ZodType<
|
|
|
2241
2241
|
z.ZodTypeDef,
|
|
2242
2242
|
unknown
|
|
2243
2243
|
> = z.object({
|
|
2244
|
-
_id: z.string().default("
|
|
2244
|
+
_id: z.string().default("tool_01KS0ARZ2BVZ3QDP5ZVAP7N2XM"),
|
|
2245
2245
|
path: z.string(),
|
|
2246
2246
|
key: z.string(),
|
|
2247
2247
|
display_name: z.string().optional(),
|
|
@@ -2334,7 +2334,7 @@ export const ResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
2334
2334
|
z.ZodTypeDef,
|
|
2335
2335
|
unknown
|
|
2336
2336
|
> = z.object({
|
|
2337
|
-
_id: z.string().default("
|
|
2337
|
+
_id: z.string().default("tool_01KS0ARZ2A42H1AE2NFCPM523Z"),
|
|
2338
2338
|
path: z.string(),
|
|
2339
2339
|
key: z.string(),
|
|
2340
2340
|
display_name: z.string().optional(),
|
|
@@ -2435,7 +2435,7 @@ export const ResponseBodyFunctionTool$inboundSchema: z.ZodType<
|
|
|
2435
2435
|
z.ZodTypeDef,
|
|
2436
2436
|
unknown
|
|
2437
2437
|
> = z.object({
|
|
2438
|
-
_id: z.string().default("
|
|
2438
|
+
_id: z.string().default("tool_01KS0ARZ291QY31RZ8G423KJ2V"),
|
|
2439
2439
|
path: z.string(),
|
|
2440
2440
|
key: z.string(),
|
|
2441
2441
|
display_name: z.string().optional(),
|
|
@@ -104,13 +104,13 @@ export type DataCodeTool = {
|
|
|
104
104
|
export type DataCodeExecutionTool = {
|
|
105
105
|
id: string;
|
|
106
106
|
/**
|
|
107
|
-
* Entity storage path
|
|
107
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
108
108
|
*
|
|
109
109
|
* @remarks
|
|
110
110
|
*
|
|
111
|
-
*
|
|
111
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
112
112
|
*
|
|
113
|
-
* With project-
|
|
113
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
114
114
|
*/
|
|
115
115
|
path: string;
|
|
116
116
|
/**
|
|
@@ -228,13 +228,13 @@ export type DataMcp = {
|
|
|
228
228
|
export type DataMCPTool = {
|
|
229
229
|
id: string;
|
|
230
230
|
/**
|
|
231
|
-
* Entity storage path
|
|
231
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
232
232
|
*
|
|
233
233
|
* @remarks
|
|
234
234
|
*
|
|
235
|
-
*
|
|
235
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
236
236
|
*
|
|
237
|
-
* With project-
|
|
237
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
238
238
|
*/
|
|
239
239
|
path: string;
|
|
240
240
|
/**
|
|
@@ -385,13 +385,13 @@ export type GetAllToolsDataHttp = {
|
|
|
385
385
|
export type DataHTTPTool = {
|
|
386
386
|
id: string;
|
|
387
387
|
/**
|
|
388
|
-
* Entity storage path
|
|
388
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
389
389
|
*
|
|
390
390
|
* @remarks
|
|
391
391
|
*
|
|
392
|
-
*
|
|
392
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
393
393
|
*
|
|
394
|
-
* With project-
|
|
394
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
395
395
|
*/
|
|
396
396
|
path: string;
|
|
397
397
|
/**
|
|
@@ -484,13 +484,13 @@ export type DataJsonSchema = {
|
|
|
484
484
|
export type DataJSONSchemaTool = {
|
|
485
485
|
id: string;
|
|
486
486
|
/**
|
|
487
|
-
* Entity storage path
|
|
487
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
488
488
|
*
|
|
489
489
|
* @remarks
|
|
490
490
|
*
|
|
491
|
-
*
|
|
491
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
492
492
|
*
|
|
493
|
-
* With project-
|
|
493
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
494
494
|
*/
|
|
495
495
|
path: string;
|
|
496
496
|
/**
|
|
@@ -597,13 +597,13 @@ export type GetAllToolsDataFunction = {
|
|
|
597
597
|
export type DataFunctionTool = {
|
|
598
598
|
id: string;
|
|
599
599
|
/**
|
|
600
|
-
* Entity storage path
|
|
600
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
601
601
|
*
|
|
602
602
|
* @remarks
|
|
603
603
|
*
|
|
604
|
-
*
|
|
604
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
605
605
|
*
|
|
606
|
-
* With project-
|
|
606
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
607
607
|
*/
|
|
608
608
|
path: string;
|
|
609
609
|
/**
|
|
@@ -767,7 +767,7 @@ export const DataCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
767
767
|
z.ZodTypeDef,
|
|
768
768
|
unknown
|
|
769
769
|
> = z.object({
|
|
770
|
-
_id: z.string().default("
|
|
770
|
+
_id: z.string().default("tool_01KS0ARZ21RDT8C35AS071PKCX"),
|
|
771
771
|
path: z.string(),
|
|
772
772
|
key: z.string(),
|
|
773
773
|
display_name: z.string().optional(),
|
|
@@ -864,7 +864,7 @@ export const DataTools$inboundSchema: z.ZodType<
|
|
|
864
864
|
z.ZodTypeDef,
|
|
865
865
|
unknown
|
|
866
866
|
> = z.object({
|
|
867
|
-
id: z.string().default("
|
|
867
|
+
id: z.string().default("01KS0ARZ20PEK9C7KP7BC5F2A5"),
|
|
868
868
|
name: z.string(),
|
|
869
869
|
description: z.string().optional(),
|
|
870
870
|
schema: z.lazy(() => GetAllToolsDataSchema$inboundSchema),
|
|
@@ -917,7 +917,7 @@ export const DataMCPTool$inboundSchema: z.ZodType<
|
|
|
917
917
|
z.ZodTypeDef,
|
|
918
918
|
unknown
|
|
919
919
|
> = z.object({
|
|
920
|
-
_id: z.string().default("
|
|
920
|
+
_id: z.string().default("tool_01KS0ARZ1YN8X1CT1G2P7DVYYY"),
|
|
921
921
|
path: z.string(),
|
|
922
922
|
key: z.string(),
|
|
923
923
|
display_name: z.string().optional(),
|
|
@@ -1102,7 +1102,7 @@ export const DataHTTPTool$inboundSchema: z.ZodType<
|
|
|
1102
1102
|
z.ZodTypeDef,
|
|
1103
1103
|
unknown
|
|
1104
1104
|
> = z.object({
|
|
1105
|
-
_id: z.string().default("
|
|
1105
|
+
_id: z.string().default("tool_01KS0ARZ1WC8CH483GXN18K26W"),
|
|
1106
1106
|
path: z.string(),
|
|
1107
1107
|
key: z.string(),
|
|
1108
1108
|
display_name: z.string().optional(),
|
|
@@ -1195,7 +1195,7 @@ export const DataJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
1195
1195
|
z.ZodTypeDef,
|
|
1196
1196
|
unknown
|
|
1197
1197
|
> = z.object({
|
|
1198
|
-
_id: z.string().default("
|
|
1198
|
+
_id: z.string().default("tool_01KS0ARZ1T3SZVADZHPT4Q3WZC"),
|
|
1199
1199
|
path: z.string(),
|
|
1200
1200
|
key: z.string(),
|
|
1201
1201
|
display_name: z.string().optional(),
|
|
@@ -1297,7 +1297,7 @@ export const DataFunctionTool$inboundSchema: z.ZodType<
|
|
|
1297
1297
|
z.ZodTypeDef,
|
|
1298
1298
|
unknown
|
|
1299
1299
|
> = z.object({
|
|
1300
|
-
_id: z.string().default("
|
|
1300
|
+
_id: z.string().default("tool_01KS0ARZ1JXRZVPTGDYD41B4XE"),
|
|
1301
1301
|
path: z.string(),
|
|
1302
1302
|
key: z.string(),
|
|
1303
1303
|
display_name: z.string().optional(),
|
|
@@ -748,7 +748,6 @@ export type GetEvalsLlm2 = {
|
|
|
748
748
|
prompt: string;
|
|
749
749
|
categories?: Array<string> | undefined;
|
|
750
750
|
categoricalLabels?: Array<GetEvalsLLMEvalsCategoricalLabels> | undefined;
|
|
751
|
-
datasetId?: string | undefined;
|
|
752
751
|
key: string;
|
|
753
752
|
mode: "jury";
|
|
754
753
|
jury: GetEvalsLLMJury;
|
|
@@ -825,7 +824,6 @@ export type GetEvalsLlm1 = {
|
|
|
825
824
|
prompt: string;
|
|
826
825
|
categories?: Array<string> | undefined;
|
|
827
826
|
categoricalLabels?: Array<GetEvalsLLMCategoricalLabels> | undefined;
|
|
828
|
-
datasetId?: string | undefined;
|
|
829
827
|
key: string;
|
|
830
828
|
mode: "single";
|
|
831
829
|
model: string;
|
|
@@ -1042,8 +1040,8 @@ export const DataTypescript$inboundSchema: z.ZodType<
|
|
|
1042
1040
|
> = z.object({
|
|
1043
1041
|
_id: z.string(),
|
|
1044
1042
|
description: z.string(),
|
|
1045
|
-
created: z.string().default("2026-05-
|
|
1046
|
-
updated: z.string().default("2026-05-
|
|
1043
|
+
created: z.string().default("2026-05-19T14:38:14.326Z"),
|
|
1044
|
+
updated: z.string().default("2026-05-19T14:38:14.326Z"),
|
|
1047
1045
|
guardrail_config: z.nullable(
|
|
1048
1046
|
z.union([
|
|
1049
1047
|
z.lazy(() =>
|
|
@@ -1222,8 +1220,8 @@ export const DataRagas$inboundSchema: z.ZodType<
|
|
|
1222
1220
|
> = z.object({
|
|
1223
1221
|
_id: z.string(),
|
|
1224
1222
|
description: z.string(),
|
|
1225
|
-
created: z.string().default("2026-05-
|
|
1226
|
-
updated: z.string().default("2026-05-
|
|
1223
|
+
created: z.string().default("2026-05-19T14:38:14.326Z"),
|
|
1224
|
+
updated: z.string().default("2026-05-19T14:38:14.326Z"),
|
|
1227
1225
|
guardrail_config: z.nullable(
|
|
1228
1226
|
z.union([
|
|
1229
1227
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -2052,8 +2050,8 @@ export const DataFunction$inboundSchema: z.ZodType<
|
|
|
2052
2050
|
> = z.object({
|
|
2053
2051
|
_id: z.string(),
|
|
2054
2052
|
description: z.string(),
|
|
2055
|
-
created: z.string().default("2026-05-
|
|
2056
|
-
updated: z.string().default("2026-05-
|
|
2053
|
+
created: z.string().default("2026-05-19T14:38:14.326Z"),
|
|
2054
|
+
updated: z.string().default("2026-05-19T14:38:14.326Z"),
|
|
2057
2055
|
guardrail_config: z.nullable(
|
|
2058
2056
|
z.union([
|
|
2059
2057
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
@@ -2234,8 +2232,8 @@ export const DataPython$inboundSchema: z.ZodType<
|
|
|
2234
2232
|
> = z.object({
|
|
2235
2233
|
_id: z.string(),
|
|
2236
2234
|
description: z.string(),
|
|
2237
|
-
created: z.string().default("2026-05-
|
|
2238
|
-
updated: z.string().default("2026-05-
|
|
2235
|
+
created: z.string().default("2026-05-19T14:38:14.326Z"),
|
|
2236
|
+
updated: z.string().default("2026-05-19T14:38:14.326Z"),
|
|
2239
2237
|
guardrail_config: z.nullable(
|
|
2240
2238
|
z.union([
|
|
2241
2239
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
@@ -2412,8 +2410,8 @@ export const DataHTTP$inboundSchema: z.ZodType<
|
|
|
2412
2410
|
> = z.object({
|
|
2413
2411
|
_id: z.string(),
|
|
2414
2412
|
description: z.string(),
|
|
2415
|
-
created: z.string().default("2026-05-
|
|
2416
|
-
updated: z.string().default("2026-05-
|
|
2413
|
+
created: z.string().default("2026-05-19T14:38:14.326Z"),
|
|
2414
|
+
updated: z.string().default("2026-05-19T14:38:14.326Z"),
|
|
2417
2415
|
guardrail_config: z.nullable(
|
|
2418
2416
|
z.union([
|
|
2419
2417
|
z.lazy(() =>
|
|
@@ -2602,8 +2600,8 @@ export const DataJSON$inboundSchema: z.ZodType<
|
|
|
2602
2600
|
> = z.object({
|
|
2603
2601
|
_id: z.string(),
|
|
2604
2602
|
description: z.string(),
|
|
2605
|
-
created: z.string().default("2026-05-
|
|
2606
|
-
updated: z.string().default("2026-05-
|
|
2603
|
+
created: z.string().default("2026-05-19T14:38:14.326Z"),
|
|
2604
|
+
updated: z.string().default("2026-05-19T14:38:14.326Z"),
|
|
2607
2605
|
guardrail_config: z.nullable(
|
|
2608
2606
|
z.union([
|
|
2609
2607
|
z.lazy(() =>
|
|
@@ -2968,8 +2966,8 @@ export const GetEvalsLlm2$inboundSchema: z.ZodType<
|
|
|
2968
2966
|
> = z.object({
|
|
2969
2967
|
_id: z.string(),
|
|
2970
2968
|
description: z.string(),
|
|
2971
|
-
created: z.string().default("2026-05-
|
|
2972
|
-
updated: z.string().default("2026-05-
|
|
2969
|
+
created: z.string().default("2026-05-19T14:38:14.326Z"),
|
|
2970
|
+
updated: z.string().default("2026-05-19T14:38:14.326Z"),
|
|
2973
2971
|
guardrail_config: z.nullable(
|
|
2974
2972
|
z.union([
|
|
2975
2973
|
z.lazy(() =>
|
|
@@ -2990,7 +2988,6 @@ export const GetEvalsLlm2$inboundSchema: z.ZodType<
|
|
|
2990
2988
|
categorical_labels: z.array(
|
|
2991
2989
|
z.lazy(() => GetEvalsLLMEvalsCategoricalLabels$inboundSchema),
|
|
2992
2990
|
).optional(),
|
|
2993
|
-
dataset_id: z.string().optional(),
|
|
2994
2991
|
key: z.string(),
|
|
2995
2992
|
mode: z.literal("jury"),
|
|
2996
2993
|
jury: z.lazy(() => GetEvalsLLMJury$inboundSchema),
|
|
@@ -2999,7 +2996,6 @@ export const GetEvalsLlm2$inboundSchema: z.ZodType<
|
|
|
2999
2996
|
"_id": "id",
|
|
3000
2997
|
"guardrail_config": "guardrailConfig",
|
|
3001
2998
|
"categorical_labels": "categoricalLabels",
|
|
3002
|
-
"dataset_id": "datasetId",
|
|
3003
2999
|
});
|
|
3004
3000
|
});
|
|
3005
3001
|
|
|
@@ -3179,8 +3175,8 @@ export const GetEvalsLlm1$inboundSchema: z.ZodType<
|
|
|
3179
3175
|
> = z.object({
|
|
3180
3176
|
_id: z.string(),
|
|
3181
3177
|
description: z.string(),
|
|
3182
|
-
created: z.string().default("2026-05-
|
|
3183
|
-
updated: z.string().default("2026-05-
|
|
3178
|
+
created: z.string().default("2026-05-19T14:38:14.326Z"),
|
|
3179
|
+
updated: z.string().default("2026-05-19T14:38:14.326Z"),
|
|
3184
3180
|
guardrail_config: z.nullable(
|
|
3185
3181
|
z.union([
|
|
3186
3182
|
z.lazy(() =>
|
|
@@ -3201,7 +3197,6 @@ export const GetEvalsLlm1$inboundSchema: z.ZodType<
|
|
|
3201
3197
|
categorical_labels: z.array(
|
|
3202
3198
|
z.lazy(() => GetEvalsLLMCategoricalLabels$inboundSchema),
|
|
3203
3199
|
).optional(),
|
|
3204
|
-
dataset_id: z.string().optional(),
|
|
3205
3200
|
key: z.string(),
|
|
3206
3201
|
mode: z.literal("single"),
|
|
3207
3202
|
model: z.string(),
|
|
@@ -3210,7 +3205,6 @@ export const GetEvalsLlm1$inboundSchema: z.ZodType<
|
|
|
3210
3205
|
"_id": "id",
|
|
3211
3206
|
"guardrail_config": "guardrailConfig",
|
|
3212
3207
|
"categorical_labels": "categoricalLabels",
|
|
3213
|
-
"dataset_id": "datasetId",
|
|
3214
3208
|
});
|
|
3215
3209
|
});
|
|
3216
3210
|
|
|
@@ -112,13 +112,13 @@ export type GetOneKnowledgeResponseBody2 = {
|
|
|
112
112
|
*/
|
|
113
113
|
domainId: string;
|
|
114
114
|
/**
|
|
115
|
-
* Entity storage path
|
|
115
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
116
116
|
*
|
|
117
117
|
* @remarks
|
|
118
118
|
*
|
|
119
|
-
*
|
|
119
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
120
120
|
*
|
|
121
|
-
* With project-
|
|
121
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
122
122
|
*/
|
|
123
123
|
path?: string | undefined;
|
|
124
124
|
createdById?: string | null | undefined;
|
|
@@ -238,13 +238,13 @@ export type GetOneKnowledgeResponseBody1 = {
|
|
|
238
238
|
*/
|
|
239
239
|
domainId: string;
|
|
240
240
|
/**
|
|
241
|
-
* Entity storage path
|
|
241
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
242
242
|
*
|
|
243
243
|
* @remarks
|
|
244
244
|
*
|
|
245
|
-
*
|
|
245
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
246
246
|
*
|
|
247
|
-
* With project-
|
|
247
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
248
248
|
*/
|
|
249
249
|
path?: string | undefined;
|
|
250
250
|
createdById?: string | null | undefined;
|