asteroid-odyssey 1.6.201 → 1.6.232
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/dist/index.d.mts +635 -1
- package/dist/index.d.ts +635 -1
- package/dist/index.js +6 -6
- package/dist/index.mjs +6 -6
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -308,6 +308,15 @@ type Options$1<TData extends TDataShape = TDataShape, ThrowOnError extends boole
|
|
|
308
308
|
type ClientOptions = {
|
|
309
309
|
baseUrl: 'https://odyssey.asteroid.ai/agents/v2' | (string & {});
|
|
310
310
|
};
|
|
311
|
+
type AgentsAgentAvailableTool = {
|
|
312
|
+
name: string;
|
|
313
|
+
description: string;
|
|
314
|
+
capability: string;
|
|
315
|
+
isRequired: boolean;
|
|
316
|
+
};
|
|
317
|
+
type AgentsAgentAvailableToolsResponse = {
|
|
318
|
+
tools: Array<AgentsAgentAvailableTool>;
|
|
319
|
+
};
|
|
311
320
|
type AgentsAgentBase = {
|
|
312
321
|
id: CommonUuid;
|
|
313
322
|
name: string;
|
|
@@ -360,6 +369,15 @@ type AgentsAgentExecuteAgentResponse = {
|
|
|
360
369
|
executionId: CommonUuid;
|
|
361
370
|
};
|
|
362
371
|
type AgentsAgentSortField = 'name' | 'created_at';
|
|
372
|
+
type AgentsContextUserContextResponse = {
|
|
373
|
+
userId: CommonUuid;
|
|
374
|
+
email: string;
|
|
375
|
+
organizations: Array<AgentsContextUserOrganization>;
|
|
376
|
+
};
|
|
377
|
+
type AgentsContextUserOrganization = {
|
|
378
|
+
id: CommonUuid;
|
|
379
|
+
name: string;
|
|
380
|
+
};
|
|
363
381
|
/**
|
|
364
382
|
* Request to search Asteroid documentation
|
|
365
383
|
*/
|
|
@@ -1188,6 +1206,8 @@ type AgentsGraphModelsNodesPropertiesIrisProperties = {
|
|
|
1188
1206
|
type AgentsGraphModelsNodesPropertiesOutcomeString = string;
|
|
1189
1207
|
type AgentsGraphModelsNodesPropertiesOutputProperties = {
|
|
1190
1208
|
type: 'output';
|
|
1209
|
+
instructionsEnabled?: boolean;
|
|
1210
|
+
instructions?: string;
|
|
1191
1211
|
schema?: {
|
|
1192
1212
|
[key: string]: unknown;
|
|
1193
1213
|
};
|
|
@@ -1290,6 +1310,15 @@ type AgentsGraphModelsTransitionsTransitionType = 'iris' | 'selector' | 'outcome
|
|
|
1290
1310
|
* Text input method for browser automation
|
|
1291
1311
|
*/
|
|
1292
1312
|
type AgentsGraphModelsTypeInputMethod = 'type' | 'paste' | 'auto';
|
|
1313
|
+
/**
|
|
1314
|
+
* Request to add profiles to a pool
|
|
1315
|
+
*/
|
|
1316
|
+
type AgentsProfileAddProfilesToPoolRequest = {
|
|
1317
|
+
/**
|
|
1318
|
+
* Profile IDs to add to the pool
|
|
1319
|
+
*/
|
|
1320
|
+
profileIds: Array<CommonUuid>;
|
|
1321
|
+
};
|
|
1293
1322
|
/**
|
|
1294
1323
|
* An agent profile containing browser configuration and credentials
|
|
1295
1324
|
*/
|
|
@@ -1395,6 +1424,64 @@ type AgentsProfileAgentProfile = {
|
|
|
1395
1424
|
*/
|
|
1396
1425
|
updatedAt: string;
|
|
1397
1426
|
};
|
|
1427
|
+
/**
|
|
1428
|
+
* A pool of agent profiles that can be used for credential rotation
|
|
1429
|
+
*/
|
|
1430
|
+
type AgentsProfileAgentProfilePool = {
|
|
1431
|
+
/**
|
|
1432
|
+
* Unique identifier for the agent profile pool
|
|
1433
|
+
*/
|
|
1434
|
+
id: CommonUuid;
|
|
1435
|
+
/**
|
|
1436
|
+
* Name of the agent profile pool (unique within organization)
|
|
1437
|
+
*/
|
|
1438
|
+
name: string;
|
|
1439
|
+
/**
|
|
1440
|
+
* The ID of the organization that owns this pool
|
|
1441
|
+
*/
|
|
1442
|
+
organizationId: CommonUuid;
|
|
1443
|
+
/**
|
|
1444
|
+
* Strategy for selecting an available profile from the pool
|
|
1445
|
+
*/
|
|
1446
|
+
selectionStrategy: AgentsProfileSelectionStrategy;
|
|
1447
|
+
/**
|
|
1448
|
+
* Whether multiple executions can use the same profile concurrently
|
|
1449
|
+
*/
|
|
1450
|
+
allowConcurrentUse: boolean;
|
|
1451
|
+
/**
|
|
1452
|
+
* When the pool was created
|
|
1453
|
+
*/
|
|
1454
|
+
createdAt: string;
|
|
1455
|
+
/**
|
|
1456
|
+
* When the pool was last updated
|
|
1457
|
+
*/
|
|
1458
|
+
updatedAt: string;
|
|
1459
|
+
};
|
|
1460
|
+
/**
|
|
1461
|
+
* An agent profile that is a member of a pool
|
|
1462
|
+
*/
|
|
1463
|
+
type AgentsProfileAgentProfilePoolMember = {
|
|
1464
|
+
/**
|
|
1465
|
+
* Unique identifier for the agent profile
|
|
1466
|
+
*/
|
|
1467
|
+
id: CommonUuid;
|
|
1468
|
+
/**
|
|
1469
|
+
* Name of the agent profile
|
|
1470
|
+
*/
|
|
1471
|
+
name: string;
|
|
1472
|
+
/**
|
|
1473
|
+
* The ID of the organization that owns this profile
|
|
1474
|
+
*/
|
|
1475
|
+
organizationId: CommonUuid;
|
|
1476
|
+
/**
|
|
1477
|
+
* When the profile was created
|
|
1478
|
+
*/
|
|
1479
|
+
createdAt: string;
|
|
1480
|
+
/**
|
|
1481
|
+
* When the profile was last updated
|
|
1482
|
+
*/
|
|
1483
|
+
updatedAt: string;
|
|
1484
|
+
};
|
|
1398
1485
|
/**
|
|
1399
1486
|
* A browser cookie stored for an agent profile
|
|
1400
1487
|
*/
|
|
@@ -1444,6 +1531,27 @@ type AgentsProfileCookie = {
|
|
|
1444
1531
|
* Two-letter country code for proxy location
|
|
1445
1532
|
*/
|
|
1446
1533
|
type AgentsProfileCountryCode = 'us' | 'uk' | 'fr' | 'it' | 'jp' | 'au' | 'de' | 'fi' | 'ca';
|
|
1534
|
+
/**
|
|
1535
|
+
* Request to create a new agent profile pool
|
|
1536
|
+
*/
|
|
1537
|
+
type AgentsProfileCreateAgentProfilePoolRequest = {
|
|
1538
|
+
/**
|
|
1539
|
+
* Name of the agent profile pool (must be unique within organization)
|
|
1540
|
+
*/
|
|
1541
|
+
name: string;
|
|
1542
|
+
/**
|
|
1543
|
+
* The ID of the organization that the pool belongs to
|
|
1544
|
+
*/
|
|
1545
|
+
organizationId: CommonUuid;
|
|
1546
|
+
/**
|
|
1547
|
+
* Strategy for selecting an available profile from the pool
|
|
1548
|
+
*/
|
|
1549
|
+
selectionStrategy?: AgentsProfileSelectionStrategy;
|
|
1550
|
+
/**
|
|
1551
|
+
* Whether multiple executions can use the same profile concurrently
|
|
1552
|
+
*/
|
|
1553
|
+
allowConcurrentUse?: boolean;
|
|
1554
|
+
};
|
|
1447
1555
|
/**
|
|
1448
1556
|
* Request to create a new agent profile
|
|
1449
1557
|
*/
|
|
@@ -1614,6 +1722,10 @@ type AgentsProfileDuplicateAgentProfileRequest = {
|
|
|
1614
1722
|
* Operating system to emulate in the browser
|
|
1615
1723
|
*/
|
|
1616
1724
|
type AgentsProfileOperatingSystem = 'macos' | 'windows';
|
|
1725
|
+
/**
|
|
1726
|
+
* Available fields for sorting agent profile pools
|
|
1727
|
+
*/
|
|
1728
|
+
type AgentsProfilePoolSortField = 'name' | 'created_at' | 'updated_at';
|
|
1617
1729
|
/**
|
|
1618
1730
|
* Proxy configuration mode
|
|
1619
1731
|
*/
|
|
@@ -1622,14 +1734,44 @@ type AgentsProfileProxyMode = 'none' | 'managed' | 'custom' | 'tailscale';
|
|
|
1622
1734
|
* Type of managed proxy to use for browser sessions
|
|
1623
1735
|
*/
|
|
1624
1736
|
type AgentsProfileProxyType = 'basic' | 'residential' | 'mobile';
|
|
1737
|
+
/**
|
|
1738
|
+
* Request to remove profiles from a pool
|
|
1739
|
+
*/
|
|
1740
|
+
type AgentsProfileRemoveProfilesFromPoolRequest = {
|
|
1741
|
+
/**
|
|
1742
|
+
* Profile IDs to remove from the pool
|
|
1743
|
+
*/
|
|
1744
|
+
profileIds: Array<CommonUuid>;
|
|
1745
|
+
};
|
|
1625
1746
|
/**
|
|
1626
1747
|
* SameSite attribute for cookies
|
|
1627
1748
|
*/
|
|
1628
1749
|
type AgentsProfileSameSite = 'Strict' | 'Lax' | 'None';
|
|
1750
|
+
/**
|
|
1751
|
+
* Strategy for selecting an available profile from a pool
|
|
1752
|
+
*/
|
|
1753
|
+
type AgentsProfileSelectionStrategy = 'least_recently_used' | 'most_recently_used';
|
|
1629
1754
|
/**
|
|
1630
1755
|
* Available fields for sorting agent profiles
|
|
1631
1756
|
*/
|
|
1632
1757
|
type AgentsProfileSortField = 'name' | 'created_at' | 'updated_at';
|
|
1758
|
+
/**
|
|
1759
|
+
* Request to update an existing agent profile pool
|
|
1760
|
+
*/
|
|
1761
|
+
type AgentsProfileUpdateAgentProfilePoolRequest = {
|
|
1762
|
+
/**
|
|
1763
|
+
* New name for the pool
|
|
1764
|
+
*/
|
|
1765
|
+
name?: string;
|
|
1766
|
+
/**
|
|
1767
|
+
* New selection strategy for the pool
|
|
1768
|
+
*/
|
|
1769
|
+
selectionStrategy?: AgentsProfileSelectionStrategy;
|
|
1770
|
+
/**
|
|
1771
|
+
* Whether multiple executions can use the same profile concurrently
|
|
1772
|
+
*/
|
|
1773
|
+
allowConcurrentUse?: boolean;
|
|
1774
|
+
};
|
|
1633
1775
|
/**
|
|
1634
1776
|
* Request to update an existing agent profile
|
|
1635
1777
|
*/
|
|
@@ -2058,12 +2200,372 @@ type AgentsExecutionSearchStatus = Array<AgentsExecutionStatus>;
|
|
|
2058
2200
|
* Filter by workflow version number
|
|
2059
2201
|
*/
|
|
2060
2202
|
type AgentsExecutionSearchWorkflowVersion = number;
|
|
2203
|
+
/**
|
|
2204
|
+
* Search pools by name (partial match)
|
|
2205
|
+
*/
|
|
2206
|
+
type AgentsProfilePoolSearch = string;
|
|
2061
2207
|
/**
|
|
2062
2208
|
* Search profiles by name (partial match)
|
|
2063
2209
|
*/
|
|
2064
2210
|
type AgentsProfileSearch = string;
|
|
2065
2211
|
type CommonPaginationPage = number;
|
|
2066
2212
|
type CommonPaginationPageSize = number;
|
|
2213
|
+
type AgentProfilePoolsListData = {
|
|
2214
|
+
body?: never;
|
|
2215
|
+
path?: never;
|
|
2216
|
+
query?: {
|
|
2217
|
+
/**
|
|
2218
|
+
* Filter by organization ID
|
|
2219
|
+
*/
|
|
2220
|
+
organizationId?: CommonUuid;
|
|
2221
|
+
pageSize?: number;
|
|
2222
|
+
page?: number;
|
|
2223
|
+
/**
|
|
2224
|
+
* Search pools by name (partial match)
|
|
2225
|
+
*/
|
|
2226
|
+
searchName?: string;
|
|
2227
|
+
sortField?: AgentsProfilePoolSortField;
|
|
2228
|
+
sortDirection?: CommonSortDirection;
|
|
2229
|
+
};
|
|
2230
|
+
url: '/agent-profile-pools';
|
|
2231
|
+
};
|
|
2232
|
+
type AgentProfilePoolsListErrors = {
|
|
2233
|
+
/**
|
|
2234
|
+
* The server could not understand the request due to invalid syntax.
|
|
2235
|
+
*/
|
|
2236
|
+
400: CommonBadRequestErrorBody;
|
|
2237
|
+
/**
|
|
2238
|
+
* Access is unauthorized.
|
|
2239
|
+
*/
|
|
2240
|
+
401: CommonUnauthorizedErrorBody;
|
|
2241
|
+
/**
|
|
2242
|
+
* Access is forbidden.
|
|
2243
|
+
*/
|
|
2244
|
+
403: CommonForbiddenErrorBody;
|
|
2245
|
+
/**
|
|
2246
|
+
* The server cannot find the requested resource.
|
|
2247
|
+
*/
|
|
2248
|
+
404: CommonNotFoundErrorBody;
|
|
2249
|
+
/**
|
|
2250
|
+
* Server error
|
|
2251
|
+
*/
|
|
2252
|
+
500: CommonInternalServerErrorBody;
|
|
2253
|
+
};
|
|
2254
|
+
type AgentProfilePoolsListError = AgentProfilePoolsListErrors[keyof AgentProfilePoolsListErrors];
|
|
2255
|
+
type AgentProfilePoolsListResponses = {
|
|
2256
|
+
/**
|
|
2257
|
+
* The request has succeeded.
|
|
2258
|
+
*/
|
|
2259
|
+
200: {
|
|
2260
|
+
items: Array<AgentsProfileAgentProfilePool>;
|
|
2261
|
+
page: number;
|
|
2262
|
+
pageSize: number;
|
|
2263
|
+
total: number;
|
|
2264
|
+
};
|
|
2265
|
+
};
|
|
2266
|
+
type AgentProfilePoolsListResponse = AgentProfilePoolsListResponses[keyof AgentProfilePoolsListResponses];
|
|
2267
|
+
type AgentProfilePoolsCreateData = {
|
|
2268
|
+
/**
|
|
2269
|
+
* Agent profile pool to create
|
|
2270
|
+
*/
|
|
2271
|
+
body: AgentsProfileCreateAgentProfilePoolRequest;
|
|
2272
|
+
path?: never;
|
|
2273
|
+
query?: never;
|
|
2274
|
+
url: '/agent-profile-pools';
|
|
2275
|
+
};
|
|
2276
|
+
type AgentProfilePoolsCreateErrors = {
|
|
2277
|
+
/**
|
|
2278
|
+
* The server could not understand the request due to invalid syntax.
|
|
2279
|
+
*/
|
|
2280
|
+
400: CommonBadRequestErrorBody;
|
|
2281
|
+
/**
|
|
2282
|
+
* Access is unauthorized.
|
|
2283
|
+
*/
|
|
2284
|
+
401: CommonUnauthorizedErrorBody;
|
|
2285
|
+
/**
|
|
2286
|
+
* Access is forbidden.
|
|
2287
|
+
*/
|
|
2288
|
+
403: CommonForbiddenErrorBody;
|
|
2289
|
+
/**
|
|
2290
|
+
* The server cannot find the requested resource.
|
|
2291
|
+
*/
|
|
2292
|
+
404: CommonNotFoundErrorBody;
|
|
2293
|
+
/**
|
|
2294
|
+
* Server error
|
|
2295
|
+
*/
|
|
2296
|
+
500: CommonInternalServerErrorBody;
|
|
2297
|
+
};
|
|
2298
|
+
type AgentProfilePoolsCreateError = AgentProfilePoolsCreateErrors[keyof AgentProfilePoolsCreateErrors];
|
|
2299
|
+
type AgentProfilePoolsCreateResponses = {
|
|
2300
|
+
/**
|
|
2301
|
+
* The request has succeeded and a new resource has been created as a result.
|
|
2302
|
+
*/
|
|
2303
|
+
201: AgentsProfileAgentProfilePool;
|
|
2304
|
+
};
|
|
2305
|
+
type AgentProfilePoolsCreateResponse = AgentProfilePoolsCreateResponses[keyof AgentProfilePoolsCreateResponses];
|
|
2306
|
+
type AgentProfilePoolDeleteData = {
|
|
2307
|
+
body?: never;
|
|
2308
|
+
path: {
|
|
2309
|
+
/**
|
|
2310
|
+
* The ID of the agent profile pool
|
|
2311
|
+
*/
|
|
2312
|
+
poolId: CommonUuid;
|
|
2313
|
+
};
|
|
2314
|
+
query?: never;
|
|
2315
|
+
url: '/agent-profile-pools/{poolId}';
|
|
2316
|
+
};
|
|
2317
|
+
type AgentProfilePoolDeleteErrors = {
|
|
2318
|
+
/**
|
|
2319
|
+
* The server could not understand the request due to invalid syntax.
|
|
2320
|
+
*/
|
|
2321
|
+
400: CommonBadRequestErrorBody;
|
|
2322
|
+
/**
|
|
2323
|
+
* Access is unauthorized.
|
|
2324
|
+
*/
|
|
2325
|
+
401: CommonUnauthorizedErrorBody;
|
|
2326
|
+
/**
|
|
2327
|
+
* Access is forbidden.
|
|
2328
|
+
*/
|
|
2329
|
+
403: CommonForbiddenErrorBody;
|
|
2330
|
+
/**
|
|
2331
|
+
* The server cannot find the requested resource.
|
|
2332
|
+
*/
|
|
2333
|
+
404: CommonNotFoundErrorBody;
|
|
2334
|
+
/**
|
|
2335
|
+
* Server error
|
|
2336
|
+
*/
|
|
2337
|
+
500: CommonInternalServerErrorBody;
|
|
2338
|
+
};
|
|
2339
|
+
type AgentProfilePoolDeleteError = AgentProfilePoolDeleteErrors[keyof AgentProfilePoolDeleteErrors];
|
|
2340
|
+
type AgentProfilePoolDeleteResponses = {
|
|
2341
|
+
/**
|
|
2342
|
+
* There is no content to send for this request, but the headers may be useful.
|
|
2343
|
+
*/
|
|
2344
|
+
204: void;
|
|
2345
|
+
};
|
|
2346
|
+
type AgentProfilePoolDeleteResponse = AgentProfilePoolDeleteResponses[keyof AgentProfilePoolDeleteResponses];
|
|
2347
|
+
type AgentProfilePoolGetData = {
|
|
2348
|
+
body?: never;
|
|
2349
|
+
path: {
|
|
2350
|
+
/**
|
|
2351
|
+
* The ID of the agent profile pool
|
|
2352
|
+
*/
|
|
2353
|
+
poolId: CommonUuid;
|
|
2354
|
+
};
|
|
2355
|
+
query?: never;
|
|
2356
|
+
url: '/agent-profile-pools/{poolId}';
|
|
2357
|
+
};
|
|
2358
|
+
type AgentProfilePoolGetErrors = {
|
|
2359
|
+
/**
|
|
2360
|
+
* The server could not understand the request due to invalid syntax.
|
|
2361
|
+
*/
|
|
2362
|
+
400: CommonBadRequestErrorBody;
|
|
2363
|
+
/**
|
|
2364
|
+
* Access is unauthorized.
|
|
2365
|
+
*/
|
|
2366
|
+
401: CommonUnauthorizedErrorBody;
|
|
2367
|
+
/**
|
|
2368
|
+
* Access is forbidden.
|
|
2369
|
+
*/
|
|
2370
|
+
403: CommonForbiddenErrorBody;
|
|
2371
|
+
/**
|
|
2372
|
+
* The server cannot find the requested resource.
|
|
2373
|
+
*/
|
|
2374
|
+
404: CommonNotFoundErrorBody;
|
|
2375
|
+
/**
|
|
2376
|
+
* Server error
|
|
2377
|
+
*/
|
|
2378
|
+
500: CommonInternalServerErrorBody;
|
|
2379
|
+
};
|
|
2380
|
+
type AgentProfilePoolGetError = AgentProfilePoolGetErrors[keyof AgentProfilePoolGetErrors];
|
|
2381
|
+
type AgentProfilePoolGetResponses = {
|
|
2382
|
+
/**
|
|
2383
|
+
* The request has succeeded.
|
|
2384
|
+
*/
|
|
2385
|
+
200: AgentsProfileAgentProfilePool;
|
|
2386
|
+
};
|
|
2387
|
+
type AgentProfilePoolGetResponse = AgentProfilePoolGetResponses[keyof AgentProfilePoolGetResponses];
|
|
2388
|
+
type AgentProfilePoolUpdateData = {
|
|
2389
|
+
/**
|
|
2390
|
+
* Fields to update
|
|
2391
|
+
*/
|
|
2392
|
+
body: AgentsProfileUpdateAgentProfilePoolRequest;
|
|
2393
|
+
path: {
|
|
2394
|
+
/**
|
|
2395
|
+
* The ID of the agent profile pool
|
|
2396
|
+
*/
|
|
2397
|
+
poolId: CommonUuid;
|
|
2398
|
+
};
|
|
2399
|
+
query?: never;
|
|
2400
|
+
url: '/agent-profile-pools/{poolId}';
|
|
2401
|
+
};
|
|
2402
|
+
type AgentProfilePoolUpdateErrors = {
|
|
2403
|
+
/**
|
|
2404
|
+
* The server could not understand the request due to invalid syntax.
|
|
2405
|
+
*/
|
|
2406
|
+
400: CommonBadRequestErrorBody;
|
|
2407
|
+
/**
|
|
2408
|
+
* Access is unauthorized.
|
|
2409
|
+
*/
|
|
2410
|
+
401: CommonUnauthorizedErrorBody;
|
|
2411
|
+
/**
|
|
2412
|
+
* Access is forbidden.
|
|
2413
|
+
*/
|
|
2414
|
+
403: CommonForbiddenErrorBody;
|
|
2415
|
+
/**
|
|
2416
|
+
* The server cannot find the requested resource.
|
|
2417
|
+
*/
|
|
2418
|
+
404: CommonNotFoundErrorBody;
|
|
2419
|
+
/**
|
|
2420
|
+
* Server error
|
|
2421
|
+
*/
|
|
2422
|
+
500: CommonInternalServerErrorBody;
|
|
2423
|
+
};
|
|
2424
|
+
type AgentProfilePoolUpdateError = AgentProfilePoolUpdateErrors[keyof AgentProfilePoolUpdateErrors];
|
|
2425
|
+
type AgentProfilePoolUpdateResponses = {
|
|
2426
|
+
/**
|
|
2427
|
+
* The request has succeeded.
|
|
2428
|
+
*/
|
|
2429
|
+
200: AgentsProfileAgentProfilePool;
|
|
2430
|
+
};
|
|
2431
|
+
type AgentProfilePoolUpdateResponse = AgentProfilePoolUpdateResponses[keyof AgentProfilePoolUpdateResponses];
|
|
2432
|
+
type AgentProfilePoolMembersRemoveData = {
|
|
2433
|
+
/**
|
|
2434
|
+
* Profile IDs to remove
|
|
2435
|
+
*/
|
|
2436
|
+
body: AgentsProfileRemoveProfilesFromPoolRequest;
|
|
2437
|
+
path: {
|
|
2438
|
+
/**
|
|
2439
|
+
* The ID of the agent profile pool
|
|
2440
|
+
*/
|
|
2441
|
+
poolId: CommonUuid;
|
|
2442
|
+
};
|
|
2443
|
+
query?: never;
|
|
2444
|
+
url: '/agent-profile-pools/{poolId}/members';
|
|
2445
|
+
};
|
|
2446
|
+
type AgentProfilePoolMembersRemoveErrors = {
|
|
2447
|
+
/**
|
|
2448
|
+
* The server could not understand the request due to invalid syntax.
|
|
2449
|
+
*/
|
|
2450
|
+
400: CommonBadRequestErrorBody;
|
|
2451
|
+
/**
|
|
2452
|
+
* Access is unauthorized.
|
|
2453
|
+
*/
|
|
2454
|
+
401: CommonUnauthorizedErrorBody;
|
|
2455
|
+
/**
|
|
2456
|
+
* Access is forbidden.
|
|
2457
|
+
*/
|
|
2458
|
+
403: CommonForbiddenErrorBody;
|
|
2459
|
+
/**
|
|
2460
|
+
* The server cannot find the requested resource.
|
|
2461
|
+
*/
|
|
2462
|
+
404: CommonNotFoundErrorBody;
|
|
2463
|
+
/**
|
|
2464
|
+
* Server error
|
|
2465
|
+
*/
|
|
2466
|
+
500: CommonInternalServerErrorBody;
|
|
2467
|
+
};
|
|
2468
|
+
type AgentProfilePoolMembersRemoveError = AgentProfilePoolMembersRemoveErrors[keyof AgentProfilePoolMembersRemoveErrors];
|
|
2469
|
+
type AgentProfilePoolMembersRemoveResponses = {
|
|
2470
|
+
/**
|
|
2471
|
+
* There is no content to send for this request, but the headers may be useful.
|
|
2472
|
+
*/
|
|
2473
|
+
204: void;
|
|
2474
|
+
};
|
|
2475
|
+
type AgentProfilePoolMembersRemoveResponse = AgentProfilePoolMembersRemoveResponses[keyof AgentProfilePoolMembersRemoveResponses];
|
|
2476
|
+
type AgentProfilePoolMembersListData = {
|
|
2477
|
+
body?: never;
|
|
2478
|
+
path: {
|
|
2479
|
+
/**
|
|
2480
|
+
* The ID of the agent profile pool
|
|
2481
|
+
*/
|
|
2482
|
+
poolId: CommonUuid;
|
|
2483
|
+
};
|
|
2484
|
+
query?: {
|
|
2485
|
+
pageSize?: number;
|
|
2486
|
+
page?: number;
|
|
2487
|
+
};
|
|
2488
|
+
url: '/agent-profile-pools/{poolId}/members';
|
|
2489
|
+
};
|
|
2490
|
+
type AgentProfilePoolMembersListErrors = {
|
|
2491
|
+
/**
|
|
2492
|
+
* The server could not understand the request due to invalid syntax.
|
|
2493
|
+
*/
|
|
2494
|
+
400: CommonBadRequestErrorBody;
|
|
2495
|
+
/**
|
|
2496
|
+
* Access is unauthorized.
|
|
2497
|
+
*/
|
|
2498
|
+
401: CommonUnauthorizedErrorBody;
|
|
2499
|
+
/**
|
|
2500
|
+
* Access is forbidden.
|
|
2501
|
+
*/
|
|
2502
|
+
403: CommonForbiddenErrorBody;
|
|
2503
|
+
/**
|
|
2504
|
+
* The server cannot find the requested resource.
|
|
2505
|
+
*/
|
|
2506
|
+
404: CommonNotFoundErrorBody;
|
|
2507
|
+
/**
|
|
2508
|
+
* Server error
|
|
2509
|
+
*/
|
|
2510
|
+
500: CommonInternalServerErrorBody;
|
|
2511
|
+
};
|
|
2512
|
+
type AgentProfilePoolMembersListError = AgentProfilePoolMembersListErrors[keyof AgentProfilePoolMembersListErrors];
|
|
2513
|
+
type AgentProfilePoolMembersListResponses = {
|
|
2514
|
+
/**
|
|
2515
|
+
* The request has succeeded.
|
|
2516
|
+
*/
|
|
2517
|
+
200: {
|
|
2518
|
+
items: Array<AgentsProfileAgentProfilePoolMember>;
|
|
2519
|
+
page: number;
|
|
2520
|
+
pageSize: number;
|
|
2521
|
+
total: number;
|
|
2522
|
+
};
|
|
2523
|
+
};
|
|
2524
|
+
type AgentProfilePoolMembersListResponse = AgentProfilePoolMembersListResponses[keyof AgentProfilePoolMembersListResponses];
|
|
2525
|
+
type AgentProfilePoolMembersAddData = {
|
|
2526
|
+
/**
|
|
2527
|
+
* Profile IDs to add
|
|
2528
|
+
*/
|
|
2529
|
+
body: AgentsProfileAddProfilesToPoolRequest;
|
|
2530
|
+
path: {
|
|
2531
|
+
/**
|
|
2532
|
+
* The ID of the agent profile pool
|
|
2533
|
+
*/
|
|
2534
|
+
poolId: CommonUuid;
|
|
2535
|
+
};
|
|
2536
|
+
query?: never;
|
|
2537
|
+
url: '/agent-profile-pools/{poolId}/members';
|
|
2538
|
+
};
|
|
2539
|
+
type AgentProfilePoolMembersAddErrors = {
|
|
2540
|
+
/**
|
|
2541
|
+
* The server could not understand the request due to invalid syntax.
|
|
2542
|
+
*/
|
|
2543
|
+
400: CommonBadRequestErrorBody;
|
|
2544
|
+
/**
|
|
2545
|
+
* Access is unauthorized.
|
|
2546
|
+
*/
|
|
2547
|
+
401: CommonUnauthorizedErrorBody;
|
|
2548
|
+
/**
|
|
2549
|
+
* Access is forbidden.
|
|
2550
|
+
*/
|
|
2551
|
+
403: CommonForbiddenErrorBody;
|
|
2552
|
+
/**
|
|
2553
|
+
* The server cannot find the requested resource.
|
|
2554
|
+
*/
|
|
2555
|
+
404: CommonNotFoundErrorBody;
|
|
2556
|
+
/**
|
|
2557
|
+
* Server error
|
|
2558
|
+
*/
|
|
2559
|
+
500: CommonInternalServerErrorBody;
|
|
2560
|
+
};
|
|
2561
|
+
type AgentProfilePoolMembersAddError = AgentProfilePoolMembersAddErrors[keyof AgentProfilePoolMembersAddErrors];
|
|
2562
|
+
type AgentProfilePoolMembersAddResponses = {
|
|
2563
|
+
/**
|
|
2564
|
+
* There is no content to send for this request, but the headers may be useful.
|
|
2565
|
+
*/
|
|
2566
|
+
204: void;
|
|
2567
|
+
};
|
|
2568
|
+
type AgentProfilePoolMembersAddResponse = AgentProfilePoolMembersAddResponses[keyof AgentProfilePoolMembersAddResponses];
|
|
2067
2569
|
type AgentProfilesListData = {
|
|
2068
2570
|
body?: never;
|
|
2069
2571
|
path?: never;
|
|
@@ -2410,6 +2912,42 @@ type AgentListResponses = {
|
|
|
2410
2912
|
};
|
|
2411
2913
|
};
|
|
2412
2914
|
type AgentListResponse = AgentListResponses[keyof AgentListResponses];
|
|
2915
|
+
type AvailableToolsListData = {
|
|
2916
|
+
body?: never;
|
|
2917
|
+
path?: never;
|
|
2918
|
+
query?: never;
|
|
2919
|
+
url: '/agents/available-tools';
|
|
2920
|
+
};
|
|
2921
|
+
type AvailableToolsListErrors = {
|
|
2922
|
+
/**
|
|
2923
|
+
* The server could not understand the request due to invalid syntax.
|
|
2924
|
+
*/
|
|
2925
|
+
400: CommonBadRequestErrorBody;
|
|
2926
|
+
/**
|
|
2927
|
+
* Access is unauthorized.
|
|
2928
|
+
*/
|
|
2929
|
+
401: CommonUnauthorizedErrorBody;
|
|
2930
|
+
/**
|
|
2931
|
+
* Access is forbidden.
|
|
2932
|
+
*/
|
|
2933
|
+
403: CommonForbiddenErrorBody;
|
|
2934
|
+
/**
|
|
2935
|
+
* The server cannot find the requested resource.
|
|
2936
|
+
*/
|
|
2937
|
+
404: CommonNotFoundErrorBody;
|
|
2938
|
+
/**
|
|
2939
|
+
* Server error
|
|
2940
|
+
*/
|
|
2941
|
+
500: CommonInternalServerErrorBody;
|
|
2942
|
+
};
|
|
2943
|
+
type AvailableToolsListError = AvailableToolsListErrors[keyof AvailableToolsListErrors];
|
|
2944
|
+
type AvailableToolsListResponses = {
|
|
2945
|
+
/**
|
|
2946
|
+
* The request has succeeded.
|
|
2947
|
+
*/
|
|
2948
|
+
200: AgentsAgentAvailableToolsResponse;
|
|
2949
|
+
};
|
|
2950
|
+
type AvailableToolsListResponse = AvailableToolsListResponses[keyof AvailableToolsListResponses];
|
|
2413
2951
|
type AgentExecutePostData = {
|
|
2414
2952
|
/**
|
|
2415
2953
|
* Execution request parameters
|
|
@@ -2709,6 +3247,42 @@ type AgentWorkflowsSyncExecutionResponses = {
|
|
|
2709
3247
|
200: AgentsWorkflowSyncExecutionResponse;
|
|
2710
3248
|
};
|
|
2711
3249
|
type AgentWorkflowsSyncExecutionResponse = AgentWorkflowsSyncExecutionResponses[keyof AgentWorkflowsSyncExecutionResponses];
|
|
3250
|
+
type ContextGetData = {
|
|
3251
|
+
body?: never;
|
|
3252
|
+
path?: never;
|
|
3253
|
+
query?: never;
|
|
3254
|
+
url: '/context';
|
|
3255
|
+
};
|
|
3256
|
+
type ContextGetErrors = {
|
|
3257
|
+
/**
|
|
3258
|
+
* The server could not understand the request due to invalid syntax.
|
|
3259
|
+
*/
|
|
3260
|
+
400: CommonBadRequestErrorBody;
|
|
3261
|
+
/**
|
|
3262
|
+
* Access is unauthorized.
|
|
3263
|
+
*/
|
|
3264
|
+
401: CommonUnauthorizedErrorBody;
|
|
3265
|
+
/**
|
|
3266
|
+
* Access is forbidden.
|
|
3267
|
+
*/
|
|
3268
|
+
403: CommonForbiddenErrorBody;
|
|
3269
|
+
/**
|
|
3270
|
+
* The server cannot find the requested resource.
|
|
3271
|
+
*/
|
|
3272
|
+
404: CommonNotFoundErrorBody;
|
|
3273
|
+
/**
|
|
3274
|
+
* Server error
|
|
3275
|
+
*/
|
|
3276
|
+
500: CommonInternalServerErrorBody;
|
|
3277
|
+
};
|
|
3278
|
+
type ContextGetError = ContextGetErrors[keyof ContextGetErrors];
|
|
3279
|
+
type ContextGetResponses = {
|
|
3280
|
+
/**
|
|
3281
|
+
* The request has succeeded.
|
|
3282
|
+
*/
|
|
3283
|
+
200: AgentsContextUserContextResponse;
|
|
3284
|
+
};
|
|
3285
|
+
type ContextGetResponse = ContextGetResponses[keyof ContextGetResponses];
|
|
2712
3286
|
type DocsSearchSearchData = {
|
|
2713
3287
|
/**
|
|
2714
3288
|
* The search request
|
|
@@ -3202,6 +3776,54 @@ type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean
|
|
|
3202
3776
|
*/
|
|
3203
3777
|
meta?: Record<string, unknown>;
|
|
3204
3778
|
};
|
|
3779
|
+
/**
|
|
3780
|
+
* List Agent Profile Pools
|
|
3781
|
+
*
|
|
3782
|
+
* List all agent profile pools for an organization
|
|
3783
|
+
*/
|
|
3784
|
+
declare const agentProfilePoolsList: <ThrowOnError extends boolean = false>(options?: Options<AgentProfilePoolsListData, ThrowOnError>) => RequestResult<AgentProfilePoolsListResponses, AgentProfilePoolsListErrors, ThrowOnError, "fields">;
|
|
3785
|
+
/**
|
|
3786
|
+
* Create Agent Profile Pool
|
|
3787
|
+
*
|
|
3788
|
+
* Create a new agent profile pool
|
|
3789
|
+
*/
|
|
3790
|
+
declare const agentProfilePoolsCreate: <ThrowOnError extends boolean = false>(options: Options<AgentProfilePoolsCreateData, ThrowOnError>) => RequestResult<AgentProfilePoolsCreateResponses, AgentProfilePoolsCreateErrors, ThrowOnError, "fields">;
|
|
3791
|
+
/**
|
|
3792
|
+
* Delete Agent Profile Pool
|
|
3793
|
+
*
|
|
3794
|
+
* Delete an agent profile pool
|
|
3795
|
+
*/
|
|
3796
|
+
declare const agentProfilePoolDelete: <ThrowOnError extends boolean = false>(options: Options<AgentProfilePoolDeleteData, ThrowOnError>) => RequestResult<AgentProfilePoolDeleteResponses, AgentProfilePoolDeleteErrors, ThrowOnError, "fields">;
|
|
3797
|
+
/**
|
|
3798
|
+
* Get Agent Profile Pool
|
|
3799
|
+
*
|
|
3800
|
+
* Get an agent profile pool by ID
|
|
3801
|
+
*/
|
|
3802
|
+
declare const agentProfilePoolGet: <ThrowOnError extends boolean = false>(options: Options<AgentProfilePoolGetData, ThrowOnError>) => RequestResult<AgentProfilePoolGetResponses, AgentProfilePoolGetErrors, ThrowOnError, "fields">;
|
|
3803
|
+
/**
|
|
3804
|
+
* Update Agent Profile Pool
|
|
3805
|
+
*
|
|
3806
|
+
* Update an existing agent profile pool
|
|
3807
|
+
*/
|
|
3808
|
+
declare const agentProfilePoolUpdate: <ThrowOnError extends boolean = false>(options: Options<AgentProfilePoolUpdateData, ThrowOnError>) => RequestResult<AgentProfilePoolUpdateResponses, AgentProfilePoolUpdateErrors, ThrowOnError, "fields">;
|
|
3809
|
+
/**
|
|
3810
|
+
* Remove Profiles from Pool
|
|
3811
|
+
*
|
|
3812
|
+
* Remove profiles from a pool
|
|
3813
|
+
*/
|
|
3814
|
+
declare const agentProfilePoolMembersRemove: <ThrowOnError extends boolean = false>(options: Options<AgentProfilePoolMembersRemoveData, ThrowOnError>) => RequestResult<AgentProfilePoolMembersRemoveResponses, AgentProfilePoolMembersRemoveErrors, ThrowOnError, "fields">;
|
|
3815
|
+
/**
|
|
3816
|
+
* List Pool Members
|
|
3817
|
+
*
|
|
3818
|
+
* List all profiles in a pool
|
|
3819
|
+
*/
|
|
3820
|
+
declare const agentProfilePoolMembersList: <ThrowOnError extends boolean = false>(options: Options<AgentProfilePoolMembersListData, ThrowOnError>) => RequestResult<AgentProfilePoolMembersListResponses, AgentProfilePoolMembersListErrors, ThrowOnError, "fields">;
|
|
3821
|
+
/**
|
|
3822
|
+
* Add Profiles to Pool
|
|
3823
|
+
*
|
|
3824
|
+
* Add profiles to a pool
|
|
3825
|
+
*/
|
|
3826
|
+
declare const agentProfilePoolMembersAdd: <ThrowOnError extends boolean = false>(options: Options<AgentProfilePoolMembersAddData, ThrowOnError>) => RequestResult<AgentProfilePoolMembersAddResponses, AgentProfilePoolMembersAddErrors, ThrowOnError, "fields">;
|
|
3205
3827
|
/**
|
|
3206
3828
|
* List Agent Profiles
|
|
3207
3829
|
*
|
|
@@ -3250,6 +3872,12 @@ declare const agentProfileDuplicate: <ThrowOnError extends boolean = false>(opti
|
|
|
3250
3872
|
* List all agents for an organization
|
|
3251
3873
|
*/
|
|
3252
3874
|
declare const agentList: <ThrowOnError extends boolean = false>(options?: Options<AgentListData, ThrowOnError>) => RequestResult<AgentListResponses, AgentListErrors, ThrowOnError, "fields">;
|
|
3875
|
+
/**
|
|
3876
|
+
* List Available Tools
|
|
3877
|
+
*
|
|
3878
|
+
* List all available tools/capabilities for AI Task nodes in workflows
|
|
3879
|
+
*/
|
|
3880
|
+
declare const availableToolsList: <ThrowOnError extends boolean = false>(options?: Options<AvailableToolsListData, ThrowOnError>) => RequestResult<AvailableToolsListResponses, AvailableToolsListErrors, ThrowOnError, "fields">;
|
|
3253
3881
|
/**
|
|
3254
3882
|
* Execute an agent
|
|
3255
3883
|
*
|
|
@@ -3292,6 +3920,12 @@ declare const agentWorkflowsPublish: <ThrowOnError extends boolean = false>(opti
|
|
|
3292
3920
|
* Sync an execution to use this workflow (updates execution's workflow reference)
|
|
3293
3921
|
*/
|
|
3294
3922
|
declare const agentWorkflowsSyncExecution: <ThrowOnError extends boolean = false>(options: Options<AgentWorkflowsSyncExecutionData, ThrowOnError>) => RequestResult<AgentWorkflowsSyncExecutionResponses, AgentWorkflowsSyncExecutionErrors, ThrowOnError, "fields">;
|
|
3923
|
+
/**
|
|
3924
|
+
* Get Context
|
|
3925
|
+
*
|
|
3926
|
+
* Get the current user's context including organization memberships
|
|
3927
|
+
*/
|
|
3928
|
+
declare const contextGet: <ThrowOnError extends boolean = false>(options?: Options<ContextGetData, ThrowOnError>) => RequestResult<ContextGetResponses, ContextGetErrors, ThrowOnError, "fields">;
|
|
3295
3929
|
/**
|
|
3296
3930
|
* Search documentation
|
|
3297
3931
|
*
|
|
@@ -3359,4 +3993,4 @@ declare const schemaValidationValidate: <ThrowOnError extends boolean = false>(o
|
|
|
3359
3993
|
*/
|
|
3360
3994
|
declare const tempFilesStage: <ThrowOnError extends boolean = false>(options: Options<TempFilesStageData, ThrowOnError>) => RequestResult<TempFilesStageResponses, TempFilesStageErrors, ThrowOnError, "fields">;
|
|
3361
3995
|
|
|
3362
|
-
export { type AgentExecutePostData, type AgentExecutePostError, type AgentExecutePostErrors, type AgentExecutePostResponse, type AgentExecutePostResponses, type AgentListData, type AgentListError, type AgentListErrors, type AgentListResponse, type AgentListResponses, type AgentProfileClearBrowserCacheData, type AgentProfileClearBrowserCacheError, type AgentProfileClearBrowserCacheErrors, type AgentProfileClearBrowserCacheResponse, type AgentProfileClearBrowserCacheResponses, type AgentProfileDeleteData, type AgentProfileDeleteError, type AgentProfileDeleteErrors, type AgentProfileDeleteResponse, type AgentProfileDeleteResponses, type AgentProfileDuplicateData, type AgentProfileDuplicateError, type AgentProfileDuplicateErrors, type AgentProfileDuplicateResponse, type AgentProfileDuplicateResponses, type AgentProfileGetData, type AgentProfileGetError, type AgentProfileGetErrors, type AgentProfileGetResponse, type AgentProfileGetResponses, type AgentProfileUpdateData, type AgentProfileUpdateError, type AgentProfileUpdateErrors, type AgentProfileUpdateResponse, type AgentProfileUpdateResponses, type AgentProfilesCreateData, type AgentProfilesCreateError, type AgentProfilesCreateErrors, type AgentProfilesCreateResponse, type AgentProfilesCreateResponses, type AgentProfilesListData, type AgentProfilesListError, type AgentProfilesListErrors, type AgentProfilesListResponse, type AgentProfilesListResponses, type AgentWorkflowsCreateData, type AgentWorkflowsCreateError, type AgentWorkflowsCreateErrors, type AgentWorkflowsCreateResponse, type AgentWorkflowsCreateResponses, type AgentWorkflowsExecuteData, type AgentWorkflowsExecuteError, type AgentWorkflowsExecuteErrors, type AgentWorkflowsExecuteResponse, type AgentWorkflowsExecuteResponses, type AgentWorkflowsGetData, type AgentWorkflowsGetError, type AgentWorkflowsGetErrors, type AgentWorkflowsGetResponse, type AgentWorkflowsGetResponses, type AgentWorkflowsListData, type AgentWorkflowsListError, type AgentWorkflowsListErrors, type AgentWorkflowsListResponse, type AgentWorkflowsListResponses, type AgentWorkflowsPublishData, type AgentWorkflowsPublishError, type AgentWorkflowsPublishErrors, type AgentWorkflowsPublishResponse, type AgentWorkflowsPublishResponses, type AgentWorkflowsSyncExecutionData, type AgentWorkflowsSyncExecutionError, type AgentWorkflowsSyncExecutionErrors, type AgentWorkflowsSyncExecutionResponse, type AgentWorkflowsSyncExecutionResponses, type AgentsAgentBase, type AgentsAgentExecuteAgentRequest, type AgentsAgentExecuteAgentResponse, type AgentsAgentSearch, type AgentsAgentSortField, type AgentsDocsSearchDocsRequest, type AgentsDocsSearchDocsResponse, type AgentsDocsSearchResult, type AgentsExecutionActionName, type AgentsExecutionActivity, type AgentsExecutionActivityActionCompletedInfo, type AgentsExecutionActivityActionCompletedPayload, type AgentsExecutionActivityActionFailedPayload, type AgentsExecutionActivityActionStartedInfo, type AgentsExecutionActivityActionStartedPayload, type AgentsExecutionActivityFileAddedPayload, type AgentsExecutionActivityGenericPayload, type AgentsExecutionActivityPayloadUnion, type AgentsExecutionActivityPlaywrightScriptGeneratedPayload, type AgentsExecutionActivityReasoningPayload, type AgentsExecutionActivityStatusChangedPayload, type AgentsExecutionActivityStepCompletedPayload, type AgentsExecutionActivityStepStartedPayload, type AgentsExecutionActivityTransitionedNodePayload, type AgentsExecutionActivityUserMessageReceivedPayload, type AgentsExecutionActivityWorkflowUpdatedPayload, type AgentsExecutionAgentQueryContextCompletedDetails, type AgentsExecutionAgentQueryContextStartedDetails, type AgentsExecutionApiKeyRef, type AgentsExecutionApiTriggerContext, type AgentsExecutionAwaitingConfirmationPayload, type AgentsExecutionCancelReason, type AgentsExecutionCancelledPayload, type AgentsExecutionComment, type AgentsExecutionCompletedPayload, type AgentsExecutionElementFileUploadCompletedDetails, type AgentsExecutionExecutionResult, type AgentsExecutionExtApiCallCompletedDetails, type AgentsExecutionExtGetMailCompletedDetails, type AgentsExecutionFailedPayload, type AgentsExecutionFileListCompletedDetails, type AgentsExecutionFileReadCompletedDetails, type AgentsExecutionFileStageCompletedDetails, type AgentsExecutionHumanLabel, type AgentsExecutionListItem, type AgentsExecutionLlmCallPurpose, type AgentsExecutionLlmCallStartedDetails, type AgentsExecutionNavToCompletedDetails, type AgentsExecutionNavToStartedDetails, type AgentsExecutionNodeDetails, type AgentsExecutionNodeOutputItem, type AgentsExecutionObsSnapshotWithSelectorsCompletedDetails, type AgentsExecutionPausedPayload, type AgentsExecutionRulesDetails, type AgentsExecutionScheduleRef, type AgentsExecutionScheduleTriggerContext, type AgentsExecutionScratchpadReadCompletedDetails, type AgentsExecutionScratchpadReadStartedDetails, type AgentsExecutionScratchpadWriteCompletedDetails, type AgentsExecutionScratchpadWriteStartedDetails, type AgentsExecutionScriptEvalCompletedDetails, type AgentsExecutionScriptEvalStartedDetails, type AgentsExecutionScriptHybridPlaywrightCompletedDetails, type AgentsExecutionScriptHybridPlaywrightStartedDetails, type AgentsExecutionScriptPadRunFunctionCompletedDetails, type AgentsExecutionScriptPlaywrightCompletedDetails, type AgentsExecutionScriptPlaywrightStartedDetails, type AgentsExecutionScriptpadReadCompletedDetails, type AgentsExecutionScriptpadReadStartedDetails, type AgentsExecutionScriptpadRunFunctionStartedDetails, type AgentsExecutionScriptpadSearchReplaceCompletedDetails, type AgentsExecutionScriptpadSearchReplaceStartedDetails, type AgentsExecutionScriptpadWriteCompletedDetails, type AgentsExecutionSearchAgentId, type AgentsExecutionSearchCreatedAfter, type AgentsExecutionSearchCreatedBefore, type AgentsExecutionSearchExecutionId, type AgentsExecutionSearchHumanLabels, type AgentsExecutionSearchMetadataKey, type AgentsExecutionSearchMetadataValue, type AgentsExecutionSearchOutcomeLabel, type AgentsExecutionSearchStatus, type AgentsExecutionSearchWorkflowVersion, type AgentsExecutionSortField, type AgentsExecutionStatus, type AgentsExecutionTerminalPayload, type AgentsExecutionTransitionDetails, type AgentsExecutionTriggerContext, type AgentsExecutionTriggerRunner, type AgentsExecutionUiTriggerContext, type AgentsExecutionUpdateExecutionStatusRequest, type AgentsExecutionUpdateType, type AgentsExecutionUpdateableStatus, type AgentsExecutionUserMessagesAddTextBody, type AgentsExecutionUtilGetDatetimeCompletedDetails, type AgentsExecutionUtilGetDatetimeStartedDetails, type AgentsExecutionWorkflowUpdate, type AgentsFilesFile, type AgentsFilesFilePart, type AgentsFilesTempFile, type AgentsFilesTempFilesResponse, type AgentsGraphModelsAgentGraph, type AgentsGraphModelsNodesNode, type AgentsGraphModelsNodesNodePropertiesUnion, type AgentsGraphModelsNodesNodeType, type AgentsGraphModelsNodesPosition, type AgentsGraphModelsNodesPropertiesApiMethod, type AgentsGraphModelsNodesPropertiesApiProperties, type AgentsGraphModelsNodesPropertiesIrisPlaywrightScriptProperties, type AgentsGraphModelsNodesPropertiesIrisProperties, type AgentsGraphModelsNodesPropertiesOutcomeString, type AgentsGraphModelsNodesPropertiesOutputProperties, type AgentsGraphModelsNodesPropertiesPlaywrightScriptLlmVar, type AgentsGraphModelsNodesPropertiesPlaywrightScriptLlmVarType, type AgentsGraphModelsNodesPropertiesPlaywrightScriptProperties, type AgentsGraphModelsNodesPropertiesUrlProperties, type AgentsGraphModelsNodesPropertiesVestaProperties, type AgentsGraphModelsSettings, type AgentsGraphModelsStickyNote, type AgentsGraphModelsTransitionsPropertiesIrisProperties, type AgentsGraphModelsTransitionsPropertiesOutcomeSuccessProperties, type AgentsGraphModelsTransitionsPropertiesSelectorProperties, type AgentsGraphModelsTransitionsTransition, type AgentsGraphModelsTransitionsTransitionPropertiesUnion, type AgentsGraphModelsTransitionsTransitionType, type AgentsGraphModelsTypeInputMethod, type AgentsProfileAgentProfile, type AgentsProfileCookie, type AgentsProfileCountryCode, type AgentsProfileCreateAgentProfileRequest, type AgentsProfileCredential, type AgentsProfileCredentialUpdate, type AgentsProfileCustomProxyConfigInput, type AgentsProfileCustomProxyConfigOutput, type AgentsProfileDuplicateAgentProfileRequest, type AgentsProfileOperatingSystem, type AgentsProfileProxyMode, type AgentsProfileProxyType, type AgentsProfileSameSite, type AgentsProfileSearch, type AgentsProfileSortField, type AgentsProfileUpdateAgentProfileRequest, type AgentsSchemaValidateSchemaRequest, type AgentsSchemaValidateSchemaResponse, type AgentsWorkflowBrowserProvider, type AgentsWorkflowBrowserTemplateConfig, type AgentsWorkflowCreateWorkflowRequest, type AgentsWorkflowCreateWorkflowResponse, type AgentsWorkflowEnvironmentTemplate, type AgentsWorkflowEnvironmentType, type AgentsWorkflowExecuteWorkflowRequest, type AgentsWorkflowExecuteWorkflowResponse, type AgentsWorkflowOsProvider, type AgentsWorkflowOsTemplateConfig, type AgentsWorkflowPublishWorkflowResponse, type AgentsWorkflowSyncExecutionRequest, type AgentsWorkflowSyncExecutionResponse, type AgentsWorkflowWorkflowRef, type AgentsWorkflowWorkflowSnapshot, type ClientOptions, type CommonBadRequestErrorBody, type CommonError, type CommonForbiddenErrorBody, type CommonInternalServerErrorBody, type CommonNotFoundErrorBody, type CommonOsError, type CommonPaginationPage, type CommonPaginationPageSize, type CommonSortDirection, type CommonUnauthorizedErrorBody, type CommonUuid, type CreateClientConfig, type DocsSearchSearchData, type DocsSearchSearchError, type DocsSearchSearchErrors, type DocsSearchSearchResponse, type DocsSearchSearchResponses, type ExecutionActivitiesGetData, type ExecutionActivitiesGetError, type ExecutionActivitiesGetErrors, type ExecutionActivitiesGetResponse, type ExecutionActivitiesGetResponses, type ExecutionContextFilesGetData, type ExecutionContextFilesGetError, type ExecutionContextFilesGetErrors, type ExecutionContextFilesGetResponse, type ExecutionContextFilesGetResponses, type ExecutionContextFilesUploadData, type ExecutionContextFilesUploadError, type ExecutionContextFilesUploadErrors, type ExecutionContextFilesUploadResponse, type ExecutionContextFilesUploadResponses, type ExecutionGetData, type ExecutionGetError, type ExecutionGetErrors, type ExecutionGetResponse, type ExecutionGetResponses, type ExecutionRecordingRedirectData, type ExecutionRecordingRedirectError, type ExecutionRecordingRedirectErrors, type ExecutionStatusUpdateData, type ExecutionStatusUpdateError, type ExecutionStatusUpdateErrors, type ExecutionStatusUpdateResponse, type ExecutionStatusUpdateResponses, type ExecutionUserMessagesAddData, type ExecutionUserMessagesAddError, type ExecutionUserMessagesAddErrors, type ExecutionUserMessagesAddResponse, type ExecutionUserMessagesAddResponses, type ExecutionsListData, type ExecutionsListError, type ExecutionsListErrors, type ExecutionsListResponse, type ExecutionsListResponses, type Options, type SchemaValidationValidateData, type SchemaValidationValidateError, type SchemaValidationValidateErrors, type SchemaValidationValidateResponse, type SchemaValidationValidateResponses, type TempFilesStageData, type TempFilesStageError, type TempFilesStageErrors, type TempFilesStageResponse, type TempFilesStageResponses, type Version, agentExecutePost, agentList, agentProfileClearBrowserCache, agentProfileDelete, agentProfileDuplicate, agentProfileGet, agentProfileUpdate, agentProfilesCreate, agentProfilesList, agentWorkflowsCreate, agentWorkflowsExecute, agentWorkflowsGet, agentWorkflowsList, agentWorkflowsPublish, agentWorkflowsSyncExecution, client, docsSearchSearch, executionActivitiesGet, executionContextFilesGet, executionContextFilesUpload, executionGet, executionRecordingRedirect, executionStatusUpdate, executionUserMessagesAdd, executionsList, schemaValidationValidate, tempFilesStage };
|
|
3996
|
+
export { type AgentExecutePostData, type AgentExecutePostError, type AgentExecutePostErrors, type AgentExecutePostResponse, type AgentExecutePostResponses, type AgentListData, type AgentListError, type AgentListErrors, type AgentListResponse, type AgentListResponses, type AgentProfileClearBrowserCacheData, type AgentProfileClearBrowserCacheError, type AgentProfileClearBrowserCacheErrors, type AgentProfileClearBrowserCacheResponse, type AgentProfileClearBrowserCacheResponses, type AgentProfileDeleteData, type AgentProfileDeleteError, type AgentProfileDeleteErrors, type AgentProfileDeleteResponse, type AgentProfileDeleteResponses, type AgentProfileDuplicateData, type AgentProfileDuplicateError, type AgentProfileDuplicateErrors, type AgentProfileDuplicateResponse, type AgentProfileDuplicateResponses, type AgentProfileGetData, type AgentProfileGetError, type AgentProfileGetErrors, type AgentProfileGetResponse, type AgentProfileGetResponses, type AgentProfilePoolDeleteData, type AgentProfilePoolDeleteError, type AgentProfilePoolDeleteErrors, type AgentProfilePoolDeleteResponse, type AgentProfilePoolDeleteResponses, type AgentProfilePoolGetData, type AgentProfilePoolGetError, type AgentProfilePoolGetErrors, type AgentProfilePoolGetResponse, type AgentProfilePoolGetResponses, type AgentProfilePoolMembersAddData, type AgentProfilePoolMembersAddError, type AgentProfilePoolMembersAddErrors, type AgentProfilePoolMembersAddResponse, type AgentProfilePoolMembersAddResponses, type AgentProfilePoolMembersListData, type AgentProfilePoolMembersListError, type AgentProfilePoolMembersListErrors, type AgentProfilePoolMembersListResponse, type AgentProfilePoolMembersListResponses, type AgentProfilePoolMembersRemoveData, type AgentProfilePoolMembersRemoveError, type AgentProfilePoolMembersRemoveErrors, type AgentProfilePoolMembersRemoveResponse, type AgentProfilePoolMembersRemoveResponses, type AgentProfilePoolUpdateData, type AgentProfilePoolUpdateError, type AgentProfilePoolUpdateErrors, type AgentProfilePoolUpdateResponse, type AgentProfilePoolUpdateResponses, type AgentProfilePoolsCreateData, type AgentProfilePoolsCreateError, type AgentProfilePoolsCreateErrors, type AgentProfilePoolsCreateResponse, type AgentProfilePoolsCreateResponses, type AgentProfilePoolsListData, type AgentProfilePoolsListError, type AgentProfilePoolsListErrors, type AgentProfilePoolsListResponse, type AgentProfilePoolsListResponses, type AgentProfileUpdateData, type AgentProfileUpdateError, type AgentProfileUpdateErrors, type AgentProfileUpdateResponse, type AgentProfileUpdateResponses, type AgentProfilesCreateData, type AgentProfilesCreateError, type AgentProfilesCreateErrors, type AgentProfilesCreateResponse, type AgentProfilesCreateResponses, type AgentProfilesListData, type AgentProfilesListError, type AgentProfilesListErrors, type AgentProfilesListResponse, type AgentProfilesListResponses, type AgentWorkflowsCreateData, type AgentWorkflowsCreateError, type AgentWorkflowsCreateErrors, type AgentWorkflowsCreateResponse, type AgentWorkflowsCreateResponses, type AgentWorkflowsExecuteData, type AgentWorkflowsExecuteError, type AgentWorkflowsExecuteErrors, type AgentWorkflowsExecuteResponse, type AgentWorkflowsExecuteResponses, type AgentWorkflowsGetData, type AgentWorkflowsGetError, type AgentWorkflowsGetErrors, type AgentWorkflowsGetResponse, type AgentWorkflowsGetResponses, type AgentWorkflowsListData, type AgentWorkflowsListError, type AgentWorkflowsListErrors, type AgentWorkflowsListResponse, type AgentWorkflowsListResponses, type AgentWorkflowsPublishData, type AgentWorkflowsPublishError, type AgentWorkflowsPublishErrors, type AgentWorkflowsPublishResponse, type AgentWorkflowsPublishResponses, type AgentWorkflowsSyncExecutionData, type AgentWorkflowsSyncExecutionError, type AgentWorkflowsSyncExecutionErrors, type AgentWorkflowsSyncExecutionResponse, type AgentWorkflowsSyncExecutionResponses, type AgentsAgentAvailableTool, type AgentsAgentAvailableToolsResponse, type AgentsAgentBase, type AgentsAgentExecuteAgentRequest, type AgentsAgentExecuteAgentResponse, type AgentsAgentSearch, type AgentsAgentSortField, type AgentsContextUserContextResponse, type AgentsContextUserOrganization, type AgentsDocsSearchDocsRequest, type AgentsDocsSearchDocsResponse, type AgentsDocsSearchResult, type AgentsExecutionActionName, type AgentsExecutionActivity, type AgentsExecutionActivityActionCompletedInfo, type AgentsExecutionActivityActionCompletedPayload, type AgentsExecutionActivityActionFailedPayload, type AgentsExecutionActivityActionStartedInfo, type AgentsExecutionActivityActionStartedPayload, type AgentsExecutionActivityFileAddedPayload, type AgentsExecutionActivityGenericPayload, type AgentsExecutionActivityPayloadUnion, type AgentsExecutionActivityPlaywrightScriptGeneratedPayload, type AgentsExecutionActivityReasoningPayload, type AgentsExecutionActivityStatusChangedPayload, type AgentsExecutionActivityStepCompletedPayload, type AgentsExecutionActivityStepStartedPayload, type AgentsExecutionActivityTransitionedNodePayload, type AgentsExecutionActivityUserMessageReceivedPayload, type AgentsExecutionActivityWorkflowUpdatedPayload, type AgentsExecutionAgentQueryContextCompletedDetails, type AgentsExecutionAgentQueryContextStartedDetails, type AgentsExecutionApiKeyRef, type AgentsExecutionApiTriggerContext, type AgentsExecutionAwaitingConfirmationPayload, type AgentsExecutionCancelReason, type AgentsExecutionCancelledPayload, type AgentsExecutionComment, type AgentsExecutionCompletedPayload, type AgentsExecutionElementFileUploadCompletedDetails, type AgentsExecutionExecutionResult, type AgentsExecutionExtApiCallCompletedDetails, type AgentsExecutionExtGetMailCompletedDetails, type AgentsExecutionFailedPayload, type AgentsExecutionFileListCompletedDetails, type AgentsExecutionFileReadCompletedDetails, type AgentsExecutionFileStageCompletedDetails, type AgentsExecutionHumanLabel, type AgentsExecutionListItem, type AgentsExecutionLlmCallPurpose, type AgentsExecutionLlmCallStartedDetails, type AgentsExecutionNavToCompletedDetails, type AgentsExecutionNavToStartedDetails, type AgentsExecutionNodeDetails, type AgentsExecutionNodeOutputItem, type AgentsExecutionObsSnapshotWithSelectorsCompletedDetails, type AgentsExecutionPausedPayload, type AgentsExecutionRulesDetails, type AgentsExecutionScheduleRef, type AgentsExecutionScheduleTriggerContext, type AgentsExecutionScratchpadReadCompletedDetails, type AgentsExecutionScratchpadReadStartedDetails, type AgentsExecutionScratchpadWriteCompletedDetails, type AgentsExecutionScratchpadWriteStartedDetails, type AgentsExecutionScriptEvalCompletedDetails, type AgentsExecutionScriptEvalStartedDetails, type AgentsExecutionScriptHybridPlaywrightCompletedDetails, type AgentsExecutionScriptHybridPlaywrightStartedDetails, type AgentsExecutionScriptPadRunFunctionCompletedDetails, type AgentsExecutionScriptPlaywrightCompletedDetails, type AgentsExecutionScriptPlaywrightStartedDetails, type AgentsExecutionScriptpadReadCompletedDetails, type AgentsExecutionScriptpadReadStartedDetails, type AgentsExecutionScriptpadRunFunctionStartedDetails, type AgentsExecutionScriptpadSearchReplaceCompletedDetails, type AgentsExecutionScriptpadSearchReplaceStartedDetails, type AgentsExecutionScriptpadWriteCompletedDetails, type AgentsExecutionSearchAgentId, type AgentsExecutionSearchCreatedAfter, type AgentsExecutionSearchCreatedBefore, type AgentsExecutionSearchExecutionId, type AgentsExecutionSearchHumanLabels, type AgentsExecutionSearchMetadataKey, type AgentsExecutionSearchMetadataValue, type AgentsExecutionSearchOutcomeLabel, type AgentsExecutionSearchStatus, type AgentsExecutionSearchWorkflowVersion, type AgentsExecutionSortField, type AgentsExecutionStatus, type AgentsExecutionTerminalPayload, type AgentsExecutionTransitionDetails, type AgentsExecutionTriggerContext, type AgentsExecutionTriggerRunner, type AgentsExecutionUiTriggerContext, type AgentsExecutionUpdateExecutionStatusRequest, type AgentsExecutionUpdateType, type AgentsExecutionUpdateableStatus, type AgentsExecutionUserMessagesAddTextBody, type AgentsExecutionUtilGetDatetimeCompletedDetails, type AgentsExecutionUtilGetDatetimeStartedDetails, type AgentsExecutionWorkflowUpdate, type AgentsFilesFile, type AgentsFilesFilePart, type AgentsFilesTempFile, type AgentsFilesTempFilesResponse, type AgentsGraphModelsAgentGraph, type AgentsGraphModelsNodesNode, type AgentsGraphModelsNodesNodePropertiesUnion, type AgentsGraphModelsNodesNodeType, type AgentsGraphModelsNodesPosition, type AgentsGraphModelsNodesPropertiesApiMethod, type AgentsGraphModelsNodesPropertiesApiProperties, type AgentsGraphModelsNodesPropertiesIrisPlaywrightScriptProperties, type AgentsGraphModelsNodesPropertiesIrisProperties, type AgentsGraphModelsNodesPropertiesOutcomeString, type AgentsGraphModelsNodesPropertiesOutputProperties, type AgentsGraphModelsNodesPropertiesPlaywrightScriptLlmVar, type AgentsGraphModelsNodesPropertiesPlaywrightScriptLlmVarType, type AgentsGraphModelsNodesPropertiesPlaywrightScriptProperties, type AgentsGraphModelsNodesPropertiesUrlProperties, type AgentsGraphModelsNodesPropertiesVestaProperties, type AgentsGraphModelsSettings, type AgentsGraphModelsStickyNote, type AgentsGraphModelsTransitionsPropertiesIrisProperties, type AgentsGraphModelsTransitionsPropertiesOutcomeSuccessProperties, type AgentsGraphModelsTransitionsPropertiesSelectorProperties, type AgentsGraphModelsTransitionsTransition, type AgentsGraphModelsTransitionsTransitionPropertiesUnion, type AgentsGraphModelsTransitionsTransitionType, type AgentsGraphModelsTypeInputMethod, type AgentsProfileAddProfilesToPoolRequest, type AgentsProfileAgentProfile, type AgentsProfileAgentProfilePool, type AgentsProfileAgentProfilePoolMember, type AgentsProfileCookie, type AgentsProfileCountryCode, type AgentsProfileCreateAgentProfilePoolRequest, type AgentsProfileCreateAgentProfileRequest, type AgentsProfileCredential, type AgentsProfileCredentialUpdate, type AgentsProfileCustomProxyConfigInput, type AgentsProfileCustomProxyConfigOutput, type AgentsProfileDuplicateAgentProfileRequest, type AgentsProfileOperatingSystem, type AgentsProfilePoolSearch, type AgentsProfilePoolSortField, type AgentsProfileProxyMode, type AgentsProfileProxyType, type AgentsProfileRemoveProfilesFromPoolRequest, type AgentsProfileSameSite, type AgentsProfileSearch, type AgentsProfileSelectionStrategy, type AgentsProfileSortField, type AgentsProfileUpdateAgentProfilePoolRequest, type AgentsProfileUpdateAgentProfileRequest, type AgentsSchemaValidateSchemaRequest, type AgentsSchemaValidateSchemaResponse, type AgentsWorkflowBrowserProvider, type AgentsWorkflowBrowserTemplateConfig, type AgentsWorkflowCreateWorkflowRequest, type AgentsWorkflowCreateWorkflowResponse, type AgentsWorkflowEnvironmentTemplate, type AgentsWorkflowEnvironmentType, type AgentsWorkflowExecuteWorkflowRequest, type AgentsWorkflowExecuteWorkflowResponse, type AgentsWorkflowOsProvider, type AgentsWorkflowOsTemplateConfig, type AgentsWorkflowPublishWorkflowResponse, type AgentsWorkflowSyncExecutionRequest, type AgentsWorkflowSyncExecutionResponse, type AgentsWorkflowWorkflowRef, type AgentsWorkflowWorkflowSnapshot, type AvailableToolsListData, type AvailableToolsListError, type AvailableToolsListErrors, type AvailableToolsListResponse, type AvailableToolsListResponses, type ClientOptions, type CommonBadRequestErrorBody, type CommonError, type CommonForbiddenErrorBody, type CommonInternalServerErrorBody, type CommonNotFoundErrorBody, type CommonOsError, type CommonPaginationPage, type CommonPaginationPageSize, type CommonSortDirection, type CommonUnauthorizedErrorBody, type CommonUuid, type ContextGetData, type ContextGetError, type ContextGetErrors, type ContextGetResponse, type ContextGetResponses, type CreateClientConfig, type DocsSearchSearchData, type DocsSearchSearchError, type DocsSearchSearchErrors, type DocsSearchSearchResponse, type DocsSearchSearchResponses, type ExecutionActivitiesGetData, type ExecutionActivitiesGetError, type ExecutionActivitiesGetErrors, type ExecutionActivitiesGetResponse, type ExecutionActivitiesGetResponses, type ExecutionContextFilesGetData, type ExecutionContextFilesGetError, type ExecutionContextFilesGetErrors, type ExecutionContextFilesGetResponse, type ExecutionContextFilesGetResponses, type ExecutionContextFilesUploadData, type ExecutionContextFilesUploadError, type ExecutionContextFilesUploadErrors, type ExecutionContextFilesUploadResponse, type ExecutionContextFilesUploadResponses, type ExecutionGetData, type ExecutionGetError, type ExecutionGetErrors, type ExecutionGetResponse, type ExecutionGetResponses, type ExecutionRecordingRedirectData, type ExecutionRecordingRedirectError, type ExecutionRecordingRedirectErrors, type ExecutionStatusUpdateData, type ExecutionStatusUpdateError, type ExecutionStatusUpdateErrors, type ExecutionStatusUpdateResponse, type ExecutionStatusUpdateResponses, type ExecutionUserMessagesAddData, type ExecutionUserMessagesAddError, type ExecutionUserMessagesAddErrors, type ExecutionUserMessagesAddResponse, type ExecutionUserMessagesAddResponses, type ExecutionsListData, type ExecutionsListError, type ExecutionsListErrors, type ExecutionsListResponse, type ExecutionsListResponses, type Options, type SchemaValidationValidateData, type SchemaValidationValidateError, type SchemaValidationValidateErrors, type SchemaValidationValidateResponse, type SchemaValidationValidateResponses, type TempFilesStageData, type TempFilesStageError, type TempFilesStageErrors, type TempFilesStageResponse, type TempFilesStageResponses, type Version, agentExecutePost, agentList, agentProfileClearBrowserCache, agentProfileDelete, agentProfileDuplicate, agentProfileGet, agentProfilePoolDelete, agentProfilePoolGet, agentProfilePoolMembersAdd, agentProfilePoolMembersList, agentProfilePoolMembersRemove, agentProfilePoolUpdate, agentProfilePoolsCreate, agentProfilePoolsList, agentProfileUpdate, agentProfilesCreate, agentProfilesList, agentWorkflowsCreate, agentWorkflowsExecute, agentWorkflowsGet, agentWorkflowsList, agentWorkflowsPublish, agentWorkflowsSyncExecution, availableToolsList, client, contextGet, docsSearchSearch, executionActivitiesGet, executionContextFilesGet, executionContextFilesUpload, executionGet, executionRecordingRedirect, executionStatusUpdate, executionUserMessagesAdd, executionsList, schemaValidationValidate, tempFilesStage };
|