@mastra/client-js 1.18.0-alpha.16 → 1.18.0-alpha.17
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/CHANGELOG.md +11 -0
- package/dist/docs/SKILL.md +1 -1
- package/dist/docs/assets/SOURCE_MAP.json +1 -1
- package/dist/index.cjs +2 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -4
- package/dist/index.js.map +1 -1
- package/dist/resources/mcp-tool.d.ts.map +1 -1
- package/dist/route-types.generated.d.ts +0 -775
- package/dist/route-types.generated.d.ts.map +1 -1
- package/package.json +4 -4
|
@@ -13028,645 +13028,6 @@ export interface PostA2aAgentId_RouteContract {
|
|
|
13028
13028
|
response: PostA2aAgentId_Response;
|
|
13029
13029
|
responseType: 'datastream-response';
|
|
13030
13030
|
}
|
|
13031
|
-
export type GetAgentBuilder_Response = {
|
|
13032
|
-
[key: string]: {
|
|
13033
|
-
steps: {
|
|
13034
|
-
[key: string]: {
|
|
13035
|
-
id: string;
|
|
13036
|
-
description?: string | undefined;
|
|
13037
|
-
stateSchema?: string | undefined;
|
|
13038
|
-
inputSchema?: string | undefined;
|
|
13039
|
-
outputSchema?: string | undefined;
|
|
13040
|
-
resumeSchema?: string | undefined;
|
|
13041
|
-
suspendSchema?: string | undefined;
|
|
13042
|
-
component?: string | undefined;
|
|
13043
|
-
isWorkflow?: boolean | undefined;
|
|
13044
|
-
metadata?: {
|
|
13045
|
-
[key: string]: unknown;
|
|
13046
|
-
} | undefined;
|
|
13047
|
-
};
|
|
13048
|
-
};
|
|
13049
|
-
allSteps: {
|
|
13050
|
-
[key: string]: {
|
|
13051
|
-
id: string;
|
|
13052
|
-
description?: string | undefined;
|
|
13053
|
-
stateSchema?: string | undefined;
|
|
13054
|
-
inputSchema?: string | undefined;
|
|
13055
|
-
outputSchema?: string | undefined;
|
|
13056
|
-
resumeSchema?: string | undefined;
|
|
13057
|
-
suspendSchema?: string | undefined;
|
|
13058
|
-
component?: string | undefined;
|
|
13059
|
-
isWorkflow?: boolean | undefined;
|
|
13060
|
-
metadata?: {
|
|
13061
|
-
[key: string]: unknown;
|
|
13062
|
-
} | undefined;
|
|
13063
|
-
};
|
|
13064
|
-
};
|
|
13065
|
-
name?: string | undefined;
|
|
13066
|
-
description?: string | undefined;
|
|
13067
|
-
stepGraph: {
|
|
13068
|
-
type: 'step' | 'sleep' | 'sleepUntil' | 'waitForEvent' | 'parallel' | 'conditional' | 'loop' | 'foreach';
|
|
13069
|
-
}[];
|
|
13070
|
-
inputSchema?: string | undefined;
|
|
13071
|
-
outputSchema?: string | undefined;
|
|
13072
|
-
stateSchema?: string | undefined;
|
|
13073
|
-
options?: {} | undefined;
|
|
13074
|
-
isProcessorWorkflow?: boolean | undefined;
|
|
13075
|
-
};
|
|
13076
|
-
};
|
|
13077
|
-
export type GetAgentBuilder_Request = Simplify<(never extends never ? {} : {
|
|
13078
|
-
params: never;
|
|
13079
|
-
}) & (never extends never ? {} : {} extends never ? {
|
|
13080
|
-
query?: never;
|
|
13081
|
-
} : {
|
|
13082
|
-
query: never;
|
|
13083
|
-
}) & (never extends never ? {} : {} extends never ? {
|
|
13084
|
-
body?: never;
|
|
13085
|
-
} : {
|
|
13086
|
-
body: never;
|
|
13087
|
-
})>;
|
|
13088
|
-
export interface GetAgentBuilder_RouteContract {
|
|
13089
|
-
pathParams: never;
|
|
13090
|
-
queryParams: never;
|
|
13091
|
-
body: never;
|
|
13092
|
-
request: GetAgentBuilder_Request;
|
|
13093
|
-
response: GetAgentBuilder_Response;
|
|
13094
|
-
responseType: 'json';
|
|
13095
|
-
}
|
|
13096
|
-
export type GetAgentBuilderActionId_PathParams = {
|
|
13097
|
-
/** Unique identifier for the agent-builder action */
|
|
13098
|
-
actionId: string;
|
|
13099
|
-
};
|
|
13100
|
-
export type GetAgentBuilderActionId_Response = {
|
|
13101
|
-
steps: {
|
|
13102
|
-
[key: string]: {
|
|
13103
|
-
id: string;
|
|
13104
|
-
description?: string | undefined;
|
|
13105
|
-
stateSchema?: string | undefined;
|
|
13106
|
-
inputSchema?: string | undefined;
|
|
13107
|
-
outputSchema?: string | undefined;
|
|
13108
|
-
resumeSchema?: string | undefined;
|
|
13109
|
-
suspendSchema?: string | undefined;
|
|
13110
|
-
component?: string | undefined;
|
|
13111
|
-
isWorkflow?: boolean | undefined;
|
|
13112
|
-
metadata?: {
|
|
13113
|
-
[key: string]: unknown;
|
|
13114
|
-
} | undefined;
|
|
13115
|
-
};
|
|
13116
|
-
};
|
|
13117
|
-
allSteps: {
|
|
13118
|
-
[key: string]: {
|
|
13119
|
-
id: string;
|
|
13120
|
-
description?: string | undefined;
|
|
13121
|
-
stateSchema?: string | undefined;
|
|
13122
|
-
inputSchema?: string | undefined;
|
|
13123
|
-
outputSchema?: string | undefined;
|
|
13124
|
-
resumeSchema?: string | undefined;
|
|
13125
|
-
suspendSchema?: string | undefined;
|
|
13126
|
-
component?: string | undefined;
|
|
13127
|
-
isWorkflow?: boolean | undefined;
|
|
13128
|
-
metadata?: {
|
|
13129
|
-
[key: string]: unknown;
|
|
13130
|
-
} | undefined;
|
|
13131
|
-
};
|
|
13132
|
-
};
|
|
13133
|
-
name?: string | undefined;
|
|
13134
|
-
description?: string | undefined;
|
|
13135
|
-
stepGraph: {
|
|
13136
|
-
type: 'step' | 'sleep' | 'sleepUntil' | 'waitForEvent' | 'parallel' | 'conditional' | 'loop' | 'foreach';
|
|
13137
|
-
}[];
|
|
13138
|
-
inputSchema?: string | undefined;
|
|
13139
|
-
outputSchema?: string | undefined;
|
|
13140
|
-
stateSchema?: string | undefined;
|
|
13141
|
-
options?: {} | undefined;
|
|
13142
|
-
isProcessorWorkflow?: boolean | undefined;
|
|
13143
|
-
};
|
|
13144
|
-
export type GetAgentBuilderActionId_Request = Simplify<(GetAgentBuilderActionId_PathParams extends never ? {} : {
|
|
13145
|
-
params: GetAgentBuilderActionId_PathParams;
|
|
13146
|
-
}) & (never extends never ? {} : {} extends never ? {
|
|
13147
|
-
query?: never;
|
|
13148
|
-
} : {
|
|
13149
|
-
query: never;
|
|
13150
|
-
}) & (never extends never ? {} : {} extends never ? {
|
|
13151
|
-
body?: never;
|
|
13152
|
-
} : {
|
|
13153
|
-
body: never;
|
|
13154
|
-
})>;
|
|
13155
|
-
export interface GetAgentBuilderActionId_RouteContract {
|
|
13156
|
-
pathParams: GetAgentBuilderActionId_PathParams;
|
|
13157
|
-
queryParams: never;
|
|
13158
|
-
body: never;
|
|
13159
|
-
request: GetAgentBuilderActionId_Request;
|
|
13160
|
-
response: GetAgentBuilderActionId_Response;
|
|
13161
|
-
responseType: 'json';
|
|
13162
|
-
}
|
|
13163
|
-
export type GetAgentBuilderActionIdRuns_PathParams = {
|
|
13164
|
-
/** Unique identifier for the agent-builder action */
|
|
13165
|
-
actionId: string;
|
|
13166
|
-
};
|
|
13167
|
-
export type GetAgentBuilderActionIdRuns_QueryParams = {
|
|
13168
|
-
page?: number | undefined;
|
|
13169
|
-
perPage?: number | undefined;
|
|
13170
|
-
offset?: number | undefined;
|
|
13171
|
-
limit?: number | undefined;
|
|
13172
|
-
fromDate?: Date | undefined;
|
|
13173
|
-
toDate?: Date | undefined;
|
|
13174
|
-
resourceId?: string | undefined;
|
|
13175
|
-
status?: ('running' | 'waiting' | 'suspended' | 'success' | 'failed' | 'canceled' | 'pending' | 'bailed' | 'tripwire' | 'paused') | undefined;
|
|
13176
|
-
};
|
|
13177
|
-
export type GetAgentBuilderActionIdRuns_Response = {
|
|
13178
|
-
runs: {
|
|
13179
|
-
workflowName: string;
|
|
13180
|
-
runId: string;
|
|
13181
|
-
snapshot: {
|
|
13182
|
-
[key: string]: any;
|
|
13183
|
-
} | string;
|
|
13184
|
-
createdAt: Date;
|
|
13185
|
-
updatedAt: Date;
|
|
13186
|
-
resourceId?: string | undefined;
|
|
13187
|
-
}[];
|
|
13188
|
-
total: number;
|
|
13189
|
-
};
|
|
13190
|
-
export type GetAgentBuilderActionIdRuns_Request = Simplify<(GetAgentBuilderActionIdRuns_PathParams extends never ? {} : {
|
|
13191
|
-
params: GetAgentBuilderActionIdRuns_PathParams;
|
|
13192
|
-
}) & (GetAgentBuilderActionIdRuns_QueryParams extends never ? {} : {} extends GetAgentBuilderActionIdRuns_QueryParams ? {
|
|
13193
|
-
query?: GetAgentBuilderActionIdRuns_QueryParams;
|
|
13194
|
-
} : {
|
|
13195
|
-
query: GetAgentBuilderActionIdRuns_QueryParams;
|
|
13196
|
-
}) & (never extends never ? {} : {} extends never ? {
|
|
13197
|
-
body?: never;
|
|
13198
|
-
} : {
|
|
13199
|
-
body: never;
|
|
13200
|
-
})>;
|
|
13201
|
-
export interface GetAgentBuilderActionIdRuns_RouteContract {
|
|
13202
|
-
pathParams: GetAgentBuilderActionIdRuns_PathParams;
|
|
13203
|
-
queryParams: GetAgentBuilderActionIdRuns_QueryParams;
|
|
13204
|
-
body: never;
|
|
13205
|
-
request: GetAgentBuilderActionIdRuns_Request;
|
|
13206
|
-
response: GetAgentBuilderActionIdRuns_Response;
|
|
13207
|
-
responseType: 'json';
|
|
13208
|
-
}
|
|
13209
|
-
export type GetAgentBuilderActionIdRunsRunId_PathParams = {
|
|
13210
|
-
/** Unique identifier for the agent-builder action */
|
|
13211
|
-
actionId: string;
|
|
13212
|
-
/** Unique identifier for the action run */
|
|
13213
|
-
runId: string;
|
|
13214
|
-
};
|
|
13215
|
-
export type GetAgentBuilderActionIdRunsRunId_QueryParams = {
|
|
13216
|
-
/** Comma-separated list of fields to return. Available fields: result, error, payload, steps, activeStepsPath, serializedStepGraph. Metadata fields (runId, workflowName, resourceId, createdAt, updatedAt) and status are always included. */
|
|
13217
|
-
fields?: string | undefined;
|
|
13218
|
-
/** Whether to include nested workflow data in steps. Defaults to true. Set to false for better performance. */
|
|
13219
|
-
withNestedWorkflows?: ('true' | 'false') | undefined;
|
|
13220
|
-
};
|
|
13221
|
-
export type GetAgentBuilderActionIdRunsRunId_Response = {
|
|
13222
|
-
runId: string;
|
|
13223
|
-
workflowName: string;
|
|
13224
|
-
resourceId?: string | undefined;
|
|
13225
|
-
createdAt: Date;
|
|
13226
|
-
updatedAt: Date;
|
|
13227
|
-
status: 'running' | 'waiting' | 'suspended' | 'success' | 'failed' | 'canceled' | 'pending' | 'bailed' | 'tripwire' | 'paused';
|
|
13228
|
-
initialState?: {
|
|
13229
|
-
[key: string]: any;
|
|
13230
|
-
} | undefined;
|
|
13231
|
-
result?: unknown | undefined;
|
|
13232
|
-
error?: unknown | undefined;
|
|
13233
|
-
payload?: unknown | undefined;
|
|
13234
|
-
steps?: {
|
|
13235
|
-
[key: string]: any;
|
|
13236
|
-
} | undefined;
|
|
13237
|
-
activeStepsPath?: {
|
|
13238
|
-
[key: string]: number[];
|
|
13239
|
-
} | undefined;
|
|
13240
|
-
serializedStepGraph?: {
|
|
13241
|
-
type: 'step' | 'sleep' | 'sleepUntil' | 'waitForEvent' | 'parallel' | 'conditional' | 'loop' | 'foreach';
|
|
13242
|
-
}[] | undefined;
|
|
13243
|
-
};
|
|
13244
|
-
export type GetAgentBuilderActionIdRunsRunId_Request = Simplify<(GetAgentBuilderActionIdRunsRunId_PathParams extends never ? {} : {
|
|
13245
|
-
params: GetAgentBuilderActionIdRunsRunId_PathParams;
|
|
13246
|
-
}) & (GetAgentBuilderActionIdRunsRunId_QueryParams extends never ? {} : {} extends GetAgentBuilderActionIdRunsRunId_QueryParams ? {
|
|
13247
|
-
query?: GetAgentBuilderActionIdRunsRunId_QueryParams;
|
|
13248
|
-
} : {
|
|
13249
|
-
query: GetAgentBuilderActionIdRunsRunId_QueryParams;
|
|
13250
|
-
}) & (never extends never ? {} : {} extends never ? {
|
|
13251
|
-
body?: never;
|
|
13252
|
-
} : {
|
|
13253
|
-
body: never;
|
|
13254
|
-
})>;
|
|
13255
|
-
export interface GetAgentBuilderActionIdRunsRunId_RouteContract {
|
|
13256
|
-
pathParams: GetAgentBuilderActionIdRunsRunId_PathParams;
|
|
13257
|
-
queryParams: GetAgentBuilderActionIdRunsRunId_QueryParams;
|
|
13258
|
-
body: never;
|
|
13259
|
-
request: GetAgentBuilderActionIdRunsRunId_Request;
|
|
13260
|
-
response: GetAgentBuilderActionIdRunsRunId_Response;
|
|
13261
|
-
responseType: 'json';
|
|
13262
|
-
}
|
|
13263
|
-
export type PostAgentBuilderActionIdCreateRun_PathParams = {
|
|
13264
|
-
/** Unique identifier for the agent-builder action */
|
|
13265
|
-
actionId: string;
|
|
13266
|
-
};
|
|
13267
|
-
export type PostAgentBuilderActionIdCreateRun_QueryParams = {
|
|
13268
|
-
runId?: string | undefined;
|
|
13269
|
-
};
|
|
13270
|
-
export type PostAgentBuilderActionIdCreateRun_Response = {
|
|
13271
|
-
runId: string;
|
|
13272
|
-
};
|
|
13273
|
-
export type PostAgentBuilderActionIdCreateRun_Request = Simplify<(PostAgentBuilderActionIdCreateRun_PathParams extends never ? {} : {
|
|
13274
|
-
params: PostAgentBuilderActionIdCreateRun_PathParams;
|
|
13275
|
-
}) & (PostAgentBuilderActionIdCreateRun_QueryParams extends never ? {} : {} extends PostAgentBuilderActionIdCreateRun_QueryParams ? {
|
|
13276
|
-
query?: PostAgentBuilderActionIdCreateRun_QueryParams;
|
|
13277
|
-
} : {
|
|
13278
|
-
query: PostAgentBuilderActionIdCreateRun_QueryParams;
|
|
13279
|
-
}) & (never extends never ? {} : {} extends never ? {
|
|
13280
|
-
body?: never;
|
|
13281
|
-
} : {
|
|
13282
|
-
body: never;
|
|
13283
|
-
})>;
|
|
13284
|
-
export interface PostAgentBuilderActionIdCreateRun_RouteContract {
|
|
13285
|
-
pathParams: PostAgentBuilderActionIdCreateRun_PathParams;
|
|
13286
|
-
queryParams: PostAgentBuilderActionIdCreateRun_QueryParams;
|
|
13287
|
-
body: never;
|
|
13288
|
-
request: PostAgentBuilderActionIdCreateRun_Request;
|
|
13289
|
-
response: PostAgentBuilderActionIdCreateRun_Response;
|
|
13290
|
-
responseType: 'json';
|
|
13291
|
-
}
|
|
13292
|
-
export type PostAgentBuilderActionIdStream_PathParams = {
|
|
13293
|
-
/** Unique identifier for the agent-builder action */
|
|
13294
|
-
actionId: string;
|
|
13295
|
-
};
|
|
13296
|
-
export type PostAgentBuilderActionIdStream_QueryParams = {
|
|
13297
|
-
/** Unique identifier for the run */
|
|
13298
|
-
runId: string;
|
|
13299
|
-
};
|
|
13300
|
-
export type PostAgentBuilderActionIdStream_Body = {
|
|
13301
|
-
resourceId?: string | undefined;
|
|
13302
|
-
inputData?: unknown | undefined;
|
|
13303
|
-
initialState?: unknown | undefined;
|
|
13304
|
-
requestContext?: {
|
|
13305
|
-
[key: string]: unknown;
|
|
13306
|
-
} | undefined;
|
|
13307
|
-
tracingOptions?: {
|
|
13308
|
-
metadata?: {
|
|
13309
|
-
[key: string]: unknown;
|
|
13310
|
-
} | undefined;
|
|
13311
|
-
requestContextKeys?: string[] | undefined;
|
|
13312
|
-
traceId?: string | undefined;
|
|
13313
|
-
parentSpanId?: string | undefined;
|
|
13314
|
-
tags?: string[] | undefined;
|
|
13315
|
-
hideInput?: boolean | undefined;
|
|
13316
|
-
hideOutput?: boolean | undefined;
|
|
13317
|
-
} | undefined;
|
|
13318
|
-
perStep?: boolean | undefined;
|
|
13319
|
-
closeOnSuspend?: boolean | undefined;
|
|
13320
|
-
};
|
|
13321
|
-
export type PostAgentBuilderActionIdStream_Response = any;
|
|
13322
|
-
export type PostAgentBuilderActionIdStream_Request = Simplify<(PostAgentBuilderActionIdStream_PathParams extends never ? {} : {
|
|
13323
|
-
params: PostAgentBuilderActionIdStream_PathParams;
|
|
13324
|
-
}) & (PostAgentBuilderActionIdStream_QueryParams extends never ? {} : {} extends PostAgentBuilderActionIdStream_QueryParams ? {
|
|
13325
|
-
query?: PostAgentBuilderActionIdStream_QueryParams;
|
|
13326
|
-
} : {
|
|
13327
|
-
query: PostAgentBuilderActionIdStream_QueryParams;
|
|
13328
|
-
}) & (PostAgentBuilderActionIdStream_Body extends never ? {} : {} extends PostAgentBuilderActionIdStream_Body ? {
|
|
13329
|
-
body?: PostAgentBuilderActionIdStream_Body;
|
|
13330
|
-
} : {
|
|
13331
|
-
body: PostAgentBuilderActionIdStream_Body;
|
|
13332
|
-
})>;
|
|
13333
|
-
export interface PostAgentBuilderActionIdStream_RouteContract {
|
|
13334
|
-
pathParams: PostAgentBuilderActionIdStream_PathParams;
|
|
13335
|
-
queryParams: PostAgentBuilderActionIdStream_QueryParams;
|
|
13336
|
-
body: PostAgentBuilderActionIdStream_Body;
|
|
13337
|
-
request: PostAgentBuilderActionIdStream_Request;
|
|
13338
|
-
response: PostAgentBuilderActionIdStream_Response;
|
|
13339
|
-
responseType: 'stream';
|
|
13340
|
-
}
|
|
13341
|
-
export type PostAgentBuilderActionIdStartAsync_PathParams = {
|
|
13342
|
-
/** Unique identifier for the agent-builder action */
|
|
13343
|
-
actionId: string;
|
|
13344
|
-
};
|
|
13345
|
-
export type PostAgentBuilderActionIdStartAsync_QueryParams = {
|
|
13346
|
-
runId?: string | undefined;
|
|
13347
|
-
};
|
|
13348
|
-
export type PostAgentBuilderActionIdStartAsync_Body = {
|
|
13349
|
-
resourceId?: string | undefined;
|
|
13350
|
-
inputData?: unknown | undefined;
|
|
13351
|
-
initialState?: unknown | undefined;
|
|
13352
|
-
requestContext?: {
|
|
13353
|
-
[key: string]: unknown;
|
|
13354
|
-
} | undefined;
|
|
13355
|
-
tracingOptions?: {
|
|
13356
|
-
metadata?: {
|
|
13357
|
-
[key: string]: unknown;
|
|
13358
|
-
} | undefined;
|
|
13359
|
-
requestContextKeys?: string[] | undefined;
|
|
13360
|
-
traceId?: string | undefined;
|
|
13361
|
-
parentSpanId?: string | undefined;
|
|
13362
|
-
tags?: string[] | undefined;
|
|
13363
|
-
hideInput?: boolean | undefined;
|
|
13364
|
-
hideOutput?: boolean | undefined;
|
|
13365
|
-
} | undefined;
|
|
13366
|
-
perStep?: boolean | undefined;
|
|
13367
|
-
};
|
|
13368
|
-
export type PostAgentBuilderActionIdStartAsync_Response = {
|
|
13369
|
-
status?: ('running' | 'waiting' | 'suspended' | 'success' | 'failed' | 'canceled' | 'pending' | 'bailed' | 'tripwire' | 'paused') | undefined;
|
|
13370
|
-
result?: unknown | undefined;
|
|
13371
|
-
error?: unknown | undefined;
|
|
13372
|
-
payload?: unknown | undefined;
|
|
13373
|
-
initialState?: unknown | undefined;
|
|
13374
|
-
steps?: {
|
|
13375
|
-
[key: string]: any;
|
|
13376
|
-
} | undefined;
|
|
13377
|
-
activeStepsPath?: {
|
|
13378
|
-
[key: string]: number[];
|
|
13379
|
-
} | undefined;
|
|
13380
|
-
serializedStepGraph?: {
|
|
13381
|
-
type: 'step' | 'sleep' | 'sleepUntil' | 'waitForEvent' | 'parallel' | 'conditional' | 'loop' | 'foreach';
|
|
13382
|
-
}[] | undefined;
|
|
13383
|
-
};
|
|
13384
|
-
export type PostAgentBuilderActionIdStartAsync_Request = Simplify<(PostAgentBuilderActionIdStartAsync_PathParams extends never ? {} : {
|
|
13385
|
-
params: PostAgentBuilderActionIdStartAsync_PathParams;
|
|
13386
|
-
}) & (PostAgentBuilderActionIdStartAsync_QueryParams extends never ? {} : {} extends PostAgentBuilderActionIdStartAsync_QueryParams ? {
|
|
13387
|
-
query?: PostAgentBuilderActionIdStartAsync_QueryParams;
|
|
13388
|
-
} : {
|
|
13389
|
-
query: PostAgentBuilderActionIdStartAsync_QueryParams;
|
|
13390
|
-
}) & (PostAgentBuilderActionIdStartAsync_Body extends never ? {} : {} extends PostAgentBuilderActionIdStartAsync_Body ? {
|
|
13391
|
-
body?: PostAgentBuilderActionIdStartAsync_Body;
|
|
13392
|
-
} : {
|
|
13393
|
-
body: PostAgentBuilderActionIdStartAsync_Body;
|
|
13394
|
-
})>;
|
|
13395
|
-
export interface PostAgentBuilderActionIdStartAsync_RouteContract {
|
|
13396
|
-
pathParams: PostAgentBuilderActionIdStartAsync_PathParams;
|
|
13397
|
-
queryParams: PostAgentBuilderActionIdStartAsync_QueryParams;
|
|
13398
|
-
body: PostAgentBuilderActionIdStartAsync_Body;
|
|
13399
|
-
request: PostAgentBuilderActionIdStartAsync_Request;
|
|
13400
|
-
response: PostAgentBuilderActionIdStartAsync_Response;
|
|
13401
|
-
responseType: 'json';
|
|
13402
|
-
}
|
|
13403
|
-
export type PostAgentBuilderActionIdStart_PathParams = {
|
|
13404
|
-
/** Unique identifier for the agent-builder action */
|
|
13405
|
-
actionId: string;
|
|
13406
|
-
};
|
|
13407
|
-
export type PostAgentBuilderActionIdStart_QueryParams = {
|
|
13408
|
-
/** Unique identifier for the run */
|
|
13409
|
-
runId: string;
|
|
13410
|
-
};
|
|
13411
|
-
export type PostAgentBuilderActionIdStart_Body = {
|
|
13412
|
-
resourceId?: string | undefined;
|
|
13413
|
-
inputData?: unknown | undefined;
|
|
13414
|
-
initialState?: unknown | undefined;
|
|
13415
|
-
requestContext?: {
|
|
13416
|
-
[key: string]: unknown;
|
|
13417
|
-
} | undefined;
|
|
13418
|
-
tracingOptions?: {
|
|
13419
|
-
metadata?: {
|
|
13420
|
-
[key: string]: unknown;
|
|
13421
|
-
} | undefined;
|
|
13422
|
-
requestContextKeys?: string[] | undefined;
|
|
13423
|
-
traceId?: string | undefined;
|
|
13424
|
-
parentSpanId?: string | undefined;
|
|
13425
|
-
tags?: string[] | undefined;
|
|
13426
|
-
hideInput?: boolean | undefined;
|
|
13427
|
-
hideOutput?: boolean | undefined;
|
|
13428
|
-
} | undefined;
|
|
13429
|
-
perStep?: boolean | undefined;
|
|
13430
|
-
};
|
|
13431
|
-
export type PostAgentBuilderActionIdStart_Response = {
|
|
13432
|
-
message: string;
|
|
13433
|
-
};
|
|
13434
|
-
export type PostAgentBuilderActionIdStart_Request = Simplify<(PostAgentBuilderActionIdStart_PathParams extends never ? {} : {
|
|
13435
|
-
params: PostAgentBuilderActionIdStart_PathParams;
|
|
13436
|
-
}) & (PostAgentBuilderActionIdStart_QueryParams extends never ? {} : {} extends PostAgentBuilderActionIdStart_QueryParams ? {
|
|
13437
|
-
query?: PostAgentBuilderActionIdStart_QueryParams;
|
|
13438
|
-
} : {
|
|
13439
|
-
query: PostAgentBuilderActionIdStart_QueryParams;
|
|
13440
|
-
}) & (PostAgentBuilderActionIdStart_Body extends never ? {} : {} extends PostAgentBuilderActionIdStart_Body ? {
|
|
13441
|
-
body?: PostAgentBuilderActionIdStart_Body;
|
|
13442
|
-
} : {
|
|
13443
|
-
body: PostAgentBuilderActionIdStart_Body;
|
|
13444
|
-
})>;
|
|
13445
|
-
export interface PostAgentBuilderActionIdStart_RouteContract {
|
|
13446
|
-
pathParams: PostAgentBuilderActionIdStart_PathParams;
|
|
13447
|
-
queryParams: PostAgentBuilderActionIdStart_QueryParams;
|
|
13448
|
-
body: PostAgentBuilderActionIdStart_Body;
|
|
13449
|
-
request: PostAgentBuilderActionIdStart_Request;
|
|
13450
|
-
response: PostAgentBuilderActionIdStart_Response;
|
|
13451
|
-
responseType: 'json';
|
|
13452
|
-
}
|
|
13453
|
-
export type PostAgentBuilderActionIdObserve_PathParams = {
|
|
13454
|
-
/** Unique identifier for the agent-builder action */
|
|
13455
|
-
actionId: string;
|
|
13456
|
-
};
|
|
13457
|
-
export type PostAgentBuilderActionIdObserve_QueryParams = {
|
|
13458
|
-
/** Unique identifier for the run */
|
|
13459
|
-
runId: string;
|
|
13460
|
-
};
|
|
13461
|
-
export type PostAgentBuilderActionIdObserve_Response = any;
|
|
13462
|
-
export type PostAgentBuilderActionIdObserve_Request = Simplify<(PostAgentBuilderActionIdObserve_PathParams extends never ? {} : {
|
|
13463
|
-
params: PostAgentBuilderActionIdObserve_PathParams;
|
|
13464
|
-
}) & (PostAgentBuilderActionIdObserve_QueryParams extends never ? {} : {} extends PostAgentBuilderActionIdObserve_QueryParams ? {
|
|
13465
|
-
query?: PostAgentBuilderActionIdObserve_QueryParams;
|
|
13466
|
-
} : {
|
|
13467
|
-
query: PostAgentBuilderActionIdObserve_QueryParams;
|
|
13468
|
-
}) & (never extends never ? {} : {} extends never ? {
|
|
13469
|
-
body?: never;
|
|
13470
|
-
} : {
|
|
13471
|
-
body: never;
|
|
13472
|
-
})>;
|
|
13473
|
-
export interface PostAgentBuilderActionIdObserve_RouteContract {
|
|
13474
|
-
pathParams: PostAgentBuilderActionIdObserve_PathParams;
|
|
13475
|
-
queryParams: PostAgentBuilderActionIdObserve_QueryParams;
|
|
13476
|
-
body: never;
|
|
13477
|
-
request: PostAgentBuilderActionIdObserve_Request;
|
|
13478
|
-
response: PostAgentBuilderActionIdObserve_Response;
|
|
13479
|
-
responseType: 'stream';
|
|
13480
|
-
}
|
|
13481
|
-
export type PostAgentBuilderActionIdResumeAsync_PathParams = {
|
|
13482
|
-
/** Unique identifier for the agent-builder action */
|
|
13483
|
-
actionId: string;
|
|
13484
|
-
};
|
|
13485
|
-
export type PostAgentBuilderActionIdResumeAsync_QueryParams = {
|
|
13486
|
-
/** Unique identifier for the run */
|
|
13487
|
-
runId: string;
|
|
13488
|
-
};
|
|
13489
|
-
export type PostAgentBuilderActionIdResumeAsync_Body = {
|
|
13490
|
-
step?: (string | string[]) | undefined;
|
|
13491
|
-
resumeData?: unknown | undefined;
|
|
13492
|
-
requestContext?: {
|
|
13493
|
-
[key: string]: unknown;
|
|
13494
|
-
} | undefined;
|
|
13495
|
-
tracingOptions?: {
|
|
13496
|
-
metadata?: {
|
|
13497
|
-
[key: string]: unknown;
|
|
13498
|
-
} | undefined;
|
|
13499
|
-
requestContextKeys?: string[] | undefined;
|
|
13500
|
-
traceId?: string | undefined;
|
|
13501
|
-
parentSpanId?: string | undefined;
|
|
13502
|
-
tags?: string[] | undefined;
|
|
13503
|
-
hideInput?: boolean | undefined;
|
|
13504
|
-
hideOutput?: boolean | undefined;
|
|
13505
|
-
} | undefined;
|
|
13506
|
-
perStep?: boolean | undefined;
|
|
13507
|
-
forEachIndex?: number | undefined;
|
|
13508
|
-
};
|
|
13509
|
-
export type PostAgentBuilderActionIdResumeAsync_Response = {
|
|
13510
|
-
status?: ('running' | 'waiting' | 'suspended' | 'success' | 'failed' | 'canceled' | 'pending' | 'bailed' | 'tripwire' | 'paused') | undefined;
|
|
13511
|
-
result?: unknown | undefined;
|
|
13512
|
-
error?: unknown | undefined;
|
|
13513
|
-
payload?: unknown | undefined;
|
|
13514
|
-
initialState?: unknown | undefined;
|
|
13515
|
-
steps?: {
|
|
13516
|
-
[key: string]: any;
|
|
13517
|
-
} | undefined;
|
|
13518
|
-
activeStepsPath?: {
|
|
13519
|
-
[key: string]: number[];
|
|
13520
|
-
} | undefined;
|
|
13521
|
-
serializedStepGraph?: {
|
|
13522
|
-
type: 'step' | 'sleep' | 'sleepUntil' | 'waitForEvent' | 'parallel' | 'conditional' | 'loop' | 'foreach';
|
|
13523
|
-
}[] | undefined;
|
|
13524
|
-
};
|
|
13525
|
-
export type PostAgentBuilderActionIdResumeAsync_Request = Simplify<(PostAgentBuilderActionIdResumeAsync_PathParams extends never ? {} : {
|
|
13526
|
-
params: PostAgentBuilderActionIdResumeAsync_PathParams;
|
|
13527
|
-
}) & (PostAgentBuilderActionIdResumeAsync_QueryParams extends never ? {} : {} extends PostAgentBuilderActionIdResumeAsync_QueryParams ? {
|
|
13528
|
-
query?: PostAgentBuilderActionIdResumeAsync_QueryParams;
|
|
13529
|
-
} : {
|
|
13530
|
-
query: PostAgentBuilderActionIdResumeAsync_QueryParams;
|
|
13531
|
-
}) & (PostAgentBuilderActionIdResumeAsync_Body extends never ? {} : {} extends PostAgentBuilderActionIdResumeAsync_Body ? {
|
|
13532
|
-
body?: PostAgentBuilderActionIdResumeAsync_Body;
|
|
13533
|
-
} : {
|
|
13534
|
-
body: PostAgentBuilderActionIdResumeAsync_Body;
|
|
13535
|
-
})>;
|
|
13536
|
-
export interface PostAgentBuilderActionIdResumeAsync_RouteContract {
|
|
13537
|
-
pathParams: PostAgentBuilderActionIdResumeAsync_PathParams;
|
|
13538
|
-
queryParams: PostAgentBuilderActionIdResumeAsync_QueryParams;
|
|
13539
|
-
body: PostAgentBuilderActionIdResumeAsync_Body;
|
|
13540
|
-
request: PostAgentBuilderActionIdResumeAsync_Request;
|
|
13541
|
-
response: PostAgentBuilderActionIdResumeAsync_Response;
|
|
13542
|
-
responseType: 'json';
|
|
13543
|
-
}
|
|
13544
|
-
export type PostAgentBuilderActionIdResume_PathParams = {
|
|
13545
|
-
/** Unique identifier for the agent-builder action */
|
|
13546
|
-
actionId: string;
|
|
13547
|
-
};
|
|
13548
|
-
export type PostAgentBuilderActionIdResume_QueryParams = {
|
|
13549
|
-
/** Unique identifier for the run */
|
|
13550
|
-
runId: string;
|
|
13551
|
-
};
|
|
13552
|
-
export type PostAgentBuilderActionIdResume_Body = {
|
|
13553
|
-
step?: (string | string[]) | undefined;
|
|
13554
|
-
resumeData?: unknown | undefined;
|
|
13555
|
-
requestContext?: {
|
|
13556
|
-
[key: string]: unknown;
|
|
13557
|
-
} | undefined;
|
|
13558
|
-
tracingOptions?: {
|
|
13559
|
-
metadata?: {
|
|
13560
|
-
[key: string]: unknown;
|
|
13561
|
-
} | undefined;
|
|
13562
|
-
requestContextKeys?: string[] | undefined;
|
|
13563
|
-
traceId?: string | undefined;
|
|
13564
|
-
parentSpanId?: string | undefined;
|
|
13565
|
-
tags?: string[] | undefined;
|
|
13566
|
-
hideInput?: boolean | undefined;
|
|
13567
|
-
hideOutput?: boolean | undefined;
|
|
13568
|
-
} | undefined;
|
|
13569
|
-
perStep?: boolean | undefined;
|
|
13570
|
-
forEachIndex?: number | undefined;
|
|
13571
|
-
};
|
|
13572
|
-
export type PostAgentBuilderActionIdResume_Response = {
|
|
13573
|
-
message: string;
|
|
13574
|
-
};
|
|
13575
|
-
export type PostAgentBuilderActionIdResume_Request = Simplify<(PostAgentBuilderActionIdResume_PathParams extends never ? {} : {
|
|
13576
|
-
params: PostAgentBuilderActionIdResume_PathParams;
|
|
13577
|
-
}) & (PostAgentBuilderActionIdResume_QueryParams extends never ? {} : {} extends PostAgentBuilderActionIdResume_QueryParams ? {
|
|
13578
|
-
query?: PostAgentBuilderActionIdResume_QueryParams;
|
|
13579
|
-
} : {
|
|
13580
|
-
query: PostAgentBuilderActionIdResume_QueryParams;
|
|
13581
|
-
}) & (PostAgentBuilderActionIdResume_Body extends never ? {} : {} extends PostAgentBuilderActionIdResume_Body ? {
|
|
13582
|
-
body?: PostAgentBuilderActionIdResume_Body;
|
|
13583
|
-
} : {
|
|
13584
|
-
body: PostAgentBuilderActionIdResume_Body;
|
|
13585
|
-
})>;
|
|
13586
|
-
export interface PostAgentBuilderActionIdResume_RouteContract {
|
|
13587
|
-
pathParams: PostAgentBuilderActionIdResume_PathParams;
|
|
13588
|
-
queryParams: PostAgentBuilderActionIdResume_QueryParams;
|
|
13589
|
-
body: PostAgentBuilderActionIdResume_Body;
|
|
13590
|
-
request: PostAgentBuilderActionIdResume_Request;
|
|
13591
|
-
response: PostAgentBuilderActionIdResume_Response;
|
|
13592
|
-
responseType: 'json';
|
|
13593
|
-
}
|
|
13594
|
-
export type PostAgentBuilderActionIdResumeStream_PathParams = {
|
|
13595
|
-
/** Unique identifier for the agent-builder action */
|
|
13596
|
-
actionId: string;
|
|
13597
|
-
};
|
|
13598
|
-
export type PostAgentBuilderActionIdResumeStream_QueryParams = {
|
|
13599
|
-
/** Unique identifier for the run */
|
|
13600
|
-
runId: string;
|
|
13601
|
-
};
|
|
13602
|
-
export type PostAgentBuilderActionIdResumeStream_Body = {
|
|
13603
|
-
step?: (string | string[]) | undefined;
|
|
13604
|
-
resumeData?: unknown | undefined;
|
|
13605
|
-
requestContext?: {
|
|
13606
|
-
[key: string]: unknown;
|
|
13607
|
-
} | undefined;
|
|
13608
|
-
tracingOptions?: {
|
|
13609
|
-
metadata?: {
|
|
13610
|
-
[key: string]: unknown;
|
|
13611
|
-
} | undefined;
|
|
13612
|
-
requestContextKeys?: string[] | undefined;
|
|
13613
|
-
traceId?: string | undefined;
|
|
13614
|
-
parentSpanId?: string | undefined;
|
|
13615
|
-
tags?: string[] | undefined;
|
|
13616
|
-
hideInput?: boolean | undefined;
|
|
13617
|
-
hideOutput?: boolean | undefined;
|
|
13618
|
-
} | undefined;
|
|
13619
|
-
perStep?: boolean | undefined;
|
|
13620
|
-
forEachIndex?: number | undefined;
|
|
13621
|
-
};
|
|
13622
|
-
export type PostAgentBuilderActionIdResumeStream_Response = any;
|
|
13623
|
-
export type PostAgentBuilderActionIdResumeStream_Request = Simplify<(PostAgentBuilderActionIdResumeStream_PathParams extends never ? {} : {
|
|
13624
|
-
params: PostAgentBuilderActionIdResumeStream_PathParams;
|
|
13625
|
-
}) & (PostAgentBuilderActionIdResumeStream_QueryParams extends never ? {} : {} extends PostAgentBuilderActionIdResumeStream_QueryParams ? {
|
|
13626
|
-
query?: PostAgentBuilderActionIdResumeStream_QueryParams;
|
|
13627
|
-
} : {
|
|
13628
|
-
query: PostAgentBuilderActionIdResumeStream_QueryParams;
|
|
13629
|
-
}) & (PostAgentBuilderActionIdResumeStream_Body extends never ? {} : {} extends PostAgentBuilderActionIdResumeStream_Body ? {
|
|
13630
|
-
body?: PostAgentBuilderActionIdResumeStream_Body;
|
|
13631
|
-
} : {
|
|
13632
|
-
body: PostAgentBuilderActionIdResumeStream_Body;
|
|
13633
|
-
})>;
|
|
13634
|
-
export interface PostAgentBuilderActionIdResumeStream_RouteContract {
|
|
13635
|
-
pathParams: PostAgentBuilderActionIdResumeStream_PathParams;
|
|
13636
|
-
queryParams: PostAgentBuilderActionIdResumeStream_QueryParams;
|
|
13637
|
-
body: PostAgentBuilderActionIdResumeStream_Body;
|
|
13638
|
-
request: PostAgentBuilderActionIdResumeStream_Request;
|
|
13639
|
-
response: PostAgentBuilderActionIdResumeStream_Response;
|
|
13640
|
-
responseType: 'stream';
|
|
13641
|
-
}
|
|
13642
|
-
export type PostAgentBuilderActionIdRunsRunIdCancel_PathParams = {
|
|
13643
|
-
/** Unique identifier for the agent-builder action */
|
|
13644
|
-
actionId: string;
|
|
13645
|
-
/** Unique identifier for the action run */
|
|
13646
|
-
runId: string;
|
|
13647
|
-
};
|
|
13648
|
-
export type PostAgentBuilderActionIdRunsRunIdCancel_Response = {
|
|
13649
|
-
message: string;
|
|
13650
|
-
};
|
|
13651
|
-
export type PostAgentBuilderActionIdRunsRunIdCancel_Request = Simplify<(PostAgentBuilderActionIdRunsRunIdCancel_PathParams extends never ? {} : {
|
|
13652
|
-
params: PostAgentBuilderActionIdRunsRunIdCancel_PathParams;
|
|
13653
|
-
}) & (never extends never ? {} : {} extends never ? {
|
|
13654
|
-
query?: never;
|
|
13655
|
-
} : {
|
|
13656
|
-
query: never;
|
|
13657
|
-
}) & (never extends never ? {} : {} extends never ? {
|
|
13658
|
-
body?: never;
|
|
13659
|
-
} : {
|
|
13660
|
-
body: never;
|
|
13661
|
-
})>;
|
|
13662
|
-
export interface PostAgentBuilderActionIdRunsRunIdCancel_RouteContract {
|
|
13663
|
-
pathParams: PostAgentBuilderActionIdRunsRunIdCancel_PathParams;
|
|
13664
|
-
queryParams: never;
|
|
13665
|
-
body: never;
|
|
13666
|
-
request: PostAgentBuilderActionIdRunsRunIdCancel_Request;
|
|
13667
|
-
response: PostAgentBuilderActionIdRunsRunIdCancel_Response;
|
|
13668
|
-
responseType: 'json';
|
|
13669
|
-
}
|
|
13670
13031
|
export type GetWorkspaces_Response = {
|
|
13671
13032
|
workspaces: {
|
|
13672
13033
|
id: string;
|
|
@@ -14836,82 +14197,6 @@ export interface PostWorkflowsWorkflowIdObserveStreamLegacy_RouteContract {
|
|
|
14836
14197
|
response: PostWorkflowsWorkflowIdObserveStreamLegacy_Response;
|
|
14837
14198
|
responseType: 'stream';
|
|
14838
14199
|
}
|
|
14839
|
-
export type PostAgentBuilderActionIdStreamLegacy_PathParams = {
|
|
14840
|
-
/** Unique identifier for the agent-builder action */
|
|
14841
|
-
actionId: string;
|
|
14842
|
-
};
|
|
14843
|
-
export type PostAgentBuilderActionIdStreamLegacy_QueryParams = {
|
|
14844
|
-
/** Unique identifier for the run */
|
|
14845
|
-
runId: string;
|
|
14846
|
-
};
|
|
14847
|
-
export type PostAgentBuilderActionIdStreamLegacy_Body = {
|
|
14848
|
-
resourceId?: string | undefined;
|
|
14849
|
-
inputData?: unknown | undefined;
|
|
14850
|
-
initialState?: unknown | undefined;
|
|
14851
|
-
requestContext?: {
|
|
14852
|
-
[key: string]: unknown;
|
|
14853
|
-
} | undefined;
|
|
14854
|
-
tracingOptions?: {
|
|
14855
|
-
metadata?: {
|
|
14856
|
-
[key: string]: unknown;
|
|
14857
|
-
} | undefined;
|
|
14858
|
-
requestContextKeys?: string[] | undefined;
|
|
14859
|
-
traceId?: string | undefined;
|
|
14860
|
-
parentSpanId?: string | undefined;
|
|
14861
|
-
tags?: string[] | undefined;
|
|
14862
|
-
hideInput?: boolean | undefined;
|
|
14863
|
-
hideOutput?: boolean | undefined;
|
|
14864
|
-
} | undefined;
|
|
14865
|
-
perStep?: boolean | undefined;
|
|
14866
|
-
};
|
|
14867
|
-
export type PostAgentBuilderActionIdStreamLegacy_Response = any;
|
|
14868
|
-
export type PostAgentBuilderActionIdStreamLegacy_Request = Simplify<(PostAgentBuilderActionIdStreamLegacy_PathParams extends never ? {} : {
|
|
14869
|
-
params: PostAgentBuilderActionIdStreamLegacy_PathParams;
|
|
14870
|
-
}) & (PostAgentBuilderActionIdStreamLegacy_QueryParams extends never ? {} : {} extends PostAgentBuilderActionIdStreamLegacy_QueryParams ? {
|
|
14871
|
-
query?: PostAgentBuilderActionIdStreamLegacy_QueryParams;
|
|
14872
|
-
} : {
|
|
14873
|
-
query: PostAgentBuilderActionIdStreamLegacy_QueryParams;
|
|
14874
|
-
}) & (PostAgentBuilderActionIdStreamLegacy_Body extends never ? {} : {} extends PostAgentBuilderActionIdStreamLegacy_Body ? {
|
|
14875
|
-
body?: PostAgentBuilderActionIdStreamLegacy_Body;
|
|
14876
|
-
} : {
|
|
14877
|
-
body: PostAgentBuilderActionIdStreamLegacy_Body;
|
|
14878
|
-
})>;
|
|
14879
|
-
export interface PostAgentBuilderActionIdStreamLegacy_RouteContract {
|
|
14880
|
-
pathParams: PostAgentBuilderActionIdStreamLegacy_PathParams;
|
|
14881
|
-
queryParams: PostAgentBuilderActionIdStreamLegacy_QueryParams;
|
|
14882
|
-
body: PostAgentBuilderActionIdStreamLegacy_Body;
|
|
14883
|
-
request: PostAgentBuilderActionIdStreamLegacy_Request;
|
|
14884
|
-
response: PostAgentBuilderActionIdStreamLegacy_Response;
|
|
14885
|
-
responseType: 'stream';
|
|
14886
|
-
}
|
|
14887
|
-
export type PostAgentBuilderActionIdObserveStreamLegacy_PathParams = {
|
|
14888
|
-
/** Unique identifier for the agent-builder action */
|
|
14889
|
-
actionId: string;
|
|
14890
|
-
};
|
|
14891
|
-
export type PostAgentBuilderActionIdObserveStreamLegacy_QueryParams = {
|
|
14892
|
-
/** Unique identifier for the run */
|
|
14893
|
-
runId: string;
|
|
14894
|
-
};
|
|
14895
|
-
export type PostAgentBuilderActionIdObserveStreamLegacy_Response = any;
|
|
14896
|
-
export type PostAgentBuilderActionIdObserveStreamLegacy_Request = Simplify<(PostAgentBuilderActionIdObserveStreamLegacy_PathParams extends never ? {} : {
|
|
14897
|
-
params: PostAgentBuilderActionIdObserveStreamLegacy_PathParams;
|
|
14898
|
-
}) & (PostAgentBuilderActionIdObserveStreamLegacy_QueryParams extends never ? {} : {} extends PostAgentBuilderActionIdObserveStreamLegacy_QueryParams ? {
|
|
14899
|
-
query?: PostAgentBuilderActionIdObserveStreamLegacy_QueryParams;
|
|
14900
|
-
} : {
|
|
14901
|
-
query: PostAgentBuilderActionIdObserveStreamLegacy_QueryParams;
|
|
14902
|
-
}) & (never extends never ? {} : {} extends never ? {
|
|
14903
|
-
body?: never;
|
|
14904
|
-
} : {
|
|
14905
|
-
body: never;
|
|
14906
|
-
})>;
|
|
14907
|
-
export interface PostAgentBuilderActionIdObserveStreamLegacy_RouteContract {
|
|
14908
|
-
pathParams: PostAgentBuilderActionIdObserveStreamLegacy_PathParams;
|
|
14909
|
-
queryParams: PostAgentBuilderActionIdObserveStreamLegacy_QueryParams;
|
|
14910
|
-
body: never;
|
|
14911
|
-
request: PostAgentBuilderActionIdObserveStreamLegacy_Request;
|
|
14912
|
-
response: PostAgentBuilderActionIdObserveStreamLegacy_Response;
|
|
14913
|
-
responseType: 'stream';
|
|
14914
|
-
}
|
|
14915
14200
|
export type GetMcpV0Servers_QueryParams = {
|
|
14916
14201
|
page?: number | undefined;
|
|
14917
14202
|
perPage?: number | undefined;
|
|
@@ -44033,19 +43318,6 @@ export interface RouteTypes {
|
|
|
44033
43318
|
'GET /embedders': GetEmbedders_RouteContract;
|
|
44034
43319
|
'GET /.well-known/:agentId/agent-card.json': GetWellKnownAgentIdAgentCardJson_RouteContract;
|
|
44035
43320
|
'POST /a2a/:agentId': PostA2aAgentId_RouteContract;
|
|
44036
|
-
'GET /agent-builder': GetAgentBuilder_RouteContract;
|
|
44037
|
-
'GET /agent-builder/:actionId': GetAgentBuilderActionId_RouteContract;
|
|
44038
|
-
'GET /agent-builder/:actionId/runs': GetAgentBuilderActionIdRuns_RouteContract;
|
|
44039
|
-
'GET /agent-builder/:actionId/runs/:runId': GetAgentBuilderActionIdRunsRunId_RouteContract;
|
|
44040
|
-
'POST /agent-builder/:actionId/create-run': PostAgentBuilderActionIdCreateRun_RouteContract;
|
|
44041
|
-
'POST /agent-builder/:actionId/stream': PostAgentBuilderActionIdStream_RouteContract;
|
|
44042
|
-
'POST /agent-builder/:actionId/start-async': PostAgentBuilderActionIdStartAsync_RouteContract;
|
|
44043
|
-
'POST /agent-builder/:actionId/start': PostAgentBuilderActionIdStart_RouteContract;
|
|
44044
|
-
'POST /agent-builder/:actionId/observe': PostAgentBuilderActionIdObserve_RouteContract;
|
|
44045
|
-
'POST /agent-builder/:actionId/resume-async': PostAgentBuilderActionIdResumeAsync_RouteContract;
|
|
44046
|
-
'POST /agent-builder/:actionId/resume': PostAgentBuilderActionIdResume_RouteContract;
|
|
44047
|
-
'POST /agent-builder/:actionId/resume-stream': PostAgentBuilderActionIdResumeStream_RouteContract;
|
|
44048
|
-
'POST /agent-builder/:actionId/runs/:runId/cancel': PostAgentBuilderActionIdRunsRunIdCancel_RouteContract;
|
|
44049
43321
|
'GET /workspaces': GetWorkspaces_RouteContract;
|
|
44050
43322
|
'GET /workspaces/:workspaceId': GetWorkspacesWorkspaceId_RouteContract;
|
|
44051
43323
|
'GET /workspaces/:workspaceId/fs/read': GetWorkspacesWorkspaceIdFsRead_RouteContract;
|
|
@@ -44071,8 +43343,6 @@ export interface RouteTypes {
|
|
|
44071
43343
|
'POST /agents/:agentId/stream-legacy': PostAgentsAgentIdStreamLegacy_RouteContract;
|
|
44072
43344
|
'POST /workflows/:workflowId/stream-legacy': PostWorkflowsWorkflowIdStreamLegacy_RouteContract;
|
|
44073
43345
|
'POST /workflows/:workflowId/observe-stream-legacy': PostWorkflowsWorkflowIdObserveStreamLegacy_RouteContract;
|
|
44074
|
-
'POST /agent-builder/:actionId/stream-legacy': PostAgentBuilderActionIdStreamLegacy_RouteContract;
|
|
44075
|
-
'POST /agent-builder/:actionId/observe-stream-legacy': PostAgentBuilderActionIdObserveStreamLegacy_RouteContract;
|
|
44076
43346
|
'GET /mcp/v0/servers': GetMcpV0Servers_RouteContract;
|
|
44077
43347
|
'GET /mcp/v0/servers/:id': GetMcpV0ServersId_RouteContract;
|
|
44078
43348
|
'GET /mcp/:serverId/tools': GetMcpServerIdTools_RouteContract;
|
|
@@ -44203,51 +43473,6 @@ export interface Client {
|
|
|
44203
43473
|
'/a2a/:agentId': {
|
|
44204
43474
|
POST: PostA2aAgentId_RouteContract;
|
|
44205
43475
|
};
|
|
44206
|
-
'/agent-builder': {
|
|
44207
|
-
GET: GetAgentBuilder_RouteContract;
|
|
44208
|
-
};
|
|
44209
|
-
'/agent-builder/:actionId': {
|
|
44210
|
-
GET: GetAgentBuilderActionId_RouteContract;
|
|
44211
|
-
};
|
|
44212
|
-
'/agent-builder/:actionId/create-run': {
|
|
44213
|
-
POST: PostAgentBuilderActionIdCreateRun_RouteContract;
|
|
44214
|
-
};
|
|
44215
|
-
'/agent-builder/:actionId/observe': {
|
|
44216
|
-
POST: PostAgentBuilderActionIdObserve_RouteContract;
|
|
44217
|
-
};
|
|
44218
|
-
'/agent-builder/:actionId/observe-stream-legacy': {
|
|
44219
|
-
POST: PostAgentBuilderActionIdObserveStreamLegacy_RouteContract;
|
|
44220
|
-
};
|
|
44221
|
-
'/agent-builder/:actionId/resume': {
|
|
44222
|
-
POST: PostAgentBuilderActionIdResume_RouteContract;
|
|
44223
|
-
};
|
|
44224
|
-
'/agent-builder/:actionId/resume-async': {
|
|
44225
|
-
POST: PostAgentBuilderActionIdResumeAsync_RouteContract;
|
|
44226
|
-
};
|
|
44227
|
-
'/agent-builder/:actionId/resume-stream': {
|
|
44228
|
-
POST: PostAgentBuilderActionIdResumeStream_RouteContract;
|
|
44229
|
-
};
|
|
44230
|
-
'/agent-builder/:actionId/runs': {
|
|
44231
|
-
GET: GetAgentBuilderActionIdRuns_RouteContract;
|
|
44232
|
-
};
|
|
44233
|
-
'/agent-builder/:actionId/runs/:runId': {
|
|
44234
|
-
GET: GetAgentBuilderActionIdRunsRunId_RouteContract;
|
|
44235
|
-
};
|
|
44236
|
-
'/agent-builder/:actionId/runs/:runId/cancel': {
|
|
44237
|
-
POST: PostAgentBuilderActionIdRunsRunIdCancel_RouteContract;
|
|
44238
|
-
};
|
|
44239
|
-
'/agent-builder/:actionId/start': {
|
|
44240
|
-
POST: PostAgentBuilderActionIdStart_RouteContract;
|
|
44241
|
-
};
|
|
44242
|
-
'/agent-builder/:actionId/start-async': {
|
|
44243
|
-
POST: PostAgentBuilderActionIdStartAsync_RouteContract;
|
|
44244
|
-
};
|
|
44245
|
-
'/agent-builder/:actionId/stream': {
|
|
44246
|
-
POST: PostAgentBuilderActionIdStream_RouteContract;
|
|
44247
|
-
};
|
|
44248
|
-
'/agent-builder/:actionId/stream-legacy': {
|
|
44249
|
-
POST: PostAgentBuilderActionIdStreamLegacy_RouteContract;
|
|
44250
|
-
};
|
|
44251
43476
|
'/agents': {
|
|
44252
43477
|
GET: GetAgents_RouteContract;
|
|
44253
43478
|
};
|