asteroid-odyssey 1.7.199 → 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 +171 -207
- package/dist/index.d.ts +171 -207
- package/dist/index.js +3 -3
- package/dist/index.mjs +3 -3
- 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,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
|
*/
|
|
@@ -735,144 +839,33 @@ type AgentsGraphModelsAgentGraph = {
|
|
|
735
839
|
sticky_notes: Array<AgentsGraphModelsStickyNote>;
|
|
736
840
|
};
|
|
737
841
|
/**
|
|
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
|
|
842
|
+
* Request to create a new unpublished workflow
|
|
796
843
|
*/
|
|
797
|
-
type
|
|
798
|
-
/**
|
|
799
|
-
* The unique ID of this workflow
|
|
800
|
-
*/
|
|
801
|
-
id: CommonUuid;
|
|
844
|
+
type AgentsWorkflowExternalCreateWorkflowRequest = {
|
|
802
845
|
/**
|
|
803
|
-
*
|
|
846
|
+
* Optional parent workflow ID to derive from
|
|
804
847
|
*/
|
|
805
848
|
parentId?: CommonUuid;
|
|
806
849
|
/**
|
|
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
|
|
850
|
+
* The rules/instructions for this workflow
|
|
848
851
|
*/
|
|
849
|
-
|
|
852
|
+
rules: string;
|
|
850
853
|
/**
|
|
851
|
-
* The
|
|
854
|
+
* The workflow graph
|
|
852
855
|
*/
|
|
853
|
-
|
|
854
|
-
};
|
|
855
|
-
/**
|
|
856
|
-
* Request to sync an execution to a workflow
|
|
857
|
-
*/
|
|
858
|
-
type AgentsWorkflowSyncExecutionRequest = {
|
|
856
|
+
graph: AgentsGraphModelsAgentGraph;
|
|
859
857
|
/**
|
|
860
|
-
*
|
|
858
|
+
* Optional environment template. Defaults to browser/anchor if not provided.
|
|
861
859
|
*/
|
|
862
|
-
|
|
863
|
-
};
|
|
864
|
-
/**
|
|
865
|
-
* Response after publishing a workflow
|
|
866
|
-
*/
|
|
867
|
-
type AgentsWorkflowPublishWorkflowResponse = {
|
|
860
|
+
environmentTemplate?: AgentsWorkflowEnvironmentTemplate;
|
|
868
861
|
/**
|
|
869
|
-
*
|
|
862
|
+
* Typed input definitions for this workflow. Names referenced in prompts but omitted here default to optional strings.
|
|
870
863
|
*/
|
|
871
|
-
|
|
864
|
+
inputs?: Array<AgentsWorkflowInput>;
|
|
872
865
|
/**
|
|
873
|
-
* The
|
|
866
|
+
* The settings for this workflow
|
|
874
867
|
*/
|
|
875
|
-
|
|
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
|
*/
|
|
@@ -2930,6 +2894,14 @@ type AgentsAgentUpdateRequest = {
|
|
|
2930
2894
|
name?: string;
|
|
2931
2895
|
};
|
|
2932
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
|
+
};
|
|
2933
2905
|
type AgentsAgentExecuteAgentResponse = {
|
|
2934
2906
|
/**
|
|
2935
2907
|
* The ID of the newly created execution
|
|
@@ -2981,14 +2953,6 @@ type AgentsAgentExecuteAgentRequest = {
|
|
|
2981
2953
|
type AgentsAgentCreateResponse = {
|
|
2982
2954
|
id: CommonUuid;
|
|
2983
2955
|
};
|
|
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
2956
|
type AgentsAgentBase = {
|
|
2993
2957
|
id: CommonUuid;
|
|
2994
2958
|
name: string;
|
|
@@ -4007,7 +3971,7 @@ type AgentListResponses = {
|
|
|
4007
3971
|
};
|
|
4008
3972
|
type AgentListResponse = AgentListResponses[keyof AgentListResponses];
|
|
4009
3973
|
type AgentCreateData = {
|
|
4010
|
-
body:
|
|
3974
|
+
body: AgentsAgentExternalCreateRequest;
|
|
4011
3975
|
path?: never;
|
|
4012
3976
|
query?: never;
|
|
4013
3977
|
url: '/agents';
|
|
@@ -4240,7 +4204,7 @@ type AgentWorkflowsCreateData = {
|
|
|
4240
4204
|
/**
|
|
4241
4205
|
* Workflow creation request
|
|
4242
4206
|
*/
|
|
4243
|
-
body:
|
|
4207
|
+
body: AgentsWorkflowExternalCreateWorkflowRequest;
|
|
4244
4208
|
path: {
|
|
4245
4209
|
/**
|
|
4246
4210
|
* The ID of the agent
|
|
@@ -4367,7 +4331,7 @@ type AgentWorkflowsGetResponses = {
|
|
|
4367
4331
|
/**
|
|
4368
4332
|
* The request has succeeded.
|
|
4369
4333
|
*/
|
|
4370
|
-
200:
|
|
4334
|
+
200: AgentsWorkflowExternalWorkflowSnapshot;
|
|
4371
4335
|
};
|
|
4372
4336
|
type AgentWorkflowsGetResponse = AgentWorkflowsGetResponses[keyof AgentWorkflowsGetResponses];
|
|
4373
4337
|
type AgentWorkflowsExecuteData = {
|
|
@@ -5585,4 +5549,4 @@ declare const schemaValidationValidate: <ThrowOnError extends boolean = false>(o
|
|
|
5585
5549
|
*/
|
|
5586
5550
|
declare const tempFilesStage: <ThrowOnError extends boolean = false>(options: Options<TempFilesStageData, ThrowOnError>) => RequestResult<TempFilesStageResponses, TempFilesStageErrors, ThrowOnError, "fields">;
|
|
5587
5551
|
|
|
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 };
|
|
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 };
|