@orq-ai/node 4.0.4 → 4.0.5
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 +213 -213
- package/bin/mcp-server.js.map +36 -36
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +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 +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/getalltools.js +12 -12
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- 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 +12 -12
- package/models/operations/runagent.js +2 -2
- package/models/operations/streamrunagent.js +2 -2
- 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 +14 -14
- package/package.json +1 -1
- package/packages/orq-rc/README.md +38 -47
- package/packages/orq-rc/docs/sdks/agents/README.md +230 -529
- package/packages/orq-rc/docs/sdks/responses/README.md +60 -65
- 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/funcs/agentsCreate.ts +16 -14
- package/packages/orq-rc/src/funcs/agentsDelete.ts +10 -6
- package/packages/orq-rc/src/funcs/agentsInvoke.ts +16 -6
- package/packages/orq-rc/src/funcs/agentsList.ts +18 -6
- package/packages/orq-rc/src/funcs/agentsResponsesCreate.ts +23 -12
- package/packages/orq-rc/src/funcs/agentsRetrieve.ts +21 -16
- package/packages/orq-rc/src/funcs/agentsRun.ts +4 -2
- package/packages/orq-rc/src/funcs/agentsStream.ts +16 -6
- package/packages/orq-rc/src/funcs/agentsStreamRun.ts +4 -2
- package/packages/orq-rc/src/funcs/agentsUpdate.ts +14 -6
- 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 -9
- package/packages/orq-rc/src/mcp-server/tools/agentsCreate.ts +3 -3
- package/packages/orq-rc/src/mcp-server/tools/agentsDelete.ts +5 -5
- package/packages/orq-rc/src/mcp-server/tools/agentsInvoke.ts +7 -4
- package/packages/orq-rc/src/mcp-server/tools/agentsList.ts +9 -5
- package/packages/orq-rc/src/mcp-server/tools/agentsResponsesCreate.ts +8 -4
- package/packages/orq-rc/src/mcp-server/tools/agentsRetrieve.ts +5 -5
- package/packages/orq-rc/src/mcp-server/tools/agentsRun.ts +2 -2
- package/packages/orq-rc/src/mcp-server/tools/agentsStream.ts +7 -4
- package/packages/orq-rc/src/mcp-server/tools/agentsStreamRun.ts +2 -2
- package/packages/orq-rc/src/mcp-server/tools/agentsUpdate.ts +8 -4
- package/packages/orq-rc/src/models/errors/createagentrequest.ts +67 -0
- package/packages/orq-rc/src/models/errors/deleteagent.ts +2 -2
- package/packages/orq-rc/src/models/errors/index.ts +2 -3
- package/packages/orq-rc/src/models/errors/{listagenttasks.ts → retrieveagentrequest.ts} +15 -15
- package/packages/orq-rc/src/models/errors/updateagent.ts +2 -2
- package/packages/orq-rc/src/models/operations/{createagent.ts → createagentrequest.ts} +1643 -1485
- package/packages/orq-rc/src/models/operations/{createagentresponse.ts → createagentresponserequest.ts} +141 -127
- 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/createprompt.ts +4 -4
- package/packages/orq-rc/src/models/operations/createtool.ts +12 -12
- 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 +12 -12
- 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/index.ts +3 -7
- package/packages/orq-rc/src/models/operations/invokeagent.ts +153 -190
- package/packages/orq-rc/src/models/operations/listagents.ts +9 -21
- 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/retrieveagentrequest.ts +3741 -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/retrievetool.ts +12 -12
- package/packages/orq-rc/src/models/operations/runagent.ts +53 -57
- package/packages/orq-rc/src/models/operations/streamagent.ts +1 -1
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +68 -82
- package/packages/orq-rc/src/models/operations/updateagent.ts +17 -17
- 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/updateprompt.ts +4 -4
- package/packages/orq-rc/src/models/operations/updatetool.ts +14 -14
- package/packages/orq-rc/src/sdk/agents.ts +51 -99
- package/packages/orq-rc/src/sdk/responses.ts +7 -5
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/operations/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 +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/getalltools.ts +12 -12
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- 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 +12 -12
- package/src/models/operations/runagent.ts +2 -2
- package/src/models/operations/streamrunagent.ts +2 -2
- 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 +14 -14
- package/packages/orq-rc/src/funcs/agentsListActions.ts +0 -169
- package/packages/orq-rc/src/funcs/agentsListTasks.ts +0 -183
- package/packages/orq-rc/src/funcs/agentsRetrieveAction.ts +0 -173
- package/packages/orq-rc/src/funcs/agentsRetrieveTask.ts +0 -179
- package/packages/orq-rc/src/mcp-server/tools/agentsListActions.ts +0 -35
- package/packages/orq-rc/src/mcp-server/tools/agentsListTasks.ts +0 -37
- package/packages/orq-rc/src/mcp-server/tools/agentsRetrieveAction.ts +0 -35
- package/packages/orq-rc/src/mcp-server/tools/agentsRetrieveTask.ts +0 -37
- package/packages/orq-rc/src/models/errors/createagent.ts +0 -67
- package/packages/orq-rc/src/models/errors/getagent.ts +0 -67
- package/packages/orq-rc/src/models/operations/getagent.ts +0 -3480
- package/packages/orq-rc/src/models/operations/getagenttask.ts +0 -2389
- package/packages/orq-rc/src/models/operations/listactions.ts +0 -427
- package/packages/orq-rc/src/models/operations/listagenttasks.ts +0 -2614
- package/packages/orq-rc/src/models/operations/retrieveaction.ts +0 -354
|
@@ -84,7 +84,7 @@ export type StreamRunAgentResponseFormatAgentsJsonSchema = {
|
|
|
84
84
|
/**
|
|
85
85
|
* Whether to enable strict schema adherence when generating the output. If set to true, the model will always follow the exact schema defined in the schema field. Only a subset of JSON Schema is supported when strict is true.
|
|
86
86
|
*/
|
|
87
|
-
strict?: boolean |
|
|
87
|
+
strict?: boolean | undefined;
|
|
88
88
|
};
|
|
89
89
|
|
|
90
90
|
/**
|
|
@@ -466,7 +466,7 @@ export type StreamRunAgentResponseFormatAgentsRequestRequestBodyJsonSchema = {
|
|
|
466
466
|
/**
|
|
467
467
|
* Whether to enable strict schema adherence when generating the output. If set to true, the model will always follow the exact schema defined in the schema field. Only a subset of JSON Schema is supported when strict is true.
|
|
468
468
|
*/
|
|
469
|
-
strict?: boolean |
|
|
469
|
+
strict?: boolean | undefined;
|
|
470
470
|
};
|
|
471
471
|
|
|
472
472
|
/**
|
|
@@ -2376,20 +2376,18 @@ export type StreamRunAgentDataAgentsResponse200TextEventStreamResponseBody7Type
|
|
|
2376
2376
|
typeof StreamRunAgentDataAgentsResponse200TextEventStreamResponseBody7Type
|
|
2377
2377
|
>;
|
|
2378
2378
|
|
|
2379
|
-
export const
|
|
2379
|
+
export const Review = {
|
|
2380
2380
|
Approved: "approved",
|
|
2381
2381
|
Rejected: "rejected",
|
|
2382
2382
|
} as const;
|
|
2383
|
-
export type
|
|
2384
|
-
typeof StreamRunAgentDataReview
|
|
2385
|
-
>;
|
|
2383
|
+
export type Review = ClosedEnum<typeof Review>;
|
|
2386
2384
|
|
|
2387
2385
|
export type StreamRunAgentDataAgentsResponse200TextEventStreamResponseBodyData =
|
|
2388
2386
|
{
|
|
2389
2387
|
agentId: string;
|
|
2390
2388
|
actionId: string;
|
|
2391
2389
|
agentToolCallId: string;
|
|
2392
|
-
review:
|
|
2390
|
+
review: Review;
|
|
2393
2391
|
mockOutput?: { [k: string]: any } | undefined;
|
|
2394
2392
|
reviewSource?: string | undefined;
|
|
2395
2393
|
reviewedById?: string | undefined;
|
|
@@ -2428,7 +2426,7 @@ export type DataConditions = {
|
|
|
2428
2426
|
value: string;
|
|
2429
2427
|
};
|
|
2430
2428
|
|
|
2431
|
-
export type
|
|
2429
|
+
export type Tool = {
|
|
2432
2430
|
/**
|
|
2433
2431
|
* The id of the resource
|
|
2434
2432
|
*/
|
|
@@ -2459,7 +2457,7 @@ export type StreamRunAgentDataAgentsResponse200TextEventStreamData = {
|
|
|
2459
2457
|
agentId: string;
|
|
2460
2458
|
actionId: string;
|
|
2461
2459
|
requiresApproval: boolean;
|
|
2462
|
-
tool:
|
|
2460
|
+
tool: Tool;
|
|
2463
2461
|
input: { [k: string]: any };
|
|
2464
2462
|
agentToolCallId: string;
|
|
2465
2463
|
responseId?: string | undefined;
|
|
@@ -3604,7 +3602,7 @@ export type StreamRunAgentData =
|
|
|
3604
3602
|
| Seventeen;
|
|
3605
3603
|
|
|
3606
3604
|
/**
|
|
3607
|
-
*
|
|
3605
|
+
* Server-Sent Event stream successfully established. Delivers real-time agent execution events including message fragments, tool invocations, intermediate results, and completion status. Stream terminates with [DONE] sentinel upon completion.
|
|
3608
3606
|
*/
|
|
3609
3607
|
export type StreamRunAgentResponseBody = {
|
|
3610
3608
|
data:
|
|
@@ -3711,14 +3709,14 @@ export const StreamRunAgentResponseFormatAgentsJsonSchema$inboundSchema:
|
|
|
3711
3709
|
description: z.string().optional(),
|
|
3712
3710
|
name: z.string(),
|
|
3713
3711
|
schema: z.any().optional(),
|
|
3714
|
-
strict: z.
|
|
3712
|
+
strict: z.boolean().default(false),
|
|
3715
3713
|
});
|
|
3716
3714
|
/** @internal */
|
|
3717
3715
|
export type StreamRunAgentResponseFormatAgentsJsonSchema$Outbound = {
|
|
3718
3716
|
description?: string | undefined;
|
|
3719
3717
|
name: string;
|
|
3720
3718
|
schema?: any | undefined;
|
|
3721
|
-
strict
|
|
3719
|
+
strict: boolean;
|
|
3722
3720
|
};
|
|
3723
3721
|
|
|
3724
3722
|
/** @internal */
|
|
@@ -3731,7 +3729,7 @@ export const StreamRunAgentResponseFormatAgentsJsonSchema$outboundSchema:
|
|
|
3731
3729
|
description: z.string().optional(),
|
|
3732
3730
|
name: z.string(),
|
|
3733
3731
|
schema: z.any().optional(),
|
|
3734
|
-
strict: z.
|
|
3732
|
+
strict: z.boolean().default(false),
|
|
3735
3733
|
});
|
|
3736
3734
|
|
|
3737
3735
|
export function streamRunAgentResponseFormatAgentsJsonSchemaToJSON(
|
|
@@ -4738,7 +4736,7 @@ export const StreamRunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$inbo
|
|
|
4738
4736
|
description: z.string().optional(),
|
|
4739
4737
|
name: z.string(),
|
|
4740
4738
|
schema: z.any().optional(),
|
|
4741
|
-
strict: z.
|
|
4739
|
+
strict: z.boolean().default(false),
|
|
4742
4740
|
});
|
|
4743
4741
|
/** @internal */
|
|
4744
4742
|
export type StreamRunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$Outbound =
|
|
@@ -4746,7 +4744,7 @@ export type StreamRunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$Outbo
|
|
|
4746
4744
|
description?: string | undefined;
|
|
4747
4745
|
name: string;
|
|
4748
4746
|
schema?: any | undefined;
|
|
4749
|
-
strict
|
|
4747
|
+
strict: boolean;
|
|
4750
4748
|
};
|
|
4751
4749
|
|
|
4752
4750
|
/** @internal */
|
|
@@ -4759,7 +4757,7 @@ export const StreamRunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$outb
|
|
|
4759
4757
|
description: z.string().optional(),
|
|
4760
4758
|
name: z.string(),
|
|
4761
4759
|
schema: z.any().optional(),
|
|
4762
|
-
strict: z.
|
|
4760
|
+
strict: z.boolean().default(false),
|
|
4763
4761
|
});
|
|
4764
4762
|
|
|
4765
4763
|
export function streamRunAgentResponseFormatAgentsRequestRequestBodyJsonSchemaToJSON(
|
|
@@ -6589,7 +6587,7 @@ export const AgentToolInputRunTools$inboundSchema: z.ZodType<
|
|
|
6589
6587
|
z.ZodTypeDef,
|
|
6590
6588
|
unknown
|
|
6591
6589
|
> = z.object({
|
|
6592
|
-
id: z.string().default("
|
|
6590
|
+
id: z.string().default("01KATB7EQGE05X8Y6R5Y5QNYRR"),
|
|
6593
6591
|
name: z.string(),
|
|
6594
6592
|
description: z.string().optional(),
|
|
6595
6593
|
schema: z.lazy(() => AgentToolInputRunSchema$inboundSchema),
|
|
@@ -6608,7 +6606,7 @@ export const AgentToolInputRunTools$outboundSchema: z.ZodType<
|
|
|
6608
6606
|
z.ZodTypeDef,
|
|
6609
6607
|
AgentToolInputRunTools
|
|
6610
6608
|
> = z.object({
|
|
6611
|
-
id: z.string().default("
|
|
6609
|
+
id: z.string().default("01KATB7EQGE05X8Y6R5Y5QNYRR"),
|
|
6612
6610
|
name: z.string(),
|
|
6613
6611
|
description: z.string().optional(),
|
|
6614
6612
|
schema: z.lazy(() => AgentToolInputRunSchema$outboundSchema),
|
|
@@ -11368,13 +11366,11 @@ export const StreamRunAgentDataAgentsResponse200TextEventStreamResponseBody7Type
|
|
|
11368
11366
|
StreamRunAgentDataAgentsResponse200TextEventStreamResponseBody7Type$inboundSchema;
|
|
11369
11367
|
|
|
11370
11368
|
/** @internal */
|
|
11371
|
-
export const
|
|
11372
|
-
|
|
11373
|
-
> = z.nativeEnum(StreamRunAgentDataReview);
|
|
11369
|
+
export const Review$inboundSchema: z.ZodNativeEnum<typeof Review> = z
|
|
11370
|
+
.nativeEnum(Review);
|
|
11374
11371
|
/** @internal */
|
|
11375
|
-
export const
|
|
11376
|
-
|
|
11377
|
-
> = StreamRunAgentDataReview$inboundSchema;
|
|
11372
|
+
export const Review$outboundSchema: z.ZodNativeEnum<typeof Review> =
|
|
11373
|
+
Review$inboundSchema;
|
|
11378
11374
|
|
|
11379
11375
|
/** @internal */
|
|
11380
11376
|
export const StreamRunAgentDataAgentsResponse200TextEventStreamResponseBodyData$inboundSchema:
|
|
@@ -11386,7 +11382,7 @@ export const StreamRunAgentDataAgentsResponse200TextEventStreamResponseBodyData$
|
|
|
11386
11382
|
agent_id: z.string(),
|
|
11387
11383
|
action_id: z.string(),
|
|
11388
11384
|
agent_tool_call_id: z.string(),
|
|
11389
|
-
review:
|
|
11385
|
+
review: Review$inboundSchema,
|
|
11390
11386
|
mock_output: z.record(z.any()).optional(),
|
|
11391
11387
|
review_source: z.string().optional(),
|
|
11392
11388
|
reviewed_by_id: z.string().optional(),
|
|
@@ -11422,7 +11418,7 @@ export const StreamRunAgentDataAgentsResponse200TextEventStreamResponseBodyData$
|
|
|
11422
11418
|
agentId: z.string(),
|
|
11423
11419
|
actionId: z.string(),
|
|
11424
11420
|
agentToolCallId: z.string(),
|
|
11425
|
-
review:
|
|
11421
|
+
review: Review$outboundSchema,
|
|
11426
11422
|
mockOutput: z.record(z.any()).optional(),
|
|
11427
11423
|
reviewSource: z.string().optional(),
|
|
11428
11424
|
reviewedById: z.string().optional(),
|
|
@@ -11564,30 +11560,27 @@ export function dataConditionsFromJSON(
|
|
|
11564
11560
|
}
|
|
11565
11561
|
|
|
11566
11562
|
/** @internal */
|
|
11567
|
-
export const
|
|
11568
|
-
|
|
11569
|
-
|
|
11570
|
-
|
|
11571
|
-
|
|
11572
|
-
|
|
11573
|
-
|
|
11574
|
-
|
|
11575
|
-
|
|
11576
|
-
|
|
11577
|
-
|
|
11578
|
-
|
|
11579
|
-
|
|
11580
|
-
|
|
11581
|
-
|
|
11582
|
-
|
|
11583
|
-
|
|
11584
|
-
|
|
11585
|
-
"requires_approval": "requiresApproval",
|
|
11586
|
-
"tool_id": "toolId",
|
|
11563
|
+
export const Tool$inboundSchema: z.ZodType<Tool, z.ZodTypeDef, unknown> = z
|
|
11564
|
+
.object({
|
|
11565
|
+
id: z.string(),
|
|
11566
|
+
key: z.string().optional(),
|
|
11567
|
+
action_type: z.string(),
|
|
11568
|
+
display_name: z.string().optional(),
|
|
11569
|
+
description: z.string().optional(),
|
|
11570
|
+
requires_approval: z.boolean().default(false),
|
|
11571
|
+
tool_id: z.string().optional(),
|
|
11572
|
+
conditions: z.array(z.lazy(() => DataConditions$inboundSchema)).optional(),
|
|
11573
|
+
timeout: z.number().default(120),
|
|
11574
|
+
}).transform((v) => {
|
|
11575
|
+
return remap$(v, {
|
|
11576
|
+
"action_type": "actionType",
|
|
11577
|
+
"display_name": "displayName",
|
|
11578
|
+
"requires_approval": "requiresApproval",
|
|
11579
|
+
"tool_id": "toolId",
|
|
11580
|
+
});
|
|
11587
11581
|
});
|
|
11588
|
-
});
|
|
11589
11582
|
/** @internal */
|
|
11590
|
-
export type
|
|
11583
|
+
export type Tool$Outbound = {
|
|
11591
11584
|
id: string;
|
|
11592
11585
|
key?: string | undefined;
|
|
11593
11586
|
action_type: string;
|
|
@@ -11600,43 +11593,36 @@ export type StreamRunAgentDataTool$Outbound = {
|
|
|
11600
11593
|
};
|
|
11601
11594
|
|
|
11602
11595
|
/** @internal */
|
|
11603
|
-
export const
|
|
11604
|
-
|
|
11605
|
-
|
|
11606
|
-
|
|
11607
|
-
|
|
11608
|
-
|
|
11609
|
-
|
|
11610
|
-
|
|
11611
|
-
|
|
11612
|
-
|
|
11613
|
-
|
|
11614
|
-
|
|
11615
|
-
|
|
11616
|
-
|
|
11617
|
-
|
|
11618
|
-
|
|
11619
|
-
|
|
11620
|
-
|
|
11621
|
-
requiresApproval: "requires_approval",
|
|
11622
|
-
toolId: "tool_id",
|
|
11596
|
+
export const Tool$outboundSchema: z.ZodType<Tool$Outbound, z.ZodTypeDef, Tool> =
|
|
11597
|
+
z.object({
|
|
11598
|
+
id: z.string(),
|
|
11599
|
+
key: z.string().optional(),
|
|
11600
|
+
actionType: z.string(),
|
|
11601
|
+
displayName: z.string().optional(),
|
|
11602
|
+
description: z.string().optional(),
|
|
11603
|
+
requiresApproval: z.boolean().default(false),
|
|
11604
|
+
toolId: z.string().optional(),
|
|
11605
|
+
conditions: z.array(z.lazy(() => DataConditions$outboundSchema)).optional(),
|
|
11606
|
+
timeout: z.number().default(120),
|
|
11607
|
+
}).transform((v) => {
|
|
11608
|
+
return remap$(v, {
|
|
11609
|
+
actionType: "action_type",
|
|
11610
|
+
displayName: "display_name",
|
|
11611
|
+
requiresApproval: "requires_approval",
|
|
11612
|
+
toolId: "tool_id",
|
|
11613
|
+
});
|
|
11623
11614
|
});
|
|
11624
|
-
});
|
|
11625
11615
|
|
|
11626
|
-
export function
|
|
11627
|
-
|
|
11628
|
-
): string {
|
|
11629
|
-
return JSON.stringify(
|
|
11630
|
-
StreamRunAgentDataTool$outboundSchema.parse(streamRunAgentDataTool),
|
|
11631
|
-
);
|
|
11616
|
+
export function toolToJSON(tool: Tool): string {
|
|
11617
|
+
return JSON.stringify(Tool$outboundSchema.parse(tool));
|
|
11632
11618
|
}
|
|
11633
|
-
export function
|
|
11619
|
+
export function toolFromJSON(
|
|
11634
11620
|
jsonString: string,
|
|
11635
|
-
): SafeParseResult<
|
|
11621
|
+
): SafeParseResult<Tool, SDKValidationError> {
|
|
11636
11622
|
return safeParse(
|
|
11637
11623
|
jsonString,
|
|
11638
|
-
(x) =>
|
|
11639
|
-
`Failed to parse '
|
|
11624
|
+
(x) => Tool$inboundSchema.parse(JSON.parse(x)),
|
|
11625
|
+
`Failed to parse 'Tool' from JSON`,
|
|
11640
11626
|
);
|
|
11641
11627
|
}
|
|
11642
11628
|
|
|
@@ -11650,7 +11636,7 @@ export const StreamRunAgentDataAgentsResponse200TextEventStreamData$inboundSchem
|
|
|
11650
11636
|
agent_id: z.string(),
|
|
11651
11637
|
action_id: z.string(),
|
|
11652
11638
|
requires_approval: z.boolean(),
|
|
11653
|
-
tool: z.lazy(() =>
|
|
11639
|
+
tool: z.lazy(() => Tool$inboundSchema),
|
|
11654
11640
|
input: z.record(z.any()),
|
|
11655
11641
|
agent_tool_call_id: z.string(),
|
|
11656
11642
|
responseId: z.string().optional(),
|
|
@@ -11667,7 +11653,7 @@ export type StreamRunAgentDataAgentsResponse200TextEventStreamData$Outbound = {
|
|
|
11667
11653
|
agent_id: string;
|
|
11668
11654
|
action_id: string;
|
|
11669
11655
|
requires_approval: boolean;
|
|
11670
|
-
tool:
|
|
11656
|
+
tool: Tool$Outbound;
|
|
11671
11657
|
input: { [k: string]: any };
|
|
11672
11658
|
agent_tool_call_id: string;
|
|
11673
11659
|
responseId?: string | undefined;
|
|
@@ -11683,7 +11669,7 @@ export const StreamRunAgentDataAgentsResponse200TextEventStreamData$outboundSche
|
|
|
11683
11669
|
agentId: z.string(),
|
|
11684
11670
|
actionId: z.string(),
|
|
11685
11671
|
requiresApproval: z.boolean(),
|
|
11686
|
-
tool: z.lazy(() =>
|
|
11672
|
+
tool: z.lazy(() => Tool$outboundSchema),
|
|
11687
11673
|
input: z.record(z.any()),
|
|
11688
11674
|
agentToolCallId: z.string(),
|
|
11689
11675
|
responseId: z.string().optional(),
|
|
@@ -81,7 +81,7 @@ export type UpdateAgentResponseFormatAgentsJsonSchema = {
|
|
|
81
81
|
/**
|
|
82
82
|
* Whether to enable strict schema adherence when generating the output. If set to true, the model will always follow the exact schema defined in the schema field. Only a subset of JSON Schema is supported when strict is true.
|
|
83
83
|
*/
|
|
84
|
-
strict?: boolean |
|
|
84
|
+
strict?: boolean | undefined;
|
|
85
85
|
};
|
|
86
86
|
|
|
87
87
|
/**
|
|
@@ -452,7 +452,7 @@ export type UpdateAgentResponseFormatAgentsRequestRequestBodyJsonSchema = {
|
|
|
452
452
|
/**
|
|
453
453
|
* Whether to enable strict schema adherence when generating the output. If set to true, the model will always follow the exact schema defined in the schema field. Only a subset of JSON Schema is supported when strict is true.
|
|
454
454
|
*/
|
|
455
|
-
strict?: boolean |
|
|
455
|
+
strict?: boolean | undefined;
|
|
456
456
|
};
|
|
457
457
|
|
|
458
458
|
/**
|
|
@@ -1548,7 +1548,7 @@ export type UpdateAgentResponseFormatAgentsResponseJsonSchema = {
|
|
|
1548
1548
|
/**
|
|
1549
1549
|
* Whether to enable strict schema adherence when generating the output. If set to true, the model will always follow the exact schema defined in the schema field. Only a subset of JSON Schema is supported when strict is true.
|
|
1550
1550
|
*/
|
|
1551
|
-
strict?: boolean |
|
|
1551
|
+
strict?: boolean | undefined;
|
|
1552
1552
|
};
|
|
1553
1553
|
|
|
1554
1554
|
/**
|
|
@@ -1894,7 +1894,7 @@ export type UpdateAgentResponseFormatAgentsResponse200ApplicationJSONJSONSchema
|
|
|
1894
1894
|
/**
|
|
1895
1895
|
* Whether to enable strict schema adherence when generating the output. If set to true, the model will always follow the exact schema defined in the schema field. Only a subset of JSON Schema is supported when strict is true.
|
|
1896
1896
|
*/
|
|
1897
|
-
strict?: boolean |
|
|
1897
|
+
strict?: boolean | undefined;
|
|
1898
1898
|
};
|
|
1899
1899
|
|
|
1900
1900
|
/**
|
|
@@ -2245,7 +2245,7 @@ export type UpdateAgentAgentsKnowledgeBases = {
|
|
|
2245
2245
|
};
|
|
2246
2246
|
|
|
2247
2247
|
/**
|
|
2248
|
-
* Agent updated
|
|
2248
|
+
* Agent configuration successfully updated. Returns the complete updated agent manifest reflecting all changes made.
|
|
2249
2249
|
*/
|
|
2250
2250
|
export type UpdateAgentResponseBody = {
|
|
2251
2251
|
id: string;
|
|
@@ -2378,14 +2378,14 @@ export const UpdateAgentResponseFormatAgentsJsonSchema$inboundSchema: z.ZodType<
|
|
|
2378
2378
|
description: z.string().optional(),
|
|
2379
2379
|
name: z.string(),
|
|
2380
2380
|
schema: z.any().optional(),
|
|
2381
|
-
strict: z.
|
|
2381
|
+
strict: z.boolean().default(false),
|
|
2382
2382
|
});
|
|
2383
2383
|
/** @internal */
|
|
2384
2384
|
export type UpdateAgentResponseFormatAgentsJsonSchema$Outbound = {
|
|
2385
2385
|
description?: string | undefined;
|
|
2386
2386
|
name: string;
|
|
2387
2387
|
schema?: any | undefined;
|
|
2388
|
-
strict
|
|
2388
|
+
strict: boolean;
|
|
2389
2389
|
};
|
|
2390
2390
|
|
|
2391
2391
|
/** @internal */
|
|
@@ -2398,7 +2398,7 @@ export const UpdateAgentResponseFormatAgentsJsonSchema$outboundSchema:
|
|
|
2398
2398
|
description: z.string().optional(),
|
|
2399
2399
|
name: z.string(),
|
|
2400
2400
|
schema: z.any().optional(),
|
|
2401
|
-
strict: z.
|
|
2401
|
+
strict: z.boolean().default(false),
|
|
2402
2402
|
});
|
|
2403
2403
|
|
|
2404
2404
|
export function updateAgentResponseFormatAgentsJsonSchemaToJSON(
|
|
@@ -3332,7 +3332,7 @@ export const UpdateAgentResponseFormatAgentsRequestRequestBodyJsonSchema$inbound
|
|
|
3332
3332
|
description: z.string().optional(),
|
|
3333
3333
|
name: z.string(),
|
|
3334
3334
|
schema: z.any().optional(),
|
|
3335
|
-
strict: z.
|
|
3335
|
+
strict: z.boolean().default(false),
|
|
3336
3336
|
});
|
|
3337
3337
|
/** @internal */
|
|
3338
3338
|
export type UpdateAgentResponseFormatAgentsRequestRequestBodyJsonSchema$Outbound =
|
|
@@ -3340,7 +3340,7 @@ export type UpdateAgentResponseFormatAgentsRequestRequestBodyJsonSchema$Outbound
|
|
|
3340
3340
|
description?: string | undefined;
|
|
3341
3341
|
name: string;
|
|
3342
3342
|
schema?: any | undefined;
|
|
3343
|
-
strict
|
|
3343
|
+
strict: boolean;
|
|
3344
3344
|
};
|
|
3345
3345
|
|
|
3346
3346
|
/** @internal */
|
|
@@ -3353,7 +3353,7 @@ export const UpdateAgentResponseFormatAgentsRequestRequestBodyJsonSchema$outboun
|
|
|
3353
3353
|
description: z.string().optional(),
|
|
3354
3354
|
name: z.string(),
|
|
3355
3355
|
schema: z.any().optional(),
|
|
3356
|
-
strict: z.
|
|
3356
|
+
strict: z.boolean().default(false),
|
|
3357
3357
|
});
|
|
3358
3358
|
|
|
3359
3359
|
export function updateAgentResponseFormatAgentsRequestRequestBodyJsonSchemaToJSON(
|
|
@@ -6370,14 +6370,14 @@ export const UpdateAgentResponseFormatAgentsResponseJsonSchema$inboundSchema:
|
|
|
6370
6370
|
description: z.string().optional(),
|
|
6371
6371
|
name: z.string(),
|
|
6372
6372
|
schema: z.any().optional(),
|
|
6373
|
-
strict: z.
|
|
6373
|
+
strict: z.boolean().default(false),
|
|
6374
6374
|
});
|
|
6375
6375
|
/** @internal */
|
|
6376
6376
|
export type UpdateAgentResponseFormatAgentsResponseJsonSchema$Outbound = {
|
|
6377
6377
|
description?: string | undefined;
|
|
6378
6378
|
name: string;
|
|
6379
6379
|
schema?: any | undefined;
|
|
6380
|
-
strict
|
|
6380
|
+
strict: boolean;
|
|
6381
6381
|
};
|
|
6382
6382
|
|
|
6383
6383
|
/** @internal */
|
|
@@ -6390,7 +6390,7 @@ export const UpdateAgentResponseFormatAgentsResponseJsonSchema$outboundSchema:
|
|
|
6390
6390
|
description: z.string().optional(),
|
|
6391
6391
|
name: z.string(),
|
|
6392
6392
|
schema: z.any().optional(),
|
|
6393
|
-
strict: z.
|
|
6393
|
+
strict: z.boolean().default(false),
|
|
6394
6394
|
});
|
|
6395
6395
|
|
|
6396
6396
|
export function updateAgentResponseFormatAgentsResponseJsonSchemaToJSON(
|
|
@@ -7282,7 +7282,7 @@ export const UpdateAgentResponseFormatAgentsResponse200ApplicationJSONJSONSchema
|
|
|
7282
7282
|
description: z.string().optional(),
|
|
7283
7283
|
name: z.string(),
|
|
7284
7284
|
schema: z.any().optional(),
|
|
7285
|
-
strict: z.
|
|
7285
|
+
strict: z.boolean().default(false),
|
|
7286
7286
|
});
|
|
7287
7287
|
/** @internal */
|
|
7288
7288
|
export type UpdateAgentResponseFormatAgentsResponse200ApplicationJSONJSONSchema$Outbound =
|
|
@@ -7290,7 +7290,7 @@ export type UpdateAgentResponseFormatAgentsResponse200ApplicationJSONJSONSchema$
|
|
|
7290
7290
|
description?: string | undefined;
|
|
7291
7291
|
name: string;
|
|
7292
7292
|
schema?: any | undefined;
|
|
7293
|
-
strict
|
|
7293
|
+
strict: boolean;
|
|
7294
7294
|
};
|
|
7295
7295
|
|
|
7296
7296
|
/** @internal */
|
|
@@ -7303,7 +7303,7 @@ export const UpdateAgentResponseFormatAgentsResponse200ApplicationJSONJSONSchema
|
|
|
7303
7303
|
description: z.string().optional(),
|
|
7304
7304
|
name: z.string(),
|
|
7305
7305
|
schema: z.any().optional(),
|
|
7306
|
-
strict: z.
|
|
7306
|
+
strict: z.boolean().default(false),
|
|
7307
7307
|
});
|
|
7308
7308
|
|
|
7309
7309
|
export function updateAgentResponseFormatAgentsResponse200ApplicationJSONJSONSchemaToJSON(
|
|
@@ -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-24T07:10:58.421Z",
|
|
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-24T07:10:58.421Z"))
|
|
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-24T07:10:58.070Z",
|
|
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-24T07:10:58.070Z"))
|
|
255
255
|
.transform(v => v.toISOString()),
|
|
256
256
|
}).transform((v) => {
|
|
257
257
|
return remap$(v, {
|
|
@@ -4893,7 +4893,7 @@ export const UpdateDatapointEvaluations3$inboundSchema: z.ZodType<
|
|
|
4893
4893
|
.default("orq"),
|
|
4894
4894
|
reviewed_by_id: z.string(),
|
|
4895
4895
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
4896
|
-
"2025-11-
|
|
4896
|
+
"2025-11-24T07:11:09.649Z",
|
|
4897
4897
|
).transform(v => new Date(v)),
|
|
4898
4898
|
type: UpdateDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
4899
4899
|
values: z.array(z.string()),
|
|
@@ -4930,7 +4930,7 @@ export const UpdateDatapointEvaluations3$outboundSchema: z.ZodType<
|
|
|
4930
4930
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema
|
|
4931
4931
|
.default("orq"),
|
|
4932
4932
|
reviewedById: z.string(),
|
|
4933
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
4933
|
+
reviewedAt: z.date().default(() => new Date("2025-11-24T07:11:09.649Z"))
|
|
4934
4934
|
.transform(v => v.toISOString()),
|
|
4935
4935
|
type: UpdateDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
4936
4936
|
values: z.array(z.string()),
|
|
@@ -5003,7 +5003,7 @@ export const UpdateDatapointEvaluations2$inboundSchema: z.ZodType<
|
|
|
5003
5003
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
5004
5004
|
reviewed_by_id: z.string(),
|
|
5005
5005
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
5006
|
-
"2025-11-
|
|
5006
|
+
"2025-11-24T07:11:09.648Z",
|
|
5007
5007
|
).transform(v => new Date(v)),
|
|
5008
5008
|
type: UpdateDatapointEvaluationsDatasetsType$inboundSchema,
|
|
5009
5009
|
value: z.number(),
|
|
@@ -5041,7 +5041,7 @@ export const UpdateDatapointEvaluations2$outboundSchema: z.ZodType<
|
|
|
5041
5041
|
"orq",
|
|
5042
5042
|
),
|
|
5043
5043
|
reviewedById: z.string(),
|
|
5044
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
5044
|
+
reviewedAt: z.date().default(() => new Date("2025-11-24T07:11:09.648Z"))
|
|
5045
5045
|
.transform(v => v.toISOString()),
|
|
5046
5046
|
type: UpdateDatapointEvaluationsDatasetsType$outboundSchema,
|
|
5047
5047
|
value: z.number(),
|
|
@@ -5112,7 +5112,7 @@ export const UpdateDatapointEvaluations1$inboundSchema: z.ZodType<
|
|
|
5112
5112
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
5113
5113
|
reviewed_by_id: z.string(),
|
|
5114
5114
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
5115
|
-
"2025-11-
|
|
5115
|
+
"2025-11-24T07:11:09.647Z",
|
|
5116
5116
|
).transform(v => new Date(v)),
|
|
5117
5117
|
type: UpdateDatapointEvaluationsType$inboundSchema,
|
|
5118
5118
|
value: z.string(),
|
|
@@ -5147,7 +5147,7 @@ export const UpdateDatapointEvaluations1$outboundSchema: z.ZodType<
|
|
|
5147
5147
|
humanReviewId: z.string(),
|
|
5148
5148
|
source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
5149
5149
|
reviewedById: z.string(),
|
|
5150
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
5150
|
+
reviewedAt: z.date().default(() => new Date("2025-11-24T07:11:09.647Z"))
|
|
5151
5151
|
.transform(v => v.toISOString()),
|
|
5152
5152
|
type: UpdateDatapointEvaluationsType$outboundSchema,
|
|
5153
5153
|
value: z.string(),
|
|
@@ -5262,7 +5262,7 @@ export const UpdateDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
5262
5262
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
5263
5263
|
.optional(),
|
|
5264
5264
|
updated: z.string().datetime({ offset: true }).default(
|
|
5265
|
-
"2025-11-
|
|
5265
|
+
"2025-11-24T07:10:58.070Z",
|
|
5266
5266
|
).transform(v => new Date(v)),
|
|
5267
5267
|
}).transform((v) => {
|
|
5268
5268
|
return remap$(v, {
|
|
@@ -5340,7 +5340,7 @@ export const UpdateDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
5340
5340
|
createdById: z.string().optional(),
|
|
5341
5341
|
updatedById: z.string().optional(),
|
|
5342
5342
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
5343
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
5343
|
+
updated: z.date().default(() => new Date("2025-11-24T07:10:58.070Z"))
|
|
5344
5344
|
.transform(v => v.toISOString()),
|
|
5345
5345
|
}).transform((v) => {
|
|
5346
5346
|
return remap$(v, {
|
|
@@ -256,7 +256,7 @@ export const UpdateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
256
256
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
257
257
|
.optional(),
|
|
258
258
|
updated: z.string().datetime({ offset: true }).default(
|
|
259
|
-
"2025-11-
|
|
259
|
+
"2025-11-24T07:10:58.070Z",
|
|
260
260
|
).transform(v => new Date(v)),
|
|
261
261
|
}).transform((v) => {
|
|
262
262
|
return remap$(v, {
|
|
@@ -295,7 +295,7 @@ export const UpdateDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
295
295
|
createdById: z.string().optional(),
|
|
296
296
|
updatedById: z.string().optional(),
|
|
297
297
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
298
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
298
|
+
updated: z.date().default(() => new Date("2025-11-24T07:10:58.070Z"))
|
|
299
299
|
.transform(v => v.toISOString()),
|
|
300
300
|
}).transform((v) => {
|
|
301
301
|
return remap$(v, {
|
|
@@ -202,7 +202,7 @@ export const UpdateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
202
202
|
z.ZodTypeDef,
|
|
203
203
|
unknown
|
|
204
204
|
> = z.object({
|
|
205
|
-
_id: z.string().default("
|
|
205
|
+
_id: z.string().default("01KATB7F6D6NMZPZZ7XXW9QJA7"),
|
|
206
206
|
display_name: z.string(),
|
|
207
207
|
description: z.string().optional(),
|
|
208
208
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -245,7 +245,7 @@ export const UpdateDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
245
245
|
z.ZodTypeDef,
|
|
246
246
|
UpdateDatasourceResponseBody
|
|
247
247
|
> = z.object({
|
|
248
|
-
id: z.string().default("
|
|
248
|
+
id: z.string().default("01KATB7F6D6NMZPZZ7XXW9QJA7"),
|
|
249
249
|
displayName: z.string(),
|
|
250
250
|
description: z.string().optional(),
|
|
251
251
|
status: UpdateDatasourceStatus$outboundSchema,
|