@orq-ai/node 3.14.25 → 3.14.27
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 +2 -2
- 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/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/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/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
|
@@ -4624,7 +4624,7 @@ export const AgentToolInputRunCurrentDateTool$inboundSchema: z.ZodType<
|
|
|
4624
4624
|
> = z.object({
|
|
4625
4625
|
type:
|
|
4626
4626
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$inboundSchema,
|
|
4627
|
-
requires_approval: z.boolean().
|
|
4627
|
+
requires_approval: z.boolean().optional(),
|
|
4628
4628
|
}).transform((v) => {
|
|
4629
4629
|
return remap$(v, {
|
|
4630
4630
|
"requires_approval": "requiresApproval",
|
|
@@ -4633,7 +4633,7 @@ export const AgentToolInputRunCurrentDateTool$inboundSchema: z.ZodType<
|
|
|
4633
4633
|
/** @internal */
|
|
4634
4634
|
export type AgentToolInputRunCurrentDateTool$Outbound = {
|
|
4635
4635
|
type: string;
|
|
4636
|
-
requires_approval
|
|
4636
|
+
requires_approval?: boolean | undefined;
|
|
4637
4637
|
};
|
|
4638
4638
|
|
|
4639
4639
|
/** @internal */
|
|
@@ -4644,7 +4644,7 @@ export const AgentToolInputRunCurrentDateTool$outboundSchema: z.ZodType<
|
|
|
4644
4644
|
> = z.object({
|
|
4645
4645
|
type:
|
|
4646
4646
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$outboundSchema,
|
|
4647
|
-
requiresApproval: z.boolean().
|
|
4647
|
+
requiresApproval: z.boolean().optional(),
|
|
4648
4648
|
}).transform((v) => {
|
|
4649
4649
|
return remap$(v, {
|
|
4650
4650
|
requiresApproval: "requires_approval",
|
|
@@ -4692,7 +4692,7 @@ export const AgentToolInputRunQueryKnowledgeBaseTool$inboundSchema: z.ZodType<
|
|
|
4692
4692
|
> = z.object({
|
|
4693
4693
|
type:
|
|
4694
4694
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$inboundSchema,
|
|
4695
|
-
requires_approval: z.boolean().
|
|
4695
|
+
requires_approval: z.boolean().optional(),
|
|
4696
4696
|
}).transform((v) => {
|
|
4697
4697
|
return remap$(v, {
|
|
4698
4698
|
"requires_approval": "requiresApproval",
|
|
@@ -4701,7 +4701,7 @@ export const AgentToolInputRunQueryKnowledgeBaseTool$inboundSchema: z.ZodType<
|
|
|
4701
4701
|
/** @internal */
|
|
4702
4702
|
export type AgentToolInputRunQueryKnowledgeBaseTool$Outbound = {
|
|
4703
4703
|
type: string;
|
|
4704
|
-
requires_approval
|
|
4704
|
+
requires_approval?: boolean | undefined;
|
|
4705
4705
|
};
|
|
4706
4706
|
|
|
4707
4707
|
/** @internal */
|
|
@@ -4712,7 +4712,7 @@ export const AgentToolInputRunQueryKnowledgeBaseTool$outboundSchema: z.ZodType<
|
|
|
4712
4712
|
> = z.object({
|
|
4713
4713
|
type:
|
|
4714
4714
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$outboundSchema,
|
|
4715
|
-
requiresApproval: z.boolean().
|
|
4715
|
+
requiresApproval: z.boolean().optional(),
|
|
4716
4716
|
}).transform((v) => {
|
|
4717
4717
|
return remap$(v, {
|
|
4718
4718
|
requiresApproval: "requires_approval",
|
|
@@ -4768,7 +4768,7 @@ export const AgentToolInputRunRetrieveKnowledgeBasesTool$inboundSchema:
|
|
|
4768
4768
|
> = z.object({
|
|
4769
4769
|
type:
|
|
4770
4770
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$inboundSchema,
|
|
4771
|
-
requires_approval: z.boolean().
|
|
4771
|
+
requires_approval: z.boolean().optional(),
|
|
4772
4772
|
}).transform((v) => {
|
|
4773
4773
|
return remap$(v, {
|
|
4774
4774
|
"requires_approval": "requiresApproval",
|
|
@@ -4777,7 +4777,7 @@ export const AgentToolInputRunRetrieveKnowledgeBasesTool$inboundSchema:
|
|
|
4777
4777
|
/** @internal */
|
|
4778
4778
|
export type AgentToolInputRunRetrieveKnowledgeBasesTool$Outbound = {
|
|
4779
4779
|
type: string;
|
|
4780
|
-
requires_approval
|
|
4780
|
+
requires_approval?: boolean | undefined;
|
|
4781
4781
|
};
|
|
4782
4782
|
|
|
4783
4783
|
/** @internal */
|
|
@@ -4789,7 +4789,7 @@ export const AgentToolInputRunRetrieveKnowledgeBasesTool$outboundSchema:
|
|
|
4789
4789
|
> = z.object({
|
|
4790
4790
|
type:
|
|
4791
4791
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$outboundSchema,
|
|
4792
|
-
requiresApproval: z.boolean().
|
|
4792
|
+
requiresApproval: z.boolean().optional(),
|
|
4793
4793
|
}).transform((v) => {
|
|
4794
4794
|
return remap$(v, {
|
|
4795
4795
|
requiresApproval: "requires_approval",
|
|
@@ -4844,7 +4844,7 @@ export const AgentToolInputRunDeleteMemoryDocumentTool$inboundSchema: z.ZodType<
|
|
|
4844
4844
|
> = z.object({
|
|
4845
4845
|
type:
|
|
4846
4846
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$inboundSchema,
|
|
4847
|
-
requires_approval: z.boolean().
|
|
4847
|
+
requires_approval: z.boolean().optional(),
|
|
4848
4848
|
}).transform((v) => {
|
|
4849
4849
|
return remap$(v, {
|
|
4850
4850
|
"requires_approval": "requiresApproval",
|
|
@@ -4853,7 +4853,7 @@ export const AgentToolInputRunDeleteMemoryDocumentTool$inboundSchema: z.ZodType<
|
|
|
4853
4853
|
/** @internal */
|
|
4854
4854
|
export type AgentToolInputRunDeleteMemoryDocumentTool$Outbound = {
|
|
4855
4855
|
type: string;
|
|
4856
|
-
requires_approval
|
|
4856
|
+
requires_approval?: boolean | undefined;
|
|
4857
4857
|
};
|
|
4858
4858
|
|
|
4859
4859
|
/** @internal */
|
|
@@ -4865,7 +4865,7 @@ export const AgentToolInputRunDeleteMemoryDocumentTool$outboundSchema:
|
|
|
4865
4865
|
> = z.object({
|
|
4866
4866
|
type:
|
|
4867
4867
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$outboundSchema,
|
|
4868
|
-
requiresApproval: z.boolean().
|
|
4868
|
+
requiresApproval: z.boolean().optional(),
|
|
4869
4869
|
}).transform((v) => {
|
|
4870
4870
|
return remap$(v, {
|
|
4871
4871
|
requiresApproval: "requires_approval",
|
|
@@ -4920,7 +4920,7 @@ export const AgentToolInputRunRetrieveMemoryStoresTool$inboundSchema: z.ZodType<
|
|
|
4920
4920
|
> = z.object({
|
|
4921
4921
|
type:
|
|
4922
4922
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$inboundSchema,
|
|
4923
|
-
requires_approval: z.boolean().
|
|
4923
|
+
requires_approval: z.boolean().optional(),
|
|
4924
4924
|
}).transform((v) => {
|
|
4925
4925
|
return remap$(v, {
|
|
4926
4926
|
"requires_approval": "requiresApproval",
|
|
@@ -4929,7 +4929,7 @@ export const AgentToolInputRunRetrieveMemoryStoresTool$inboundSchema: z.ZodType<
|
|
|
4929
4929
|
/** @internal */
|
|
4930
4930
|
export type AgentToolInputRunRetrieveMemoryStoresTool$Outbound = {
|
|
4931
4931
|
type: string;
|
|
4932
|
-
requires_approval
|
|
4932
|
+
requires_approval?: boolean | undefined;
|
|
4933
4933
|
};
|
|
4934
4934
|
|
|
4935
4935
|
/** @internal */
|
|
@@ -4941,7 +4941,7 @@ export const AgentToolInputRunRetrieveMemoryStoresTool$outboundSchema:
|
|
|
4941
4941
|
> = z.object({
|
|
4942
4942
|
type:
|
|
4943
4943
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$outboundSchema,
|
|
4944
|
-
requiresApproval: z.boolean().
|
|
4944
|
+
requiresApproval: z.boolean().optional(),
|
|
4945
4945
|
}).transform((v) => {
|
|
4946
4946
|
return remap$(v, {
|
|
4947
4947
|
requiresApproval: "requires_approval",
|
|
@@ -4996,7 +4996,7 @@ export const AgentToolInputRunWriteMemoryStoreTool$inboundSchema: z.ZodType<
|
|
|
4996
4996
|
> = z.object({
|
|
4997
4997
|
type:
|
|
4998
4998
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$inboundSchema,
|
|
4999
|
-
requires_approval: z.boolean().
|
|
4999
|
+
requires_approval: z.boolean().optional(),
|
|
5000
5000
|
}).transform((v) => {
|
|
5001
5001
|
return remap$(v, {
|
|
5002
5002
|
"requires_approval": "requiresApproval",
|
|
@@ -5005,7 +5005,7 @@ export const AgentToolInputRunWriteMemoryStoreTool$inboundSchema: z.ZodType<
|
|
|
5005
5005
|
/** @internal */
|
|
5006
5006
|
export type AgentToolInputRunWriteMemoryStoreTool$Outbound = {
|
|
5007
5007
|
type: string;
|
|
5008
|
-
requires_approval
|
|
5008
|
+
requires_approval?: boolean | undefined;
|
|
5009
5009
|
};
|
|
5010
5010
|
|
|
5011
5011
|
/** @internal */
|
|
@@ -5016,7 +5016,7 @@ export const AgentToolInputRunWriteMemoryStoreTool$outboundSchema: z.ZodType<
|
|
|
5016
5016
|
> = z.object({
|
|
5017
5017
|
type:
|
|
5018
5018
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$outboundSchema,
|
|
5019
|
-
requiresApproval: z.boolean().
|
|
5019
|
+
requiresApproval: z.boolean().optional(),
|
|
5020
5020
|
}).transform((v) => {
|
|
5021
5021
|
return remap$(v, {
|
|
5022
5022
|
requiresApproval: "requires_approval",
|
|
@@ -5061,7 +5061,7 @@ export const AgentToolInputRunQueryMemoryStoreTool$inboundSchema: z.ZodType<
|
|
|
5061
5061
|
unknown
|
|
5062
5062
|
> = z.object({
|
|
5063
5063
|
type: RunAgentAgentToolInputRunAgentsRequestRequestBodyType$inboundSchema,
|
|
5064
|
-
requires_approval: z.boolean().
|
|
5064
|
+
requires_approval: z.boolean().optional(),
|
|
5065
5065
|
}).transform((v) => {
|
|
5066
5066
|
return remap$(v, {
|
|
5067
5067
|
"requires_approval": "requiresApproval",
|
|
@@ -5070,7 +5070,7 @@ export const AgentToolInputRunQueryMemoryStoreTool$inboundSchema: z.ZodType<
|
|
|
5070
5070
|
/** @internal */
|
|
5071
5071
|
export type AgentToolInputRunQueryMemoryStoreTool$Outbound = {
|
|
5072
5072
|
type: string;
|
|
5073
|
-
requires_approval
|
|
5073
|
+
requires_approval?: boolean | undefined;
|
|
5074
5074
|
};
|
|
5075
5075
|
|
|
5076
5076
|
/** @internal */
|
|
@@ -5080,7 +5080,7 @@ export const AgentToolInputRunQueryMemoryStoreTool$outboundSchema: z.ZodType<
|
|
|
5080
5080
|
AgentToolInputRunQueryMemoryStoreTool
|
|
5081
5081
|
> = z.object({
|
|
5082
5082
|
type: RunAgentAgentToolInputRunAgentsRequestRequestBodyType$outboundSchema,
|
|
5083
|
-
requiresApproval: z.boolean().
|
|
5083
|
+
requiresApproval: z.boolean().optional(),
|
|
5084
5084
|
}).transform((v) => {
|
|
5085
5085
|
return remap$(v, {
|
|
5086
5086
|
requiresApproval: "requires_approval",
|
|
@@ -5123,7 +5123,7 @@ export const AgentToolInputRunRetrieveAgentsTool$inboundSchema: z.ZodType<
|
|
|
5123
5123
|
unknown
|
|
5124
5124
|
> = z.object({
|
|
5125
5125
|
type: RunAgentAgentToolInputRunAgentsRequestType$inboundSchema,
|
|
5126
|
-
requires_approval: z.boolean().
|
|
5126
|
+
requires_approval: z.boolean().optional(),
|
|
5127
5127
|
}).transform((v) => {
|
|
5128
5128
|
return remap$(v, {
|
|
5129
5129
|
"requires_approval": "requiresApproval",
|
|
@@ -5132,7 +5132,7 @@ export const AgentToolInputRunRetrieveAgentsTool$inboundSchema: z.ZodType<
|
|
|
5132
5132
|
/** @internal */
|
|
5133
5133
|
export type AgentToolInputRunRetrieveAgentsTool$Outbound = {
|
|
5134
5134
|
type: string;
|
|
5135
|
-
requires_approval
|
|
5135
|
+
requires_approval?: boolean | undefined;
|
|
5136
5136
|
};
|
|
5137
5137
|
|
|
5138
5138
|
/** @internal */
|
|
@@ -5142,7 +5142,7 @@ export const AgentToolInputRunRetrieveAgentsTool$outboundSchema: z.ZodType<
|
|
|
5142
5142
|
AgentToolInputRunRetrieveAgentsTool
|
|
5143
5143
|
> = z.object({
|
|
5144
5144
|
type: RunAgentAgentToolInputRunAgentsRequestType$outboundSchema,
|
|
5145
|
-
requiresApproval: z.boolean().
|
|
5145
|
+
requiresApproval: z.boolean().optional(),
|
|
5146
5146
|
}).transform((v) => {
|
|
5147
5147
|
return remap$(v, {
|
|
5148
5148
|
requiresApproval: "requires_approval",
|
|
@@ -5185,7 +5185,7 @@ export const AgentToolInputRunCallSubAgentTool$inboundSchema: z.ZodType<
|
|
|
5185
5185
|
unknown
|
|
5186
5186
|
> = z.object({
|
|
5187
5187
|
type: RunAgentAgentToolInputRunAgentsType$inboundSchema,
|
|
5188
|
-
requires_approval: z.boolean().
|
|
5188
|
+
requires_approval: z.boolean().optional(),
|
|
5189
5189
|
}).transform((v) => {
|
|
5190
5190
|
return remap$(v, {
|
|
5191
5191
|
"requires_approval": "requiresApproval",
|
|
@@ -5194,7 +5194,7 @@ export const AgentToolInputRunCallSubAgentTool$inboundSchema: z.ZodType<
|
|
|
5194
5194
|
/** @internal */
|
|
5195
5195
|
export type AgentToolInputRunCallSubAgentTool$Outbound = {
|
|
5196
5196
|
type: string;
|
|
5197
|
-
requires_approval
|
|
5197
|
+
requires_approval?: boolean | undefined;
|
|
5198
5198
|
};
|
|
5199
5199
|
|
|
5200
5200
|
/** @internal */
|
|
@@ -5204,7 +5204,7 @@ export const AgentToolInputRunCallSubAgentTool$outboundSchema: z.ZodType<
|
|
|
5204
5204
|
AgentToolInputRunCallSubAgentTool
|
|
5205
5205
|
> = z.object({
|
|
5206
5206
|
type: RunAgentAgentToolInputRunAgentsType$outboundSchema,
|
|
5207
|
-
requiresApproval: z.boolean().
|
|
5207
|
+
requiresApproval: z.boolean().optional(),
|
|
5208
5208
|
}).transform((v) => {
|
|
5209
5209
|
return remap$(v, {
|
|
5210
5210
|
requiresApproval: "requires_approval",
|
|
@@ -5246,7 +5246,7 @@ export const AgentToolInputRunWebScraperTool$inboundSchema: z.ZodType<
|
|
|
5246
5246
|
unknown
|
|
5247
5247
|
> = z.object({
|
|
5248
5248
|
type: RunAgentAgentToolInputRunType$inboundSchema,
|
|
5249
|
-
requires_approval: z.boolean().
|
|
5249
|
+
requires_approval: z.boolean().optional(),
|
|
5250
5250
|
}).transform((v) => {
|
|
5251
5251
|
return remap$(v, {
|
|
5252
5252
|
"requires_approval": "requiresApproval",
|
|
@@ -5255,7 +5255,7 @@ export const AgentToolInputRunWebScraperTool$inboundSchema: z.ZodType<
|
|
|
5255
5255
|
/** @internal */
|
|
5256
5256
|
export type AgentToolInputRunWebScraperTool$Outbound = {
|
|
5257
5257
|
type: string;
|
|
5258
|
-
requires_approval
|
|
5258
|
+
requires_approval?: boolean | undefined;
|
|
5259
5259
|
};
|
|
5260
5260
|
|
|
5261
5261
|
/** @internal */
|
|
@@ -5265,7 +5265,7 @@ export const AgentToolInputRunWebScraperTool$outboundSchema: z.ZodType<
|
|
|
5265
5265
|
AgentToolInputRunWebScraperTool
|
|
5266
5266
|
> = z.object({
|
|
5267
5267
|
type: RunAgentAgentToolInputRunType$outboundSchema,
|
|
5268
|
-
requiresApproval: z.boolean().
|
|
5268
|
+
requiresApproval: z.boolean().optional(),
|
|
5269
5269
|
}).transform((v) => {
|
|
5270
5270
|
return remap$(v, {
|
|
5271
5271
|
requiresApproval: "requires_approval",
|
|
@@ -5307,7 +5307,7 @@ export const AgentToolInputRunGoogleSearchTool$inboundSchema: z.ZodType<
|
|
|
5307
5307
|
unknown
|
|
5308
5308
|
> = z.object({
|
|
5309
5309
|
type: AgentToolInputRunType$inboundSchema,
|
|
5310
|
-
requires_approval: z.boolean().
|
|
5310
|
+
requires_approval: z.boolean().optional(),
|
|
5311
5311
|
}).transform((v) => {
|
|
5312
5312
|
return remap$(v, {
|
|
5313
5313
|
"requires_approval": "requiresApproval",
|
|
@@ -5316,7 +5316,7 @@ export const AgentToolInputRunGoogleSearchTool$inboundSchema: z.ZodType<
|
|
|
5316
5316
|
/** @internal */
|
|
5317
5317
|
export type AgentToolInputRunGoogleSearchTool$Outbound = {
|
|
5318
5318
|
type: string;
|
|
5319
|
-
requires_approval
|
|
5319
|
+
requires_approval?: boolean | undefined;
|
|
5320
5320
|
};
|
|
5321
5321
|
|
|
5322
5322
|
/** @internal */
|
|
@@ -5326,7 +5326,7 @@ export const AgentToolInputRunGoogleSearchTool$outboundSchema: z.ZodType<
|
|
|
5326
5326
|
AgentToolInputRunGoogleSearchTool
|
|
5327
5327
|
> = z.object({
|
|
5328
5328
|
type: AgentToolInputRunType$outboundSchema,
|
|
5329
|
-
requiresApproval: z.boolean().
|
|
5329
|
+
requiresApproval: z.boolean().optional(),
|
|
5330
5330
|
}).transform((v) => {
|
|
5331
5331
|
return remap$(v, {
|
|
5332
5332
|
requiresApproval: "requires_approval",
|
|
@@ -4783,7 +4783,7 @@ export const StreamRunAgentAgentToolInputRunCurrentDateTool$inboundSchema:
|
|
|
4783
4783
|
> = z.object({
|
|
4784
4784
|
type:
|
|
4785
4785
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$inboundSchema,
|
|
4786
|
-
requires_approval: z.boolean().
|
|
4786
|
+
requires_approval: z.boolean().optional(),
|
|
4787
4787
|
}).transform((v) => {
|
|
4788
4788
|
return remap$(v, {
|
|
4789
4789
|
"requires_approval": "requiresApproval",
|
|
@@ -4792,7 +4792,7 @@ export const StreamRunAgentAgentToolInputRunCurrentDateTool$inboundSchema:
|
|
|
4792
4792
|
/** @internal */
|
|
4793
4793
|
export type StreamRunAgentAgentToolInputRunCurrentDateTool$Outbound = {
|
|
4794
4794
|
type: string;
|
|
4795
|
-
requires_approval
|
|
4795
|
+
requires_approval?: boolean | undefined;
|
|
4796
4796
|
};
|
|
4797
4797
|
|
|
4798
4798
|
/** @internal */
|
|
@@ -4804,7 +4804,7 @@ export const StreamRunAgentAgentToolInputRunCurrentDateTool$outboundSchema:
|
|
|
4804
4804
|
> = z.object({
|
|
4805
4805
|
type:
|
|
4806
4806
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$outboundSchema,
|
|
4807
|
-
requiresApproval: z.boolean().
|
|
4807
|
+
requiresApproval: z.boolean().optional(),
|
|
4808
4808
|
}).transform((v) => {
|
|
4809
4809
|
return remap$(v, {
|
|
4810
4810
|
requiresApproval: "requires_approval",
|
|
@@ -4860,7 +4860,7 @@ export const StreamRunAgentAgentToolInputRunQueryKnowledgeBaseTool$inboundSchema
|
|
|
4860
4860
|
> = z.object({
|
|
4861
4861
|
type:
|
|
4862
4862
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$inboundSchema,
|
|
4863
|
-
requires_approval: z.boolean().
|
|
4863
|
+
requires_approval: z.boolean().optional(),
|
|
4864
4864
|
}).transform((v) => {
|
|
4865
4865
|
return remap$(v, {
|
|
4866
4866
|
"requires_approval": "requiresApproval",
|
|
@@ -4869,7 +4869,7 @@ export const StreamRunAgentAgentToolInputRunQueryKnowledgeBaseTool$inboundSchema
|
|
|
4869
4869
|
/** @internal */
|
|
4870
4870
|
export type StreamRunAgentAgentToolInputRunQueryKnowledgeBaseTool$Outbound = {
|
|
4871
4871
|
type: string;
|
|
4872
|
-
requires_approval
|
|
4872
|
+
requires_approval?: boolean | undefined;
|
|
4873
4873
|
};
|
|
4874
4874
|
|
|
4875
4875
|
/** @internal */
|
|
@@ -4881,7 +4881,7 @@ export const StreamRunAgentAgentToolInputRunQueryKnowledgeBaseTool$outboundSchem
|
|
|
4881
4881
|
> = z.object({
|
|
4882
4882
|
type:
|
|
4883
4883
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$outboundSchema,
|
|
4884
|
-
requiresApproval: z.boolean().
|
|
4884
|
+
requiresApproval: z.boolean().optional(),
|
|
4885
4885
|
}).transform((v) => {
|
|
4886
4886
|
return remap$(v, {
|
|
4887
4887
|
requiresApproval: "requires_approval",
|
|
@@ -4937,7 +4937,7 @@ export const StreamRunAgentAgentToolInputRunRetrieveKnowledgeBasesTool$inboundSc
|
|
|
4937
4937
|
> = z.object({
|
|
4938
4938
|
type:
|
|
4939
4939
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$inboundSchema,
|
|
4940
|
-
requires_approval: z.boolean().
|
|
4940
|
+
requires_approval: z.boolean().optional(),
|
|
4941
4941
|
}).transform((v) => {
|
|
4942
4942
|
return remap$(v, {
|
|
4943
4943
|
"requires_approval": "requiresApproval",
|
|
@@ -4947,7 +4947,7 @@ export const StreamRunAgentAgentToolInputRunRetrieveKnowledgeBasesTool$inboundSc
|
|
|
4947
4947
|
export type StreamRunAgentAgentToolInputRunRetrieveKnowledgeBasesTool$Outbound =
|
|
4948
4948
|
{
|
|
4949
4949
|
type: string;
|
|
4950
|
-
requires_approval
|
|
4950
|
+
requires_approval?: boolean | undefined;
|
|
4951
4951
|
};
|
|
4952
4952
|
|
|
4953
4953
|
/** @internal */
|
|
@@ -4959,7 +4959,7 @@ export const StreamRunAgentAgentToolInputRunRetrieveKnowledgeBasesTool$outboundS
|
|
|
4959
4959
|
> = z.object({
|
|
4960
4960
|
type:
|
|
4961
4961
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$outboundSchema,
|
|
4962
|
-
requiresApproval: z.boolean().
|
|
4962
|
+
requiresApproval: z.boolean().optional(),
|
|
4963
4963
|
}).transform((v) => {
|
|
4964
4964
|
return remap$(v, {
|
|
4965
4965
|
requiresApproval: "requires_approval",
|
|
@@ -5013,7 +5013,7 @@ export const StreamRunAgentAgentToolInputRunDeleteMemoryDocumentTool$inboundSche
|
|
|
5013
5013
|
> = z.object({
|
|
5014
5014
|
type:
|
|
5015
5015
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$inboundSchema,
|
|
5016
|
-
requires_approval: z.boolean().
|
|
5016
|
+
requires_approval: z.boolean().optional(),
|
|
5017
5017
|
}).transform((v) => {
|
|
5018
5018
|
return remap$(v, {
|
|
5019
5019
|
"requires_approval": "requiresApproval",
|
|
@@ -5022,7 +5022,7 @@ export const StreamRunAgentAgentToolInputRunDeleteMemoryDocumentTool$inboundSche
|
|
|
5022
5022
|
/** @internal */
|
|
5023
5023
|
export type StreamRunAgentAgentToolInputRunDeleteMemoryDocumentTool$Outbound = {
|
|
5024
5024
|
type: string;
|
|
5025
|
-
requires_approval
|
|
5025
|
+
requires_approval?: boolean | undefined;
|
|
5026
5026
|
};
|
|
5027
5027
|
|
|
5028
5028
|
/** @internal */
|
|
@@ -5034,7 +5034,7 @@ export const StreamRunAgentAgentToolInputRunDeleteMemoryDocumentTool$outboundSch
|
|
|
5034
5034
|
> = z.object({
|
|
5035
5035
|
type:
|
|
5036
5036
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$outboundSchema,
|
|
5037
|
-
requiresApproval: z.boolean().
|
|
5037
|
+
requiresApproval: z.boolean().optional(),
|
|
5038
5038
|
}).transform((v) => {
|
|
5039
5039
|
return remap$(v, {
|
|
5040
5040
|
requiresApproval: "requires_approval",
|
|
@@ -5088,7 +5088,7 @@ export const StreamRunAgentAgentToolInputRunRetrieveMemoryStoresTool$inboundSche
|
|
|
5088
5088
|
> = z.object({
|
|
5089
5089
|
type:
|
|
5090
5090
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools7Type$inboundSchema,
|
|
5091
|
-
requires_approval: z.boolean().
|
|
5091
|
+
requires_approval: z.boolean().optional(),
|
|
5092
5092
|
}).transform((v) => {
|
|
5093
5093
|
return remap$(v, {
|
|
5094
5094
|
"requires_approval": "requiresApproval",
|
|
@@ -5097,7 +5097,7 @@ export const StreamRunAgentAgentToolInputRunRetrieveMemoryStoresTool$inboundSche
|
|
|
5097
5097
|
/** @internal */
|
|
5098
5098
|
export type StreamRunAgentAgentToolInputRunRetrieveMemoryStoresTool$Outbound = {
|
|
5099
5099
|
type: string;
|
|
5100
|
-
requires_approval
|
|
5100
|
+
requires_approval?: boolean | undefined;
|
|
5101
5101
|
};
|
|
5102
5102
|
|
|
5103
5103
|
/** @internal */
|
|
@@ -5109,7 +5109,7 @@ export const StreamRunAgentAgentToolInputRunRetrieveMemoryStoresTool$outboundSch
|
|
|
5109
5109
|
> = z.object({
|
|
5110
5110
|
type:
|
|
5111
5111
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools7Type$outboundSchema,
|
|
5112
|
-
requiresApproval: z.boolean().
|
|
5112
|
+
requiresApproval: z.boolean().optional(),
|
|
5113
5113
|
}).transform((v) => {
|
|
5114
5114
|
return remap$(v, {
|
|
5115
5115
|
requiresApproval: "requires_approval",
|
|
@@ -5163,7 +5163,7 @@ export const StreamRunAgentAgentToolInputRunWriteMemoryStoreTool$inboundSchema:
|
|
|
5163
5163
|
> = z.object({
|
|
5164
5164
|
type:
|
|
5165
5165
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$inboundSchema,
|
|
5166
|
-
requires_approval: z.boolean().
|
|
5166
|
+
requires_approval: z.boolean().optional(),
|
|
5167
5167
|
}).transform((v) => {
|
|
5168
5168
|
return remap$(v, {
|
|
5169
5169
|
"requires_approval": "requiresApproval",
|
|
@@ -5172,7 +5172,7 @@ export const StreamRunAgentAgentToolInputRunWriteMemoryStoreTool$inboundSchema:
|
|
|
5172
5172
|
/** @internal */
|
|
5173
5173
|
export type StreamRunAgentAgentToolInputRunWriteMemoryStoreTool$Outbound = {
|
|
5174
5174
|
type: string;
|
|
5175
|
-
requires_approval
|
|
5175
|
+
requires_approval?: boolean | undefined;
|
|
5176
5176
|
};
|
|
5177
5177
|
|
|
5178
5178
|
/** @internal */
|
|
@@ -5184,7 +5184,7 @@ export const StreamRunAgentAgentToolInputRunWriteMemoryStoreTool$outboundSchema:
|
|
|
5184
5184
|
> = z.object({
|
|
5185
5185
|
type:
|
|
5186
5186
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$outboundSchema,
|
|
5187
|
-
requiresApproval: z.boolean().
|
|
5187
|
+
requiresApproval: z.boolean().optional(),
|
|
5188
5188
|
}).transform((v) => {
|
|
5189
5189
|
return remap$(v, {
|
|
5190
5190
|
requiresApproval: "requires_approval",
|
|
@@ -5240,7 +5240,7 @@ export const StreamRunAgentAgentToolInputRunQueryMemoryStoreTool$inboundSchema:
|
|
|
5240
5240
|
> = z.object({
|
|
5241
5241
|
type:
|
|
5242
5242
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$inboundSchema,
|
|
5243
|
-
requires_approval: z.boolean().
|
|
5243
|
+
requires_approval: z.boolean().optional(),
|
|
5244
5244
|
}).transform((v) => {
|
|
5245
5245
|
return remap$(v, {
|
|
5246
5246
|
"requires_approval": "requiresApproval",
|
|
@@ -5249,7 +5249,7 @@ export const StreamRunAgentAgentToolInputRunQueryMemoryStoreTool$inboundSchema:
|
|
|
5249
5249
|
/** @internal */
|
|
5250
5250
|
export type StreamRunAgentAgentToolInputRunQueryMemoryStoreTool$Outbound = {
|
|
5251
5251
|
type: string;
|
|
5252
|
-
requires_approval
|
|
5252
|
+
requires_approval?: boolean | undefined;
|
|
5253
5253
|
};
|
|
5254
5254
|
|
|
5255
5255
|
/** @internal */
|
|
@@ -5261,7 +5261,7 @@ export const StreamRunAgentAgentToolInputRunQueryMemoryStoreTool$outboundSchema:
|
|
|
5261
5261
|
> = z.object({
|
|
5262
5262
|
type:
|
|
5263
5263
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$outboundSchema,
|
|
5264
|
-
requiresApproval: z.boolean().
|
|
5264
|
+
requiresApproval: z.boolean().optional(),
|
|
5265
5265
|
}).transform((v) => {
|
|
5266
5266
|
return remap$(v, {
|
|
5267
5267
|
requiresApproval: "requires_approval",
|
|
@@ -5314,7 +5314,7 @@ export const StreamRunAgentAgentToolInputRunRetrieveAgentsTool$inboundSchema:
|
|
|
5314
5314
|
> = z.object({
|
|
5315
5315
|
type:
|
|
5316
5316
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodyType$inboundSchema,
|
|
5317
|
-
requires_approval: z.boolean().
|
|
5317
|
+
requires_approval: z.boolean().optional(),
|
|
5318
5318
|
}).transform((v) => {
|
|
5319
5319
|
return remap$(v, {
|
|
5320
5320
|
"requires_approval": "requiresApproval",
|
|
@@ -5323,7 +5323,7 @@ export const StreamRunAgentAgentToolInputRunRetrieveAgentsTool$inboundSchema:
|
|
|
5323
5323
|
/** @internal */
|
|
5324
5324
|
export type StreamRunAgentAgentToolInputRunRetrieveAgentsTool$Outbound = {
|
|
5325
5325
|
type: string;
|
|
5326
|
-
requires_approval
|
|
5326
|
+
requires_approval?: boolean | undefined;
|
|
5327
5327
|
};
|
|
5328
5328
|
|
|
5329
5329
|
/** @internal */
|
|
@@ -5335,7 +5335,7 @@ export const StreamRunAgentAgentToolInputRunRetrieveAgentsTool$outboundSchema:
|
|
|
5335
5335
|
> = z.object({
|
|
5336
5336
|
type:
|
|
5337
5337
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodyType$outboundSchema,
|
|
5338
|
-
requiresApproval: z.boolean().
|
|
5338
|
+
requiresApproval: z.boolean().optional(),
|
|
5339
5339
|
}).transform((v) => {
|
|
5340
5340
|
return remap$(v, {
|
|
5341
5341
|
requiresApproval: "requires_approval",
|
|
@@ -5385,7 +5385,7 @@ export const StreamRunAgentAgentToolInputRunCallSubAgentTool$inboundSchema:
|
|
|
5385
5385
|
unknown
|
|
5386
5386
|
> = z.object({
|
|
5387
5387
|
type: StreamRunAgentAgentToolInputRunAgentsRequestType$inboundSchema,
|
|
5388
|
-
requires_approval: z.boolean().
|
|
5388
|
+
requires_approval: z.boolean().optional(),
|
|
5389
5389
|
}).transform((v) => {
|
|
5390
5390
|
return remap$(v, {
|
|
5391
5391
|
"requires_approval": "requiresApproval",
|
|
@@ -5394,7 +5394,7 @@ export const StreamRunAgentAgentToolInputRunCallSubAgentTool$inboundSchema:
|
|
|
5394
5394
|
/** @internal */
|
|
5395
5395
|
export type StreamRunAgentAgentToolInputRunCallSubAgentTool$Outbound = {
|
|
5396
5396
|
type: string;
|
|
5397
|
-
requires_approval
|
|
5397
|
+
requires_approval?: boolean | undefined;
|
|
5398
5398
|
};
|
|
5399
5399
|
|
|
5400
5400
|
/** @internal */
|
|
@@ -5405,7 +5405,7 @@ export const StreamRunAgentAgentToolInputRunCallSubAgentTool$outboundSchema:
|
|
|
5405
5405
|
StreamRunAgentAgentToolInputRunCallSubAgentTool
|
|
5406
5406
|
> = z.object({
|
|
5407
5407
|
type: StreamRunAgentAgentToolInputRunAgentsRequestType$outboundSchema,
|
|
5408
|
-
requiresApproval: z.boolean().
|
|
5408
|
+
requiresApproval: z.boolean().optional(),
|
|
5409
5409
|
}).transform((v) => {
|
|
5410
5410
|
return remap$(v, {
|
|
5411
5411
|
requiresApproval: "requires_approval",
|
|
@@ -5455,7 +5455,7 @@ export const StreamRunAgentAgentToolInputRunWebScraperTool$inboundSchema:
|
|
|
5455
5455
|
unknown
|
|
5456
5456
|
> = z.object({
|
|
5457
5457
|
type: StreamRunAgentAgentToolInputRunAgentsType$inboundSchema,
|
|
5458
|
-
requires_approval: z.boolean().
|
|
5458
|
+
requires_approval: z.boolean().optional(),
|
|
5459
5459
|
}).transform((v) => {
|
|
5460
5460
|
return remap$(v, {
|
|
5461
5461
|
"requires_approval": "requiresApproval",
|
|
@@ -5464,7 +5464,7 @@ export const StreamRunAgentAgentToolInputRunWebScraperTool$inboundSchema:
|
|
|
5464
5464
|
/** @internal */
|
|
5465
5465
|
export type StreamRunAgentAgentToolInputRunWebScraperTool$Outbound = {
|
|
5466
5466
|
type: string;
|
|
5467
|
-
requires_approval
|
|
5467
|
+
requires_approval?: boolean | undefined;
|
|
5468
5468
|
};
|
|
5469
5469
|
|
|
5470
5470
|
/** @internal */
|
|
@@ -5475,7 +5475,7 @@ export const StreamRunAgentAgentToolInputRunWebScraperTool$outboundSchema:
|
|
|
5475
5475
|
StreamRunAgentAgentToolInputRunWebScraperTool
|
|
5476
5476
|
> = z.object({
|
|
5477
5477
|
type: StreamRunAgentAgentToolInputRunAgentsType$outboundSchema,
|
|
5478
|
-
requiresApproval: z.boolean().
|
|
5478
|
+
requiresApproval: z.boolean().optional(),
|
|
5479
5479
|
}).transform((v) => {
|
|
5480
5480
|
return remap$(v, {
|
|
5481
5481
|
requiresApproval: "requires_approval",
|
|
@@ -5525,7 +5525,7 @@ export const StreamRunAgentAgentToolInputRunGoogleSearchTool$inboundSchema:
|
|
|
5525
5525
|
unknown
|
|
5526
5526
|
> = z.object({
|
|
5527
5527
|
type: StreamRunAgentAgentToolInputRunType$inboundSchema,
|
|
5528
|
-
requires_approval: z.boolean().
|
|
5528
|
+
requires_approval: z.boolean().optional(),
|
|
5529
5529
|
}).transform((v) => {
|
|
5530
5530
|
return remap$(v, {
|
|
5531
5531
|
"requires_approval": "requiresApproval",
|
|
@@ -5534,7 +5534,7 @@ export const StreamRunAgentAgentToolInputRunGoogleSearchTool$inboundSchema:
|
|
|
5534
5534
|
/** @internal */
|
|
5535
5535
|
export type StreamRunAgentAgentToolInputRunGoogleSearchTool$Outbound = {
|
|
5536
5536
|
type: string;
|
|
5537
|
-
requires_approval
|
|
5537
|
+
requires_approval?: boolean | undefined;
|
|
5538
5538
|
};
|
|
5539
5539
|
|
|
5540
5540
|
/** @internal */
|
|
@@ -5545,7 +5545,7 @@ export const StreamRunAgentAgentToolInputRunGoogleSearchTool$outboundSchema:
|
|
|
5545
5545
|
StreamRunAgentAgentToolInputRunGoogleSearchTool
|
|
5546
5546
|
> = z.object({
|
|
5547
5547
|
type: StreamRunAgentAgentToolInputRunType$outboundSchema,
|
|
5548
|
-
requiresApproval: z.boolean().
|
|
5548
|
+
requiresApproval: z.boolean().optional(),
|
|
5549
5549
|
}).transform((v) => {
|
|
5550
5550
|
return remap$(v, {
|
|
5551
5551
|
requiresApproval: "requires_approval",
|