asteroid-odyssey 1.7.199 → 1.7.228
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 +616 -224
- package/dist/index.d.ts +616 -224
- package/dist/index.js +6 -6
- package/dist/index.mjs +6 -6
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -346,17 +346,13 @@ type CommonBadRequestErrorBody = {
|
|
|
346
346
|
message: string;
|
|
347
347
|
};
|
|
348
348
|
/**
|
|
349
|
-
*
|
|
349
|
+
* Lightweight workflow reference for listing workflows without full data
|
|
350
350
|
*/
|
|
351
|
-
type
|
|
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
|
-
*
|
|
369
|
+
* When this workflow was created
|
|
374
370
|
*/
|
|
375
|
-
|
|
371
|
+
createdAt: string;
|
|
376
372
|
/**
|
|
377
|
-
* The
|
|
373
|
+
* The email of the user who created this workflow.
|
|
378
374
|
*/
|
|
379
|
-
|
|
375
|
+
author?: string;
|
|
380
376
|
/**
|
|
381
|
-
*
|
|
377
|
+
* Whether this snapshot can be deleted (not published and never executed)
|
|
382
378
|
*/
|
|
383
|
-
|
|
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
|
-
*
|
|
392
|
+
* Typed input definitions the workflow accepts at execution time
|
|
386
393
|
*/
|
|
387
|
-
|
|
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
|
-
*
|
|
401
|
+
* The variable name. Matches [a-zA-Z_][a-zA-Z0-9_]* and is unique within the workflow.
|
|
390
402
|
*/
|
|
391
|
-
|
|
403
|
+
name: string;
|
|
392
404
|
/**
|
|
393
|
-
*
|
|
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
|
-
|
|
407
|
+
schema: {
|
|
408
|
+
[key: string]: unknown;
|
|
409
|
+
};
|
|
396
410
|
/**
|
|
397
|
-
*
|
|
411
|
+
* Whether a value must be supplied at execution time. Defaults to false.
|
|
398
412
|
*/
|
|
399
|
-
|
|
413
|
+
required: boolean;
|
|
400
414
|
/**
|
|
401
|
-
*
|
|
415
|
+
* Optional value used when the input is omitted at execution time.
|
|
402
416
|
*/
|
|
403
|
-
|
|
417
|
+
defaultValue?: unknown;
|
|
404
418
|
/**
|
|
405
|
-
*
|
|
419
|
+
* Optional human-readable description of the input.
|
|
406
420
|
*/
|
|
407
|
-
|
|
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
|
-
*
|
|
461
|
+
* Response after syncing execution to workflow
|
|
448
462
|
*/
|
|
449
|
-
type
|
|
463
|
+
type AgentsWorkflowSyncExecutionResponse = {
|
|
450
464
|
/**
|
|
451
|
-
* The
|
|
465
|
+
* The ID of the execution that was synced
|
|
452
466
|
*/
|
|
453
|
-
|
|
467
|
+
executionId: CommonUuid;
|
|
454
468
|
/**
|
|
455
|
-
*
|
|
469
|
+
* The ID of the workflow the execution is now synced to
|
|
456
470
|
*/
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
471
|
+
workflowId: CommonUuid;
|
|
472
|
+
};
|
|
473
|
+
/**
|
|
474
|
+
* Request to sync an execution to a workflow
|
|
475
|
+
*/
|
|
476
|
+
type AgentsWorkflowSyncExecutionRequest = {
|
|
460
477
|
/**
|
|
461
|
-
*
|
|
478
|
+
* The ID of the execution to sync
|
|
462
479
|
*/
|
|
463
|
-
|
|
480
|
+
executionId: CommonUuid;
|
|
481
|
+
};
|
|
482
|
+
/**
|
|
483
|
+
* Response after publishing a workflow
|
|
484
|
+
*/
|
|
485
|
+
type AgentsWorkflowPublishWorkflowResponse = {
|
|
464
486
|
/**
|
|
465
|
-
*
|
|
487
|
+
* The ID of the published workflow
|
|
466
488
|
*/
|
|
467
|
-
|
|
489
|
+
workflowId: CommonUuid;
|
|
468
490
|
/**
|
|
469
|
-
*
|
|
491
|
+
* The assigned version number
|
|
470
492
|
*/
|
|
471
|
-
|
|
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,121 @@ type AgentsWorkflowOsTemplateConfig = {
|
|
|
499
517
|
*/
|
|
500
518
|
osType?: AgentsWorkflowOsType;
|
|
501
519
|
};
|
|
520
|
+
/**
|
|
521
|
+
* OS provider type
|
|
522
|
+
*/
|
|
523
|
+
type AgentsWorkflowOsProvider = 'daytona' | 'local';
|
|
524
|
+
/**
|
|
525
|
+
* CUA provider identifier.
|
|
526
|
+
*/
|
|
527
|
+
type AgentsWorkflowLiveEnvironmentCuaProvider = 'anchor' | 'daytona';
|
|
528
|
+
/**
|
|
529
|
+
* CUA provider connection metadata returned alongside a live environment. Credentials are NOT included — the caller resolves API keys from its own local config keyed by provider.
|
|
530
|
+
*/
|
|
531
|
+
type AgentsWorkflowLiveEnvironmentCuaConnection = {
|
|
532
|
+
/**
|
|
533
|
+
* The CUA provider backing this session.
|
|
534
|
+
*/
|
|
535
|
+
provider: AgentsWorkflowLiveEnvironmentCuaProvider;
|
|
536
|
+
/**
|
|
537
|
+
* Provider session ID. Anchor: browser session id. Daytona: sandbox id.
|
|
538
|
+
*/
|
|
539
|
+
sessionId: string;
|
|
540
|
+
/**
|
|
541
|
+
* Base URL for the Anchor control plane. Optional; defaults to the Anchor SDK default. Set only when provider is anchor.
|
|
542
|
+
*/
|
|
543
|
+
anchorBaseUrl?: string;
|
|
544
|
+
/**
|
|
545
|
+
* Per-sandbox base URL for the Daytona toolbox HTTP API. Set only when provider is daytona.
|
|
546
|
+
*/
|
|
547
|
+
daytonaToolboxBaseUrl?: string;
|
|
548
|
+
/**
|
|
549
|
+
* Operating system of the Daytona sandbox. Set only when provider is daytona.
|
|
550
|
+
*/
|
|
551
|
+
daytonaOsType?: AgentsWorkflowOsType;
|
|
552
|
+
};
|
|
553
|
+
/**
|
|
554
|
+
* A workflow (commit) representing an immutable snapshot of agent configuration
|
|
555
|
+
*/
|
|
556
|
+
type AgentsWorkflowExternalWorkflowSnapshot = {
|
|
557
|
+
/**
|
|
558
|
+
* The unique ID of this workflow
|
|
559
|
+
*/
|
|
560
|
+
id: CommonUuid;
|
|
561
|
+
/**
|
|
562
|
+
* The agent ID this workflow belongs to
|
|
563
|
+
*/
|
|
564
|
+
agentId: CommonUuid;
|
|
565
|
+
/**
|
|
566
|
+
* The ID of the parent workflow this was derived from (for lineage tracking)
|
|
567
|
+
*/
|
|
568
|
+
parentId?: CommonUuid;
|
|
569
|
+
/**
|
|
570
|
+
* The monotonic per-agent snapshot version number.
|
|
571
|
+
*/
|
|
572
|
+
version: number;
|
|
573
|
+
/**
|
|
574
|
+
* Whether this snapshot is the agent's published version (the API default). At most one snapshot per agent is published.
|
|
575
|
+
*/
|
|
576
|
+
isPublished: boolean;
|
|
577
|
+
/**
|
|
578
|
+
* The rules/instructions for this workflow
|
|
579
|
+
*/
|
|
580
|
+
rules: string;
|
|
581
|
+
/**
|
|
582
|
+
* The workflow graph
|
|
583
|
+
*/
|
|
584
|
+
graph: AgentsGraphModelsAgentGraph;
|
|
585
|
+
/**
|
|
586
|
+
* Optional environment template. Defaults to browser/anchor if not provided.
|
|
587
|
+
*/
|
|
588
|
+
environmentTemplate?: AgentsWorkflowEnvironmentTemplate;
|
|
589
|
+
/**
|
|
590
|
+
* Typed input definitions for workflow execution. Includes names referenced in prompts, which default to optional strings.
|
|
591
|
+
*/
|
|
592
|
+
inputs: Array<AgentsWorkflowInput>;
|
|
593
|
+
/**
|
|
594
|
+
* The files stored on this workflow version. Empty when the workflow has no files.
|
|
595
|
+
*/
|
|
596
|
+
files: Array<AgentsWorkflowWorkflowFile>;
|
|
597
|
+
/**
|
|
598
|
+
* 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.
|
|
599
|
+
*/
|
|
600
|
+
createdAt: string;
|
|
601
|
+
/**
|
|
602
|
+
* The email of the user who created this workflow.
|
|
603
|
+
*/
|
|
604
|
+
author?: string;
|
|
605
|
+
/**
|
|
606
|
+
* 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.
|
|
607
|
+
*/
|
|
608
|
+
rev: number;
|
|
609
|
+
/**
|
|
610
|
+
* The settings for this workflow
|
|
611
|
+
*/
|
|
612
|
+
settings: AgentsGraphModelsExternalSettings;
|
|
613
|
+
};
|
|
614
|
+
/**
|
|
615
|
+
* Configuration settings for workflow execution
|
|
616
|
+
*/
|
|
617
|
+
type AgentsGraphModelsExternalSettings = {
|
|
618
|
+
/**
|
|
619
|
+
* Browser viewport width in pixels
|
|
620
|
+
*/
|
|
621
|
+
viewport_width: number;
|
|
622
|
+
/**
|
|
623
|
+
* Browser viewport height in pixels
|
|
624
|
+
*/
|
|
625
|
+
viewport_height: number;
|
|
626
|
+
/**
|
|
627
|
+
* Maximum timeout in minutes
|
|
628
|
+
*/
|
|
629
|
+
max_timeout_mins: number;
|
|
630
|
+
/**
|
|
631
|
+
* Whether to use the new agent loop for execution (beta)
|
|
632
|
+
*/
|
|
633
|
+
new_agent_loop?: boolean;
|
|
634
|
+
};
|
|
502
635
|
/**
|
|
503
636
|
* Browser provider type
|
|
504
637
|
*/
|
|
@@ -735,144 +868,33 @@ type AgentsGraphModelsAgentGraph = {
|
|
|
735
868
|
sticky_notes: Array<AgentsGraphModelsStickyNote>;
|
|
736
869
|
};
|
|
737
870
|
/**
|
|
738
|
-
*
|
|
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
|
|
871
|
+
* Request to create a new unpublished workflow
|
|
796
872
|
*/
|
|
797
|
-
type
|
|
873
|
+
type AgentsWorkflowExternalCreateWorkflowRequest = {
|
|
798
874
|
/**
|
|
799
|
-
*
|
|
800
|
-
*/
|
|
801
|
-
id: CommonUuid;
|
|
802
|
-
/**
|
|
803
|
-
* The ID of the parent workflow this was derived from (for lineage tracking)
|
|
875
|
+
* Optional parent workflow ID to derive from
|
|
804
876
|
*/
|
|
805
877
|
parentId?: CommonUuid;
|
|
806
878
|
/**
|
|
807
|
-
* The
|
|
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;
|
|
832
|
-
};
|
|
833
|
-
/**
|
|
834
|
-
* The typed inputs a workflow declares
|
|
835
|
-
*/
|
|
836
|
-
type AgentsWorkflowWorkflowInputs = {
|
|
837
|
-
/**
|
|
838
|
-
* Typed input definitions the workflow accepts at execution time
|
|
839
|
-
*/
|
|
840
|
-
inputs: Array<AgentsWorkflowInput>;
|
|
841
|
-
};
|
|
842
|
-
/**
|
|
843
|
-
* Response after syncing execution to workflow
|
|
844
|
-
*/
|
|
845
|
-
type AgentsWorkflowSyncExecutionResponse = {
|
|
846
|
-
/**
|
|
847
|
-
* The ID of the execution that was synced
|
|
879
|
+
* The rules/instructions for this workflow
|
|
848
880
|
*/
|
|
849
|
-
|
|
881
|
+
rules: string;
|
|
850
882
|
/**
|
|
851
|
-
* The
|
|
883
|
+
* The workflow graph
|
|
852
884
|
*/
|
|
853
|
-
|
|
854
|
-
};
|
|
855
|
-
/**
|
|
856
|
-
* Request to sync an execution to a workflow
|
|
857
|
-
*/
|
|
858
|
-
type AgentsWorkflowSyncExecutionRequest = {
|
|
885
|
+
graph: AgentsGraphModelsAgentGraph;
|
|
859
886
|
/**
|
|
860
|
-
*
|
|
887
|
+
* Optional environment template. Defaults to browser/anchor if not provided.
|
|
861
888
|
*/
|
|
862
|
-
|
|
863
|
-
};
|
|
864
|
-
/**
|
|
865
|
-
* Response after publishing a workflow
|
|
866
|
-
*/
|
|
867
|
-
type AgentsWorkflowPublishWorkflowResponse = {
|
|
889
|
+
environmentTemplate?: AgentsWorkflowEnvironmentTemplate;
|
|
868
890
|
/**
|
|
869
|
-
*
|
|
891
|
+
* Typed input definitions for this workflow. Names referenced in prompts but omitted here default to optional strings.
|
|
870
892
|
*/
|
|
871
|
-
|
|
893
|
+
inputs?: Array<AgentsWorkflowInput>;
|
|
872
894
|
/**
|
|
873
|
-
* The
|
|
895
|
+
* The settings for this workflow
|
|
874
896
|
*/
|
|
875
|
-
|
|
897
|
+
settings: AgentsGraphModelsExternalSettings;
|
|
876
898
|
};
|
|
877
899
|
/**
|
|
878
900
|
* Response after starting workflow execution
|
|
@@ -946,35 +968,6 @@ type AgentsWorkflowCreateWorkflowResponse = {
|
|
|
946
968
|
*/
|
|
947
969
|
workflowId: CommonUuid;
|
|
948
970
|
};
|
|
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
971
|
/**
|
|
979
972
|
* Response from schema validation
|
|
980
973
|
*/
|
|
@@ -2729,27 +2722,228 @@ type AgentsExecutionActivityActionStartedPayload = {
|
|
|
2729
2722
|
info?: AgentsExecutionActivityActionStartedInfo;
|
|
2730
2723
|
display?: AgentsExecutionActivityDisplay;
|
|
2731
2724
|
};
|
|
2732
|
-
type AgentsExecutionActivityCompactionPerformedPayload = {
|
|
2733
|
-
activityType: 'compaction_performed';
|
|
2734
|
-
summaryTokens: number;
|
|
2735
|
-
durationMs: number;
|
|
2736
|
-
display?: AgentsExecutionActivityDisplay;
|
|
2725
|
+
type AgentsExecutionActivityCompactionPerformedPayload = {
|
|
2726
|
+
activityType: 'compaction_performed';
|
|
2727
|
+
summaryTokens: number;
|
|
2728
|
+
durationMs: number;
|
|
2729
|
+
display?: AgentsExecutionActivityDisplay;
|
|
2730
|
+
};
|
|
2731
|
+
type AgentsExecutionActivityCompactionStartedPayload = {
|
|
2732
|
+
activityType: 'compaction_started';
|
|
2733
|
+
display?: AgentsExecutionActivityDisplay;
|
|
2734
|
+
};
|
|
2735
|
+
type AgentsExecutionActivityGenericPayload = {
|
|
2736
|
+
activityType: 'generic';
|
|
2737
|
+
message: string;
|
|
2738
|
+
display?: AgentsExecutionActivityDisplay;
|
|
2739
|
+
};
|
|
2740
|
+
type AgentsExecutionActivity = {
|
|
2741
|
+
id: CommonUuid;
|
|
2742
|
+
payload: AgentsExecutionActivityPayloadUnion;
|
|
2743
|
+
executionId: CommonUuid;
|
|
2744
|
+
timestamp: string;
|
|
2745
|
+
};
|
|
2746
|
+
/**
|
|
2747
|
+
* Environment spec derived from a workflow. The workflow's environment_template + settings (viewport, timeout) drive provisioning.
|
|
2748
|
+
*/
|
|
2749
|
+
type AgentsEnvironmentWorkflowEnvironmentSource = {
|
|
2750
|
+
kind: 'workflow';
|
|
2751
|
+
/**
|
|
2752
|
+
* The workflow whose environment_template + settings drive provisioning. Omit to use the agent's editable head — the server resolves the head anyway, so passing an explicit id only matters for agents without one.
|
|
2753
|
+
*/
|
|
2754
|
+
workflowId?: CommonUuid;
|
|
2755
|
+
};
|
|
2756
|
+
/**
|
|
2757
|
+
* Response from starting a live environment. Shape mirrors the legacy `POST /agents/{id}/workflows/{wid}/live-environment` response so callers can share rendering code; `environmentId` is the new wire handle astro stores for `stop` / `attach`.
|
|
2758
|
+
*/
|
|
2759
|
+
type AgentsEnvironmentStartEnvironmentResponse = {
|
|
2760
|
+
/**
|
|
2761
|
+
* The newly-provisioned environment.
|
|
2762
|
+
*/
|
|
2763
|
+
environmentId: CommonUuid;
|
|
2764
|
+
/**
|
|
2765
|
+
* The environment type the workflow is configured for.
|
|
2766
|
+
*/
|
|
2767
|
+
environmentType: AgentsWorkflowEnvironmentType;
|
|
2768
|
+
/**
|
|
2769
|
+
* Chrome DevTools Protocol websocket URL. Present only for browser environments.
|
|
2770
|
+
*/
|
|
2771
|
+
cdpUrl?: string;
|
|
2772
|
+
/**
|
|
2773
|
+
* Provider-specific CUA connection details. Present for Anchor browsers and Daytona OS environments.
|
|
2774
|
+
*/
|
|
2775
|
+
cua?: AgentsWorkflowLiveEnvironmentCuaConnection;
|
|
2776
|
+
/**
|
|
2777
|
+
* Decrypted credential placeholders for the attached agent profile, keyed by ##NAME## placeholder. Present only when agentProfileId was supplied and the profile has credentials.
|
|
2778
|
+
*/
|
|
2779
|
+
credentials?: {
|
|
2780
|
+
[key: string]: unknown;
|
|
2781
|
+
};
|
|
2782
|
+
};
|
|
2783
|
+
/**
|
|
2784
|
+
* OS template for the explicit spec arm. Every field is optional with a server default.
|
|
2785
|
+
*/
|
|
2786
|
+
type AgentsEnvironmentSpecOsTemplate = {
|
|
2787
|
+
type: 'os';
|
|
2788
|
+
/**
|
|
2789
|
+
* OS provider. Omit for the default (daytona).
|
|
2790
|
+
*/
|
|
2791
|
+
provider?: AgentsWorkflowOsProvider;
|
|
2792
|
+
/**
|
|
2793
|
+
* Snapshot to boot. Omit for the configured default snapshot for the chosen osType.
|
|
2794
|
+
*/
|
|
2795
|
+
snapshotName?: string;
|
|
2796
|
+
/**
|
|
2797
|
+
* Whether the sandbox is publicly reachable. Omit for false.
|
|
2798
|
+
*/
|
|
2799
|
+
public?: boolean;
|
|
2800
|
+
/**
|
|
2801
|
+
* Operating system the sandbox runs. Omit for linux.
|
|
2802
|
+
*/
|
|
2803
|
+
osType?: AgentsWorkflowOsType;
|
|
2804
|
+
};
|
|
2805
|
+
/**
|
|
2806
|
+
* Environment template for the explicit spec arm — a looser sibling of the workflow's own EnvironmentTemplate where every field has a server default, so callers can say as little as `{type: "os"}`.
|
|
2807
|
+
*/
|
|
2808
|
+
type AgentsEnvironmentSpecEnvironmentTemplate = ({
|
|
2809
|
+
type: 'browser';
|
|
2810
|
+
} & AgentsEnvironmentSpecBrowserTemplate) | ({
|
|
2811
|
+
type: 'os';
|
|
2812
|
+
} & AgentsEnvironmentSpecOsTemplate);
|
|
2813
|
+
/**
|
|
2814
|
+
* Browser template for the explicit spec arm. Every field is optional with a server default.
|
|
2815
|
+
*/
|
|
2816
|
+
type AgentsEnvironmentSpecBrowserTemplate = {
|
|
2817
|
+
type: 'browser';
|
|
2818
|
+
/**
|
|
2819
|
+
* Browser provider. Omit for the server's configured default provider.
|
|
2820
|
+
*/
|
|
2821
|
+
provider?: AgentsWorkflowBrowserProvider;
|
|
2737
2822
|
};
|
|
2738
|
-
|
|
2739
|
-
|
|
2740
|
-
|
|
2823
|
+
/**
|
|
2824
|
+
* Status of a running environment. Mirrors the StatusRequested / StatusProvisioning / StatusReady values of the env subdomain's status machine — terminal states (stopped/failed/dead) are intentionally excluded because the list endpoint only returns envs astro could attach to.
|
|
2825
|
+
*/
|
|
2826
|
+
type AgentsEnvironmentRunningEnvironmentStatus = 'requested' | 'provisioning' | 'ready';
|
|
2827
|
+
/**
|
|
2828
|
+
* Lightweight summary of a running environment for the list endpoint. Owner-agnostic — covers both execution- and astro-owned envs; narrow with the `ownerType` query param if you only want one kind. Connection details (cdpUrl/cua/credentials) are intentionally omitted — callers fetch those via GET /environments/{id}/live-environment once they pick one to attach to.
|
|
2829
|
+
*/
|
|
2830
|
+
type AgentsEnvironmentRunningEnvironment = {
|
|
2831
|
+
/**
|
|
2832
|
+
* Environment identifier.
|
|
2833
|
+
*/
|
|
2834
|
+
environmentId: CommonUuid;
|
|
2835
|
+
/**
|
|
2836
|
+
* Browser or OS.
|
|
2837
|
+
*/
|
|
2838
|
+
environmentType: AgentsWorkflowEnvironmentType;
|
|
2839
|
+
/**
|
|
2840
|
+
* Polymorphic owner kind (execution or astro).
|
|
2841
|
+
*/
|
|
2842
|
+
ownerType: AgentsEnvironmentEnvironmentOwnerType;
|
|
2843
|
+
/**
|
|
2844
|
+
* Current status — always one of the non-terminal values.
|
|
2845
|
+
*/
|
|
2846
|
+
status: AgentsEnvironmentRunningEnvironmentStatus;
|
|
2847
|
+
/**
|
|
2848
|
+
* When the env row was created.
|
|
2849
|
+
*/
|
|
2850
|
+
createdAt: string;
|
|
2851
|
+
/**
|
|
2852
|
+
* When the env first became ready, if it has reached that state.
|
|
2853
|
+
*/
|
|
2854
|
+
readyAt?: string;
|
|
2855
|
+
/**
|
|
2856
|
+
* When the reaper will tear the env down if no graceful Stop arrives first.
|
|
2857
|
+
*/
|
|
2858
|
+
expiresAt: string;
|
|
2859
|
+
/**
|
|
2860
|
+
* Populated for astro-owned envs — the conversation that booted the env.
|
|
2861
|
+
*/
|
|
2862
|
+
conversationId?: CommonUuid;
|
|
2863
|
+
/**
|
|
2864
|
+
* Populated for execution-owned envs — the execution that booted the env.
|
|
2865
|
+
*/
|
|
2866
|
+
executionId?: CommonUuid;
|
|
2867
|
+
/**
|
|
2868
|
+
* Profile snapshot the env was booted against, if any.
|
|
2869
|
+
*/
|
|
2870
|
+
agentProfileId?: CommonUuid;
|
|
2741
2871
|
};
|
|
2742
|
-
|
|
2743
|
-
|
|
2744
|
-
|
|
2745
|
-
|
|
2872
|
+
/**
|
|
2873
|
+
* Environment owner kind. Mirrors the storage-side discriminator on agent_environment.owner_type. `execution` covers envs booted via the legacy execution-paused path; `astro` covers envs booted by the execution-free live_environment flow.
|
|
2874
|
+
*/
|
|
2875
|
+
type AgentsEnvironmentEnvironmentOwnerType = 'execution' | 'astro' | 'external';
|
|
2876
|
+
/**
|
|
2877
|
+
* Connection details for a running environment, returned by the env-id attach endpoint. All fields are optional: an env that's still bootstrapping (no CDP URL yet) returns an empty response so the caller can proceed without browser tools.
|
|
2878
|
+
*/
|
|
2879
|
+
type AgentsEnvironmentLiveEnvironmentDetails = {
|
|
2880
|
+
/**
|
|
2881
|
+
* Chrome DevTools Protocol websocket URL. Present only for browser environments with a ready CDP endpoint.
|
|
2882
|
+
*/
|
|
2883
|
+
cdpUrl?: string;
|
|
2884
|
+
/**
|
|
2885
|
+
* Provider-specific CUA connection details. Present for Anchor browsers and Daytona OS environments.
|
|
2886
|
+
*/
|
|
2887
|
+
cua?: AgentsWorkflowLiveEnvironmentCuaConnection;
|
|
2888
|
+
/**
|
|
2889
|
+
* Decrypted credential placeholders for the env's stamped agent profile, keyed by ##NAME## placeholder. Present only when the env has an attached profile with credentials. Internal-only.
|
|
2890
|
+
*/
|
|
2891
|
+
credentials?: {
|
|
2892
|
+
[key: string]: unknown;
|
|
2893
|
+
};
|
|
2746
2894
|
};
|
|
2747
|
-
|
|
2748
|
-
|
|
2749
|
-
|
|
2750
|
-
|
|
2751
|
-
|
|
2895
|
+
/**
|
|
2896
|
+
* Response for the list endpoint. Astro hits this when it doesn't have an environment id in slip state and wants to see what it can attach to before deciding to start fresh.
|
|
2897
|
+
*/
|
|
2898
|
+
type AgentsEnvironmentListEnvironmentsResponse = {
|
|
2899
|
+
/**
|
|
2900
|
+
* All currently-running envs owned by the agent in question, ordered by createdAt DESC. Empty array when no envs are running.
|
|
2901
|
+
*/
|
|
2902
|
+
environments: Array<AgentsEnvironmentRunningEnvironment>;
|
|
2903
|
+
};
|
|
2904
|
+
/**
|
|
2905
|
+
* Request to start a standalone live environment via the external (agents-API-key) API. Unlike the internal StartEnvironmentRequest there is no owner field — the env is stamped with an `external` owner for the path agent, and takes the agent's own organisation (not the caller's). Provisioning reads no workflow unless a workflow source is passed.
|
|
2906
|
+
*/
|
|
2907
|
+
type AgentsEnvironmentExternalStartEnvironmentRequest = {
|
|
2908
|
+
/**
|
|
2909
|
+
* Where the environment spec comes from. Omit for the server default (a browser env at the computer-use resolution).
|
|
2910
|
+
*/
|
|
2911
|
+
source?: AgentsEnvironmentEnvironmentSource;
|
|
2912
|
+
/**
|
|
2913
|
+
* Optional agent profile to attach. When supplied, the profile's decrypted credentials are returned as the ##NAME## placeholder map and the profile id is stamped onto the env row for the session's lifetime.
|
|
2914
|
+
*/
|
|
2915
|
+
agentProfileId?: CommonUuid;
|
|
2916
|
+
};
|
|
2917
|
+
/**
|
|
2918
|
+
* Environment spec supplied inline — provisioning does not read any workflow. This is how a live env is started without touching (or even having) a workflow definition.
|
|
2919
|
+
*/
|
|
2920
|
+
type AgentsEnvironmentExplicitEnvironmentSource = {
|
|
2921
|
+
kind: 'spec';
|
|
2922
|
+
/**
|
|
2923
|
+
* Environment template. Omit entirely for the server default (browser).
|
|
2924
|
+
*/
|
|
2925
|
+
template?: AgentsEnvironmentSpecEnvironmentTemplate;
|
|
2926
|
+
/**
|
|
2927
|
+
* Viewport width in pixels. Omit for the default (1280, the computer-use resolution). Ignored for OS environments — they always run at the fixed computer-use resolution.
|
|
2928
|
+
*/
|
|
2929
|
+
viewportWidth?: number;
|
|
2930
|
+
/**
|
|
2931
|
+
* Viewport height in pixels. Omit for the default (800, the computer-use resolution). Ignored for OS environments — they always run at the fixed computer-use resolution.
|
|
2932
|
+
*/
|
|
2933
|
+
viewportHeight?: number;
|
|
2934
|
+
/**
|
|
2935
|
+
* Session lifetime in minutes before the reaper tears the env down. Clamped server-side to the astro session cap. Omit for the default.
|
|
2936
|
+
*/
|
|
2937
|
+
sessionTimeoutMins?: number;
|
|
2752
2938
|
};
|
|
2939
|
+
/**
|
|
2940
|
+
* Where the environment spec comes from: copied from a workflow, or supplied inline.
|
|
2941
|
+
*/
|
|
2942
|
+
type AgentsEnvironmentEnvironmentSource = ({
|
|
2943
|
+
kind: 'workflow';
|
|
2944
|
+
} & AgentsEnvironmentWorkflowEnvironmentSource) | ({
|
|
2945
|
+
kind: 'spec';
|
|
2946
|
+
} & AgentsEnvironmentExplicitEnvironmentSource);
|
|
2753
2947
|
/**
|
|
2754
2948
|
* A single documentation search result
|
|
2755
2949
|
*/
|
|
@@ -2930,6 +3124,14 @@ type AgentsAgentUpdateRequest = {
|
|
|
2930
3124
|
name?: string;
|
|
2931
3125
|
};
|
|
2932
3126
|
type AgentsAgentSortField = 'name' | 'created_at';
|
|
3127
|
+
type AgentsAgentExternalCreateRequest = {
|
|
3128
|
+
organizationId: CommonUuid;
|
|
3129
|
+
/**
|
|
3130
|
+
* 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.
|
|
3131
|
+
*/
|
|
3132
|
+
name: string;
|
|
3133
|
+
workflow: AgentsWorkflowExternalCreateWorkflowRequest;
|
|
3134
|
+
};
|
|
2933
3135
|
type AgentsAgentExecuteAgentResponse = {
|
|
2934
3136
|
/**
|
|
2935
3137
|
* The ID of the newly created execution
|
|
@@ -2981,14 +3183,6 @@ type AgentsAgentExecuteAgentRequest = {
|
|
|
2981
3183
|
type AgentsAgentCreateResponse = {
|
|
2982
3184
|
id: CommonUuid;
|
|
2983
3185
|
};
|
|
2984
|
-
type AgentsAgentCreateRequest = {
|
|
2985
|
-
organizationId: CommonUuid;
|
|
2986
|
-
/**
|
|
2987
|
-
* 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.
|
|
2988
|
-
*/
|
|
2989
|
-
name: string;
|
|
2990
|
-
workflow: AgentsWorkflowCreateWorkflowRequest;
|
|
2991
|
-
};
|
|
2992
3186
|
type AgentsAgentBase = {
|
|
2993
3187
|
id: CommonUuid;
|
|
2994
3188
|
name: string;
|
|
@@ -4007,7 +4201,7 @@ type AgentListResponses = {
|
|
|
4007
4201
|
};
|
|
4008
4202
|
type AgentListResponse = AgentListResponses[keyof AgentListResponses];
|
|
4009
4203
|
type AgentCreateData = {
|
|
4010
|
-
body:
|
|
4204
|
+
body: AgentsAgentExternalCreateRequest;
|
|
4011
4205
|
path?: never;
|
|
4012
4206
|
query?: never;
|
|
4013
4207
|
url: '/agents';
|
|
@@ -4167,6 +4361,88 @@ type AgentByIdUpdateResponses = {
|
|
|
4167
4361
|
*/
|
|
4168
4362
|
200: unknown;
|
|
4169
4363
|
};
|
|
4364
|
+
type AgentEnvironmentsListData = {
|
|
4365
|
+
body?: never;
|
|
4366
|
+
path: {
|
|
4367
|
+
/**
|
|
4368
|
+
* The agent whose environments to list.
|
|
4369
|
+
*/
|
|
4370
|
+
agentId: CommonUuid;
|
|
4371
|
+
};
|
|
4372
|
+
query?: never;
|
|
4373
|
+
url: '/agents/{agentId}/environments';
|
|
4374
|
+
};
|
|
4375
|
+
type AgentEnvironmentsListErrors = {
|
|
4376
|
+
/**
|
|
4377
|
+
* The server could not understand the request due to invalid syntax.
|
|
4378
|
+
*/
|
|
4379
|
+
400: CommonBadRequestErrorBody;
|
|
4380
|
+
/**
|
|
4381
|
+
* Access is unauthorized.
|
|
4382
|
+
*/
|
|
4383
|
+
401: CommonUnauthorizedErrorBody;
|
|
4384
|
+
/**
|
|
4385
|
+
* Access is forbidden.
|
|
4386
|
+
*/
|
|
4387
|
+
403: CommonForbiddenErrorBody;
|
|
4388
|
+
/**
|
|
4389
|
+
* The server cannot find the requested resource.
|
|
4390
|
+
*/
|
|
4391
|
+
404: CommonNotFoundErrorBody;
|
|
4392
|
+
/**
|
|
4393
|
+
* Server error
|
|
4394
|
+
*/
|
|
4395
|
+
500: CommonInternalServerErrorBody;
|
|
4396
|
+
};
|
|
4397
|
+
type AgentEnvironmentsListError = AgentEnvironmentsListErrors[keyof AgentEnvironmentsListErrors];
|
|
4398
|
+
type AgentEnvironmentsListResponses = {
|
|
4399
|
+
/**
|
|
4400
|
+
* The request has succeeded.
|
|
4401
|
+
*/
|
|
4402
|
+
200: AgentsEnvironmentListEnvironmentsResponse;
|
|
4403
|
+
};
|
|
4404
|
+
type AgentEnvironmentsListResponse = AgentEnvironmentsListResponses[keyof AgentEnvironmentsListResponses];
|
|
4405
|
+
type AgentEnvironmentsStartData = {
|
|
4406
|
+
body: AgentsEnvironmentExternalStartEnvironmentRequest;
|
|
4407
|
+
path: {
|
|
4408
|
+
/**
|
|
4409
|
+
* The agent the environment belongs to.
|
|
4410
|
+
*/
|
|
4411
|
+
agentId: CommonUuid;
|
|
4412
|
+
};
|
|
4413
|
+
query?: never;
|
|
4414
|
+
url: '/agents/{agentId}/environments';
|
|
4415
|
+
};
|
|
4416
|
+
type AgentEnvironmentsStartErrors = {
|
|
4417
|
+
/**
|
|
4418
|
+
* The server could not understand the request due to invalid syntax.
|
|
4419
|
+
*/
|
|
4420
|
+
400: CommonBadRequestErrorBody;
|
|
4421
|
+
/**
|
|
4422
|
+
* Access is unauthorized.
|
|
4423
|
+
*/
|
|
4424
|
+
401: CommonUnauthorizedErrorBody;
|
|
4425
|
+
/**
|
|
4426
|
+
* Access is forbidden.
|
|
4427
|
+
*/
|
|
4428
|
+
403: CommonForbiddenErrorBody;
|
|
4429
|
+
/**
|
|
4430
|
+
* The server cannot find the requested resource.
|
|
4431
|
+
*/
|
|
4432
|
+
404: CommonNotFoundErrorBody;
|
|
4433
|
+
/**
|
|
4434
|
+
* Server error
|
|
4435
|
+
*/
|
|
4436
|
+
500: CommonInternalServerErrorBody;
|
|
4437
|
+
};
|
|
4438
|
+
type AgentEnvironmentsStartError = AgentEnvironmentsStartErrors[keyof AgentEnvironmentsStartErrors];
|
|
4439
|
+
type AgentEnvironmentsStartResponses = {
|
|
4440
|
+
/**
|
|
4441
|
+
* The request has succeeded.
|
|
4442
|
+
*/
|
|
4443
|
+
200: AgentsEnvironmentStartEnvironmentResponse;
|
|
4444
|
+
};
|
|
4445
|
+
type AgentEnvironmentsStartResponse = AgentEnvironmentsStartResponses[keyof AgentEnvironmentsStartResponses];
|
|
4170
4446
|
type AgentExecutePostData = {
|
|
4171
4447
|
/**
|
|
4172
4448
|
* Execution request parameters
|
|
@@ -4240,7 +4516,7 @@ type AgentWorkflowsCreateData = {
|
|
|
4240
4516
|
/**
|
|
4241
4517
|
* Workflow creation request
|
|
4242
4518
|
*/
|
|
4243
|
-
body:
|
|
4519
|
+
body: AgentsWorkflowExternalCreateWorkflowRequest;
|
|
4244
4520
|
path: {
|
|
4245
4521
|
/**
|
|
4246
4522
|
* The ID of the agent
|
|
@@ -4367,7 +4643,7 @@ type AgentWorkflowsGetResponses = {
|
|
|
4367
4643
|
/**
|
|
4368
4644
|
* The request has succeeded.
|
|
4369
4645
|
*/
|
|
4370
|
-
200:
|
|
4646
|
+
200: AgentsWorkflowExternalWorkflowSnapshot;
|
|
4371
4647
|
};
|
|
4372
4648
|
type AgentWorkflowsGetResponse = AgentWorkflowsGetResponses[keyof AgentWorkflowsGetResponses];
|
|
4373
4649
|
type AgentWorkflowsExecuteData = {
|
|
@@ -4680,6 +4956,98 @@ type DocsSearchSearchResponses = {
|
|
|
4680
4956
|
200: AgentsDocsSearchDocsResponse;
|
|
4681
4957
|
};
|
|
4682
4958
|
type DocsSearchSearchResponse = DocsSearchSearchResponses[keyof DocsSearchSearchResponses];
|
|
4959
|
+
type EnvironmentLiveEnvironmentData = {
|
|
4960
|
+
body?: never;
|
|
4961
|
+
path: {
|
|
4962
|
+
/**
|
|
4963
|
+
* The environment whose connection details to resolve.
|
|
4964
|
+
*/
|
|
4965
|
+
environmentId: CommonUuid;
|
|
4966
|
+
};
|
|
4967
|
+
query: {
|
|
4968
|
+
/**
|
|
4969
|
+
* The agent the env is expected to belong to. Resolution fails (404) if it belongs to a different agent.
|
|
4970
|
+
*/
|
|
4971
|
+
expectedAgentId: CommonUuid;
|
|
4972
|
+
};
|
|
4973
|
+
url: '/environments/{environmentId}/live-environment';
|
|
4974
|
+
};
|
|
4975
|
+
type EnvironmentLiveEnvironmentErrors = {
|
|
4976
|
+
/**
|
|
4977
|
+
* The server could not understand the request due to invalid syntax.
|
|
4978
|
+
*/
|
|
4979
|
+
400: CommonBadRequestErrorBody;
|
|
4980
|
+
/**
|
|
4981
|
+
* Access is unauthorized.
|
|
4982
|
+
*/
|
|
4983
|
+
401: CommonUnauthorizedErrorBody;
|
|
4984
|
+
/**
|
|
4985
|
+
* Access is forbidden.
|
|
4986
|
+
*/
|
|
4987
|
+
403: CommonForbiddenErrorBody;
|
|
4988
|
+
/**
|
|
4989
|
+
* The server cannot find the requested resource.
|
|
4990
|
+
*/
|
|
4991
|
+
404: CommonNotFoundErrorBody;
|
|
4992
|
+
/**
|
|
4993
|
+
* Server error
|
|
4994
|
+
*/
|
|
4995
|
+
500: CommonInternalServerErrorBody;
|
|
4996
|
+
};
|
|
4997
|
+
type EnvironmentLiveEnvironmentError = EnvironmentLiveEnvironmentErrors[keyof EnvironmentLiveEnvironmentErrors];
|
|
4998
|
+
type EnvironmentLiveEnvironmentResponses = {
|
|
4999
|
+
/**
|
|
5000
|
+
* The request has succeeded.
|
|
5001
|
+
*/
|
|
5002
|
+
200: AgentsEnvironmentLiveEnvironmentDetails;
|
|
5003
|
+
};
|
|
5004
|
+
type EnvironmentLiveEnvironmentResponse = EnvironmentLiveEnvironmentResponses[keyof EnvironmentLiveEnvironmentResponses];
|
|
5005
|
+
type EnvironmentStopData = {
|
|
5006
|
+
body?: never;
|
|
5007
|
+
path: {
|
|
5008
|
+
/**
|
|
5009
|
+
* The environment to stop.
|
|
5010
|
+
*/
|
|
5011
|
+
environmentId: CommonUuid;
|
|
5012
|
+
};
|
|
5013
|
+
query: {
|
|
5014
|
+
/**
|
|
5015
|
+
* The agent the env is expected to belong to. Stop fails (404) if it belongs to a different agent.
|
|
5016
|
+
*/
|
|
5017
|
+
expectedAgentId: CommonUuid;
|
|
5018
|
+
};
|
|
5019
|
+
url: '/environments/{environmentId}/stop';
|
|
5020
|
+
};
|
|
5021
|
+
type EnvironmentStopErrors = {
|
|
5022
|
+
/**
|
|
5023
|
+
* The server could not understand the request due to invalid syntax.
|
|
5024
|
+
*/
|
|
5025
|
+
400: CommonBadRequestErrorBody;
|
|
5026
|
+
/**
|
|
5027
|
+
* Access is unauthorized.
|
|
5028
|
+
*/
|
|
5029
|
+
401: CommonUnauthorizedErrorBody;
|
|
5030
|
+
/**
|
|
5031
|
+
* Access is forbidden.
|
|
5032
|
+
*/
|
|
5033
|
+
403: CommonForbiddenErrorBody;
|
|
5034
|
+
/**
|
|
5035
|
+
* The server cannot find the requested resource.
|
|
5036
|
+
*/
|
|
5037
|
+
404: CommonNotFoundErrorBody;
|
|
5038
|
+
/**
|
|
5039
|
+
* Server error
|
|
5040
|
+
*/
|
|
5041
|
+
500: CommonInternalServerErrorBody;
|
|
5042
|
+
};
|
|
5043
|
+
type EnvironmentStopError = EnvironmentStopErrors[keyof EnvironmentStopErrors];
|
|
5044
|
+
type EnvironmentStopResponses = {
|
|
5045
|
+
/**
|
|
5046
|
+
* There is no content to send for this request, but the headers may be useful.
|
|
5047
|
+
*/
|
|
5048
|
+
204: void;
|
|
5049
|
+
};
|
|
5050
|
+
type EnvironmentStopResponse = EnvironmentStopResponses[keyof EnvironmentStopResponses];
|
|
4683
5051
|
type ExecutionsListData = {
|
|
4684
5052
|
body?: never;
|
|
4685
5053
|
path?: never;
|
|
@@ -5412,6 +5780,18 @@ declare const agentByIdDelete: <ThrowOnError extends boolean = false>(options: O
|
|
|
5412
5780
|
* Update mutable agent fields.
|
|
5413
5781
|
*/
|
|
5414
5782
|
declare const agentByIdUpdate: <ThrowOnError extends boolean = false>(options: Options<AgentByIdUpdateData, ThrowOnError>) => RequestResult<AgentByIdUpdateResponses, AgentByIdUpdateErrors, ThrowOnError, "fields">;
|
|
5783
|
+
/**
|
|
5784
|
+
* List running environments (external)
|
|
5785
|
+
*
|
|
5786
|
+
* List the currently-running external-owned environments for this agent, to rediscover an env to attach to. Only external-owned environments are ever returned: an agent's execution- and astro-owned environments are private to those owners.
|
|
5787
|
+
*/
|
|
5788
|
+
declare const agentEnvironmentsList: <ThrowOnError extends boolean = false>(options: Options<AgentEnvironmentsListData, ThrowOnError>) => RequestResult<AgentEnvironmentsListResponses, AgentEnvironmentsListErrors, ThrowOnError, "fields">;
|
|
5789
|
+
/**
|
|
5790
|
+
* Start live environment (external)
|
|
5791
|
+
*
|
|
5792
|
+
* Start a standalone live environment for the agent. Returns the (proxied) CDP URL or Daytona connection details once the env is ready; optionally returns decrypted credentials when agentProfileId is supplied. The env is stamped with an `external` owner and reaped on its session TTL.
|
|
5793
|
+
*/
|
|
5794
|
+
declare const agentEnvironmentsStart: <ThrowOnError extends boolean = false>(options: Options<AgentEnvironmentsStartData, ThrowOnError>) => RequestResult<AgentEnvironmentsStartResponses, AgentEnvironmentsStartErrors, ThrowOnError, "fields">;
|
|
5415
5795
|
/**
|
|
5416
5796
|
* Execute an agent
|
|
5417
5797
|
*
|
|
@@ -5484,6 +5864,18 @@ declare const contextGet: <ThrowOnError extends boolean = false>(options?: Optio
|
|
|
5484
5864
|
* Search Asteroid documentation for guides on building agents, node types, and best practices
|
|
5485
5865
|
*/
|
|
5486
5866
|
declare const docsSearchSearch: <ThrowOnError extends boolean = false>(options: Options<DocsSearchSearchData, ThrowOnError>) => RequestResult<DocsSearchSearchResponses, DocsSearchSearchErrors, ThrowOnError, "fields">;
|
|
5867
|
+
/**
|
|
5868
|
+
* Resolve live environment by id (external)
|
|
5869
|
+
*
|
|
5870
|
+
* Resolve live-environment connection details (proxied CDP URL / CUA) by env id. Verifies the env belongs to expectedAgentId AND is external-owned; returns 404 if either gate fails.
|
|
5871
|
+
*/
|
|
5872
|
+
declare const environmentLiveEnvironment: <ThrowOnError extends boolean = false>(options: Options<EnvironmentLiveEnvironmentData, ThrowOnError>) => RequestResult<EnvironmentLiveEnvironmentResponses, EnvironmentLiveEnvironmentErrors, ThrowOnError, "fields">;
|
|
5873
|
+
/**
|
|
5874
|
+
* Stop environment by id (external)
|
|
5875
|
+
*
|
|
5876
|
+
* Stop an external-owned environment by id. Idempotent — already-terminal envs are a no-op (204). External-owned only; other owners return 404.
|
|
5877
|
+
*/
|
|
5878
|
+
declare const environmentStop: <ThrowOnError extends boolean = false>(options: Options<EnvironmentStopData, ThrowOnError>) => RequestResult<EnvironmentStopResponses, EnvironmentStopErrors, ThrowOnError, "fields">;
|
|
5487
5879
|
/**
|
|
5488
5880
|
* List executions
|
|
5489
5881
|
*
|
|
@@ -5585,4 +5977,4 @@ declare const schemaValidationValidate: <ThrowOnError extends boolean = false>(o
|
|
|
5585
5977
|
*/
|
|
5586
5978
|
declare const tempFilesStage: <ThrowOnError extends boolean = false>(options: Options<TempFilesStageData, ThrowOnError>) => RequestResult<TempFilesStageResponses, TempFilesStageErrors, ThrowOnError, "fields">;
|
|
5587
5979
|
|
|
5588
|
-
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 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 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, 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 };
|
|
5980
|
+
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 AgentEnvironmentsListData, type AgentEnvironmentsListError, type AgentEnvironmentsListErrors, type AgentEnvironmentsListResponse, type AgentEnvironmentsListResponses, type AgentEnvironmentsStartData, type AgentEnvironmentsStartError, type AgentEnvironmentsStartErrors, type AgentEnvironmentsStartResponse, type AgentEnvironmentsStartResponses, 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 AgentsEnvironmentEnvironmentOwnerType, type AgentsEnvironmentEnvironmentSource, type AgentsEnvironmentExplicitEnvironmentSource, type AgentsEnvironmentExternalStartEnvironmentRequest, type AgentsEnvironmentListEnvironmentsResponse, type AgentsEnvironmentLiveEnvironmentDetails, type AgentsEnvironmentRunningEnvironment, type AgentsEnvironmentRunningEnvironmentStatus, type AgentsEnvironmentSpecBrowserTemplate, type AgentsEnvironmentSpecEnvironmentTemplate, type AgentsEnvironmentSpecOsTemplate, type AgentsEnvironmentStartEnvironmentResponse, type AgentsEnvironmentWorkflowEnvironmentSource, 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 AgentsWorkflowLiveEnvironmentCuaConnection, type AgentsWorkflowLiveEnvironmentCuaProvider, 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 EnvironmentLiveEnvironmentData, type EnvironmentLiveEnvironmentError, type EnvironmentLiveEnvironmentErrors, type EnvironmentLiveEnvironmentResponse, type EnvironmentLiveEnvironmentResponses, type EnvironmentStopData, type EnvironmentStopError, type EnvironmentStopErrors, type EnvironmentStopResponse, type EnvironmentStopResponses, 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, agentEnvironmentsList, agentEnvironmentsStart, 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, environmentLiveEnvironment, environmentStop, executionActivitiesGet, executionAgentFileDownloadRedirect, executionAgentFilesGet, executionContextFileDownloadRedirect, executionContextFilesGet, executionContextFilesUpload, executionDebugFileDownloadRedirect, executionFileDownloadRedirect, executionFilesGet, executionGet, executionRecordingRedirect, executionStatusUpdate, executionUserMessagesAdd, executionsList, schemaValidationValidate, tempFilesStage };
|