@orq-ai/node 4.1.11 → 4.1.14
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 +220 -220
- package/bin/mcp-server.js.map +39 -39
- package/examples/package-lock.json +2 -2
- 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/conversationresponse.js +2 -2
- package/models/components/partdoneevent.js +2 -2
- package/models/components/reasoningpart.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createconversation.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +8 -8
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +28 -28
- package/models/operations/createtool.js +12 -12
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/generateconversationname.js +2 -2
- package/models/operations/getalltools.js +12 -12
- package/models/operations/getevals.js +28 -28
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +8 -8
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrieveconversation.js +2 -2
- package/models/operations/retrievedatapoint.js +8 -8
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrievetool.js +12 -12
- package/models/operations/runagent.js +2 -2
- package/models/operations/streamrunagent.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updateconversation.js +2 -2
- package/models/operations/updatedatapoint.js +8 -8
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +28 -28
- package/models/operations/updatetool.js +14 -14
- package/package.json +2 -2
- package/packages/orq-rc/examples/feedbackCreate.example.ts +32 -0
- package/packages/orq-rc/examples/package-lock.json +2 -2
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +6 -6
- package/packages/orq-rc/package.json +2 -2
- package/packages/orq-rc/src/funcs/contactsCreate.ts +2 -0
- package/packages/orq-rc/src/funcs/contactsDelete.ts +2 -0
- package/packages/orq-rc/src/funcs/contactsList.ts +2 -0
- package/packages/orq-rc/src/funcs/contactsRetrieve.ts +2 -0
- package/packages/orq-rc/src/funcs/contactsUpdate.ts +2 -0
- package/packages/orq-rc/src/funcs/identitiesCreate.ts +165 -0
- package/packages/orq-rc/src/funcs/identitiesDelete.ts +176 -0
- package/packages/orq-rc/src/funcs/identitiesList.ts +170 -0
- package/packages/orq-rc/src/funcs/identitiesRetrieve.ts +175 -0
- package/packages/orq-rc/src/funcs/identitiesUpdate.ts +176 -0
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +11 -1
- package/packages/orq-rc/src/mcp-server/tools/identitiesCreate.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/identitiesDelete.ts +35 -0
- package/packages/orq-rc/src/mcp-server/tools/identitiesList.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/identitiesRetrieve.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/identitiesUpdate.ts +37 -0
- package/packages/orq-rc/src/models/components/conversationresponse.ts +2 -2
- package/packages/orq-rc/src/models/components/conversationwithmessagesresponse.ts +2 -2
- package/packages/orq-rc/src/models/components/partdoneevent.ts +2 -2
- package/packages/orq-rc/src/models/components/reasoningpart.ts +2 -2
- package/packages/orq-rc/src/models/errors/deleteidentity.ts +78 -0
- package/packages/orq-rc/src/models/errors/index.ts +3 -0
- package/packages/orq-rc/src/models/errors/retrieveidentity.ts +78 -0
- package/packages/orq-rc/src/models/errors/updateidentity.ts +70 -0
- package/packages/orq-rc/src/models/operations/createagentrequest.ts +132 -15
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/createconversation.ts +2 -2
- package/packages/orq-rc/src/models/operations/createconversationresponse.ts +4 -4
- package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +8 -8
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/createidentity.ts +237 -0
- package/packages/orq-rc/src/models/operations/createtool.ts +33 -29
- package/packages/orq-rc/src/models/operations/deleteidentity.ts +54 -0
- package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
- package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
- package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
- package/packages/orq-rc/src/models/operations/generateconversationname.ts +2 -2
- package/packages/orq-rc/src/models/operations/getalltools.ts +12 -12
- package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
- package/packages/orq-rc/src/models/operations/index.ts +5 -0
- package/packages/orq-rc/src/models/operations/listcontacts.ts +24 -20
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
- package/packages/orq-rc/src/models/operations/listidentities.ts +432 -0
- package/packages/orq-rc/src/models/operations/remoteconfigsgetconfig.ts +9 -0
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +8 -8
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrieveidentity.ts +180 -0
- package/packages/orq-rc/src/models/operations/retrievetool.ts +12 -12
- package/packages/orq-rc/src/models/operations/runagent.ts +280 -36
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +323 -46
- package/packages/orq-rc/src/models/operations/updateagent.ts +138 -15
- package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateconversation.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +8 -8
- package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/updateidentity.ts +281 -0
- package/packages/orq-rc/src/models/operations/updatetool.ts +14 -14
- package/packages/orq-rc/src/sdk/contacts.ts +10 -0
- package/packages/orq-rc/src/sdk/identities.ts +99 -0
- package/packages/orq-rc/src/sdk/sdk.ts +6 -0
- 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/conversationresponse.ts +2 -2
- package/src/models/components/partdoneevent.ts +2 -2
- package/src/models/components/reasoningpart.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createconversation.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +8 -8
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +28 -28
- package/src/models/operations/createtool.ts +12 -12
- 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/generateconversationname.ts +2 -2
- package/src/models/operations/getalltools.ts +12 -12
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrieveconversation.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +8 -8
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrievetool.ts +12 -12
- package/src/models/operations/runagent.ts +2 -2
- package/src/models/operations/streamrunagent.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updateconversation.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +8 -8
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +28 -28
- package/src/models/operations/updatetool.ts +14 -14
- package/packages/orq-rc/examples/contactsCreate.example.ts +0 -42
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import * as z from "zod/v3";
|
|
6
|
+
import { remap as remap$ } from "../../lib/primitives.js";
|
|
7
|
+
import { safeParse } from "../../lib/schemas.js";
|
|
8
|
+
import { Result as SafeParseResult } from "../../types/fp.js";
|
|
9
|
+
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
10
|
+
|
|
11
|
+
export type RetrieveIdentityRequest = {
|
|
12
|
+
/**
|
|
13
|
+
* Unique identity id or external id
|
|
14
|
+
*/
|
|
15
|
+
id: string;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* Identity details
|
|
20
|
+
*/
|
|
21
|
+
export type RetrieveIdentityResponseBody = {
|
|
22
|
+
/**
|
|
23
|
+
* Unique ULID (Universally Unique Lexicographically Sortable Identifier) for the contact
|
|
24
|
+
*/
|
|
25
|
+
id: string;
|
|
26
|
+
/**
|
|
27
|
+
* Unique string value to identify the contact user in the customer's system. This should be the same ID you use in your system to reference this user.
|
|
28
|
+
*/
|
|
29
|
+
externalId: string;
|
|
30
|
+
/**
|
|
31
|
+
* Display name or nickname of the contact user. This is typically shown in user interfaces.
|
|
32
|
+
*/
|
|
33
|
+
displayName?: string | null | undefined;
|
|
34
|
+
/**
|
|
35
|
+
* Email address of the contact user
|
|
36
|
+
*/
|
|
37
|
+
email?: string | null | undefined;
|
|
38
|
+
/**
|
|
39
|
+
* URL linking to the contact user's avatar image
|
|
40
|
+
*/
|
|
41
|
+
avatarUrl?: string | null | undefined;
|
|
42
|
+
/**
|
|
43
|
+
* Array of tags associated with the contact. Useful for organizing and filtering contacts by categories, departments, or custom classifications.
|
|
44
|
+
*/
|
|
45
|
+
tags?: Array<string> | undefined;
|
|
46
|
+
/**
|
|
47
|
+
* Additional custom metadata associated with the contact as key-value pairs. Use this to store any extra information specific to your application.
|
|
48
|
+
*/
|
|
49
|
+
metadata?: { [k: string]: any } | undefined;
|
|
50
|
+
/**
|
|
51
|
+
* The date and time the resource was created
|
|
52
|
+
*/
|
|
53
|
+
created?: Date | undefined;
|
|
54
|
+
/**
|
|
55
|
+
* The date and time the resource was last updated
|
|
56
|
+
*/
|
|
57
|
+
updated?: Date | undefined;
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
/** @internal */
|
|
61
|
+
export const RetrieveIdentityRequest$inboundSchema: z.ZodType<
|
|
62
|
+
RetrieveIdentityRequest,
|
|
63
|
+
z.ZodTypeDef,
|
|
64
|
+
unknown
|
|
65
|
+
> = z.object({
|
|
66
|
+
id: z.string(),
|
|
67
|
+
});
|
|
68
|
+
/** @internal */
|
|
69
|
+
export type RetrieveIdentityRequest$Outbound = {
|
|
70
|
+
id: string;
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
/** @internal */
|
|
74
|
+
export const RetrieveIdentityRequest$outboundSchema: z.ZodType<
|
|
75
|
+
RetrieveIdentityRequest$Outbound,
|
|
76
|
+
z.ZodTypeDef,
|
|
77
|
+
RetrieveIdentityRequest
|
|
78
|
+
> = z.object({
|
|
79
|
+
id: z.string(),
|
|
80
|
+
});
|
|
81
|
+
|
|
82
|
+
export function retrieveIdentityRequestToJSON(
|
|
83
|
+
retrieveIdentityRequest: RetrieveIdentityRequest,
|
|
84
|
+
): string {
|
|
85
|
+
return JSON.stringify(
|
|
86
|
+
RetrieveIdentityRequest$outboundSchema.parse(retrieveIdentityRequest),
|
|
87
|
+
);
|
|
88
|
+
}
|
|
89
|
+
export function retrieveIdentityRequestFromJSON(
|
|
90
|
+
jsonString: string,
|
|
91
|
+
): SafeParseResult<RetrieveIdentityRequest, SDKValidationError> {
|
|
92
|
+
return safeParse(
|
|
93
|
+
jsonString,
|
|
94
|
+
(x) => RetrieveIdentityRequest$inboundSchema.parse(JSON.parse(x)),
|
|
95
|
+
`Failed to parse 'RetrieveIdentityRequest' from JSON`,
|
|
96
|
+
);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
/** @internal */
|
|
100
|
+
export const RetrieveIdentityResponseBody$inboundSchema: z.ZodType<
|
|
101
|
+
RetrieveIdentityResponseBody,
|
|
102
|
+
z.ZodTypeDef,
|
|
103
|
+
unknown
|
|
104
|
+
> = z.object({
|
|
105
|
+
_id: z.string(),
|
|
106
|
+
external_id: z.string(),
|
|
107
|
+
display_name: z.nullable(z.string()).optional(),
|
|
108
|
+
email: z.nullable(z.string()).optional(),
|
|
109
|
+
avatar_url: z.nullable(z.string()).optional(),
|
|
110
|
+
tags: z.array(z.string()).optional(),
|
|
111
|
+
metadata: z.record(z.any()).optional(),
|
|
112
|
+
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
113
|
+
.optional(),
|
|
114
|
+
updated: z.string().datetime({ offset: true }).default(
|
|
115
|
+
"2026-01-19T13:14:11.941Z",
|
|
116
|
+
).transform(v => new Date(v)),
|
|
117
|
+
}).transform((v) => {
|
|
118
|
+
return remap$(v, {
|
|
119
|
+
"_id": "id",
|
|
120
|
+
"external_id": "externalId",
|
|
121
|
+
"display_name": "displayName",
|
|
122
|
+
"avatar_url": "avatarUrl",
|
|
123
|
+
});
|
|
124
|
+
});
|
|
125
|
+
/** @internal */
|
|
126
|
+
export type RetrieveIdentityResponseBody$Outbound = {
|
|
127
|
+
_id: string;
|
|
128
|
+
external_id: string;
|
|
129
|
+
display_name?: string | null | undefined;
|
|
130
|
+
email?: string | null | undefined;
|
|
131
|
+
avatar_url?: string | null | undefined;
|
|
132
|
+
tags?: Array<string> | undefined;
|
|
133
|
+
metadata?: { [k: string]: any } | undefined;
|
|
134
|
+
created?: string | undefined;
|
|
135
|
+
updated: string;
|
|
136
|
+
};
|
|
137
|
+
|
|
138
|
+
/** @internal */
|
|
139
|
+
export const RetrieveIdentityResponseBody$outboundSchema: z.ZodType<
|
|
140
|
+
RetrieveIdentityResponseBody$Outbound,
|
|
141
|
+
z.ZodTypeDef,
|
|
142
|
+
RetrieveIdentityResponseBody
|
|
143
|
+
> = z.object({
|
|
144
|
+
id: z.string(),
|
|
145
|
+
externalId: z.string(),
|
|
146
|
+
displayName: z.nullable(z.string()).optional(),
|
|
147
|
+
email: z.nullable(z.string()).optional(),
|
|
148
|
+
avatarUrl: z.nullable(z.string()).optional(),
|
|
149
|
+
tags: z.array(z.string()).optional(),
|
|
150
|
+
metadata: z.record(z.any()).optional(),
|
|
151
|
+
created: z.date().transform(v => v.toISOString()).optional(),
|
|
152
|
+
updated: z.date().default(() => new Date("2026-01-19T13:14:11.941Z"))
|
|
153
|
+
.transform(v => v.toISOString()),
|
|
154
|
+
}).transform((v) => {
|
|
155
|
+
return remap$(v, {
|
|
156
|
+
id: "_id",
|
|
157
|
+
externalId: "external_id",
|
|
158
|
+
displayName: "display_name",
|
|
159
|
+
avatarUrl: "avatar_url",
|
|
160
|
+
});
|
|
161
|
+
});
|
|
162
|
+
|
|
163
|
+
export function retrieveIdentityResponseBodyToJSON(
|
|
164
|
+
retrieveIdentityResponseBody: RetrieveIdentityResponseBody,
|
|
165
|
+
): string {
|
|
166
|
+
return JSON.stringify(
|
|
167
|
+
RetrieveIdentityResponseBody$outboundSchema.parse(
|
|
168
|
+
retrieveIdentityResponseBody,
|
|
169
|
+
),
|
|
170
|
+
);
|
|
171
|
+
}
|
|
172
|
+
export function retrieveIdentityResponseBodyFromJSON(
|
|
173
|
+
jsonString: string,
|
|
174
|
+
): SafeParseResult<RetrieveIdentityResponseBody, SDKValidationError> {
|
|
175
|
+
return safeParse(
|
|
176
|
+
jsonString,
|
|
177
|
+
(x) => RetrieveIdentityResponseBody$inboundSchema.parse(JSON.parse(x)),
|
|
178
|
+
`Failed to parse 'RetrieveIdentityResponseBody' from JSON`,
|
|
179
|
+
);
|
|
180
|
+
}
|
|
@@ -858,7 +858,7 @@ export const RetrieveToolResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
858
858
|
z.ZodTypeDef,
|
|
859
859
|
unknown
|
|
860
860
|
> = z.object({
|
|
861
|
-
_id: z.string().default("
|
|
861
|
+
_id: z.string().default("tool_01KFB68V04KPQT8S2QBE9G3F6P"),
|
|
862
862
|
path: z.string(),
|
|
863
863
|
key: z.string(),
|
|
864
864
|
display_name: z.string().optional(),
|
|
@@ -913,7 +913,7 @@ export const RetrieveToolResponseBodyCodeExecutionTool$outboundSchema:
|
|
|
913
913
|
z.ZodTypeDef,
|
|
914
914
|
RetrieveToolResponseBodyCodeExecutionTool
|
|
915
915
|
> = z.object({
|
|
916
|
-
id: z.string().default("
|
|
916
|
+
id: z.string().default("tool_01KFB68V04KPQT8S2QBE9G3F6P"),
|
|
917
917
|
path: z.string(),
|
|
918
918
|
key: z.string(),
|
|
919
919
|
displayName: z.string().optional(),
|
|
@@ -1092,7 +1092,7 @@ export const RetrieveToolResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
1092
1092
|
z.ZodTypeDef,
|
|
1093
1093
|
unknown
|
|
1094
1094
|
> = z.object({
|
|
1095
|
-
id: z.string().default("
|
|
1095
|
+
id: z.string().default("01KFB68V03R0ERZ5J5VSM6N59Y"),
|
|
1096
1096
|
name: z.string(),
|
|
1097
1097
|
description: z.string().optional(),
|
|
1098
1098
|
schema: z.lazy(() => RetrieveToolResponseBodyToolsSchema$inboundSchema),
|
|
@@ -1111,7 +1111,7 @@ export const RetrieveToolResponseBodyTools$outboundSchema: z.ZodType<
|
|
|
1111
1111
|
z.ZodTypeDef,
|
|
1112
1112
|
RetrieveToolResponseBodyTools
|
|
1113
1113
|
> = z.object({
|
|
1114
|
-
id: z.string().default("
|
|
1114
|
+
id: z.string().default("01KFB68V03R0ERZ5J5VSM6N59Y"),
|
|
1115
1115
|
name: z.string(),
|
|
1116
1116
|
description: z.string().optional(),
|
|
1117
1117
|
schema: z.lazy(() => RetrieveToolResponseBodyToolsSchema$outboundSchema),
|
|
@@ -1217,7 +1217,7 @@ export const RetrieveToolResponseBodyMCPTool$inboundSchema: z.ZodType<
|
|
|
1217
1217
|
z.ZodTypeDef,
|
|
1218
1218
|
unknown
|
|
1219
1219
|
> = z.object({
|
|
1220
|
-
_id: z.string().default("
|
|
1220
|
+
_id: z.string().default("tool_01KFB68TZY77MRJKBY0YP4W1YW"),
|
|
1221
1221
|
path: z.string(),
|
|
1222
1222
|
key: z.string(),
|
|
1223
1223
|
display_name: z.string().optional(),
|
|
@@ -1270,7 +1270,7 @@ export const RetrieveToolResponseBodyMCPTool$outboundSchema: z.ZodType<
|
|
|
1270
1270
|
z.ZodTypeDef,
|
|
1271
1271
|
RetrieveToolResponseBodyMCPTool
|
|
1272
1272
|
> = z.object({
|
|
1273
|
-
id: z.string().default("
|
|
1273
|
+
id: z.string().default("tool_01KFB68TZY77MRJKBY0YP4W1YW"),
|
|
1274
1274
|
path: z.string(),
|
|
1275
1275
|
key: z.string(),
|
|
1276
1276
|
displayName: z.string().optional(),
|
|
@@ -1641,7 +1641,7 @@ export const RetrieveToolResponseBodyHTTPTool$inboundSchema: z.ZodType<
|
|
|
1641
1641
|
z.ZodTypeDef,
|
|
1642
1642
|
unknown
|
|
1643
1643
|
> = z.object({
|
|
1644
|
-
_id: z.string().default("
|
|
1644
|
+
_id: z.string().default("tool_01KFB68TZQ65A6768V26YPHEYM"),
|
|
1645
1645
|
path: z.string(),
|
|
1646
1646
|
key: z.string(),
|
|
1647
1647
|
display_name: z.string().optional(),
|
|
@@ -1694,7 +1694,7 @@ export const RetrieveToolResponseBodyHTTPTool$outboundSchema: z.ZodType<
|
|
|
1694
1694
|
z.ZodTypeDef,
|
|
1695
1695
|
RetrieveToolResponseBodyHTTPTool
|
|
1696
1696
|
> = z.object({
|
|
1697
|
-
id: z.string().default("
|
|
1697
|
+
id: z.string().default("tool_01KFB68TZQ65A6768V26YPHEYM"),
|
|
1698
1698
|
path: z.string(),
|
|
1699
1699
|
key: z.string(),
|
|
1700
1700
|
displayName: z.string().optional(),
|
|
@@ -1868,7 +1868,7 @@ export const RetrieveToolResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
1868
1868
|
z.ZodTypeDef,
|
|
1869
1869
|
unknown
|
|
1870
1870
|
> = z.object({
|
|
1871
|
-
_id: z.string().default("
|
|
1871
|
+
_id: z.string().default("tool_01KFB68TZJ5EKYTE2DD7Q5GAQD"),
|
|
1872
1872
|
path: z.string(),
|
|
1873
1873
|
key: z.string(),
|
|
1874
1874
|
display_name: z.string().optional(),
|
|
@@ -1920,7 +1920,7 @@ export const RetrieveToolResponseBodyJSONSchemaTool$outboundSchema: z.ZodType<
|
|
|
1920
1920
|
z.ZodTypeDef,
|
|
1921
1921
|
RetrieveToolResponseBodyJSONSchemaTool
|
|
1922
1922
|
> = z.object({
|
|
1923
|
-
id: z.string().default("
|
|
1923
|
+
id: z.string().default("tool_01KFB68TZJ5EKYTE2DD7Q5GAQD"),
|
|
1924
1924
|
path: z.string(),
|
|
1925
1925
|
key: z.string(),
|
|
1926
1926
|
displayName: z.string().optional(),
|
|
@@ -2113,7 +2113,7 @@ export const RetrieveToolResponseBodyFunctionTool$inboundSchema: z.ZodType<
|
|
|
2113
2113
|
z.ZodTypeDef,
|
|
2114
2114
|
unknown
|
|
2115
2115
|
> = z.object({
|
|
2116
|
-
_id: z.string().default("
|
|
2116
|
+
_id: z.string().default("tool_01KFB68TZCGJBZZ0FAN9JB79PW"),
|
|
2117
2117
|
path: z.string(),
|
|
2118
2118
|
key: z.string(),
|
|
2119
2119
|
display_name: z.string().optional(),
|
|
@@ -2164,7 +2164,7 @@ export const RetrieveToolResponseBodyFunctionTool$outboundSchema: z.ZodType<
|
|
|
2164
2164
|
z.ZodTypeDef,
|
|
2165
2165
|
RetrieveToolResponseBodyFunctionTool
|
|
2166
2166
|
> = z.object({
|
|
2167
|
-
id: z.string().default("
|
|
2167
|
+
id: z.string().default("tool_01KFB68TZCGJBZZ0FAN9JB79PW"),
|
|
2168
2168
|
path: z.string(),
|
|
2169
2169
|
key: z.string(),
|
|
2170
2170
|
displayName: z.string().optional(),
|