asteroid-odyssey 1.7.198 → 1.7.200

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 CHANGED
@@ -346,17 +346,13 @@ type CommonBadRequestErrorBody = {
346
346
  message: string;
347
347
  };
348
348
  /**
349
- * A workflow (commit) representing an immutable snapshot of agent configuration
349
+ * Lightweight workflow reference for listing workflows without full data
350
350
  */
351
- type AgentsWorkflowWorkflowSnapshot = {
351
+ type AgentsWorkflowWorkflowRef = {
352
352
  /**
353
353
  * The unique ID of this workflow
354
354
  */
355
355
  id: CommonUuid;
356
- /**
357
- * The agent ID this workflow belongs to
358
- */
359
- agentId: CommonUuid;
360
356
  /**
361
357
  * The ID of the parent workflow this was derived from (for lineage tracking)
362
358
  */
@@ -370,41 +366,59 @@ type AgentsWorkflowWorkflowSnapshot = {
370
366
  */
371
367
  isPublished: boolean;
372
368
  /**
373
- * The rules/instructions for this workflow
369
+ * When this workflow was created
374
370
  */
375
- rules: string;
371
+ createdAt: string;
376
372
  /**
377
- * The settings for this workflow
373
+ * The email of the user who created this workflow.
378
374
  */
379
- settings: AgentsGraphModelsSettings;
375
+ author?: string;
380
376
  /**
381
- * The workflow graph
377
+ * Whether this snapshot can be deleted (not published and never executed)
382
378
  */
383
- graph: AgentsGraphModelsAgentGraph;
379
+ isDeletable: boolean;
380
+ };
381
+ /**
382
+ * Output schemas keyed by output node name. Only output nodes that have a schema configured are included; the value is that node's JSON schema.
383
+ */
384
+ type AgentsWorkflowWorkflowOutputSchemas = {
385
+ [key: string]: unknown;
386
+ };
387
+ /**
388
+ * The typed inputs a workflow declares
389
+ */
390
+ type AgentsWorkflowWorkflowInputs = {
384
391
  /**
385
- * Optional environment template. Defaults to browser/anchor if not provided.
392
+ * Typed input definitions the workflow accepts at execution time
386
393
  */
387
- environmentTemplate?: AgentsWorkflowEnvironmentTemplate;
394
+ inputs: Array<AgentsWorkflowInput>;
395
+ };
396
+ /**
397
+ * A typed input variable a workflow declares. Referenced as {{.name}} in prompts.
398
+ */
399
+ type AgentsWorkflowInput = {
388
400
  /**
389
- * Typed input definitions for workflow execution. Includes names referenced in prompts, which default to optional strings.
401
+ * The variable name. Matches [a-zA-Z_][a-zA-Z0-9_]* and is unique within the workflow.
390
402
  */
391
- inputs: Array<AgentsWorkflowInput>;
403
+ name: string;
392
404
  /**
393
- * The files stored on this workflow version. Empty when the workflow has no files.
405
+ * A single-field JSON Schema fragment describing the input's type, e.g. {type: "string"}, {type: "number"}, {type: "object", properties: {...}}. Validated adaptively at execution time.
394
406
  */
395
- files: Array<AgentsWorkflowWorkflowFile>;
407
+ schema: {
408
+ [key: string]: unknown;
409
+ };
396
410
  /**
397
- * When this workflow was created. For the editable head this is restamped on each in-place edit, so it doubles as the last-edited time.
411
+ * Whether a value must be supplied at execution time. Defaults to false.
398
412
  */
399
- createdAt: string;
413
+ required: boolean;
400
414
  /**
401
- * The email of the user who created this workflow.
415
+ * Optional value used when the input is omitted at execution time.
402
416
  */
403
- author?: string;
417
+ defaultValue?: unknown;
404
418
  /**
405
- * Monotonic optimistic-concurrency revision. Only meaningful for the editable head: supply it as baseRev on the next head patch; a stale baseRev is rejected with 409. Frozen snapshots never receive in-place patches.
419
+ * Optional human-readable description of the input.
406
420
  */
407
- rev: number;
421
+ description?: string;
408
422
  };
409
423
  /**
410
424
  * A file stored on a workflow version. Content is fetched via the workflow-scoped shared-file download endpoints using this id.
@@ -444,40 +458,44 @@ type AgentsWorkflowWorkflowFile = {
444
458
  updatedAt: string;
445
459
  };
446
460
  /**
447
- * A typed input variable a workflow declares. Referenced as {{.name}} in prompts.
461
+ * Response after syncing execution to workflow
448
462
  */
449
- type AgentsWorkflowInput = {
463
+ type AgentsWorkflowSyncExecutionResponse = {
450
464
  /**
451
- * The variable name. Matches [a-zA-Z_][a-zA-Z0-9_]* and is unique within the workflow.
465
+ * The ID of the execution that was synced
452
466
  */
453
- name: string;
467
+ executionId: CommonUuid;
454
468
  /**
455
- * A single-field JSON Schema fragment describing the input's type, e.g. {type: "string"}, {type: "number"}, {type: "object", properties: {...}}. Validated adaptively at execution time.
469
+ * The ID of the workflow the execution is now synced to
456
470
  */
457
- schema: {
458
- [key: string]: unknown;
459
- };
471
+ workflowId: CommonUuid;
472
+ };
473
+ /**
474
+ * Request to sync an execution to a workflow
475
+ */
476
+ type AgentsWorkflowSyncExecutionRequest = {
460
477
  /**
461
- * Whether a value must be supplied at execution time. Defaults to false.
478
+ * The ID of the execution to sync
462
479
  */
463
- required: boolean;
480
+ executionId: CommonUuid;
481
+ };
482
+ /**
483
+ * Response after publishing a workflow
484
+ */
485
+ type AgentsWorkflowPublishWorkflowResponse = {
464
486
  /**
465
- * Optional value used when the input is omitted at execution time.
487
+ * The ID of the published workflow
466
488
  */
467
- defaultValue?: unknown;
489
+ workflowId: CommonUuid;
468
490
  /**
469
- * Optional human-readable description of the input.
491
+ * The assigned version number
470
492
  */
471
- description?: string;
493
+ version: number;
472
494
  };
473
495
  /**
474
496
  * Operating system the environment sandbox runs
475
497
  */
476
498
  type AgentsWorkflowOsType = 'linux' | 'windows';
477
- /**
478
- * OS provider type
479
- */
480
- type AgentsWorkflowOsProvider = 'daytona' | 'local';
481
499
  /**
482
500
  * OS environment template configuration
483
501
  */
@@ -499,6 +517,92 @@ type AgentsWorkflowOsTemplateConfig = {
499
517
  */
500
518
  osType?: AgentsWorkflowOsType;
501
519
  };
520
+ /**
521
+ * OS provider type
522
+ */
523
+ type AgentsWorkflowOsProvider = 'daytona' | 'local';
524
+ /**
525
+ * A workflow (commit) representing an immutable snapshot of agent configuration
526
+ */
527
+ type AgentsWorkflowExternalWorkflowSnapshot = {
528
+ /**
529
+ * The unique ID of this workflow
530
+ */
531
+ id: CommonUuid;
532
+ /**
533
+ * The agent ID this workflow belongs to
534
+ */
535
+ agentId: CommonUuid;
536
+ /**
537
+ * The ID of the parent workflow this was derived from (for lineage tracking)
538
+ */
539
+ parentId?: CommonUuid;
540
+ /**
541
+ * The monotonic per-agent snapshot version number.
542
+ */
543
+ version: number;
544
+ /**
545
+ * Whether this snapshot is the agent's published version (the API default). At most one snapshot per agent is published.
546
+ */
547
+ isPublished: boolean;
548
+ /**
549
+ * The rules/instructions for this workflow
550
+ */
551
+ rules: string;
552
+ /**
553
+ * The workflow graph
554
+ */
555
+ graph: AgentsGraphModelsAgentGraph;
556
+ /**
557
+ * Optional environment template. Defaults to browser/anchor if not provided.
558
+ */
559
+ environmentTemplate?: AgentsWorkflowEnvironmentTemplate;
560
+ /**
561
+ * Typed input definitions for workflow execution. Includes names referenced in prompts, which default to optional strings.
562
+ */
563
+ inputs: Array<AgentsWorkflowInput>;
564
+ /**
565
+ * The files stored on this workflow version. Empty when the workflow has no files.
566
+ */
567
+ files: Array<AgentsWorkflowWorkflowFile>;
568
+ /**
569
+ * When this workflow was created. For the editable head this is restamped on each in-place edit, so it doubles as the last-edited time.
570
+ */
571
+ createdAt: string;
572
+ /**
573
+ * The email of the user who created this workflow.
574
+ */
575
+ author?: string;
576
+ /**
577
+ * Monotonic optimistic-concurrency revision. Only meaningful for the editable head: supply it as baseRev on the next head patch; a stale baseRev is rejected with 409. Frozen snapshots never receive in-place patches.
578
+ */
579
+ rev: number;
580
+ /**
581
+ * The settings for this workflow
582
+ */
583
+ settings: AgentsGraphModelsExternalSettings;
584
+ };
585
+ /**
586
+ * Configuration settings for workflow execution
587
+ */
588
+ type AgentsGraphModelsExternalSettings = {
589
+ /**
590
+ * Browser viewport width in pixels
591
+ */
592
+ viewport_width: number;
593
+ /**
594
+ * Browser viewport height in pixels
595
+ */
596
+ viewport_height: number;
597
+ /**
598
+ * Maximum timeout in minutes
599
+ */
600
+ max_timeout_mins: number;
601
+ /**
602
+ * Whether to use the new agent loop for execution (beta)
603
+ */
604
+ new_agent_loop?: boolean;
605
+ };
502
606
  /**
503
607
  * Browser provider type
504
608
  */
@@ -732,147 +836,36 @@ type AgentsGraphModelsNodesNode = {
732
836
  type AgentsGraphModelsAgentGraph = {
733
837
  nodes: Array<AgentsGraphModelsNodesNode>;
734
838
  transitions: Array<AgentsGraphModelsTransitionsTransition>;
735
- sticky_notes: Array<AgentsGraphModelsStickyNote>;
736
- };
737
- /**
738
- * LLM provider for the new agent loop
739
- */
740
- type AgentsGraphModelsLlmProvider = 'bedrock' | 'anthropic' | 'bifrost';
741
- /**
742
- * When the computer-use tool captures a screenshot
743
- */
744
- type AgentsGraphModelsCuaScreenshotMode = 'auto' | 'on_request';
745
- /**
746
- * Agent-loop backend harness
747
- */
748
- type AgentsGraphModelsAgentLoopBackend = 'claude-agent-sdk' | 'vercel-ai-sdk';
749
- /**
750
- * Configuration settings for workflow execution
751
- */
752
- type AgentsGraphModelsSettings = {
753
- /**
754
- * Browser viewport width in pixels
755
- */
756
- viewport_width: number;
757
- /**
758
- * Browser viewport height in pixels
759
- */
760
- viewport_height: number;
761
- /**
762
- * Maximum timeout in minutes
763
- */
764
- max_timeout_mins: number;
765
- /**
766
- * Whether to use the new agent loop for execution (beta)
767
- */
768
- new_agent_loop?: boolean;
769
- /**
770
- * Exact Daytona snapshot name for agent-loop (admin-only)
771
- */
772
- agent_loop_snapshot?: string;
773
- /**
774
- * Agent-loop backend override (admin-only; defaults to claude-agent-sdk)
775
- */
776
- agent_loop_backend?: AgentsGraphModelsAgentLoopBackend;
777
- /**
778
- * Anthropic early-access tool definitions to enable on the vercel-ai-sdk backend — 'computer' and/or 'browser' (admin-only; requires a direct-Anthropic Opus 4.8 model)
779
- */
780
- anthropic_preview_tools?: Array<string>;
781
- /**
782
- * Whether the computer-use tool screenshots after every call or only when asked (admin-only; defaults to auto)
783
- */
784
- cua_screenshot_mode?: AgentsGraphModelsCuaScreenshotMode;
785
- /**
786
- * LLM provider override for the new agent loop (admin-only in UI; defaults to server config)
787
- */
788
- llm_provider?: AgentsGraphModelsLlmProvider;
789
- /**
790
- * Reserved for internal use.
791
- */
792
- advanced_tracing?: boolean;
793
- };
794
- /**
795
- * Lightweight workflow reference for listing workflows without full data
796
- */
797
- type AgentsWorkflowWorkflowRef = {
798
- /**
799
- * The unique ID of this workflow
800
- */
801
- id: CommonUuid;
802
- /**
803
- * The ID of the parent workflow this was derived from (for lineage tracking)
804
- */
805
- parentId?: CommonUuid;
806
- /**
807
- * The monotonic per-agent snapshot version number.
808
- */
809
- version: number;
810
- /**
811
- * Whether this snapshot is the agent's published version (the API default). At most one snapshot per agent is published.
812
- */
813
- isPublished: boolean;
814
- /**
815
- * When this workflow was created
816
- */
817
- createdAt: string;
818
- /**
819
- * The email of the user who created this workflow.
820
- */
821
- author?: string;
822
- /**
823
- * Whether this snapshot can be deleted (not published and never executed)
824
- */
825
- isDeletable: boolean;
826
- };
827
- /**
828
- * Output schemas keyed by output node name. Only output nodes that have a schema configured are included; the value is that node's JSON schema.
829
- */
830
- type AgentsWorkflowWorkflowOutputSchemas = {
831
- [key: string]: unknown;
839
+ sticky_notes: Array<AgentsGraphModelsStickyNote>;
832
840
  };
833
841
  /**
834
- * The typed inputs a workflow declares
842
+ * Request to create a new unpublished workflow
835
843
  */
836
- type AgentsWorkflowWorkflowInputs = {
844
+ type AgentsWorkflowExternalCreateWorkflowRequest = {
837
845
  /**
838
- * Typed input definitions the workflow accepts at execution time
846
+ * Optional parent workflow ID to derive from
839
847
  */
840
- inputs: Array<AgentsWorkflowInput>;
841
- };
842
- /**
843
- * Response after syncing execution to workflow
844
- */
845
- type AgentsWorkflowSyncExecutionResponse = {
848
+ parentId?: CommonUuid;
846
849
  /**
847
- * The ID of the execution that was synced
850
+ * The rules/instructions for this workflow
848
851
  */
849
- executionId: CommonUuid;
852
+ rules: string;
850
853
  /**
851
- * The ID of the workflow the execution is now synced to
854
+ * The workflow graph
852
855
  */
853
- workflowId: CommonUuid;
854
- };
855
- /**
856
- * Request to sync an execution to a workflow
857
- */
858
- type AgentsWorkflowSyncExecutionRequest = {
856
+ graph: AgentsGraphModelsAgentGraph;
859
857
  /**
860
- * The ID of the execution to sync
858
+ * Optional environment template. Defaults to browser/anchor if not provided.
861
859
  */
862
- executionId: CommonUuid;
863
- };
864
- /**
865
- * Response after publishing a workflow
866
- */
867
- type AgentsWorkflowPublishWorkflowResponse = {
860
+ environmentTemplate?: AgentsWorkflowEnvironmentTemplate;
868
861
  /**
869
- * The ID of the published workflow
862
+ * Typed input definitions for this workflow. Names referenced in prompts but omitted here default to optional strings.
870
863
  */
871
- workflowId: CommonUuid;
864
+ inputs?: Array<AgentsWorkflowInput>;
872
865
  /**
873
- * The assigned version number
866
+ * The settings for this workflow
874
867
  */
875
- version: number;
868
+ settings: AgentsGraphModelsExternalSettings;
876
869
  };
877
870
  /**
878
871
  * Response after starting workflow execution
@@ -946,35 +939,6 @@ type AgentsWorkflowCreateWorkflowResponse = {
946
939
  */
947
940
  workflowId: CommonUuid;
948
941
  };
949
- /**
950
- * Request to create a new unpublished workflow
951
- */
952
- type AgentsWorkflowCreateWorkflowRequest = {
953
- /**
954
- * Optional parent workflow ID to derive from
955
- */
956
- parentId?: CommonUuid;
957
- /**
958
- * The rules/instructions for this workflow
959
- */
960
- rules: string;
961
- /**
962
- * The settings for this workflow
963
- */
964
- settings: AgentsGraphModelsSettings;
965
- /**
966
- * The workflow graph
967
- */
968
- graph: AgentsGraphModelsAgentGraph;
969
- /**
970
- * Optional environment template. Defaults to browser/anchor if not provided.
971
- */
972
- environmentTemplate?: AgentsWorkflowEnvironmentTemplate;
973
- /**
974
- * Typed input definitions for this workflow. Names referenced in prompts but omitted here default to optional strings.
975
- */
976
- inputs?: Array<AgentsWorkflowInput>;
977
- };
978
942
  /**
979
943
  * Response from schema validation
980
944
  */
@@ -1677,49 +1641,9 @@ type AgentsProfileAddProfilesToPoolRequest = {
1677
1641
  */
1678
1642
  profileIds: Array<CommonUuid>;
1679
1643
  };
1680
- /**
1681
- * A file in the agent's persistent shared storage
1682
- */
1683
- type AgentsFilesSharedFile = {
1684
- id: CommonUuid;
1685
- agentId: CommonUuid;
1686
- filePath: string;
1687
- fileName: string;
1688
- fileSize: number;
1689
- mimeType?: string;
1690
- createdAt: string;
1691
- updatedAt: string;
1692
- version: number;
1693
- isFrozen: boolean;
1694
- lastModifiedByExecutionId?: CommonUuid;
1695
- downloadUrl: string;
1696
- /**
1697
- * Hex-encoded SHA-256 of the file contents. Used for change and rename detection when diffing versions. Absent when the checksum is unknown.
1698
- */
1699
- checksum?: string;
1700
- };
1701
1644
  type AgentsFilesTempFilesResponse = {
1702
1645
  tempFiles: Array<AgentsFilesTempFile>;
1703
1646
  };
1704
- /**
1705
- * Response containing all shared files for an agent
1706
- */
1707
- type AgentsFilesSharedFilesResponse = {
1708
- files: Array<AgentsFilesSharedFile>;
1709
- totalSize: number;
1710
- };
1711
- /**
1712
- * Response after uploading shared files
1713
- */
1714
- type AgentsFilesSharedFileUploadResponse = {
1715
- files: Array<AgentsFilesSharedFile>;
1716
- };
1717
- /**
1718
- * Request to set the frozen status of a shared file
1719
- */
1720
- type AgentsFilesSetFrozenRequest = {
1721
- isFrozen: boolean;
1722
- };
1723
1647
  type AgentsFilesFilePart = Blob | File;
1724
1648
  type AgentsFilesFile = {
1725
1649
  id: CommonUuid;
@@ -2970,6 +2894,14 @@ type AgentsAgentUpdateRequest = {
2970
2894
  name?: string;
2971
2895
  };
2972
2896
  type AgentsAgentSortField = 'name' | 'created_at';
2897
+ type AgentsAgentExternalCreateRequest = {
2898
+ organizationId: CommonUuid;
2899
+ /**
2900
+ * Name for the new agent. Characters outside the agent-name charset (letters, digits, spaces, hyphens) are sanitized server-side — create flows carry defaulted names (templates, prebuilt states) the user never typed, which must not fail validation.
2901
+ */
2902
+ name: string;
2903
+ workflow: AgentsWorkflowExternalCreateWorkflowRequest;
2904
+ };
2973
2905
  type AgentsAgentExecuteAgentResponse = {
2974
2906
  /**
2975
2907
  * The ID of the newly created execution
@@ -3021,14 +2953,6 @@ type AgentsAgentExecuteAgentRequest = {
3021
2953
  type AgentsAgentCreateResponse = {
3022
2954
  id: CommonUuid;
3023
2955
  };
3024
- type AgentsAgentCreateRequest = {
3025
- organizationId: CommonUuid;
3026
- /**
3027
- * Name for the new agent. Characters outside the agent-name charset (letters, digits, spaces, hyphens) are sanitized server-side — create flows carry defaulted names (templates, prebuilt states) the user never typed, which must not fail validation.
3028
- */
3029
- name: string;
3030
- workflow: AgentsWorkflowCreateWorkflowRequest;
3031
- };
3032
2956
  type AgentsAgentBase = {
3033
2957
  id: CommonUuid;
3034
2958
  name: string;
@@ -4047,7 +3971,7 @@ type AgentListResponses = {
4047
3971
  };
4048
3972
  type AgentListResponse = AgentListResponses[keyof AgentListResponses];
4049
3973
  type AgentCreateData = {
4050
- body: AgentsAgentCreateRequest;
3974
+ body: AgentsAgentExternalCreateRequest;
4051
3975
  path?: never;
4052
3976
  query?: never;
4053
3977
  url: '/agents';
@@ -4235,169 +4159,6 @@ type AgentExecutePostResponses = {
4235
4159
  202: AgentsAgentExecuteAgentResponse;
4236
4160
  };
4237
4161
  type AgentExecutePostResponse = AgentExecutePostResponses[keyof AgentExecutePostResponses];
4238
- type AgentSharedFilesGetData = {
4239
- body?: never;
4240
- path: {
4241
- agentId: CommonUuid;
4242
- };
4243
- query?: never;
4244
- url: '/agents/{agentId}/shared-files';
4245
- };
4246
- type AgentSharedFilesGetErrors = {
4247
- /**
4248
- * The server cannot find the requested resource.
4249
- */
4250
- 404: 'Agent not found.';
4251
- };
4252
- type AgentSharedFilesGetError = AgentSharedFilesGetErrors[keyof AgentSharedFilesGetErrors];
4253
- type AgentSharedFilesGetResponses = {
4254
- /**
4255
- * The request has succeeded.
4256
- */
4257
- 200: AgentsFilesSharedFilesResponse;
4258
- };
4259
- type AgentSharedFilesGetResponse = AgentSharedFilesGetResponses[keyof AgentSharedFilesGetResponses];
4260
- type AgentSharedFilesUploadData = {
4261
- body: {
4262
- files: Array<AgentsFilesFilePart>;
4263
- };
4264
- path: {
4265
- agentId: CommonUuid;
4266
- };
4267
- query?: never;
4268
- url: '/agents/{agentId}/shared-files';
4269
- };
4270
- type AgentSharedFilesUploadErrors = {
4271
- /**
4272
- * The server could not understand the request due to invalid syntax.
4273
- */
4274
- 400: 'Invalid file upload request.';
4275
- /**
4276
- * The server cannot find the requested resource.
4277
- */
4278
- 404: 'Agent not found.';
4279
- };
4280
- type AgentSharedFilesUploadError = AgentSharedFilesUploadErrors[keyof AgentSharedFilesUploadErrors];
4281
- type AgentSharedFilesUploadResponses = {
4282
- /**
4283
- * The request has succeeded.
4284
- */
4285
- 200: AgentsFilesSharedFileUploadResponse;
4286
- };
4287
- type AgentSharedFilesUploadResponse = AgentSharedFilesUploadResponses[keyof AgentSharedFilesUploadResponses];
4288
- type AgentSharedFilesDeleteAllData = {
4289
- body?: never;
4290
- path: {
4291
- agentId: CommonUuid;
4292
- };
4293
- query?: never;
4294
- url: '/agents/{agentId}/shared-files/delete-all';
4295
- };
4296
- type AgentSharedFilesDeleteAllErrors = {
4297
- /**
4298
- * The server cannot find the requested resource.
4299
- */
4300
- 404: 'Agent not found.';
4301
- };
4302
- type AgentSharedFilesDeleteAllError = AgentSharedFilesDeleteAllErrors[keyof AgentSharedFilesDeleteAllErrors];
4303
- type AgentSharedFilesDeleteAllResponses = {
4304
- /**
4305
- * There is no content to send for this request, but the headers may be useful.
4306
- */
4307
- 204: void;
4308
- };
4309
- type AgentSharedFilesDeleteAllResponse = AgentSharedFilesDeleteAllResponses[keyof AgentSharedFilesDeleteAllResponses];
4310
- type AgentSharedFilesDeleteData = {
4311
- body?: never;
4312
- path: {
4313
- agentId: CommonUuid;
4314
- fileId: CommonUuid;
4315
- };
4316
- query?: never;
4317
- url: '/agents/{agentId}/shared-files/{fileId}';
4318
- };
4319
- type AgentSharedFilesDeleteErrors = {
4320
- /**
4321
- * The server cannot find the requested resource.
4322
- */
4323
- 404: 'File not found.';
4324
- };
4325
- type AgentSharedFilesDeleteError = AgentSharedFilesDeleteErrors[keyof AgentSharedFilesDeleteErrors];
4326
- type AgentSharedFilesDeleteResponses = {
4327
- /**
4328
- * There is no content to send for this request, but the headers may be useful.
4329
- */
4330
- 204: void;
4331
- };
4332
- type AgentSharedFilesDeleteResponse = AgentSharedFilesDeleteResponses[keyof AgentSharedFilesDeleteResponses];
4333
- type AgentSharedFilesUpdateData = {
4334
- body: {
4335
- files: Array<AgentsFilesFilePart>;
4336
- };
4337
- path: {
4338
- agentId: CommonUuid;
4339
- fileId: CommonUuid;
4340
- };
4341
- query?: never;
4342
- url: '/agents/{agentId}/shared-files/{fileId}';
4343
- };
4344
- type AgentSharedFilesUpdateErrors = {
4345
- /**
4346
- * The server could not understand the request due to invalid syntax.
4347
- */
4348
- 400: 'Invalid file upload request.';
4349
- /**
4350
- * The server cannot find the requested resource.
4351
- */
4352
- 404: 'File not found.';
4353
- };
4354
- type AgentSharedFilesUpdateError = AgentSharedFilesUpdateErrors[keyof AgentSharedFilesUpdateErrors];
4355
- type AgentSharedFilesUpdateResponses = {
4356
- /**
4357
- * The request has succeeded.
4358
- */
4359
- 200: AgentsFilesSharedFile;
4360
- };
4361
- type AgentSharedFilesUpdateResponse = AgentSharedFilesUpdateResponses[keyof AgentSharedFilesUpdateResponses];
4362
- type AgentSharedFileDownloadRedirectData = {
4363
- body?: never;
4364
- path: {
4365
- agentId: CommonUuid;
4366
- fileId: CommonUuid;
4367
- };
4368
- query?: never;
4369
- url: '/agents/{agentId}/shared-files/{fileId}/download';
4370
- };
4371
- type AgentSharedFileDownloadRedirectErrors = {
4372
- /**
4373
- * The server cannot find the requested resource.
4374
- */
4375
- 404: 'File not found.';
4376
- };
4377
- type AgentSharedFileDownloadRedirectError = AgentSharedFileDownloadRedirectErrors[keyof AgentSharedFileDownloadRedirectErrors];
4378
- type AgentSharedFilesFreezeData = {
4379
- body: AgentsFilesSetFrozenRequest;
4380
- path: {
4381
- agentId: CommonUuid;
4382
- fileId: CommonUuid;
4383
- };
4384
- query?: never;
4385
- url: '/agents/{agentId}/shared-files/{fileId}/freeze';
4386
- };
4387
- type AgentSharedFilesFreezeErrors = {
4388
- /**
4389
- * The server cannot find the requested resource.
4390
- */
4391
- 404: 'File not found.';
4392
- };
4393
- type AgentSharedFilesFreezeError = AgentSharedFilesFreezeErrors[keyof AgentSharedFilesFreezeErrors];
4394
- type AgentSharedFilesFreezeResponses = {
4395
- /**
4396
- * The request has succeeded.
4397
- */
4398
- 200: AgentsFilesSharedFile;
4399
- };
4400
- type AgentSharedFilesFreezeResponse = AgentSharedFilesFreezeResponses[keyof AgentSharedFilesFreezeResponses];
4401
4162
  type AgentWorkflowsListData = {
4402
4163
  body?: never;
4403
4164
  path: {
@@ -4443,7 +4204,7 @@ type AgentWorkflowsCreateData = {
4443
4204
  /**
4444
4205
  * Workflow creation request
4445
4206
  */
4446
- body: AgentsWorkflowCreateWorkflowRequest;
4207
+ body: AgentsWorkflowExternalCreateWorkflowRequest;
4447
4208
  path: {
4448
4209
  /**
4449
4210
  * The ID of the agent
@@ -4570,7 +4331,7 @@ type AgentWorkflowsGetResponses = {
4570
4331
  /**
4571
4332
  * The request has succeeded.
4572
4333
  */
4573
- 200: AgentsWorkflowWorkflowSnapshot;
4334
+ 200: AgentsWorkflowExternalWorkflowSnapshot;
4574
4335
  };
4575
4336
  type AgentWorkflowsGetResponse = AgentWorkflowsGetResponses[keyof AgentWorkflowsGetResponses];
4576
4337
  type AgentWorkflowsExecuteData = {
@@ -5621,62 +5382,6 @@ declare const agentByIdUpdate: <ThrowOnError extends boolean = false>(options: O
5621
5382
  * Start an execution for the given agent.
5622
5383
  */
5623
5384
  declare const agentExecutePost: <ThrowOnError extends boolean = false>(options: Options<AgentExecutePostData, ThrowOnError>) => RequestResult<AgentExecutePostResponses, AgentExecutePostErrors, ThrowOnError, "fields">;
5624
- /**
5625
- * Get Agent Shared Files
5626
- *
5627
- * Deprecated: implicitly resolves the agent's latest published workflow version and returns that version's files. Use GET /agents/{agentId}/workflows/{workflowId}/agent-files to target an explicit workflow version instead.
5628
- *
5629
- * @deprecated
5630
- */
5631
- declare const agentSharedFilesGet: <ThrowOnError extends boolean = false>(options: Options<AgentSharedFilesGetData, ThrowOnError>) => RequestResult<AgentSharedFilesGetResponses, AgentSharedFilesGetErrors, ThrowOnError, "fields">;
5632
- /**
5633
- * Upload Agent Shared Files
5634
- *
5635
- * Deprecated: implicitly uploads to the agent's latest published workflow version, deriving a new workflow version behind the scenes. Use POST /agents/{agentId}/workflows/{workflowId}/agent-files to upload to an explicit workflow version instead.
5636
- *
5637
- * @deprecated
5638
- */
5639
- declare const agentSharedFilesUpload: <ThrowOnError extends boolean = false>(options: Options<AgentSharedFilesUploadData, ThrowOnError>) => RequestResult<AgentSharedFilesUploadResponses, AgentSharedFilesUploadErrors, ThrowOnError, "fields">;
5640
- /**
5641
- * Delete All Agent Shared Files
5642
- *
5643
- * Deprecated: delete all shared files from the agent's latest published workflow version. Use the batch DELETE /agents/{agentId}/workflows/{workflowId}/agent-files endpoint to target an explicit workflow version instead.
5644
- *
5645
- * @deprecated
5646
- */
5647
- declare const agentSharedFilesDeleteAll: <ThrowOnError extends boolean = false>(options: Options<AgentSharedFilesDeleteAllData, ThrowOnError>) => RequestResult<AgentSharedFilesDeleteAllResponses, AgentSharedFilesDeleteAllErrors, ThrowOnError, "fields">;
5648
- /**
5649
- * Delete Agent Shared File
5650
- *
5651
- * Deprecated: delete a file from the agent's latest published workflow version. Use DELETE /agents/{agentId}/workflows/{workflowId}/agent-files/{fileId} to target an explicit workflow version instead.
5652
- *
5653
- * @deprecated
5654
- */
5655
- declare const agentSharedFilesDelete: <ThrowOnError extends boolean = false>(options: Options<AgentSharedFilesDeleteData, ThrowOnError>) => RequestResult<AgentSharedFilesDeleteResponses, AgentSharedFilesDeleteErrors, ThrowOnError, "fields">;
5656
- /**
5657
- * Update Agent Shared File
5658
- *
5659
- * Deprecated: replace the contents of a shared file in the agent's latest published workflow version. The request body must contain exactly one file. Use PUT /agents/{agentId}/workflows/{workflowId}/agent-files/{fileId} to target an explicit workflow version instead.
5660
- *
5661
- * @deprecated
5662
- */
5663
- declare const agentSharedFilesUpdate: <ThrowOnError extends boolean = false>(options: Options<AgentSharedFilesUpdateData, ThrowOnError>) => RequestResult<AgentSharedFilesUpdateResponses, AgentSharedFilesUpdateErrors, ThrowOnError, "fields">;
5664
- /**
5665
- * Download shared file
5666
- *
5667
- * Deprecated: redirects to a short-lived signed URL for a file in the agent's latest published workflow version. Use GET /agents/{agentId}/workflows/{workflowId}/agent-files/{fileId}/download to target an explicit workflow version instead.
5668
- *
5669
- * @deprecated
5670
- */
5671
- declare const agentSharedFileDownloadRedirect: <ThrowOnError extends boolean = false>(options: Options<AgentSharedFileDownloadRedirectData, ThrowOnError>) => RequestResult<unknown, AgentSharedFileDownloadRedirectErrors, ThrowOnError, "fields">;
5672
- /**
5673
- * Set Freeze on Agent Shared File
5674
- *
5675
- * Set the frozen status of a shared file. Frozen files are preserved across executions and cannot be overwritten by the agent.
5676
- *
5677
- * @deprecated
5678
- */
5679
- declare const agentSharedFilesFreeze: <ThrowOnError extends boolean = false>(options: Options<AgentSharedFilesFreezeData, ThrowOnError>) => RequestResult<AgentSharedFilesFreezeResponses, AgentSharedFilesFreezeErrors, ThrowOnError, "fields">;
5680
5385
  /**
5681
5386
  * List workflow references
5682
5387
  *
@@ -5698,7 +5403,7 @@ declare const agentWorkflowsDeleteWorkflow: <ThrowOnError extends boolean = fals
5698
5403
  /**
5699
5404
  * Get workflow by ID
5700
5405
  *
5701
- * Get a workflow by its ID
5406
+ * Get a workflow by its ID. `files` is this version's manifest — file edits create a new version, so fetch the id returned by the agent-files endpoints to see the updated list.
5702
5407
  */
5703
5408
  declare const agentWorkflowsGet: <ThrowOnError extends boolean = false>(options: Options<AgentWorkflowsGetData, ThrowOnError>) => RequestResult<AgentWorkflowsGetResponses, AgentWorkflowsGetErrors, ThrowOnError, "fields">;
5704
5409
  /**
@@ -5844,4 +5549,4 @@ declare const schemaValidationValidate: <ThrowOnError extends boolean = false>(o
5844
5549
  */
5845
5550
  declare const tempFilesStage: <ThrowOnError extends boolean = false>(options: Options<TempFilesStageData, ThrowOnError>) => RequestResult<TempFilesStageResponses, TempFilesStageErrors, ThrowOnError, "fields">;
5846
5551
 
5847
- export { type AdminCustomerActivityListData, type AdminCustomerActivityListError, type AdminCustomerActivityListErrors, type AdminCustomerActivityListResponse, type AdminCustomerActivityListResponses, type AdminCustomerActivityNotableListData, type AdminCustomerActivityNotableListError, type AdminCustomerActivityNotableListErrors, type AdminCustomerActivityNotableListResponse, type AdminCustomerActivityNotableListResponses, type AdminCustomerActivityWindowStatsListData, type AdminCustomerActivityWindowStatsListError, type AdminCustomerActivityWindowStatsListErrors, type AdminCustomerActivityWindowStatsListResponse, type AdminCustomerActivityWindowStatsListResponses, type AgentByIdDeleteData, type AgentByIdDeleteError, type AgentByIdDeleteErrors, type AgentByIdDeleteResponse, type AgentByIdDeleteResponses, type AgentByIdUpdateData, type AgentByIdUpdateError, type AgentByIdUpdateErrors, type AgentByIdUpdateResponses, type AgentCreateData, type AgentCreateError, type AgentCreateErrors, type AgentCreateResponse, type AgentCreateResponses, 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 AgentProfileGetInboxEmailData, type AgentProfileGetInboxEmailError, type AgentProfileGetInboxEmailErrors, type AgentProfileGetInboxEmailResponse, type AgentProfileGetInboxEmailResponses, type AgentProfileGetInboxEmailsData, type AgentProfileGetInboxEmailsError, type AgentProfileGetInboxEmailsErrors, type AgentProfileGetInboxEmailsResponse, type AgentProfileGetInboxEmailsResponses, 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 AgentSharedFileDownloadRedirectData, type AgentSharedFileDownloadRedirectError, type AgentSharedFileDownloadRedirectErrors, type AgentSharedFilesDeleteAllData, type AgentSharedFilesDeleteAllError, type AgentSharedFilesDeleteAllErrors, type AgentSharedFilesDeleteAllResponse, type AgentSharedFilesDeleteAllResponses, type AgentSharedFilesDeleteData, type AgentSharedFilesDeleteError, type AgentSharedFilesDeleteErrors, type AgentSharedFilesDeleteResponse, type AgentSharedFilesDeleteResponses, type AgentSharedFilesFreezeData, type AgentSharedFilesFreezeError, type AgentSharedFilesFreezeErrors, type AgentSharedFilesFreezeResponse, type AgentSharedFilesFreezeResponses, type AgentSharedFilesGetData, type AgentSharedFilesGetError, type AgentSharedFilesGetErrors, type AgentSharedFilesGetResponse, type AgentSharedFilesGetResponses, type AgentSharedFilesUpdateData, type AgentSharedFilesUpdateError, type AgentSharedFilesUpdateErrors, type AgentSharedFilesUpdateResponse, type AgentSharedFilesUpdateResponses, type AgentSharedFilesUploadData, type AgentSharedFilesUploadError, type AgentSharedFilesUploadErrors, type AgentSharedFilesUploadResponse, type AgentSharedFilesUploadResponses, type AgentWorkflowsCreateData, type AgentWorkflowsCreateError, type AgentWorkflowsCreateErrors, type AgentWorkflowsCreateResponse, type AgentWorkflowsCreateResponses, type AgentWorkflowsDeleteWorkflowData, type AgentWorkflowsDeleteWorkflowError, type AgentWorkflowsDeleteWorkflowErrors, type AgentWorkflowsDeleteWorkflowResponse, type AgentWorkflowsDeleteWorkflowResponses, type AgentWorkflowsExecuteData, type AgentWorkflowsExecuteError, type AgentWorkflowsExecuteErrors, type AgentWorkflowsExecuteResponse, type AgentWorkflowsExecuteResponses, type AgentWorkflowsGetData, type AgentWorkflowsGetError, type AgentWorkflowsGetErrors, type AgentWorkflowsGetInputsData, type AgentWorkflowsGetInputsError, type AgentWorkflowsGetInputsErrors, type AgentWorkflowsGetInputsResponse, type AgentWorkflowsGetInputsResponses, type AgentWorkflowsGetOutputSchemasData, type AgentWorkflowsGetOutputSchemasError, type AgentWorkflowsGetOutputSchemasErrors, type AgentWorkflowsGetOutputSchemasResponse, type AgentWorkflowsGetOutputSchemasResponses, 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 AgentsAgentCreateRequest, type AgentsAgentCreateResponse, type AgentsAgentExecuteAgentRequest, type AgentsAgentExecuteAgentResponse, type AgentsAgentExecutionOptions, type AgentsAgentSearch, type AgentsAgentSortField, type AgentsAgentUpdateRequest, type AgentsContextUserContextResponse, type AgentsContextUserOrganization, type AgentsCustomerActivityCustomerActivityList, type AgentsCustomerActivityCustomerActivityRow, type AgentsCustomerActivityCustomerWindowStatsList, type AgentsCustomerActivityCustomerWindowStatsRow, type AgentsCustomerActivityNotableActivityKind, type AgentsCustomerActivityNotableActivityList, type AgentsCustomerActivityNotableActivityRow, type AgentsCustomerActivityOrgWindowStat, type AgentsCustomerActivityRiskLevel, type AgentsDocsSearchDocsRequest, type AgentsDocsSearchDocsResponse, type AgentsDocsSearchResult, type AgentsExecutionActionName, type AgentsExecutionActivity, type AgentsExecutionActivityActionCompletedInfo, type AgentsExecutionActivityActionCompletedPayload, type AgentsExecutionActivityActionFailedPayload, type AgentsExecutionActivityActionStartedInfo, type AgentsExecutionActivityActionStartedPayload, type AgentsExecutionActivityCompactionPerformedPayload, type AgentsExecutionActivityCompactionStartedPayload, type AgentsExecutionActivityDisplay, type AgentsExecutionActivityFileAddedPayload, type AgentsExecutionActivityGenericPayload, type AgentsExecutionActivityInputSchemaResolvedPayload, type AgentsExecutionActivityPayloadUnion, type AgentsExecutionActivityPlaywrightScriptGeneratedPayload, type AgentsExecutionActivityPresentationLevel, type AgentsExecutionActivityReasoningPayload, type AgentsExecutionActivityScriptVariablesSubstitutedPayload, type AgentsExecutionActivityStatusChangedPayload, type AgentsExecutionActivityStepCompletedPayload, type AgentsExecutionActivityStepStartedPayload, type AgentsExecutionActivityTodosUpdatedPayload, type AgentsExecutionActivityTransitionedNodePayload, type AgentsExecutionActivityUserMessageReceivedPayload, type AgentsExecutionActivityWorkflowUpdatedPayload, type AgentsExecutionAdvisorCompletedDetails, type AgentsExecutionAgentQueryContextCompletedDetails, type AgentsExecutionAgentQueryContextStartedDetails, type AgentsExecutionApiKeyRef, type AgentsExecutionApiTriggerContext, type AgentsExecutionAskUserQuestion, type AgentsExecutionAwaitingConfirmationPayload, type AgentsExecutionBrowserRunCodeCompletedDetails, type AgentsExecutionBrowserRunCodeStartedDetails, type AgentsExecutionCancelReason, type AgentsExecutionCancelledPayload, type AgentsExecutionComment, type AgentsExecutionCompletedPayload, type AgentsExecutionElementFileUploadCompletedDetails, type AgentsExecutionExecutionResult, type AgentsExecutionExtApiCallCompletedDetails, type AgentsExecutionExtGetMailCompletedDetails, type AgentsExecutionExtSendMailCompletedDetails, type AgentsExecutionExtSendMailStartedDetails, type AgentsExecutionFailedPayload, type AgentsExecutionFileListCompletedDetails, type AgentsExecutionFileReadCompletedDetails, type AgentsExecutionFileStageCompletedDetails, type AgentsExecutionHandoffPrepareCompletedDetails, type AgentsExecutionHandoffPrepareStartedDetails, type AgentsExecutionHandoffPrepareVariable, type AgentsExecutionHumanLabel, type AgentsExecutionListItem, type AgentsExecutionLlmCallPurpose, type AgentsExecutionLlmCallStartedDetails, type AgentsExecutionNavToCompletedDetails, type AgentsExecutionNavToStartedDetails, type AgentsExecutionNodeDetails, type AgentsExecutionNodeOutputItem, type AgentsExecutionObsSnapshotWithSelectorsCompletedDetails, type AgentsExecutionPausedPayload, type AgentsExecutionQuestionItem, type AgentsExecutionQuestionOption, type AgentsExecutionReadFileCompletedDetails, type AgentsExecutionReadFileStartedDetails, type AgentsExecutionRulesDetails, type AgentsExecutionScheduleRef, type AgentsExecutionScheduleTriggerContext, type AgentsExecutionScratchpadReadCompletedDetails, type AgentsExecutionScratchpadReadStartedDetails, type AgentsExecutionScratchpadWriteCompletedDetails, type AgentsExecutionScratchpadWriteStartedDetails, type AgentsExecutionScriptEvalCompletedDetails, type AgentsExecutionScriptEvalStartedDetails, type AgentsExecutionScriptFailure, type AgentsExecutionScriptHybridPlaywrightCompletedDetails, type AgentsExecutionScriptHybridPlaywrightStartedDetails, type AgentsExecutionScriptPadRunFunctionCompletedDetails, type AgentsExecutionScriptPlaywrightCompletedDetails, type AgentsExecutionScriptPlaywrightStartedDetails, type AgentsExecutionScriptpadReadCompletedDetails, type AgentsExecutionScriptpadReadStartedDetails, type AgentsExecutionScriptpadRunFunctionStartedDetails, type AgentsExecutionScriptpadSearchReplaceCompletedDetails, type AgentsExecutionScriptpadSearchReplaceStartedDetails, type AgentsExecutionScriptpadWriteCompletedDetails, type AgentsExecutionSdkBashCompletedDetails, type AgentsExecutionSdkBashStartedDetails, type AgentsExecutionSdkEditCompletedDetails, type AgentsExecutionSdkEditStartedDetails, type AgentsExecutionSdkGlobCompletedDetails, type AgentsExecutionSdkGlobStartedDetails, type AgentsExecutionSdkGrepCompletedDetails, type AgentsExecutionSdkGrepStartedDetails, type AgentsExecutionSdkReadCompletedDetails, type AgentsExecutionSdkReadStartedDetails, type AgentsExecutionSdkSkillCompletedDetails, type AgentsExecutionSdkSkillStartedDetails, type AgentsExecutionSdkWriteCompletedDetails, type AgentsExecutionSdkWriteStartedDetails, type AgentsExecutionSearchAgentId, type AgentsExecutionSearchAgentProfileIds, type AgentsExecutionSearchCreatedAfter, type AgentsExecutionSearchCreatedBefore, type AgentsExecutionSearchExecutionId, type AgentsExecutionSearchHasScriptFailures, type AgentsExecutionSearchHumanLabels, type AgentsExecutionSearchInputsKey, type AgentsExecutionSearchInputsValue, type AgentsExecutionSearchMetadataKey, type AgentsExecutionSearchMetadataValue, type AgentsExecutionSearchOutcomeLabel, type AgentsExecutionSearchStatus, type AgentsExecutionSearchTriggerSource, type AgentsExecutionSearchWorkflowVersion, type AgentsExecutionSortField, type AgentsExecutionStatus, type AgentsExecutionTerminalPayload, type AgentsExecutionTodo, type AgentsExecutionTodoStatus, type AgentsExecutionTransitionDetails, type AgentsExecutionTriggerContext, type AgentsExecutionTriggerRunner, type AgentsExecutionUiTriggerContext, type AgentsExecutionUpdateExecutionStatusRequest, type AgentsExecutionUpdateType, type AgentsExecutionUpdateableStatus, type AgentsExecutionUserMessagesAddTextBody, type AgentsExecutionUtilGetDatetimeCompletedDetails, type AgentsExecutionUtilGetDatetimeStartedDetails, type AgentsExecutionWorkflowUpdate, type AgentsFilesAgentFile, type AgentsFilesAgentFileCreatedBy, type AgentsFilesAgentFileDirectory, type AgentsFilesAgentFilesDirectoryListing, type AgentsFilesAgentFilesResponse, type AgentsFilesFile, type AgentsFilesFilePart, type AgentsFilesSetFrozenRequest, type AgentsFilesSharedFile, type AgentsFilesSharedFileUploadResponse, type AgentsFilesSharedFilesResponse, type AgentsFilesTempFile, type AgentsFilesTempFilesResponse, type AgentsGraphModelsAgentGraph, type AgentsGraphModelsAgentLoopBackend, type AgentsGraphModelsCuaScreenshotMode, type AgentsGraphModelsLlmProvider, type AgentsGraphModelsNodesNode, type AgentsGraphModelsNodesNodePropertiesUnion, type AgentsGraphModelsNodesNodeType, type AgentsGraphModelsNodesPosition, type AgentsGraphModelsNodesPropertiesApiMethod, type AgentsGraphModelsNodesPropertiesApiProperties, type AgentsGraphModelsNodesPropertiesIrisPlaywrightScriptProperties, type AgentsGraphModelsNodesPropertiesIrisProperties, type AgentsGraphModelsNodesPropertiesNodeCapabilities, type AgentsGraphModelsNodesPropertiesOutcomeString, type AgentsGraphModelsNodesPropertiesOutputProperties, type AgentsGraphModelsNodesPropertiesPlaywrightScriptLlmVar, type AgentsGraphModelsNodesPropertiesPlaywrightScriptLlmVarType, type AgentsGraphModelsNodesPropertiesPlaywrightScriptProperties, type AgentsGraphModelsNodesPropertiesStartProperties, type AgentsGraphModelsNodesPropertiesUrlProperties, type AgentsGraphModelsNodesSize, type AgentsGraphModelsSettings, type AgentsGraphModelsStickyNote, type AgentsGraphModelsTransitionsPropertiesIrisProperties, type AgentsGraphModelsTransitionsPropertiesOutcomeSuccessProperties, type AgentsGraphModelsTransitionsPropertiesSelectorProperties, type AgentsGraphModelsTransitionsTransition, type AgentsGraphModelsTransitionsTransitionPropertiesUnion, type AgentsGraphModelsTransitionsTransitionType, type AgentsProfileAddProfilesToPoolRequest, type AgentsProfileAgentProfile, type AgentsProfileAgentProfileInboxEmailsResponse, type AgentsProfileAgentProfilePool, type AgentsProfileAgentProfilePoolMember, type AgentsProfileCookie, type AgentsProfileCountryCode, type AgentsProfileCreateAgentProfilePoolRequest, type AgentsProfileCreateAgentProfileRequest, type AgentsProfileCredential, type AgentsProfileCredentialUpdate, type AgentsProfileCustomProxyConfigInput, type AgentsProfileCustomProxyConfigOutput, type AgentsProfileDuplicateAgentProfileRequest, type AgentsProfileFeature, type AgentsProfileOperatingSystem, type AgentsProfilePoolSearch, type AgentsProfilePoolSortField, type AgentsProfileProfileInboxEmail, type AgentsProfileProfileInboxEmailDetail, type AgentsProfileProxyMode, type AgentsProfileProxyType, type AgentsProfileRemoveProfilesFromPoolRequest, type AgentsProfileSameSite, type AgentsProfileSearchFeature, type AgentsProfileSearchOperatingSystem, type AgentsProfileSearchProxyMode, type AgentsProfileSearchSearchName, 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 AgentsWorkflowInput, type AgentsWorkflowOsProvider, type AgentsWorkflowOsTemplateConfig, type AgentsWorkflowOsType, type AgentsWorkflowPublishWorkflowResponse, type AgentsWorkflowSyncExecutionRequest, type AgentsWorkflowSyncExecutionResponse, type AgentsWorkflowWorkflowFile, type AgentsWorkflowWorkflowInputs, type AgentsWorkflowWorkflowOutputSchemas, type AgentsWorkflowWorkflowRef, type AgentsWorkflowWorkflowSnapshot, type AvailableToolsListData, type AvailableToolsListError, type AvailableToolsListErrors, type AvailableToolsListResponse, type AvailableToolsListResponses, type ClientOptions, type CommonBadRequestErrorBody, type CommonConflictErrorBody, type CommonError, type CommonForbiddenErrorBody, type CommonInternalServerErrorBody, type CommonNotFoundErrorBody, type CommonOsError, type CommonPaginationPage, type CommonPaginationPageSize, type CommonPaymentRequiredErrorBody, 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 ExecutionAgentFileDownloadRedirectData, type ExecutionAgentFileDownloadRedirectError, type ExecutionAgentFileDownloadRedirectErrors, type ExecutionAgentFilesGetData, type ExecutionAgentFilesGetError, type ExecutionAgentFilesGetErrors, type ExecutionAgentFilesGetResponse, type ExecutionAgentFilesGetResponses, type ExecutionContextFileDownloadRedirectData, type ExecutionContextFileDownloadRedirectError, type ExecutionContextFileDownloadRedirectErrors, type ExecutionContextFilesGetData, type ExecutionContextFilesGetError, type ExecutionContextFilesGetErrors, type ExecutionContextFilesGetResponse, type ExecutionContextFilesGetResponses, type ExecutionContextFilesUploadData, type ExecutionContextFilesUploadError, type ExecutionContextFilesUploadErrors, type ExecutionContextFilesUploadResponse, type ExecutionContextFilesUploadResponses, type ExecutionDebugFileDownloadRedirectData, type ExecutionDebugFileDownloadRedirectError, type ExecutionDebugFileDownloadRedirectErrors, type ExecutionFileDownloadRedirectData, type ExecutionFileDownloadRedirectError, type ExecutionFileDownloadRedirectErrors, type ExecutionFilesGetData, type ExecutionFilesGetError, type ExecutionFilesGetErrors, type ExecutionFilesGetResponse, type ExecutionFilesGetResponses, 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, adminCustomerActivityList, adminCustomerActivityNotableList, adminCustomerActivityWindowStatsList, agentByIdDelete, agentByIdUpdate, agentCreate, agentExecutePost, agentList, agentProfileClearBrowserCache, agentProfileDelete, agentProfileDuplicate, agentProfileGet, agentProfileGetInboxEmail, agentProfileGetInboxEmails, agentProfilePoolDelete, agentProfilePoolGet, agentProfilePoolMembersAdd, agentProfilePoolMembersList, agentProfilePoolMembersRemove, agentProfilePoolUpdate, agentProfilePoolsCreate, agentProfilePoolsList, agentProfileUpdate, agentProfilesCreate, agentProfilesList, agentSharedFileDownloadRedirect, agentSharedFilesDelete, agentSharedFilesDeleteAll, agentSharedFilesFreeze, agentSharedFilesGet, agentSharedFilesUpdate, agentSharedFilesUpload, agentWorkflowsCreate, agentWorkflowsDeleteWorkflow, agentWorkflowsExecute, agentWorkflowsGet, agentWorkflowsGetInputs, agentWorkflowsGetOutputSchemas, agentWorkflowsList, agentWorkflowsPublish, agentWorkflowsSyncExecution, availableToolsList, client, contextGet, docsSearchSearch, executionActivitiesGet, executionAgentFileDownloadRedirect, executionAgentFilesGet, executionContextFileDownloadRedirect, executionContextFilesGet, executionContextFilesUpload, executionDebugFileDownloadRedirect, executionFileDownloadRedirect, executionFilesGet, executionGet, executionRecordingRedirect, executionStatusUpdate, executionUserMessagesAdd, executionsList, schemaValidationValidate, tempFilesStage };
5552
+ export { type AdminCustomerActivityListData, type AdminCustomerActivityListError, type AdminCustomerActivityListErrors, type AdminCustomerActivityListResponse, type AdminCustomerActivityListResponses, type AdminCustomerActivityNotableListData, type AdminCustomerActivityNotableListError, type AdminCustomerActivityNotableListErrors, type AdminCustomerActivityNotableListResponse, type AdminCustomerActivityNotableListResponses, type AdminCustomerActivityWindowStatsListData, type AdminCustomerActivityWindowStatsListError, type AdminCustomerActivityWindowStatsListErrors, type AdminCustomerActivityWindowStatsListResponse, type AdminCustomerActivityWindowStatsListResponses, type AgentByIdDeleteData, type AgentByIdDeleteError, type AgentByIdDeleteErrors, type AgentByIdDeleteResponse, type AgentByIdDeleteResponses, type AgentByIdUpdateData, type AgentByIdUpdateError, type AgentByIdUpdateErrors, type AgentByIdUpdateResponses, type AgentCreateData, type AgentCreateError, type AgentCreateErrors, type AgentCreateResponse, type AgentCreateResponses, 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 AgentProfileGetInboxEmailData, type AgentProfileGetInboxEmailError, type AgentProfileGetInboxEmailErrors, type AgentProfileGetInboxEmailResponse, type AgentProfileGetInboxEmailResponses, type AgentProfileGetInboxEmailsData, type AgentProfileGetInboxEmailsError, type AgentProfileGetInboxEmailsErrors, type AgentProfileGetInboxEmailsResponse, type AgentProfileGetInboxEmailsResponses, 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 AgentWorkflowsDeleteWorkflowData, type AgentWorkflowsDeleteWorkflowError, type AgentWorkflowsDeleteWorkflowErrors, type AgentWorkflowsDeleteWorkflowResponse, type AgentWorkflowsDeleteWorkflowResponses, type AgentWorkflowsExecuteData, type AgentWorkflowsExecuteError, type AgentWorkflowsExecuteErrors, type AgentWorkflowsExecuteResponse, type AgentWorkflowsExecuteResponses, type AgentWorkflowsGetData, type AgentWorkflowsGetError, type AgentWorkflowsGetErrors, type AgentWorkflowsGetInputsData, type AgentWorkflowsGetInputsError, type AgentWorkflowsGetInputsErrors, type AgentWorkflowsGetInputsResponse, type AgentWorkflowsGetInputsResponses, type AgentWorkflowsGetOutputSchemasData, type AgentWorkflowsGetOutputSchemasError, type AgentWorkflowsGetOutputSchemasErrors, type AgentWorkflowsGetOutputSchemasResponse, type AgentWorkflowsGetOutputSchemasResponses, 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 AgentsAgentCreateResponse, type AgentsAgentExecuteAgentRequest, type AgentsAgentExecuteAgentResponse, type AgentsAgentExecutionOptions, type AgentsAgentExternalCreateRequest, type AgentsAgentSearch, type AgentsAgentSortField, type AgentsAgentUpdateRequest, type AgentsContextUserContextResponse, type AgentsContextUserOrganization, type AgentsCustomerActivityCustomerActivityList, type AgentsCustomerActivityCustomerActivityRow, type AgentsCustomerActivityCustomerWindowStatsList, type AgentsCustomerActivityCustomerWindowStatsRow, type AgentsCustomerActivityNotableActivityKind, type AgentsCustomerActivityNotableActivityList, type AgentsCustomerActivityNotableActivityRow, type AgentsCustomerActivityOrgWindowStat, type AgentsCustomerActivityRiskLevel, type AgentsDocsSearchDocsRequest, type AgentsDocsSearchDocsResponse, type AgentsDocsSearchResult, type AgentsExecutionActionName, type AgentsExecutionActivity, type AgentsExecutionActivityActionCompletedInfo, type AgentsExecutionActivityActionCompletedPayload, type AgentsExecutionActivityActionFailedPayload, type AgentsExecutionActivityActionStartedInfo, type AgentsExecutionActivityActionStartedPayload, type AgentsExecutionActivityCompactionPerformedPayload, type AgentsExecutionActivityCompactionStartedPayload, type AgentsExecutionActivityDisplay, type AgentsExecutionActivityFileAddedPayload, type AgentsExecutionActivityGenericPayload, type AgentsExecutionActivityInputSchemaResolvedPayload, type AgentsExecutionActivityPayloadUnion, type AgentsExecutionActivityPlaywrightScriptGeneratedPayload, type AgentsExecutionActivityPresentationLevel, type AgentsExecutionActivityReasoningPayload, type AgentsExecutionActivityScriptVariablesSubstitutedPayload, type AgentsExecutionActivityStatusChangedPayload, type AgentsExecutionActivityStepCompletedPayload, type AgentsExecutionActivityStepStartedPayload, type AgentsExecutionActivityTodosUpdatedPayload, type AgentsExecutionActivityTransitionedNodePayload, type AgentsExecutionActivityUserMessageReceivedPayload, type AgentsExecutionActivityWorkflowUpdatedPayload, type AgentsExecutionAdvisorCompletedDetails, type AgentsExecutionAgentQueryContextCompletedDetails, type AgentsExecutionAgentQueryContextStartedDetails, type AgentsExecutionApiKeyRef, type AgentsExecutionApiTriggerContext, type AgentsExecutionAskUserQuestion, type AgentsExecutionAwaitingConfirmationPayload, type AgentsExecutionBrowserRunCodeCompletedDetails, type AgentsExecutionBrowserRunCodeStartedDetails, type AgentsExecutionCancelReason, type AgentsExecutionCancelledPayload, type AgentsExecutionComment, type AgentsExecutionCompletedPayload, type AgentsExecutionElementFileUploadCompletedDetails, type AgentsExecutionExecutionResult, type AgentsExecutionExtApiCallCompletedDetails, type AgentsExecutionExtGetMailCompletedDetails, type AgentsExecutionExtSendMailCompletedDetails, type AgentsExecutionExtSendMailStartedDetails, type AgentsExecutionFailedPayload, type AgentsExecutionFileListCompletedDetails, type AgentsExecutionFileReadCompletedDetails, type AgentsExecutionFileStageCompletedDetails, type AgentsExecutionHandoffPrepareCompletedDetails, type AgentsExecutionHandoffPrepareStartedDetails, type AgentsExecutionHandoffPrepareVariable, type AgentsExecutionHumanLabel, type AgentsExecutionListItem, type AgentsExecutionLlmCallPurpose, type AgentsExecutionLlmCallStartedDetails, type AgentsExecutionNavToCompletedDetails, type AgentsExecutionNavToStartedDetails, type AgentsExecutionNodeDetails, type AgentsExecutionNodeOutputItem, type AgentsExecutionObsSnapshotWithSelectorsCompletedDetails, type AgentsExecutionPausedPayload, type AgentsExecutionQuestionItem, type AgentsExecutionQuestionOption, type AgentsExecutionReadFileCompletedDetails, type AgentsExecutionReadFileStartedDetails, type AgentsExecutionRulesDetails, type AgentsExecutionScheduleRef, type AgentsExecutionScheduleTriggerContext, type AgentsExecutionScratchpadReadCompletedDetails, type AgentsExecutionScratchpadReadStartedDetails, type AgentsExecutionScratchpadWriteCompletedDetails, type AgentsExecutionScratchpadWriteStartedDetails, type AgentsExecutionScriptEvalCompletedDetails, type AgentsExecutionScriptEvalStartedDetails, type AgentsExecutionScriptFailure, type AgentsExecutionScriptHybridPlaywrightCompletedDetails, type AgentsExecutionScriptHybridPlaywrightStartedDetails, type AgentsExecutionScriptPadRunFunctionCompletedDetails, type AgentsExecutionScriptPlaywrightCompletedDetails, type AgentsExecutionScriptPlaywrightStartedDetails, type AgentsExecutionScriptpadReadCompletedDetails, type AgentsExecutionScriptpadReadStartedDetails, type AgentsExecutionScriptpadRunFunctionStartedDetails, type AgentsExecutionScriptpadSearchReplaceCompletedDetails, type AgentsExecutionScriptpadSearchReplaceStartedDetails, type AgentsExecutionScriptpadWriteCompletedDetails, type AgentsExecutionSdkBashCompletedDetails, type AgentsExecutionSdkBashStartedDetails, type AgentsExecutionSdkEditCompletedDetails, type AgentsExecutionSdkEditStartedDetails, type AgentsExecutionSdkGlobCompletedDetails, type AgentsExecutionSdkGlobStartedDetails, type AgentsExecutionSdkGrepCompletedDetails, type AgentsExecutionSdkGrepStartedDetails, type AgentsExecutionSdkReadCompletedDetails, type AgentsExecutionSdkReadStartedDetails, type AgentsExecutionSdkSkillCompletedDetails, type AgentsExecutionSdkSkillStartedDetails, type AgentsExecutionSdkWriteCompletedDetails, type AgentsExecutionSdkWriteStartedDetails, type AgentsExecutionSearchAgentId, type AgentsExecutionSearchAgentProfileIds, type AgentsExecutionSearchCreatedAfter, type AgentsExecutionSearchCreatedBefore, type AgentsExecutionSearchExecutionId, type AgentsExecutionSearchHasScriptFailures, type AgentsExecutionSearchHumanLabels, type AgentsExecutionSearchInputsKey, type AgentsExecutionSearchInputsValue, type AgentsExecutionSearchMetadataKey, type AgentsExecutionSearchMetadataValue, type AgentsExecutionSearchOutcomeLabel, type AgentsExecutionSearchStatus, type AgentsExecutionSearchTriggerSource, type AgentsExecutionSearchWorkflowVersion, type AgentsExecutionSortField, type AgentsExecutionStatus, type AgentsExecutionTerminalPayload, type AgentsExecutionTodo, type AgentsExecutionTodoStatus, type AgentsExecutionTransitionDetails, type AgentsExecutionTriggerContext, type AgentsExecutionTriggerRunner, type AgentsExecutionUiTriggerContext, type AgentsExecutionUpdateExecutionStatusRequest, type AgentsExecutionUpdateType, type AgentsExecutionUpdateableStatus, type AgentsExecutionUserMessagesAddTextBody, type AgentsExecutionUtilGetDatetimeCompletedDetails, type AgentsExecutionUtilGetDatetimeStartedDetails, type AgentsExecutionWorkflowUpdate, type AgentsFilesAgentFile, type AgentsFilesAgentFileCreatedBy, type AgentsFilesAgentFileDirectory, type AgentsFilesAgentFilesDirectoryListing, type AgentsFilesAgentFilesResponse, type AgentsFilesFile, type AgentsFilesFilePart, type AgentsFilesTempFile, type AgentsFilesTempFilesResponse, type AgentsGraphModelsAgentGraph, type AgentsGraphModelsExternalSettings, type AgentsGraphModelsNodesNode, type AgentsGraphModelsNodesNodePropertiesUnion, type AgentsGraphModelsNodesNodeType, type AgentsGraphModelsNodesPosition, type AgentsGraphModelsNodesPropertiesApiMethod, type AgentsGraphModelsNodesPropertiesApiProperties, type AgentsGraphModelsNodesPropertiesIrisPlaywrightScriptProperties, type AgentsGraphModelsNodesPropertiesIrisProperties, type AgentsGraphModelsNodesPropertiesNodeCapabilities, type AgentsGraphModelsNodesPropertiesOutcomeString, type AgentsGraphModelsNodesPropertiesOutputProperties, type AgentsGraphModelsNodesPropertiesPlaywrightScriptLlmVar, type AgentsGraphModelsNodesPropertiesPlaywrightScriptLlmVarType, type AgentsGraphModelsNodesPropertiesPlaywrightScriptProperties, type AgentsGraphModelsNodesPropertiesStartProperties, type AgentsGraphModelsNodesPropertiesUrlProperties, type AgentsGraphModelsNodesSize, type AgentsGraphModelsStickyNote, type AgentsGraphModelsTransitionsPropertiesIrisProperties, type AgentsGraphModelsTransitionsPropertiesOutcomeSuccessProperties, type AgentsGraphModelsTransitionsPropertiesSelectorProperties, type AgentsGraphModelsTransitionsTransition, type AgentsGraphModelsTransitionsTransitionPropertiesUnion, type AgentsGraphModelsTransitionsTransitionType, type AgentsProfileAddProfilesToPoolRequest, type AgentsProfileAgentProfile, type AgentsProfileAgentProfileInboxEmailsResponse, type AgentsProfileAgentProfilePool, type AgentsProfileAgentProfilePoolMember, type AgentsProfileCookie, type AgentsProfileCountryCode, type AgentsProfileCreateAgentProfilePoolRequest, type AgentsProfileCreateAgentProfileRequest, type AgentsProfileCredential, type AgentsProfileCredentialUpdate, type AgentsProfileCustomProxyConfigInput, type AgentsProfileCustomProxyConfigOutput, type AgentsProfileDuplicateAgentProfileRequest, type AgentsProfileFeature, type AgentsProfileOperatingSystem, type AgentsProfilePoolSearch, type AgentsProfilePoolSortField, type AgentsProfileProfileInboxEmail, type AgentsProfileProfileInboxEmailDetail, type AgentsProfileProxyMode, type AgentsProfileProxyType, type AgentsProfileRemoveProfilesFromPoolRequest, type AgentsProfileSameSite, type AgentsProfileSearchFeature, type AgentsProfileSearchOperatingSystem, type AgentsProfileSearchProxyMode, type AgentsProfileSearchSearchName, type AgentsProfileSelectionStrategy, type AgentsProfileSortField, type AgentsProfileUpdateAgentProfilePoolRequest, type AgentsProfileUpdateAgentProfileRequest, type AgentsSchemaValidateSchemaRequest, type AgentsSchemaValidateSchemaResponse, type AgentsWorkflowBrowserProvider, type AgentsWorkflowBrowserTemplateConfig, type AgentsWorkflowCreateWorkflowResponse, type AgentsWorkflowEnvironmentTemplate, type AgentsWorkflowEnvironmentType, type AgentsWorkflowExecuteWorkflowRequest, type AgentsWorkflowExecuteWorkflowResponse, type AgentsWorkflowExternalCreateWorkflowRequest, type AgentsWorkflowExternalWorkflowSnapshot, type AgentsWorkflowInput, type AgentsWorkflowOsProvider, type AgentsWorkflowOsTemplateConfig, type AgentsWorkflowOsType, type AgentsWorkflowPublishWorkflowResponse, type AgentsWorkflowSyncExecutionRequest, type AgentsWorkflowSyncExecutionResponse, type AgentsWorkflowWorkflowFile, type AgentsWorkflowWorkflowInputs, type AgentsWorkflowWorkflowOutputSchemas, type AgentsWorkflowWorkflowRef, type AvailableToolsListData, type AvailableToolsListError, type AvailableToolsListErrors, type AvailableToolsListResponse, type AvailableToolsListResponses, type ClientOptions, type CommonBadRequestErrorBody, type CommonConflictErrorBody, type CommonError, type CommonForbiddenErrorBody, type CommonInternalServerErrorBody, type CommonNotFoundErrorBody, type CommonOsError, type CommonPaginationPage, type CommonPaginationPageSize, type CommonPaymentRequiredErrorBody, 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 ExecutionAgentFileDownloadRedirectData, type ExecutionAgentFileDownloadRedirectError, type ExecutionAgentFileDownloadRedirectErrors, type ExecutionAgentFilesGetData, type ExecutionAgentFilesGetError, type ExecutionAgentFilesGetErrors, type ExecutionAgentFilesGetResponse, type ExecutionAgentFilesGetResponses, type ExecutionContextFileDownloadRedirectData, type ExecutionContextFileDownloadRedirectError, type ExecutionContextFileDownloadRedirectErrors, type ExecutionContextFilesGetData, type ExecutionContextFilesGetError, type ExecutionContextFilesGetErrors, type ExecutionContextFilesGetResponse, type ExecutionContextFilesGetResponses, type ExecutionContextFilesUploadData, type ExecutionContextFilesUploadError, type ExecutionContextFilesUploadErrors, type ExecutionContextFilesUploadResponse, type ExecutionContextFilesUploadResponses, type ExecutionDebugFileDownloadRedirectData, type ExecutionDebugFileDownloadRedirectError, type ExecutionDebugFileDownloadRedirectErrors, type ExecutionFileDownloadRedirectData, type ExecutionFileDownloadRedirectError, type ExecutionFileDownloadRedirectErrors, type ExecutionFilesGetData, type ExecutionFilesGetError, type ExecutionFilesGetErrors, type ExecutionFilesGetResponse, type ExecutionFilesGetResponses, 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, adminCustomerActivityList, adminCustomerActivityNotableList, adminCustomerActivityWindowStatsList, agentByIdDelete, agentByIdUpdate, agentCreate, agentExecutePost, agentList, agentProfileClearBrowserCache, agentProfileDelete, agentProfileDuplicate, agentProfileGet, agentProfileGetInboxEmail, agentProfileGetInboxEmails, agentProfilePoolDelete, agentProfilePoolGet, agentProfilePoolMembersAdd, agentProfilePoolMembersList, agentProfilePoolMembersRemove, agentProfilePoolUpdate, agentProfilePoolsCreate, agentProfilePoolsList, agentProfileUpdate, agentProfilesCreate, agentProfilesList, agentWorkflowsCreate, agentWorkflowsDeleteWorkflow, agentWorkflowsExecute, agentWorkflowsGet, agentWorkflowsGetInputs, agentWorkflowsGetOutputSchemas, agentWorkflowsList, agentWorkflowsPublish, agentWorkflowsSyncExecution, availableToolsList, client, contextGet, docsSearchSearch, executionActivitiesGet, executionAgentFileDownloadRedirect, executionAgentFilesGet, executionContextFileDownloadRedirect, executionContextFilesGet, executionContextFilesUpload, executionDebugFileDownloadRedirect, executionFileDownloadRedirect, executionFilesGet, executionGet, executionRecordingRedirect, executionStatusUpdate, executionUserMessagesAdd, executionsList, schemaValidationValidate, tempFilesStage };