@orq-ai/node 3.14.25 → 3.14.28
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 +302 -300
- package/bin/mcp-server.js.map +41 -41
- package/examples/package-lock.json +1 -1
- 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/operations/createagent.d.ts +11 -11
- package/models/operations/createagent.d.ts.map +1 -1
- package/models/operations/createagent.js +22 -22
- package/models/operations/createagent.js.map +1 -1
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.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 +10 -10
- package/models/operations/duplicatetool.js +10 -10
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getalltools.js +10 -10
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listagenttasks.d.ts +6 -0
- package/models/operations/listagenttasks.d.ts.map +1 -1
- package/models/operations/listagenttasks.js +2 -0
- package/models/operations/listagenttasks.js.map +1 -1
- package/models/operations/listbudgets.js +2 -2
- 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/retrievedatapoint.js +8 -8
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrievetool.js +10 -10
- package/models/operations/runagent.d.ts +11 -11
- package/models/operations/runagent.d.ts.map +1 -1
- package/models/operations/runagent.js +22 -22
- package/models/operations/runagent.js.map +1 -1
- package/models/operations/streamrunagent.d.ts +11 -11
- package/models/operations/streamrunagent.d.ts.map +1 -1
- package/models/operations/streamrunagent.js +22 -22
- package/models/operations/streamrunagent.js.map +1 -1
- package/models/operations/updateagent.d.ts +11 -11
- package/models/operations/updateagent.d.ts.map +1 -1
- package/models/operations/updateagent.js +22 -22
- package/models/operations/updateagent.js.map +1 -1
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.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 +10 -10
- package/package.json +1 -1
- package/packages/orq-rc/examples/package-lock.json +1 -1
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +2 -2
- package/packages/orq-rc/package.json +1 -1
- 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 +1 -1
- package/packages/orq-rc/src/models/operations/createagent.ts +33 -33
- package/packages/orq-rc/src/models/operations/createbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- 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/createtool.ts +10 -10
- package/packages/orq-rc/src/models/operations/duplicatetool.ts +10 -10
- 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/getalltools.ts +10 -10
- package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
- package/packages/orq-rc/src/models/operations/listagenttasks.ts +4 -0
- package/packages/orq-rc/src/models/operations/listbudgets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
- 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/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/retrievetool.ts +10 -10
- package/packages/orq-rc/src/models/operations/runagent.ts +33 -33
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +33 -33
- package/packages/orq-rc/src/models/operations/updateagent.ts +33 -33
- package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatecontact.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/updatetool.ts +10 -10
- 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/operations/createagent.ts +33 -33
- package/src/models/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.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 +10 -10
- package/src/models/operations/duplicatetool.ts +10 -10
- 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/getalltools.ts +10 -10
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listagenttasks.ts +4 -0
- package/src/models/operations/listbudgets.ts +2 -2
- 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/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 +10 -10
- package/src/models/operations/runagent.ts +33 -33
- package/src/models/operations/streamrunagent.ts +33 -33
- package/src/models/operations/updateagent.ts +33 -33
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.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 +10 -10
|
@@ -4867,7 +4867,7 @@ export const StreamRunAgentAgentToolInputRunCurrentDateTool$inboundSchema:
|
|
|
4867
4867
|
> = z.object({
|
|
4868
4868
|
type:
|
|
4869
4869
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$inboundSchema,
|
|
4870
|
-
requires_approval: z.boolean().
|
|
4870
|
+
requires_approval: z.boolean().optional(),
|
|
4871
4871
|
}).transform((v) => {
|
|
4872
4872
|
return remap$(v, {
|
|
4873
4873
|
"requires_approval": "requiresApproval",
|
|
@@ -4876,7 +4876,7 @@ export const StreamRunAgentAgentToolInputRunCurrentDateTool$inboundSchema:
|
|
|
4876
4876
|
/** @internal */
|
|
4877
4877
|
export type StreamRunAgentAgentToolInputRunCurrentDateTool$Outbound = {
|
|
4878
4878
|
type: string;
|
|
4879
|
-
requires_approval
|
|
4879
|
+
requires_approval?: boolean | undefined;
|
|
4880
4880
|
};
|
|
4881
4881
|
|
|
4882
4882
|
/** @internal */
|
|
@@ -4888,7 +4888,7 @@ export const StreamRunAgentAgentToolInputRunCurrentDateTool$outboundSchema:
|
|
|
4888
4888
|
> = z.object({
|
|
4889
4889
|
type:
|
|
4890
4890
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$outboundSchema,
|
|
4891
|
-
requiresApproval: z.boolean().
|
|
4891
|
+
requiresApproval: z.boolean().optional(),
|
|
4892
4892
|
}).transform((v) => {
|
|
4893
4893
|
return remap$(v, {
|
|
4894
4894
|
requiresApproval: "requires_approval",
|
|
@@ -4944,7 +4944,7 @@ export const StreamRunAgentAgentToolInputRunQueryKnowledgeBaseTool$inboundSchema
|
|
|
4944
4944
|
> = z.object({
|
|
4945
4945
|
type:
|
|
4946
4946
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$inboundSchema,
|
|
4947
|
-
requires_approval: z.boolean().
|
|
4947
|
+
requires_approval: z.boolean().optional(),
|
|
4948
4948
|
}).transform((v) => {
|
|
4949
4949
|
return remap$(v, {
|
|
4950
4950
|
"requires_approval": "requiresApproval",
|
|
@@ -4953,7 +4953,7 @@ export const StreamRunAgentAgentToolInputRunQueryKnowledgeBaseTool$inboundSchema
|
|
|
4953
4953
|
/** @internal */
|
|
4954
4954
|
export type StreamRunAgentAgentToolInputRunQueryKnowledgeBaseTool$Outbound = {
|
|
4955
4955
|
type: string;
|
|
4956
|
-
requires_approval
|
|
4956
|
+
requires_approval?: boolean | undefined;
|
|
4957
4957
|
};
|
|
4958
4958
|
|
|
4959
4959
|
/** @internal */
|
|
@@ -4965,7 +4965,7 @@ export const StreamRunAgentAgentToolInputRunQueryKnowledgeBaseTool$outboundSchem
|
|
|
4965
4965
|
> = z.object({
|
|
4966
4966
|
type:
|
|
4967
4967
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$outboundSchema,
|
|
4968
|
-
requiresApproval: z.boolean().
|
|
4968
|
+
requiresApproval: z.boolean().optional(),
|
|
4969
4969
|
}).transform((v) => {
|
|
4970
4970
|
return remap$(v, {
|
|
4971
4971
|
requiresApproval: "requires_approval",
|
|
@@ -5021,7 +5021,7 @@ export const StreamRunAgentAgentToolInputRunRetrieveKnowledgeBasesTool$inboundSc
|
|
|
5021
5021
|
> = z.object({
|
|
5022
5022
|
type:
|
|
5023
5023
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$inboundSchema,
|
|
5024
|
-
requires_approval: z.boolean().
|
|
5024
|
+
requires_approval: z.boolean().optional(),
|
|
5025
5025
|
}).transform((v) => {
|
|
5026
5026
|
return remap$(v, {
|
|
5027
5027
|
"requires_approval": "requiresApproval",
|
|
@@ -5031,7 +5031,7 @@ export const StreamRunAgentAgentToolInputRunRetrieveKnowledgeBasesTool$inboundSc
|
|
|
5031
5031
|
export type StreamRunAgentAgentToolInputRunRetrieveKnowledgeBasesTool$Outbound =
|
|
5032
5032
|
{
|
|
5033
5033
|
type: string;
|
|
5034
|
-
requires_approval
|
|
5034
|
+
requires_approval?: boolean | undefined;
|
|
5035
5035
|
};
|
|
5036
5036
|
|
|
5037
5037
|
/** @internal */
|
|
@@ -5043,7 +5043,7 @@ export const StreamRunAgentAgentToolInputRunRetrieveKnowledgeBasesTool$outboundS
|
|
|
5043
5043
|
> = z.object({
|
|
5044
5044
|
type:
|
|
5045
5045
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$outboundSchema,
|
|
5046
|
-
requiresApproval: z.boolean().
|
|
5046
|
+
requiresApproval: z.boolean().optional(),
|
|
5047
5047
|
}).transform((v) => {
|
|
5048
5048
|
return remap$(v, {
|
|
5049
5049
|
requiresApproval: "requires_approval",
|
|
@@ -5097,7 +5097,7 @@ export const StreamRunAgentAgentToolInputRunDeleteMemoryDocumentTool$inboundSche
|
|
|
5097
5097
|
> = z.object({
|
|
5098
5098
|
type:
|
|
5099
5099
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$inboundSchema,
|
|
5100
|
-
requires_approval: z.boolean().
|
|
5100
|
+
requires_approval: z.boolean().optional(),
|
|
5101
5101
|
}).transform((v) => {
|
|
5102
5102
|
return remap$(v, {
|
|
5103
5103
|
"requires_approval": "requiresApproval",
|
|
@@ -5106,7 +5106,7 @@ export const StreamRunAgentAgentToolInputRunDeleteMemoryDocumentTool$inboundSche
|
|
|
5106
5106
|
/** @internal */
|
|
5107
5107
|
export type StreamRunAgentAgentToolInputRunDeleteMemoryDocumentTool$Outbound = {
|
|
5108
5108
|
type: string;
|
|
5109
|
-
requires_approval
|
|
5109
|
+
requires_approval?: boolean | undefined;
|
|
5110
5110
|
};
|
|
5111
5111
|
|
|
5112
5112
|
/** @internal */
|
|
@@ -5118,7 +5118,7 @@ export const StreamRunAgentAgentToolInputRunDeleteMemoryDocumentTool$outboundSch
|
|
|
5118
5118
|
> = z.object({
|
|
5119
5119
|
type:
|
|
5120
5120
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$outboundSchema,
|
|
5121
|
-
requiresApproval: z.boolean().
|
|
5121
|
+
requiresApproval: z.boolean().optional(),
|
|
5122
5122
|
}).transform((v) => {
|
|
5123
5123
|
return remap$(v, {
|
|
5124
5124
|
requiresApproval: "requires_approval",
|
|
@@ -5172,7 +5172,7 @@ export const StreamRunAgentAgentToolInputRunRetrieveMemoryStoresTool$inboundSche
|
|
|
5172
5172
|
> = z.object({
|
|
5173
5173
|
type:
|
|
5174
5174
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools7Type$inboundSchema,
|
|
5175
|
-
requires_approval: z.boolean().
|
|
5175
|
+
requires_approval: z.boolean().optional(),
|
|
5176
5176
|
}).transform((v) => {
|
|
5177
5177
|
return remap$(v, {
|
|
5178
5178
|
"requires_approval": "requiresApproval",
|
|
@@ -5181,7 +5181,7 @@ export const StreamRunAgentAgentToolInputRunRetrieveMemoryStoresTool$inboundSche
|
|
|
5181
5181
|
/** @internal */
|
|
5182
5182
|
export type StreamRunAgentAgentToolInputRunRetrieveMemoryStoresTool$Outbound = {
|
|
5183
5183
|
type: string;
|
|
5184
|
-
requires_approval
|
|
5184
|
+
requires_approval?: boolean | undefined;
|
|
5185
5185
|
};
|
|
5186
5186
|
|
|
5187
5187
|
/** @internal */
|
|
@@ -5193,7 +5193,7 @@ export const StreamRunAgentAgentToolInputRunRetrieveMemoryStoresTool$outboundSch
|
|
|
5193
5193
|
> = z.object({
|
|
5194
5194
|
type:
|
|
5195
5195
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools7Type$outboundSchema,
|
|
5196
|
-
requiresApproval: z.boolean().
|
|
5196
|
+
requiresApproval: z.boolean().optional(),
|
|
5197
5197
|
}).transform((v) => {
|
|
5198
5198
|
return remap$(v, {
|
|
5199
5199
|
requiresApproval: "requires_approval",
|
|
@@ -5247,7 +5247,7 @@ export const StreamRunAgentAgentToolInputRunWriteMemoryStoreTool$inboundSchema:
|
|
|
5247
5247
|
> = z.object({
|
|
5248
5248
|
type:
|
|
5249
5249
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$inboundSchema,
|
|
5250
|
-
requires_approval: z.boolean().
|
|
5250
|
+
requires_approval: z.boolean().optional(),
|
|
5251
5251
|
}).transform((v) => {
|
|
5252
5252
|
return remap$(v, {
|
|
5253
5253
|
"requires_approval": "requiresApproval",
|
|
@@ -5256,7 +5256,7 @@ export const StreamRunAgentAgentToolInputRunWriteMemoryStoreTool$inboundSchema:
|
|
|
5256
5256
|
/** @internal */
|
|
5257
5257
|
export type StreamRunAgentAgentToolInputRunWriteMemoryStoreTool$Outbound = {
|
|
5258
5258
|
type: string;
|
|
5259
|
-
requires_approval
|
|
5259
|
+
requires_approval?: boolean | undefined;
|
|
5260
5260
|
};
|
|
5261
5261
|
|
|
5262
5262
|
/** @internal */
|
|
@@ -5268,7 +5268,7 @@ export const StreamRunAgentAgentToolInputRunWriteMemoryStoreTool$outboundSchema:
|
|
|
5268
5268
|
> = z.object({
|
|
5269
5269
|
type:
|
|
5270
5270
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$outboundSchema,
|
|
5271
|
-
requiresApproval: z.boolean().
|
|
5271
|
+
requiresApproval: z.boolean().optional(),
|
|
5272
5272
|
}).transform((v) => {
|
|
5273
5273
|
return remap$(v, {
|
|
5274
5274
|
requiresApproval: "requires_approval",
|
|
@@ -5324,7 +5324,7 @@ export const StreamRunAgentAgentToolInputRunQueryMemoryStoreTool$inboundSchema:
|
|
|
5324
5324
|
> = z.object({
|
|
5325
5325
|
type:
|
|
5326
5326
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$inboundSchema,
|
|
5327
|
-
requires_approval: z.boolean().
|
|
5327
|
+
requires_approval: z.boolean().optional(),
|
|
5328
5328
|
}).transform((v) => {
|
|
5329
5329
|
return remap$(v, {
|
|
5330
5330
|
"requires_approval": "requiresApproval",
|
|
@@ -5333,7 +5333,7 @@ export const StreamRunAgentAgentToolInputRunQueryMemoryStoreTool$inboundSchema:
|
|
|
5333
5333
|
/** @internal */
|
|
5334
5334
|
export type StreamRunAgentAgentToolInputRunQueryMemoryStoreTool$Outbound = {
|
|
5335
5335
|
type: string;
|
|
5336
|
-
requires_approval
|
|
5336
|
+
requires_approval?: boolean | undefined;
|
|
5337
5337
|
};
|
|
5338
5338
|
|
|
5339
5339
|
/** @internal */
|
|
@@ -5345,7 +5345,7 @@ export const StreamRunAgentAgentToolInputRunQueryMemoryStoreTool$outboundSchema:
|
|
|
5345
5345
|
> = z.object({
|
|
5346
5346
|
type:
|
|
5347
5347
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$outboundSchema,
|
|
5348
|
-
requiresApproval: z.boolean().
|
|
5348
|
+
requiresApproval: z.boolean().optional(),
|
|
5349
5349
|
}).transform((v) => {
|
|
5350
5350
|
return remap$(v, {
|
|
5351
5351
|
requiresApproval: "requires_approval",
|
|
@@ -5398,7 +5398,7 @@ export const StreamRunAgentAgentToolInputRunRetrieveAgentsTool$inboundSchema:
|
|
|
5398
5398
|
> = z.object({
|
|
5399
5399
|
type:
|
|
5400
5400
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodyType$inboundSchema,
|
|
5401
|
-
requires_approval: z.boolean().
|
|
5401
|
+
requires_approval: z.boolean().optional(),
|
|
5402
5402
|
}).transform((v) => {
|
|
5403
5403
|
return remap$(v, {
|
|
5404
5404
|
"requires_approval": "requiresApproval",
|
|
@@ -5407,7 +5407,7 @@ export const StreamRunAgentAgentToolInputRunRetrieveAgentsTool$inboundSchema:
|
|
|
5407
5407
|
/** @internal */
|
|
5408
5408
|
export type StreamRunAgentAgentToolInputRunRetrieveAgentsTool$Outbound = {
|
|
5409
5409
|
type: string;
|
|
5410
|
-
requires_approval
|
|
5410
|
+
requires_approval?: boolean | undefined;
|
|
5411
5411
|
};
|
|
5412
5412
|
|
|
5413
5413
|
/** @internal */
|
|
@@ -5419,7 +5419,7 @@ export const StreamRunAgentAgentToolInputRunRetrieveAgentsTool$outboundSchema:
|
|
|
5419
5419
|
> = z.object({
|
|
5420
5420
|
type:
|
|
5421
5421
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodyType$outboundSchema,
|
|
5422
|
-
requiresApproval: z.boolean().
|
|
5422
|
+
requiresApproval: z.boolean().optional(),
|
|
5423
5423
|
}).transform((v) => {
|
|
5424
5424
|
return remap$(v, {
|
|
5425
5425
|
requiresApproval: "requires_approval",
|
|
@@ -5469,7 +5469,7 @@ export const StreamRunAgentAgentToolInputRunCallSubAgentTool$inboundSchema:
|
|
|
5469
5469
|
unknown
|
|
5470
5470
|
> = z.object({
|
|
5471
5471
|
type: StreamRunAgentAgentToolInputRunAgentsRequestType$inboundSchema,
|
|
5472
|
-
requires_approval: z.boolean().
|
|
5472
|
+
requires_approval: z.boolean().optional(),
|
|
5473
5473
|
}).transform((v) => {
|
|
5474
5474
|
return remap$(v, {
|
|
5475
5475
|
"requires_approval": "requiresApproval",
|
|
@@ -5478,7 +5478,7 @@ export const StreamRunAgentAgentToolInputRunCallSubAgentTool$inboundSchema:
|
|
|
5478
5478
|
/** @internal */
|
|
5479
5479
|
export type StreamRunAgentAgentToolInputRunCallSubAgentTool$Outbound = {
|
|
5480
5480
|
type: string;
|
|
5481
|
-
requires_approval
|
|
5481
|
+
requires_approval?: boolean | undefined;
|
|
5482
5482
|
};
|
|
5483
5483
|
|
|
5484
5484
|
/** @internal */
|
|
@@ -5489,7 +5489,7 @@ export const StreamRunAgentAgentToolInputRunCallSubAgentTool$outboundSchema:
|
|
|
5489
5489
|
StreamRunAgentAgentToolInputRunCallSubAgentTool
|
|
5490
5490
|
> = z.object({
|
|
5491
5491
|
type: StreamRunAgentAgentToolInputRunAgentsRequestType$outboundSchema,
|
|
5492
|
-
requiresApproval: z.boolean().
|
|
5492
|
+
requiresApproval: z.boolean().optional(),
|
|
5493
5493
|
}).transform((v) => {
|
|
5494
5494
|
return remap$(v, {
|
|
5495
5495
|
requiresApproval: "requires_approval",
|
|
@@ -5539,7 +5539,7 @@ export const StreamRunAgentAgentToolInputRunWebScraperTool$inboundSchema:
|
|
|
5539
5539
|
unknown
|
|
5540
5540
|
> = z.object({
|
|
5541
5541
|
type: StreamRunAgentAgentToolInputRunAgentsType$inboundSchema,
|
|
5542
|
-
requires_approval: z.boolean().
|
|
5542
|
+
requires_approval: z.boolean().optional(),
|
|
5543
5543
|
}).transform((v) => {
|
|
5544
5544
|
return remap$(v, {
|
|
5545
5545
|
"requires_approval": "requiresApproval",
|
|
@@ -5548,7 +5548,7 @@ export const StreamRunAgentAgentToolInputRunWebScraperTool$inboundSchema:
|
|
|
5548
5548
|
/** @internal */
|
|
5549
5549
|
export type StreamRunAgentAgentToolInputRunWebScraperTool$Outbound = {
|
|
5550
5550
|
type: string;
|
|
5551
|
-
requires_approval
|
|
5551
|
+
requires_approval?: boolean | undefined;
|
|
5552
5552
|
};
|
|
5553
5553
|
|
|
5554
5554
|
/** @internal */
|
|
@@ -5559,7 +5559,7 @@ export const StreamRunAgentAgentToolInputRunWebScraperTool$outboundSchema:
|
|
|
5559
5559
|
StreamRunAgentAgentToolInputRunWebScraperTool
|
|
5560
5560
|
> = z.object({
|
|
5561
5561
|
type: StreamRunAgentAgentToolInputRunAgentsType$outboundSchema,
|
|
5562
|
-
requiresApproval: z.boolean().
|
|
5562
|
+
requiresApproval: z.boolean().optional(),
|
|
5563
5563
|
}).transform((v) => {
|
|
5564
5564
|
return remap$(v, {
|
|
5565
5565
|
requiresApproval: "requires_approval",
|
|
@@ -5609,7 +5609,7 @@ export const StreamRunAgentAgentToolInputRunGoogleSearchTool$inboundSchema:
|
|
|
5609
5609
|
unknown
|
|
5610
5610
|
> = z.object({
|
|
5611
5611
|
type: StreamRunAgentAgentToolInputRunType$inboundSchema,
|
|
5612
|
-
requires_approval: z.boolean().
|
|
5612
|
+
requires_approval: z.boolean().optional(),
|
|
5613
5613
|
}).transform((v) => {
|
|
5614
5614
|
return remap$(v, {
|
|
5615
5615
|
"requires_approval": "requiresApproval",
|
|
@@ -5618,7 +5618,7 @@ export const StreamRunAgentAgentToolInputRunGoogleSearchTool$inboundSchema:
|
|
|
5618
5618
|
/** @internal */
|
|
5619
5619
|
export type StreamRunAgentAgentToolInputRunGoogleSearchTool$Outbound = {
|
|
5620
5620
|
type: string;
|
|
5621
|
-
requires_approval
|
|
5621
|
+
requires_approval?: boolean | undefined;
|
|
5622
5622
|
};
|
|
5623
5623
|
|
|
5624
5624
|
/** @internal */
|
|
@@ -5629,7 +5629,7 @@ export const StreamRunAgentAgentToolInputRunGoogleSearchTool$outboundSchema:
|
|
|
5629
5629
|
StreamRunAgentAgentToolInputRunGoogleSearchTool
|
|
5630
5630
|
> = z.object({
|
|
5631
5631
|
type: StreamRunAgentAgentToolInputRunType$outboundSchema,
|
|
5632
|
-
requiresApproval: z.boolean().
|
|
5632
|
+
requiresApproval: z.boolean().optional(),
|
|
5633
5633
|
}).transform((v) => {
|
|
5634
5634
|
return remap$(v, {
|
|
5635
5635
|
requiresApproval: "requires_approval",
|
|
@@ -4143,7 +4143,7 @@ export const AgentToolInputCRUDCurrentDateTool$inboundSchema: z.ZodType<
|
|
|
4143
4143
|
> = z.object({
|
|
4144
4144
|
type:
|
|
4145
4145
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$inboundSchema,
|
|
4146
|
-
requires_approval: z.boolean().
|
|
4146
|
+
requires_approval: z.boolean().optional(),
|
|
4147
4147
|
}).transform((v) => {
|
|
4148
4148
|
return remap$(v, {
|
|
4149
4149
|
"requires_approval": "requiresApproval",
|
|
@@ -4152,7 +4152,7 @@ export const AgentToolInputCRUDCurrentDateTool$inboundSchema: z.ZodType<
|
|
|
4152
4152
|
/** @internal */
|
|
4153
4153
|
export type AgentToolInputCRUDCurrentDateTool$Outbound = {
|
|
4154
4154
|
type: string;
|
|
4155
|
-
requires_approval
|
|
4155
|
+
requires_approval?: boolean | undefined;
|
|
4156
4156
|
};
|
|
4157
4157
|
|
|
4158
4158
|
/** @internal */
|
|
@@ -4163,7 +4163,7 @@ export const AgentToolInputCRUDCurrentDateTool$outboundSchema: z.ZodType<
|
|
|
4163
4163
|
> = z.object({
|
|
4164
4164
|
type:
|
|
4165
4165
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$outboundSchema,
|
|
4166
|
-
requiresApproval: z.boolean().
|
|
4166
|
+
requiresApproval: z.boolean().optional(),
|
|
4167
4167
|
}).transform((v) => {
|
|
4168
4168
|
return remap$(v, {
|
|
4169
4169
|
requiresApproval: "requires_approval",
|
|
@@ -4211,7 +4211,7 @@ export const AgentToolInputCRUDQueryKnowledgeBaseTool$inboundSchema: z.ZodType<
|
|
|
4211
4211
|
> = z.object({
|
|
4212
4212
|
type:
|
|
4213
4213
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$inboundSchema,
|
|
4214
|
-
requires_approval: z.boolean().
|
|
4214
|
+
requires_approval: z.boolean().optional(),
|
|
4215
4215
|
}).transform((v) => {
|
|
4216
4216
|
return remap$(v, {
|
|
4217
4217
|
"requires_approval": "requiresApproval",
|
|
@@ -4220,7 +4220,7 @@ export const AgentToolInputCRUDQueryKnowledgeBaseTool$inboundSchema: z.ZodType<
|
|
|
4220
4220
|
/** @internal */
|
|
4221
4221
|
export type AgentToolInputCRUDQueryKnowledgeBaseTool$Outbound = {
|
|
4222
4222
|
type: string;
|
|
4223
|
-
requires_approval
|
|
4223
|
+
requires_approval?: boolean | undefined;
|
|
4224
4224
|
};
|
|
4225
4225
|
|
|
4226
4226
|
/** @internal */
|
|
@@ -4231,7 +4231,7 @@ export const AgentToolInputCRUDQueryKnowledgeBaseTool$outboundSchema: z.ZodType<
|
|
|
4231
4231
|
> = z.object({
|
|
4232
4232
|
type:
|
|
4233
4233
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$outboundSchema,
|
|
4234
|
-
requiresApproval: z.boolean().
|
|
4234
|
+
requiresApproval: z.boolean().optional(),
|
|
4235
4235
|
}).transform((v) => {
|
|
4236
4236
|
return remap$(v, {
|
|
4237
4237
|
requiresApproval: "requires_approval",
|
|
@@ -4287,7 +4287,7 @@ export const AgentToolInputCRUDRetrieveKnowledgeBasesTool$inboundSchema:
|
|
|
4287
4287
|
> = z.object({
|
|
4288
4288
|
type:
|
|
4289
4289
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$inboundSchema,
|
|
4290
|
-
requires_approval: z.boolean().
|
|
4290
|
+
requires_approval: z.boolean().optional(),
|
|
4291
4291
|
}).transform((v) => {
|
|
4292
4292
|
return remap$(v, {
|
|
4293
4293
|
"requires_approval": "requiresApproval",
|
|
@@ -4296,7 +4296,7 @@ export const AgentToolInputCRUDRetrieveKnowledgeBasesTool$inboundSchema:
|
|
|
4296
4296
|
/** @internal */
|
|
4297
4297
|
export type AgentToolInputCRUDRetrieveKnowledgeBasesTool$Outbound = {
|
|
4298
4298
|
type: string;
|
|
4299
|
-
requires_approval
|
|
4299
|
+
requires_approval?: boolean | undefined;
|
|
4300
4300
|
};
|
|
4301
4301
|
|
|
4302
4302
|
/** @internal */
|
|
@@ -4308,7 +4308,7 @@ export const AgentToolInputCRUDRetrieveKnowledgeBasesTool$outboundSchema:
|
|
|
4308
4308
|
> = z.object({
|
|
4309
4309
|
type:
|
|
4310
4310
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$outboundSchema,
|
|
4311
|
-
requiresApproval: z.boolean().
|
|
4311
|
+
requiresApproval: z.boolean().optional(),
|
|
4312
4312
|
}).transform((v) => {
|
|
4313
4313
|
return remap$(v, {
|
|
4314
4314
|
requiresApproval: "requires_approval",
|
|
@@ -4361,7 +4361,7 @@ export const AgentToolInputCRUDDeleteMemoryDocumentTool$inboundSchema:
|
|
|
4361
4361
|
z.object({
|
|
4362
4362
|
type:
|
|
4363
4363
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$inboundSchema,
|
|
4364
|
-
requires_approval: z.boolean().
|
|
4364
|
+
requires_approval: z.boolean().optional(),
|
|
4365
4365
|
}).transform((v) => {
|
|
4366
4366
|
return remap$(v, {
|
|
4367
4367
|
"requires_approval": "requiresApproval",
|
|
@@ -4370,7 +4370,7 @@ export const AgentToolInputCRUDDeleteMemoryDocumentTool$inboundSchema:
|
|
|
4370
4370
|
/** @internal */
|
|
4371
4371
|
export type AgentToolInputCRUDDeleteMemoryDocumentTool$Outbound = {
|
|
4372
4372
|
type: string;
|
|
4373
|
-
requires_approval
|
|
4373
|
+
requires_approval?: boolean | undefined;
|
|
4374
4374
|
};
|
|
4375
4375
|
|
|
4376
4376
|
/** @internal */
|
|
@@ -4382,7 +4382,7 @@ export const AgentToolInputCRUDDeleteMemoryDocumentTool$outboundSchema:
|
|
|
4382
4382
|
> = z.object({
|
|
4383
4383
|
type:
|
|
4384
4384
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$outboundSchema,
|
|
4385
|
-
requiresApproval: z.boolean().
|
|
4385
|
+
requiresApproval: z.boolean().optional(),
|
|
4386
4386
|
}).transform((v) => {
|
|
4387
4387
|
return remap$(v, {
|
|
4388
4388
|
requiresApproval: "requires_approval",
|
|
@@ -4435,7 +4435,7 @@ export const AgentToolInputCRUDRetrieveMemoryStoresTool$inboundSchema:
|
|
|
4435
4435
|
z.object({
|
|
4436
4436
|
type:
|
|
4437
4437
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type$inboundSchema,
|
|
4438
|
-
requires_approval: z.boolean().
|
|
4438
|
+
requires_approval: z.boolean().optional(),
|
|
4439
4439
|
}).transform((v) => {
|
|
4440
4440
|
return remap$(v, {
|
|
4441
4441
|
"requires_approval": "requiresApproval",
|
|
@@ -4444,7 +4444,7 @@ export const AgentToolInputCRUDRetrieveMemoryStoresTool$inboundSchema:
|
|
|
4444
4444
|
/** @internal */
|
|
4445
4445
|
export type AgentToolInputCRUDRetrieveMemoryStoresTool$Outbound = {
|
|
4446
4446
|
type: string;
|
|
4447
|
-
requires_approval
|
|
4447
|
+
requires_approval?: boolean | undefined;
|
|
4448
4448
|
};
|
|
4449
4449
|
|
|
4450
4450
|
/** @internal */
|
|
@@ -4456,7 +4456,7 @@ export const AgentToolInputCRUDRetrieveMemoryStoresTool$outboundSchema:
|
|
|
4456
4456
|
> = z.object({
|
|
4457
4457
|
type:
|
|
4458
4458
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type$outboundSchema,
|
|
4459
|
-
requiresApproval: z.boolean().
|
|
4459
|
+
requiresApproval: z.boolean().optional(),
|
|
4460
4460
|
}).transform((v) => {
|
|
4461
4461
|
return remap$(v, {
|
|
4462
4462
|
requiresApproval: "requires_approval",
|
|
@@ -4511,7 +4511,7 @@ export const AgentToolInputCRUDWriteMemoryStoreTool$inboundSchema: z.ZodType<
|
|
|
4511
4511
|
> = z.object({
|
|
4512
4512
|
type:
|
|
4513
4513
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$inboundSchema,
|
|
4514
|
-
requires_approval: z.boolean().
|
|
4514
|
+
requires_approval: z.boolean().optional(),
|
|
4515
4515
|
}).transform((v) => {
|
|
4516
4516
|
return remap$(v, {
|
|
4517
4517
|
"requires_approval": "requiresApproval",
|
|
@@ -4520,7 +4520,7 @@ export const AgentToolInputCRUDWriteMemoryStoreTool$inboundSchema: z.ZodType<
|
|
|
4520
4520
|
/** @internal */
|
|
4521
4521
|
export type AgentToolInputCRUDWriteMemoryStoreTool$Outbound = {
|
|
4522
4522
|
type: string;
|
|
4523
|
-
requires_approval
|
|
4523
|
+
requires_approval?: boolean | undefined;
|
|
4524
4524
|
};
|
|
4525
4525
|
|
|
4526
4526
|
/** @internal */
|
|
@@ -4531,7 +4531,7 @@ export const AgentToolInputCRUDWriteMemoryStoreTool$outboundSchema: z.ZodType<
|
|
|
4531
4531
|
> = z.object({
|
|
4532
4532
|
type:
|
|
4533
4533
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$outboundSchema,
|
|
4534
|
-
requiresApproval: z.boolean().
|
|
4534
|
+
requiresApproval: z.boolean().optional(),
|
|
4535
4535
|
}).transform((v) => {
|
|
4536
4536
|
return remap$(v, {
|
|
4537
4537
|
requiresApproval: "requires_approval",
|
|
@@ -4581,7 +4581,7 @@ export const AgentToolInputCRUDQueryMemoryStoreTool$inboundSchema: z.ZodType<
|
|
|
4581
4581
|
> = z.object({
|
|
4582
4582
|
type:
|
|
4583
4583
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$inboundSchema,
|
|
4584
|
-
requires_approval: z.boolean().
|
|
4584
|
+
requires_approval: z.boolean().optional(),
|
|
4585
4585
|
}).transform((v) => {
|
|
4586
4586
|
return remap$(v, {
|
|
4587
4587
|
"requires_approval": "requiresApproval",
|
|
@@ -4590,7 +4590,7 @@ export const AgentToolInputCRUDQueryMemoryStoreTool$inboundSchema: z.ZodType<
|
|
|
4590
4590
|
/** @internal */
|
|
4591
4591
|
export type AgentToolInputCRUDQueryMemoryStoreTool$Outbound = {
|
|
4592
4592
|
type: string;
|
|
4593
|
-
requires_approval
|
|
4593
|
+
requires_approval?: boolean | undefined;
|
|
4594
4594
|
};
|
|
4595
4595
|
|
|
4596
4596
|
/** @internal */
|
|
@@ -4601,7 +4601,7 @@ export const AgentToolInputCRUDQueryMemoryStoreTool$outboundSchema: z.ZodType<
|
|
|
4601
4601
|
> = z.object({
|
|
4602
4602
|
type:
|
|
4603
4603
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$outboundSchema,
|
|
4604
|
-
requiresApproval: z.boolean().
|
|
4604
|
+
requiresApproval: z.boolean().optional(),
|
|
4605
4605
|
}).transform((v) => {
|
|
4606
4606
|
return remap$(v, {
|
|
4607
4607
|
requiresApproval: "requires_approval",
|
|
@@ -4647,7 +4647,7 @@ export const AgentToolInputCRUDRetrieveAgentsTool$inboundSchema: z.ZodType<
|
|
|
4647
4647
|
unknown
|
|
4648
4648
|
> = z.object({
|
|
4649
4649
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$inboundSchema,
|
|
4650
|
-
requires_approval: z.boolean().
|
|
4650
|
+
requires_approval: z.boolean().optional(),
|
|
4651
4651
|
}).transform((v) => {
|
|
4652
4652
|
return remap$(v, {
|
|
4653
4653
|
"requires_approval": "requiresApproval",
|
|
@@ -4656,7 +4656,7 @@ export const AgentToolInputCRUDRetrieveAgentsTool$inboundSchema: z.ZodType<
|
|
|
4656
4656
|
/** @internal */
|
|
4657
4657
|
export type AgentToolInputCRUDRetrieveAgentsTool$Outbound = {
|
|
4658
4658
|
type: string;
|
|
4659
|
-
requires_approval
|
|
4659
|
+
requires_approval?: boolean | undefined;
|
|
4660
4660
|
};
|
|
4661
4661
|
|
|
4662
4662
|
/** @internal */
|
|
@@ -4667,7 +4667,7 @@ export const AgentToolInputCRUDRetrieveAgentsTool$outboundSchema: z.ZodType<
|
|
|
4667
4667
|
> = z.object({
|
|
4668
4668
|
type:
|
|
4669
4669
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$outboundSchema,
|
|
4670
|
-
requiresApproval: z.boolean().
|
|
4670
|
+
requiresApproval: z.boolean().optional(),
|
|
4671
4671
|
}).transform((v) => {
|
|
4672
4672
|
return remap$(v, {
|
|
4673
4673
|
requiresApproval: "requires_approval",
|
|
@@ -4710,7 +4710,7 @@ export const AgentToolInputCRUDCallSubAgentTool$inboundSchema: z.ZodType<
|
|
|
4710
4710
|
unknown
|
|
4711
4711
|
> = z.object({
|
|
4712
4712
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestType$inboundSchema,
|
|
4713
|
-
requires_approval: z.boolean().
|
|
4713
|
+
requires_approval: z.boolean().optional(),
|
|
4714
4714
|
}).transform((v) => {
|
|
4715
4715
|
return remap$(v, {
|
|
4716
4716
|
"requires_approval": "requiresApproval",
|
|
@@ -4719,7 +4719,7 @@ export const AgentToolInputCRUDCallSubAgentTool$inboundSchema: z.ZodType<
|
|
|
4719
4719
|
/** @internal */
|
|
4720
4720
|
export type AgentToolInputCRUDCallSubAgentTool$Outbound = {
|
|
4721
4721
|
type: string;
|
|
4722
|
-
requires_approval
|
|
4722
|
+
requires_approval?: boolean | undefined;
|
|
4723
4723
|
};
|
|
4724
4724
|
|
|
4725
4725
|
/** @internal */
|
|
@@ -4729,7 +4729,7 @@ export const AgentToolInputCRUDCallSubAgentTool$outboundSchema: z.ZodType<
|
|
|
4729
4729
|
AgentToolInputCRUDCallSubAgentTool
|
|
4730
4730
|
> = z.object({
|
|
4731
4731
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestType$outboundSchema,
|
|
4732
|
-
requiresApproval: z.boolean().
|
|
4732
|
+
requiresApproval: z.boolean().optional(),
|
|
4733
4733
|
}).transform((v) => {
|
|
4734
4734
|
return remap$(v, {
|
|
4735
4735
|
requiresApproval: "requires_approval",
|
|
@@ -4772,7 +4772,7 @@ export const AgentToolInputCRUDWebScraperTool$inboundSchema: z.ZodType<
|
|
|
4772
4772
|
unknown
|
|
4773
4773
|
> = z.object({
|
|
4774
4774
|
type: UpdateAgentAgentToolInputCRUDAgentsType$inboundSchema,
|
|
4775
|
-
requires_approval: z.boolean().
|
|
4775
|
+
requires_approval: z.boolean().optional(),
|
|
4776
4776
|
}).transform((v) => {
|
|
4777
4777
|
return remap$(v, {
|
|
4778
4778
|
"requires_approval": "requiresApproval",
|
|
@@ -4781,7 +4781,7 @@ export const AgentToolInputCRUDWebScraperTool$inboundSchema: z.ZodType<
|
|
|
4781
4781
|
/** @internal */
|
|
4782
4782
|
export type AgentToolInputCRUDWebScraperTool$Outbound = {
|
|
4783
4783
|
type: string;
|
|
4784
|
-
requires_approval
|
|
4784
|
+
requires_approval?: boolean | undefined;
|
|
4785
4785
|
};
|
|
4786
4786
|
|
|
4787
4787
|
/** @internal */
|
|
@@ -4791,7 +4791,7 @@ export const AgentToolInputCRUDWebScraperTool$outboundSchema: z.ZodType<
|
|
|
4791
4791
|
AgentToolInputCRUDWebScraperTool
|
|
4792
4792
|
> = z.object({
|
|
4793
4793
|
type: UpdateAgentAgentToolInputCRUDAgentsType$outboundSchema,
|
|
4794
|
-
requiresApproval: z.boolean().
|
|
4794
|
+
requiresApproval: z.boolean().optional(),
|
|
4795
4795
|
}).transform((v) => {
|
|
4796
4796
|
return remap$(v, {
|
|
4797
4797
|
requiresApproval: "requires_approval",
|
|
@@ -4833,7 +4833,7 @@ export const AgentToolInputCRUDGoogleSearchTool$inboundSchema: z.ZodType<
|
|
|
4833
4833
|
unknown
|
|
4834
4834
|
> = z.object({
|
|
4835
4835
|
type: UpdateAgentAgentToolInputCRUDType$inboundSchema,
|
|
4836
|
-
requires_approval: z.boolean().
|
|
4836
|
+
requires_approval: z.boolean().optional(),
|
|
4837
4837
|
}).transform((v) => {
|
|
4838
4838
|
return remap$(v, {
|
|
4839
4839
|
"requires_approval": "requiresApproval",
|
|
@@ -4842,7 +4842,7 @@ export const AgentToolInputCRUDGoogleSearchTool$inboundSchema: z.ZodType<
|
|
|
4842
4842
|
/** @internal */
|
|
4843
4843
|
export type AgentToolInputCRUDGoogleSearchTool$Outbound = {
|
|
4844
4844
|
type: string;
|
|
4845
|
-
requires_approval
|
|
4845
|
+
requires_approval?: boolean | undefined;
|
|
4846
4846
|
};
|
|
4847
4847
|
|
|
4848
4848
|
/** @internal */
|
|
@@ -4852,7 +4852,7 @@ export const AgentToolInputCRUDGoogleSearchTool$outboundSchema: z.ZodType<
|
|
|
4852
4852
|
AgentToolInputCRUDGoogleSearchTool
|
|
4853
4853
|
> = z.object({
|
|
4854
4854
|
type: UpdateAgentAgentToolInputCRUDType$outboundSchema,
|
|
4855
|
-
requiresApproval: z.boolean().
|
|
4855
|
+
requiresApproval: z.boolean().optional(),
|
|
4856
4856
|
}).transform((v) => {
|
|
4857
4857
|
return remap$(v, {
|
|
4858
4858
|
requiresApproval: "requires_approval",
|
|
@@ -436,7 +436,7 @@ export const UpdateBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
436
436
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
437
437
|
.optional(),
|
|
438
438
|
updated: z.string().datetime({ offset: true }).default(
|
|
439
|
-
"2025-11-
|
|
439
|
+
"2025-11-08T09:16:35.610Z",
|
|
440
440
|
).transform(v => new Date(v)),
|
|
441
441
|
}).transform((v) => {
|
|
442
442
|
return remap$(v, {
|
|
@@ -473,7 +473,7 @@ export const UpdateBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
473
473
|
isActive: z.boolean(),
|
|
474
474
|
consumption: z.lazy(() => UpdateBudgetConsumption$outboundSchema).optional(),
|
|
475
475
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
476
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
476
|
+
updated: z.date().default(() => new Date("2025-11-08T09:16:35.610Z"))
|
|
477
477
|
.transform(v => v.toISOString()),
|
|
478
478
|
}).transform((v) => {
|
|
479
479
|
return remap$(v, {
|
|
@@ -214,7 +214,7 @@ export const UpdateContactResponseBody$inboundSchema: z.ZodType<
|
|
|
214
214
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
215
215
|
.optional(),
|
|
216
216
|
updated: z.string().datetime({ offset: true }).default(
|
|
217
|
-
"2025-11-
|
|
217
|
+
"2025-11-08T09:16:35.289Z",
|
|
218
218
|
).transform(v => new Date(v)),
|
|
219
219
|
}).transform((v) => {
|
|
220
220
|
return remap$(v, {
|
|
@@ -251,7 +251,7 @@ export const UpdateContactResponseBody$outboundSchema: z.ZodType<
|
|
|
251
251
|
tags: z.array(z.string()).optional(),
|
|
252
252
|
metadata: z.record(z.any()).optional(),
|
|
253
253
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
254
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
254
|
+
updated: z.date().default(() => new Date("2025-11-08T09:16:35.289Z"))
|
|
255
255
|
.transform(v => v.toISOString()),
|
|
256
256
|
}).transform((v) => {
|
|
257
257
|
return remap$(v, {
|