@soat/sdk 0.5.8 → 0.6.1
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/esm/index.js +143 -1
- package/dist/index.d.cts +736 -2
- package/dist/index.d.ts +736 -2
- package/dist/index.js +144 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1761,6 +1761,279 @@ type MemoryEntryWriteResult = MemoryEntry & {
|
|
|
1761
1761
|
*/
|
|
1762
1762
|
action?: 'created' | 'updated' | 'skipped';
|
|
1763
1763
|
};
|
|
1764
|
+
/**
|
|
1765
|
+
* A single execution unit in the orchestration graph.
|
|
1766
|
+
*/
|
|
1767
|
+
type OrchestrationNode = {
|
|
1768
|
+
/**
|
|
1769
|
+
* Unique node identifier within this orchestration.
|
|
1770
|
+
*/
|
|
1771
|
+
id: string;
|
|
1772
|
+
/**
|
|
1773
|
+
* Node execution type.
|
|
1774
|
+
*/
|
|
1775
|
+
type: 'agent' | 'tool' | 'transform' | 'knowledge' | 'memory_write' | 'condition' | 'human' | 'loop' | 'delay' | 'webhook' | 'sub_orchestration';
|
|
1776
|
+
/**
|
|
1777
|
+
* For agent nodes — public ID of the agent to invoke.
|
|
1778
|
+
*/
|
|
1779
|
+
agent_id?: string;
|
|
1780
|
+
/**
|
|
1781
|
+
* For tool nodes — public ID of the tool to call.
|
|
1782
|
+
*/
|
|
1783
|
+
tool_id?: string;
|
|
1784
|
+
/**
|
|
1785
|
+
* For tool nodes — specific operation/action on MCP/SOAT tools.
|
|
1786
|
+
*/
|
|
1787
|
+
operation_id?: string;
|
|
1788
|
+
/**
|
|
1789
|
+
* For transform/condition nodes — JSON Logic rule (https://jsonlogic.com) evaluated against the run state.
|
|
1790
|
+
*/
|
|
1791
|
+
expression?: {
|
|
1792
|
+
[key: string]: unknown;
|
|
1793
|
+
};
|
|
1794
|
+
/**
|
|
1795
|
+
* For human nodes — prompt shown to the human reviewer.
|
|
1796
|
+
*/
|
|
1797
|
+
prompt?: string;
|
|
1798
|
+
/**
|
|
1799
|
+
* For human nodes — constrained choices.
|
|
1800
|
+
*/
|
|
1801
|
+
options?: Array<string>;
|
|
1802
|
+
/**
|
|
1803
|
+
* For memory_write nodes — public ID of the target memory.
|
|
1804
|
+
*/
|
|
1805
|
+
memory_id?: string;
|
|
1806
|
+
/**
|
|
1807
|
+
* Maps state paths to node input keys.
|
|
1808
|
+
*/
|
|
1809
|
+
input_mapping?: {
|
|
1810
|
+
[key: string]: string;
|
|
1811
|
+
};
|
|
1812
|
+
/**
|
|
1813
|
+
* Maps node artifact keys to state paths.
|
|
1814
|
+
*/
|
|
1815
|
+
output_mapping?: {
|
|
1816
|
+
[key: string]: string;
|
|
1817
|
+
};
|
|
1818
|
+
/**
|
|
1819
|
+
* For agent nodes — JSON Schema for structured output parsing.
|
|
1820
|
+
*/
|
|
1821
|
+
output_schema?: {
|
|
1822
|
+
[key: string]: unknown;
|
|
1823
|
+
};
|
|
1824
|
+
/**
|
|
1825
|
+
* For loop nodes — state path to the collection to iterate over.
|
|
1826
|
+
*/
|
|
1827
|
+
collection?: string;
|
|
1828
|
+
/**
|
|
1829
|
+
* For loop nodes — variable name injected into state for each item.
|
|
1830
|
+
*/
|
|
1831
|
+
item_variable?: string;
|
|
1832
|
+
/**
|
|
1833
|
+
* For loop nodes — sub-graph definition to run per item.
|
|
1834
|
+
*/
|
|
1835
|
+
sub_graph?: string;
|
|
1836
|
+
/**
|
|
1837
|
+
* For loop nodes — number of items to process in parallel.
|
|
1838
|
+
*/
|
|
1839
|
+
parallelism?: number;
|
|
1840
|
+
/**
|
|
1841
|
+
* For delay nodes — ISO 8601 duration (e.g. PT5S).
|
|
1842
|
+
*/
|
|
1843
|
+
duration?: string;
|
|
1844
|
+
/**
|
|
1845
|
+
* For webhook nodes — whether to emit or receive.
|
|
1846
|
+
*/
|
|
1847
|
+
mode?: 'emit' | 'receive';
|
|
1848
|
+
/**
|
|
1849
|
+
* For webhook emit nodes — URL to POST to.
|
|
1850
|
+
*/
|
|
1851
|
+
webhook_url?: string;
|
|
1852
|
+
/**
|
|
1853
|
+
* For sub_orchestration nodes — public ID of the child orchestration.
|
|
1854
|
+
*/
|
|
1855
|
+
orchestration_id?: string;
|
|
1856
|
+
/**
|
|
1857
|
+
* Maximum iterations before the node is aborted.
|
|
1858
|
+
*/
|
|
1859
|
+
max_iterations?: number;
|
|
1860
|
+
};
|
|
1861
|
+
/**
|
|
1862
|
+
* A directed connection between two nodes.
|
|
1863
|
+
*/
|
|
1864
|
+
type OrchestrationEdge = {
|
|
1865
|
+
/**
|
|
1866
|
+
* Source node ID.
|
|
1867
|
+
*/
|
|
1868
|
+
from: string;
|
|
1869
|
+
/**
|
|
1870
|
+
* Target node ID.
|
|
1871
|
+
*/
|
|
1872
|
+
to: string;
|
|
1873
|
+
/**
|
|
1874
|
+
* For condition node routing — label to match against condition output.
|
|
1875
|
+
*/
|
|
1876
|
+
condition?: string;
|
|
1877
|
+
/**
|
|
1878
|
+
* Groups edges for join semantics.
|
|
1879
|
+
*/
|
|
1880
|
+
activation_group?: string;
|
|
1881
|
+
/**
|
|
1882
|
+
* Whether all or any edges in the activation group must fire.
|
|
1883
|
+
*/
|
|
1884
|
+
activation_condition?: 'all' | 'any';
|
|
1885
|
+
};
|
|
1886
|
+
type Orchestration = {
|
|
1887
|
+
/**
|
|
1888
|
+
* Public ID (orch_...).
|
|
1889
|
+
*/
|
|
1890
|
+
id: string;
|
|
1891
|
+
/**
|
|
1892
|
+
* Public ID of the owning project.
|
|
1893
|
+
*/
|
|
1894
|
+
project_id: string;
|
|
1895
|
+
/**
|
|
1896
|
+
* Human-readable name.
|
|
1897
|
+
*/
|
|
1898
|
+
name: string;
|
|
1899
|
+
/**
|
|
1900
|
+
* Optional description.
|
|
1901
|
+
*/
|
|
1902
|
+
description?: string | null;
|
|
1903
|
+
nodes: Array<OrchestrationNode>;
|
|
1904
|
+
edges: Array<OrchestrationEdge>;
|
|
1905
|
+
/**
|
|
1906
|
+
* Optional JSON Schema for state validation.
|
|
1907
|
+
*/
|
|
1908
|
+
state_schema?: {
|
|
1909
|
+
[key: string]: unknown;
|
|
1910
|
+
} | null;
|
|
1911
|
+
/**
|
|
1912
|
+
* Schema for run inputs (initial state).
|
|
1913
|
+
*/
|
|
1914
|
+
input_schema?: {
|
|
1915
|
+
[key: string]: unknown;
|
|
1916
|
+
} | null;
|
|
1917
|
+
created_at: Date;
|
|
1918
|
+
updated_at: Date;
|
|
1919
|
+
};
|
|
1920
|
+
type CreateOrchestrationRequest = {
|
|
1921
|
+
/**
|
|
1922
|
+
* Public ID of the project.
|
|
1923
|
+
*/
|
|
1924
|
+
project_id: string;
|
|
1925
|
+
/**
|
|
1926
|
+
* Human-readable name.
|
|
1927
|
+
*/
|
|
1928
|
+
name: string;
|
|
1929
|
+
description?: string | null;
|
|
1930
|
+
nodes: Array<OrchestrationNode>;
|
|
1931
|
+
edges: Array<OrchestrationEdge>;
|
|
1932
|
+
state_schema?: {
|
|
1933
|
+
[key: string]: unknown;
|
|
1934
|
+
} | null;
|
|
1935
|
+
input_schema?: {
|
|
1936
|
+
[key: string]: unknown;
|
|
1937
|
+
} | null;
|
|
1938
|
+
};
|
|
1939
|
+
type UpdateOrchestrationRequest = {
|
|
1940
|
+
name?: string;
|
|
1941
|
+
description?: string | null;
|
|
1942
|
+
nodes?: Array<OrchestrationNode>;
|
|
1943
|
+
edges?: Array<OrchestrationEdge>;
|
|
1944
|
+
state_schema?: {
|
|
1945
|
+
[key: string]: unknown;
|
|
1946
|
+
} | null;
|
|
1947
|
+
input_schema?: {
|
|
1948
|
+
[key: string]: unknown;
|
|
1949
|
+
} | null;
|
|
1950
|
+
};
|
|
1951
|
+
type OrchestrationRun = {
|
|
1952
|
+
/**
|
|
1953
|
+
* Public ID (run_...).
|
|
1954
|
+
*/
|
|
1955
|
+
id: string;
|
|
1956
|
+
/**
|
|
1957
|
+
* Public ID of the parent orchestration.
|
|
1958
|
+
*/
|
|
1959
|
+
orchestration_id: string;
|
|
1960
|
+
/**
|
|
1961
|
+
* Public ID of the owning project.
|
|
1962
|
+
*/
|
|
1963
|
+
project_id: string;
|
|
1964
|
+
status: 'running' | 'paused' | 'completed' | 'failed' | 'cancelled';
|
|
1965
|
+
/**
|
|
1966
|
+
* Current accumulated state.
|
|
1967
|
+
*/
|
|
1968
|
+
state: {
|
|
1969
|
+
[key: string]: unknown;
|
|
1970
|
+
};
|
|
1971
|
+
/**
|
|
1972
|
+
* Node IDs currently active.
|
|
1973
|
+
*/
|
|
1974
|
+
active_nodes: Array<string>;
|
|
1975
|
+
/**
|
|
1976
|
+
* Map of node ID to output artifact.
|
|
1977
|
+
*/
|
|
1978
|
+
artifacts: {
|
|
1979
|
+
[key: string]: unknown;
|
|
1980
|
+
};
|
|
1981
|
+
/**
|
|
1982
|
+
* Error details when status is failed.
|
|
1983
|
+
*/
|
|
1984
|
+
error?: {
|
|
1985
|
+
[key: string]: unknown;
|
|
1986
|
+
} | null;
|
|
1987
|
+
trace_id?: string | null;
|
|
1988
|
+
/**
|
|
1989
|
+
* Initial input provided at run creation.
|
|
1990
|
+
*/
|
|
1991
|
+
input?: {
|
|
1992
|
+
[key: string]: unknown;
|
|
1993
|
+
} | null;
|
|
1994
|
+
/**
|
|
1995
|
+
* Terminal node artifact(s) when completed.
|
|
1996
|
+
*/
|
|
1997
|
+
output?: {
|
|
1998
|
+
[key: string]: unknown;
|
|
1999
|
+
} | null;
|
|
2000
|
+
required_action?: RequiredAction | null;
|
|
2001
|
+
started_at?: Date | null;
|
|
2002
|
+
completed_at?: Date | null;
|
|
2003
|
+
created_at: Date;
|
|
2004
|
+
updated_at: Date;
|
|
2005
|
+
};
|
|
2006
|
+
/**
|
|
2007
|
+
* Details for a paused run waiting for human input.
|
|
2008
|
+
*/
|
|
2009
|
+
type RequiredAction = {
|
|
2010
|
+
node_id: string;
|
|
2011
|
+
prompt: string;
|
|
2012
|
+
context: {
|
|
2013
|
+
[key: string]: unknown;
|
|
2014
|
+
};
|
|
2015
|
+
options?: Array<string> | null;
|
|
2016
|
+
};
|
|
2017
|
+
type HumanInputRequest = {
|
|
2018
|
+
/**
|
|
2019
|
+
* ID of the human node to satisfy.
|
|
2020
|
+
*/
|
|
2021
|
+
node_id: string;
|
|
2022
|
+
/**
|
|
2023
|
+
* Output/response provided by the human reviewer.
|
|
2024
|
+
*/
|
|
2025
|
+
output?: {
|
|
2026
|
+
[key: string]: unknown;
|
|
2027
|
+
};
|
|
2028
|
+
};
|
|
2029
|
+
type StartRunRequest = {
|
|
2030
|
+
/**
|
|
2031
|
+
* Initial state for the run (merged with orchestration defaults).
|
|
2032
|
+
*/
|
|
2033
|
+
input?: {
|
|
2034
|
+
[key: string]: unknown;
|
|
2035
|
+
};
|
|
2036
|
+
};
|
|
1764
2037
|
type PolicyStatement = {
|
|
1765
2038
|
effect: 'Allow' | 'Deny';
|
|
1766
2039
|
action: Array<string>;
|
|
@@ -2234,6 +2507,14 @@ type DeliveryListResponse = {
|
|
|
2234
2507
|
limit?: number;
|
|
2235
2508
|
offset?: number;
|
|
2236
2509
|
};
|
|
2510
|
+
/**
|
|
2511
|
+
* Public ID of the orchestration (orch_...)
|
|
2512
|
+
*/
|
|
2513
|
+
type OrchestrationId = string;
|
|
2514
|
+
/**
|
|
2515
|
+
* Public ID of the run (run_...)
|
|
2516
|
+
*/
|
|
2517
|
+
type RunId = string;
|
|
2237
2518
|
/**
|
|
2238
2519
|
* Agent public ID
|
|
2239
2520
|
*/
|
|
@@ -4922,7 +5203,9 @@ type DeleteFormationResponses = {
|
|
|
4922
5203
|
/**
|
|
4923
5204
|
* Deleted
|
|
4924
5205
|
*/
|
|
4925
|
-
|
|
5206
|
+
200: {
|
|
5207
|
+
success: boolean;
|
|
5208
|
+
};
|
|
4926
5209
|
};
|
|
4927
5210
|
type DeleteFormationResponse = DeleteFormationResponses[keyof DeleteFormationResponses];
|
|
4928
5211
|
type GetFormationData = {
|
|
@@ -5486,6 +5769,389 @@ type UpdateMemoryEntryResponses = {
|
|
|
5486
5769
|
200: MemoryEntry;
|
|
5487
5770
|
};
|
|
5488
5771
|
type UpdateMemoryEntryResponse = UpdateMemoryEntryResponses[keyof UpdateMemoryEntryResponses];
|
|
5772
|
+
type ListOrchestrationsData = {
|
|
5773
|
+
body?: never;
|
|
5774
|
+
path?: never;
|
|
5775
|
+
query?: {
|
|
5776
|
+
/**
|
|
5777
|
+
* Filter by project public ID
|
|
5778
|
+
*/
|
|
5779
|
+
project_id?: string;
|
|
5780
|
+
};
|
|
5781
|
+
url: '/api/v1/orchestrations';
|
|
5782
|
+
};
|
|
5783
|
+
type ListOrchestrationsErrors = {
|
|
5784
|
+
/**
|
|
5785
|
+
* Unauthorized
|
|
5786
|
+
*/
|
|
5787
|
+
401: unknown;
|
|
5788
|
+
/**
|
|
5789
|
+
* Forbidden
|
|
5790
|
+
*/
|
|
5791
|
+
403: unknown;
|
|
5792
|
+
};
|
|
5793
|
+
type ListOrchestrationsResponses = {
|
|
5794
|
+
/**
|
|
5795
|
+
* List of orchestrations
|
|
5796
|
+
*/
|
|
5797
|
+
200: Array<Orchestration>;
|
|
5798
|
+
};
|
|
5799
|
+
type ListOrchestrationsResponse = ListOrchestrationsResponses[keyof ListOrchestrationsResponses];
|
|
5800
|
+
type CreateOrchestrationData = {
|
|
5801
|
+
body: CreateOrchestrationRequest;
|
|
5802
|
+
path?: never;
|
|
5803
|
+
query?: never;
|
|
5804
|
+
url: '/api/v1/orchestrations';
|
|
5805
|
+
};
|
|
5806
|
+
type CreateOrchestrationErrors = {
|
|
5807
|
+
/**
|
|
5808
|
+
* Validation error
|
|
5809
|
+
*/
|
|
5810
|
+
400: unknown;
|
|
5811
|
+
/**
|
|
5812
|
+
* Unauthorized
|
|
5813
|
+
*/
|
|
5814
|
+
401: unknown;
|
|
5815
|
+
/**
|
|
5816
|
+
* Forbidden
|
|
5817
|
+
*/
|
|
5818
|
+
403: unknown;
|
|
5819
|
+
};
|
|
5820
|
+
type CreateOrchestrationResponses = {
|
|
5821
|
+
/**
|
|
5822
|
+
* Orchestration created
|
|
5823
|
+
*/
|
|
5824
|
+
201: Orchestration;
|
|
5825
|
+
};
|
|
5826
|
+
type CreateOrchestrationResponse = CreateOrchestrationResponses[keyof CreateOrchestrationResponses];
|
|
5827
|
+
type DeleteOrchestrationData = {
|
|
5828
|
+
body?: never;
|
|
5829
|
+
path: {
|
|
5830
|
+
/**
|
|
5831
|
+
* Public ID of the orchestration (orch_...)
|
|
5832
|
+
*/
|
|
5833
|
+
orchestration_id: string;
|
|
5834
|
+
};
|
|
5835
|
+
query?: never;
|
|
5836
|
+
url: '/api/v1/orchestrations/{orchestration_id}';
|
|
5837
|
+
};
|
|
5838
|
+
type DeleteOrchestrationErrors = {
|
|
5839
|
+
/**
|
|
5840
|
+
* Unauthorized
|
|
5841
|
+
*/
|
|
5842
|
+
401: unknown;
|
|
5843
|
+
/**
|
|
5844
|
+
* Forbidden
|
|
5845
|
+
*/
|
|
5846
|
+
403: unknown;
|
|
5847
|
+
/**
|
|
5848
|
+
* Not found
|
|
5849
|
+
*/
|
|
5850
|
+
404: unknown;
|
|
5851
|
+
};
|
|
5852
|
+
type DeleteOrchestrationResponses = {
|
|
5853
|
+
/**
|
|
5854
|
+
* Deleted
|
|
5855
|
+
*/
|
|
5856
|
+
204: void;
|
|
5857
|
+
};
|
|
5858
|
+
type DeleteOrchestrationResponse = DeleteOrchestrationResponses[keyof DeleteOrchestrationResponses];
|
|
5859
|
+
type GetOrchestrationData = {
|
|
5860
|
+
body?: never;
|
|
5861
|
+
path: {
|
|
5862
|
+
/**
|
|
5863
|
+
* Public ID of the orchestration (orch_...)
|
|
5864
|
+
*/
|
|
5865
|
+
orchestration_id: string;
|
|
5866
|
+
};
|
|
5867
|
+
query?: never;
|
|
5868
|
+
url: '/api/v1/orchestrations/{orchestration_id}';
|
|
5869
|
+
};
|
|
5870
|
+
type GetOrchestrationErrors = {
|
|
5871
|
+
/**
|
|
5872
|
+
* Unauthorized
|
|
5873
|
+
*/
|
|
5874
|
+
401: unknown;
|
|
5875
|
+
/**
|
|
5876
|
+
* Forbidden
|
|
5877
|
+
*/
|
|
5878
|
+
403: unknown;
|
|
5879
|
+
/**
|
|
5880
|
+
* Not found
|
|
5881
|
+
*/
|
|
5882
|
+
404: unknown;
|
|
5883
|
+
};
|
|
5884
|
+
type GetOrchestrationResponses = {
|
|
5885
|
+
/**
|
|
5886
|
+
* Orchestration details
|
|
5887
|
+
*/
|
|
5888
|
+
200: Orchestration;
|
|
5889
|
+
};
|
|
5890
|
+
type GetOrchestrationResponse = GetOrchestrationResponses[keyof GetOrchestrationResponses];
|
|
5891
|
+
type UpdateOrchestrationData = {
|
|
5892
|
+
body: UpdateOrchestrationRequest;
|
|
5893
|
+
path: {
|
|
5894
|
+
/**
|
|
5895
|
+
* Public ID of the orchestration (orch_...)
|
|
5896
|
+
*/
|
|
5897
|
+
orchestration_id: string;
|
|
5898
|
+
};
|
|
5899
|
+
query?: never;
|
|
5900
|
+
url: '/api/v1/orchestrations/{orchestration_id}';
|
|
5901
|
+
};
|
|
5902
|
+
type UpdateOrchestrationErrors = {
|
|
5903
|
+
/**
|
|
5904
|
+
* Validation error
|
|
5905
|
+
*/
|
|
5906
|
+
400: unknown;
|
|
5907
|
+
/**
|
|
5908
|
+
* Unauthorized
|
|
5909
|
+
*/
|
|
5910
|
+
401: unknown;
|
|
5911
|
+
/**
|
|
5912
|
+
* Forbidden
|
|
5913
|
+
*/
|
|
5914
|
+
403: unknown;
|
|
5915
|
+
/**
|
|
5916
|
+
* Not found
|
|
5917
|
+
*/
|
|
5918
|
+
404: unknown;
|
|
5919
|
+
};
|
|
5920
|
+
type UpdateOrchestrationResponses = {
|
|
5921
|
+
/**
|
|
5922
|
+
* Updated orchestration
|
|
5923
|
+
*/
|
|
5924
|
+
200: Orchestration;
|
|
5925
|
+
};
|
|
5926
|
+
type UpdateOrchestrationResponse = UpdateOrchestrationResponses[keyof UpdateOrchestrationResponses];
|
|
5927
|
+
type ListRunsData = {
|
|
5928
|
+
body?: never;
|
|
5929
|
+
path: {
|
|
5930
|
+
/**
|
|
5931
|
+
* Public ID of the orchestration (orch_...)
|
|
5932
|
+
*/
|
|
5933
|
+
orchestration_id: string;
|
|
5934
|
+
};
|
|
5935
|
+
query?: never;
|
|
5936
|
+
url: '/api/v1/orchestrations/{orchestration_id}/runs';
|
|
5937
|
+
};
|
|
5938
|
+
type ListRunsErrors = {
|
|
5939
|
+
/**
|
|
5940
|
+
* Unauthorized
|
|
5941
|
+
*/
|
|
5942
|
+
401: unknown;
|
|
5943
|
+
/**
|
|
5944
|
+
* Forbidden
|
|
5945
|
+
*/
|
|
5946
|
+
403: unknown;
|
|
5947
|
+
/**
|
|
5948
|
+
* Orchestration not found
|
|
5949
|
+
*/
|
|
5950
|
+
404: unknown;
|
|
5951
|
+
};
|
|
5952
|
+
type ListRunsResponses = {
|
|
5953
|
+
/**
|
|
5954
|
+
* List of runs
|
|
5955
|
+
*/
|
|
5956
|
+
200: Array<OrchestrationRun>;
|
|
5957
|
+
};
|
|
5958
|
+
type ListRunsResponse = ListRunsResponses[keyof ListRunsResponses];
|
|
5959
|
+
type StartRunData = {
|
|
5960
|
+
body?: StartRunRequest;
|
|
5961
|
+
path: {
|
|
5962
|
+
/**
|
|
5963
|
+
* Public ID of the orchestration (orch_...)
|
|
5964
|
+
*/
|
|
5965
|
+
orchestration_id: string;
|
|
5966
|
+
};
|
|
5967
|
+
query?: never;
|
|
5968
|
+
url: '/api/v1/orchestrations/{orchestration_id}/runs';
|
|
5969
|
+
};
|
|
5970
|
+
type StartRunErrors = {
|
|
5971
|
+
/**
|
|
5972
|
+
* Validation error
|
|
5973
|
+
*/
|
|
5974
|
+
400: unknown;
|
|
5975
|
+
/**
|
|
5976
|
+
* Unauthorized
|
|
5977
|
+
*/
|
|
5978
|
+
401: unknown;
|
|
5979
|
+
/**
|
|
5980
|
+
* Forbidden
|
|
5981
|
+
*/
|
|
5982
|
+
403: unknown;
|
|
5983
|
+
/**
|
|
5984
|
+
* Orchestration not found
|
|
5985
|
+
*/
|
|
5986
|
+
404: unknown;
|
|
5987
|
+
};
|
|
5988
|
+
type StartRunResponses = {
|
|
5989
|
+
/**
|
|
5990
|
+
* Run created and executed
|
|
5991
|
+
*/
|
|
5992
|
+
201: OrchestrationRun;
|
|
5993
|
+
};
|
|
5994
|
+
type StartRunResponse = StartRunResponses[keyof StartRunResponses];
|
|
5995
|
+
type CancelRunData = {
|
|
5996
|
+
body?: never;
|
|
5997
|
+
path: {
|
|
5998
|
+
/**
|
|
5999
|
+
* Public ID of the orchestration (orch_...)
|
|
6000
|
+
*/
|
|
6001
|
+
orchestration_id: string;
|
|
6002
|
+
/**
|
|
6003
|
+
* Public ID of the run (run_...)
|
|
6004
|
+
*/
|
|
6005
|
+
run_id: string;
|
|
6006
|
+
};
|
|
6007
|
+
query?: never;
|
|
6008
|
+
url: '/api/v1/orchestrations/{orchestration_id}/runs/{run_id}/cancel';
|
|
6009
|
+
};
|
|
6010
|
+
type CancelRunErrors = {
|
|
6011
|
+
/**
|
|
6012
|
+
* Unauthorized
|
|
6013
|
+
*/
|
|
6014
|
+
401: unknown;
|
|
6015
|
+
/**
|
|
6016
|
+
* Forbidden
|
|
6017
|
+
*/
|
|
6018
|
+
403: unknown;
|
|
6019
|
+
/**
|
|
6020
|
+
* Not found
|
|
6021
|
+
*/
|
|
6022
|
+
404: unknown;
|
|
6023
|
+
/**
|
|
6024
|
+
* Run is already in a terminal state
|
|
6025
|
+
*/
|
|
6026
|
+
409: unknown;
|
|
6027
|
+
};
|
|
6028
|
+
type CancelRunResponses = {
|
|
6029
|
+
/**
|
|
6030
|
+
* Cancelled run
|
|
6031
|
+
*/
|
|
6032
|
+
200: OrchestrationRun;
|
|
6033
|
+
};
|
|
6034
|
+
type CancelRunResponse = CancelRunResponses[keyof CancelRunResponses];
|
|
6035
|
+
type SubmitHumanInputData = {
|
|
6036
|
+
body: HumanInputRequest;
|
|
6037
|
+
path: {
|
|
6038
|
+
/**
|
|
6039
|
+
* Public ID of the orchestration (orch_...)
|
|
6040
|
+
*/
|
|
6041
|
+
orchestration_id: string;
|
|
6042
|
+
/**
|
|
6043
|
+
* Public ID of the run (run_...)
|
|
6044
|
+
*/
|
|
6045
|
+
run_id: string;
|
|
6046
|
+
};
|
|
6047
|
+
query?: never;
|
|
6048
|
+
url: '/api/v1/orchestrations/{orchestration_id}/runs/{run_id}/human-input';
|
|
6049
|
+
};
|
|
6050
|
+
type SubmitHumanInputErrors = {
|
|
6051
|
+
/**
|
|
6052
|
+
* Invalid input
|
|
6053
|
+
*/
|
|
6054
|
+
400: unknown;
|
|
6055
|
+
/**
|
|
6056
|
+
* Unauthorized
|
|
6057
|
+
*/
|
|
6058
|
+
401: unknown;
|
|
6059
|
+
/**
|
|
6060
|
+
* Forbidden
|
|
6061
|
+
*/
|
|
6062
|
+
403: unknown;
|
|
6063
|
+
/**
|
|
6064
|
+
* Not found
|
|
6065
|
+
*/
|
|
6066
|
+
404: unknown;
|
|
6067
|
+
/**
|
|
6068
|
+
* Run is not paused
|
|
6069
|
+
*/
|
|
6070
|
+
409: unknown;
|
|
6071
|
+
};
|
|
6072
|
+
type SubmitHumanInputResponses = {
|
|
6073
|
+
/**
|
|
6074
|
+
* Run after processing human input
|
|
6075
|
+
*/
|
|
6076
|
+
200: OrchestrationRun;
|
|
6077
|
+
};
|
|
6078
|
+
type SubmitHumanInputResponse = SubmitHumanInputResponses[keyof SubmitHumanInputResponses];
|
|
6079
|
+
type ResumeRunData = {
|
|
6080
|
+
body?: never;
|
|
6081
|
+
path: {
|
|
6082
|
+
/**
|
|
6083
|
+
* Public ID of the orchestration (orch_...)
|
|
6084
|
+
*/
|
|
6085
|
+
orchestration_id: string;
|
|
6086
|
+
/**
|
|
6087
|
+
* Public ID of the run (run_...)
|
|
6088
|
+
*/
|
|
6089
|
+
run_id: string;
|
|
6090
|
+
};
|
|
6091
|
+
query?: never;
|
|
6092
|
+
url: '/api/v1/orchestrations/{orchestration_id}/runs/{run_id}/resume';
|
|
6093
|
+
};
|
|
6094
|
+
type ResumeRunErrors = {
|
|
6095
|
+
/**
|
|
6096
|
+
* Unauthorized
|
|
6097
|
+
*/
|
|
6098
|
+
401: unknown;
|
|
6099
|
+
/**
|
|
6100
|
+
* Forbidden
|
|
6101
|
+
*/
|
|
6102
|
+
403: unknown;
|
|
6103
|
+
/**
|
|
6104
|
+
* Not found
|
|
6105
|
+
*/
|
|
6106
|
+
404: unknown;
|
|
6107
|
+
/**
|
|
6108
|
+
* Run is not paused
|
|
6109
|
+
*/
|
|
6110
|
+
409: unknown;
|
|
6111
|
+
};
|
|
6112
|
+
type ResumeRunResponses = {
|
|
6113
|
+
/**
|
|
6114
|
+
* Resumed run
|
|
6115
|
+
*/
|
|
6116
|
+
200: OrchestrationRun;
|
|
6117
|
+
};
|
|
6118
|
+
type ResumeRunResponse = ResumeRunResponses[keyof ResumeRunResponses];
|
|
6119
|
+
type GetRunData = {
|
|
6120
|
+
body?: never;
|
|
6121
|
+
path: {
|
|
6122
|
+
/**
|
|
6123
|
+
* Public ID of the orchestration (orch_...)
|
|
6124
|
+
*/
|
|
6125
|
+
orchestration_id: string;
|
|
6126
|
+
/**
|
|
6127
|
+
* Public ID of the run (run_...)
|
|
6128
|
+
*/
|
|
6129
|
+
run_id: string;
|
|
6130
|
+
};
|
|
6131
|
+
query?: never;
|
|
6132
|
+
url: '/api/v1/orchestrations/{orchestration_id}/runs/{run_id}';
|
|
6133
|
+
};
|
|
6134
|
+
type GetRunErrors = {
|
|
6135
|
+
/**
|
|
6136
|
+
* Unauthorized
|
|
6137
|
+
*/
|
|
6138
|
+
401: unknown;
|
|
6139
|
+
/**
|
|
6140
|
+
* Forbidden
|
|
6141
|
+
*/
|
|
6142
|
+
403: unknown;
|
|
6143
|
+
/**
|
|
6144
|
+
* Not found
|
|
6145
|
+
*/
|
|
6146
|
+
404: unknown;
|
|
6147
|
+
};
|
|
6148
|
+
type GetRunResponses = {
|
|
6149
|
+
/**
|
|
6150
|
+
* Run details
|
|
6151
|
+
*/
|
|
6152
|
+
200: OrchestrationRun;
|
|
6153
|
+
};
|
|
6154
|
+
type GetRunResponse = GetRunResponses[keyof GetRunResponses];
|
|
5489
6155
|
type ListPoliciesData = {
|
|
5490
6156
|
body?: never;
|
|
5491
6157
|
path?: never;
|
|
@@ -7806,6 +8472,74 @@ declare class MemoryEntries {
|
|
|
7806
8472
|
*/
|
|
7807
8473
|
static updateMemoryEntry<ThrowOnError extends boolean = false>(options: Options<UpdateMemoryEntryData, ThrowOnError>): RequestResult<UpdateMemoryEntryResponses, UpdateMemoryEntryErrors, ThrowOnError, "fields">;
|
|
7808
8474
|
}
|
|
8475
|
+
declare class Orchestrations {
|
|
8476
|
+
/**
|
|
8477
|
+
* List orchestrations
|
|
8478
|
+
*
|
|
8479
|
+
* Returns orchestrations accessible to the caller.
|
|
8480
|
+
*/
|
|
8481
|
+
static listOrchestrations<ThrowOnError extends boolean = false>(options?: Options<ListOrchestrationsData, ThrowOnError>): RequestResult<ListOrchestrationsResponses, ListOrchestrationsErrors, ThrowOnError, "fields">;
|
|
8482
|
+
/**
|
|
8483
|
+
* Create an orchestration
|
|
8484
|
+
*
|
|
8485
|
+
* Creates a new orchestration workflow definition in the project.
|
|
8486
|
+
*/
|
|
8487
|
+
static createOrchestration<ThrowOnError extends boolean = false>(options: Options<CreateOrchestrationData, ThrowOnError>): RequestResult<CreateOrchestrationResponses, CreateOrchestrationErrors, ThrowOnError, "fields">;
|
|
8488
|
+
/**
|
|
8489
|
+
* Delete an orchestration
|
|
8490
|
+
*
|
|
8491
|
+
* Deletes an orchestration definition and all its runs.
|
|
8492
|
+
*/
|
|
8493
|
+
static deleteOrchestration<ThrowOnError extends boolean = false>(options: Options<DeleteOrchestrationData, ThrowOnError>): RequestResult<DeleteOrchestrationResponses, DeleteOrchestrationErrors, ThrowOnError, "fields">;
|
|
8494
|
+
/**
|
|
8495
|
+
* Get an orchestration
|
|
8496
|
+
*
|
|
8497
|
+
* Returns the orchestration with nodes and edges.
|
|
8498
|
+
*/
|
|
8499
|
+
static getOrchestration<ThrowOnError extends boolean = false>(options: Options<GetOrchestrationData, ThrowOnError>): RequestResult<GetOrchestrationResponses, GetOrchestrationErrors, ThrowOnError, "fields">;
|
|
8500
|
+
/**
|
|
8501
|
+
* Update an orchestration
|
|
8502
|
+
*
|
|
8503
|
+
* Partially updates an orchestration definition.
|
|
8504
|
+
*/
|
|
8505
|
+
static updateOrchestration<ThrowOnError extends boolean = false>(options: Options<UpdateOrchestrationData, ThrowOnError>): RequestResult<UpdateOrchestrationResponses, UpdateOrchestrationErrors, ThrowOnError, "fields">;
|
|
8506
|
+
/**
|
|
8507
|
+
* List runs
|
|
8508
|
+
*
|
|
8509
|
+
* Returns all runs for an orchestration.
|
|
8510
|
+
*/
|
|
8511
|
+
static listRuns<ThrowOnError extends boolean = false>(options: Options<ListRunsData, ThrowOnError>): RequestResult<ListRunsResponses, ListRunsErrors, ThrowOnError, "fields">;
|
|
8512
|
+
/**
|
|
8513
|
+
* Start a run
|
|
8514
|
+
*
|
|
8515
|
+
* Creates and immediately executes a new run for the orchestration.
|
|
8516
|
+
*/
|
|
8517
|
+
static startRun<ThrowOnError extends boolean = false>(options: Options<StartRunData, ThrowOnError>): RequestResult<StartRunResponses, StartRunErrors, ThrowOnError, "fields">;
|
|
8518
|
+
/**
|
|
8519
|
+
* Cancel a run
|
|
8520
|
+
*
|
|
8521
|
+
* Cancels a running or paused orchestration run.
|
|
8522
|
+
*/
|
|
8523
|
+
static cancelRun<ThrowOnError extends boolean = false>(options: Options<CancelRunData, ThrowOnError>): RequestResult<CancelRunResponses, CancelRunErrors, ThrowOnError, "fields">;
|
|
8524
|
+
/**
|
|
8525
|
+
* Submit human input
|
|
8526
|
+
*
|
|
8527
|
+
* Provides human input to a paused orchestration run waiting at a human node.
|
|
8528
|
+
*/
|
|
8529
|
+
static submitHumanInput<ThrowOnError extends boolean = false>(options: Options<SubmitHumanInputData, ThrowOnError>): RequestResult<SubmitHumanInputResponses, SubmitHumanInputErrors, ThrowOnError, "fields">;
|
|
8530
|
+
/**
|
|
8531
|
+
* Resume a run
|
|
8532
|
+
*
|
|
8533
|
+
* Resumes a paused orchestration run from its last checkpoint.
|
|
8534
|
+
*/
|
|
8535
|
+
static resumeRun<ThrowOnError extends boolean = false>(options: Options<ResumeRunData, ThrowOnError>): RequestResult<ResumeRunResponses, ResumeRunErrors, ThrowOnError, "fields">;
|
|
8536
|
+
/**
|
|
8537
|
+
* Get a run
|
|
8538
|
+
*
|
|
8539
|
+
* Returns the status, state, and artifacts of a specific run.
|
|
8540
|
+
*/
|
|
8541
|
+
static getRun<ThrowOnError extends boolean = false>(options: Options<GetRunData, ThrowOnError>): RequestResult<GetRunResponses, GetRunErrors, ThrowOnError, "fields">;
|
|
8542
|
+
}
|
|
7809
8543
|
declare class Policies {
|
|
7810
8544
|
/**
|
|
7811
8545
|
* List all policies
|
|
@@ -8202,4 +8936,4 @@ declare class SoatClient {
|
|
|
8202
8936
|
constructor({ baseUrl, token, headers }?: SoatClientOptions);
|
|
8203
8937
|
}
|
|
8204
8938
|
|
|
8205
|
-
export { type ActorRecord, type ActorResourceProperties, Actors, type AddConversationMessageData, type AddConversationMessageError, type AddConversationMessageErrors, type AddConversationMessageResponse, type AddConversationMessageResponses, type AddSessionMessageData, type AddSessionMessageError, type AddSessionMessageErrors, type AddSessionMessageRequest, type AddSessionMessageResponse, type AddSessionMessageResponse2, type AddSessionMessageResponses, type AddSessionMessageSaved, type Agent, type AgentGenerationResponse, type AgentId, type AgentResourceProperties, Agents, type AiProviderResourceProperties, AiProviders, type ApiKeyCreated, type ApiKeyRecord, type ApiKeyResourceProperties, ApiKeys, type AttachUserPoliciesData, type AttachUserPoliciesError, type AttachUserPoliciesErrors, type AttachUserPoliciesResponse, type AttachUserPoliciesResponses, type BootstrapUserData, type BootstrapUserError, type BootstrapUserErrors, type BootstrapUserResponse, type BootstrapUserResponses, type CallToolData, type CallToolError, type CallToolErrors, type CallToolRequest, type CallToolResponse, type CallToolResponses, type Chat, type ChatCompletionChoice, type ChatCompletionForChatRequest, type ChatCompletionRequest, type ChatCompletionResponse, type ChatCompletionResponseMessage, type ChatMessage, type ChatMessageInput, type ChatResourceProperties, Chats, type ClientOptions, type ConversationActorRecord, type ConversationMessageRecord, type ConversationRecord, type ConversationResourceProperties, Conversations, type CreateActorData, type CreateActorError, type CreateActorErrors, type CreateActorResponse, type CreateActorResponses, type CreateAgentActorData, type CreateAgentActorError, type CreateAgentActorErrors, type CreateAgentActorResponse, type CreateAgentActorResponses, type CreateAgentData, type CreateAgentError, type CreateAgentErrors, type CreateAgentGenerationData, type CreateAgentGenerationError, type CreateAgentGenerationErrors, type CreateAgentGenerationRequest, type CreateAgentGenerationResponse, type CreateAgentGenerationResponses, type CreateAgentRequest, type CreateAgentResponse, type CreateAgentResponses, type CreateAgentSessionData, type CreateAgentSessionError, type CreateAgentSessionErrors, type CreateAgentSessionResponse, type CreateAgentSessionResponses, type CreateAiProviderData, type CreateAiProviderErrors, type CreateAiProviderResponse, type CreateAiProviderResponses, type CreateApiKeyData, type CreateApiKeyError, type CreateApiKeyErrors, type CreateApiKeyResponse, type CreateApiKeyResponses, type CreateChatActorData, type CreateChatActorError, type CreateChatActorErrors, type CreateChatActorResponse, type CreateChatActorResponses, type CreateChatCompletionData, type CreateChatCompletionError, type CreateChatCompletionErrors, type CreateChatCompletionForChatData, type CreateChatCompletionForChatError, type CreateChatCompletionForChatErrors, type CreateChatCompletionForChatResponse, type CreateChatCompletionForChatResponses, type CreateChatCompletionResponse, type CreateChatCompletionResponses, type CreateChatData, type CreateChatError, type CreateChatErrors, type CreateChatRequest, type CreateChatResponse, type CreateChatResponses, type CreateConversationData, type CreateConversationError, type CreateConversationErrors, type CreateConversationResponse, type CreateConversationResponses, type CreateDocumentData, type CreateDocumentError, type CreateDocumentErrors, type CreateDocumentResponse, type CreateDocumentResponses, type CreateFileData, type CreateFileError, type CreateFileErrors, type CreateFileResponse, type CreateFileResponses, type CreateFormationData, type CreateFormationErrors, type CreateFormationResponse, type CreateFormationResponses, type CreateMemoryData, type CreateMemoryEntryData, type CreateMemoryEntryErrors, type CreateMemoryEntryResponse, type CreateMemoryEntryResponses, type CreateMemoryErrors, type CreateMemoryResponse, type CreateMemoryResponses, type CreatePolicyData, type CreatePolicyError, type CreatePolicyErrors, type CreatePolicyResponse, type CreatePolicyResponses, type CreateProjectData, type CreateProjectErrors, type CreateProjectResponse, type CreateProjectResponses, type CreateSecretData, type CreateSecretErrors, type CreateSecretResponse, type CreateSecretResponses, type CreateSessionRequest, type CreateToolData, type CreateToolError, type CreateToolErrors, type CreateToolRequest, type CreateToolResponse, type CreateToolResponses, type CreateUserData, type CreateUserError, type CreateUserErrors, type CreateUserResponse, type CreateUserResponses, type CreateWebhookData, type CreateWebhookErrors, type CreateWebhookRequest, type CreateWebhookResponse, type CreateWebhookResponses, type DeleteActorData, type DeleteActorError, type DeleteActorErrors, type DeleteActorResponse, type DeleteActorResponses, type DeleteAgentData, type DeleteAgentError, type DeleteAgentErrors, type DeleteAgentResponse, type DeleteAgentResponses, type DeleteAgentSessionData, type DeleteAgentSessionError, type DeleteAgentSessionErrors, type DeleteAgentSessionResponse, type DeleteAgentSessionResponses, type DeleteAiProviderData, type DeleteAiProviderErrors, type DeleteAiProviderResponses, type DeleteApiKeyData, type DeleteApiKeyErrors, type DeleteApiKeyResponse, type DeleteApiKeyResponses, type DeleteChatData, type DeleteChatError, type DeleteChatErrors, type DeleteChatResponse, type DeleteChatResponses, type DeleteConversationData, type DeleteConversationError, type DeleteConversationErrors, type DeleteConversationResponse, type DeleteConversationResponses, type DeleteDocumentData, type DeleteDocumentError, type DeleteDocumentErrors, type DeleteDocumentResponse, type DeleteDocumentResponses, type DeleteFileData, type DeleteFileError, type DeleteFileErrors, type DeleteFileResponse, type DeleteFileResponses, type DeleteFormationData, type DeleteFormationErrors, type DeleteFormationResponse, type DeleteFormationResponses, type DeleteMemoryData, type DeleteMemoryEntryData, type DeleteMemoryEntryErrors, type DeleteMemoryEntryResponse, type DeleteMemoryEntryResponses, type DeleteMemoryErrors, type DeleteMemoryResponse, type DeleteMemoryResponses, type DeletePolicyData, type DeletePolicyErrors, type DeletePolicyResponse, type DeletePolicyResponses, type DeleteProjectData, type DeleteProjectErrors, type DeleteProjectResponse, type DeleteProjectResponses, type DeleteSecretData, type DeleteSecretErrors, type DeleteSecretResponses, type DeleteToolData, type DeleteToolError, type DeleteToolErrors, type DeleteToolResponse, type DeleteToolResponses, type DeleteUserData, type DeleteUserError, type DeleteUserErrors, type DeleteUserResponse, type DeleteUserResponses, type DeleteWebhookData, type DeleteWebhookErrors, type DeleteWebhookResponse, type DeleteWebhookResponses, type Delivery, type DeliveryListResponse, type DocumentKnowledgeResult, type DocumentRecord, type DocumentResourceProperties, Documents, type DownloadFileBase64Data, type DownloadFileBase64Error, type DownloadFileBase64Errors, type DownloadFileBase64Response, type DownloadFileBase64Responses, type DownloadFileData, type DownloadFileError, type DownloadFileErrors, type DownloadFileResponse, type DownloadFileResponses, type ErrorResponse, type FileRecord, type FileResourceProperties, Files, type Formation, type FormationEvent, type FormationOperation, type FormationResource, type FormationTemplate, type FormationTemplateInput, Formations, type GenerateConversationMessageCompleted, type GenerateConversationMessageData, type GenerateConversationMessageError, type GenerateConversationMessageErrors, type GenerateConversationMessageRequiresAction, type GenerateConversationMessageResponse, type GenerateConversationMessageResponse2, type GenerateConversationMessageResponses, type GenerateSessionRequest, type GenerateSessionResponse, type GenerateSessionResponseData, type GenerateSessionResponseError, type GenerateSessionResponseErrors, type GenerateSessionResponseResponse, type GenerateSessionResponseResponses, type GetActorData, type GetActorError, type GetActorErrors, type GetActorResponse, type GetActorResponses, type GetActorTagsData, type GetActorTagsError, type GetActorTagsErrors, type GetActorTagsResponse, type GetActorTagsResponses, type GetAgentData, type GetAgentError, type GetAgentErrors, type GetAgentResponse, type GetAgentResponses, type GetAgentSessionData, type GetAgentSessionError, type GetAgentSessionErrors, type GetAgentSessionResponse, type GetAgentSessionResponses, type GetAiProviderData, type GetAiProviderErrors, type GetAiProviderResponse, type GetAiProviderResponses, type GetApiKeyData, type GetApiKeyErrors, type GetApiKeyResponse, type GetApiKeyResponses, type GetChatData, type GetChatError, type GetChatErrors, type GetChatResponse, type GetChatResponses, type GetConversationData, type GetConversationError, type GetConversationErrors, type GetConversationResponse, type GetConversationResponses, type GetConversationTagsData, type GetConversationTagsError, type GetConversationTagsErrors, type GetConversationTagsResponse, type GetConversationTagsResponses, type GetDocumentData, type GetDocumentError, type GetDocumentErrors, type GetDocumentResponse, type GetDocumentResponses, type GetDocumentTagsData, type GetDocumentTagsError, type GetDocumentTagsErrors, type GetDocumentTagsResponse, type GetDocumentTagsResponses, type GetFileData, type GetFileError, type GetFileErrors, type GetFileResponse, type GetFileResponses, type GetFileTagsData, type GetFileTagsError, type GetFileTagsErrors, type GetFileTagsResponse, type GetFileTagsResponses, type GetFormationData, type GetFormationErrors, type GetFormationResponse, type GetFormationResponses, type GetMemoryData, type GetMemoryEntryData, type GetMemoryEntryErrors, type GetMemoryEntryResponse, type GetMemoryEntryResponses, type GetMemoryErrors, type GetMemoryResponse, type GetMemoryResponses, type GetPolicyData, type GetPolicyErrors, type GetPolicyResponse, type GetPolicyResponses, type GetProjectData, type GetProjectErrors, type GetProjectResponse, type GetProjectResponses, type GetSecretData, type GetSecretErrors, type GetSecretResponse, type GetSecretResponses, type GetSessionTagsData, type GetSessionTagsError, type GetSessionTagsErrors, type GetSessionTagsResponse, type GetSessionTagsResponses, type GetToolData, type GetToolError, type GetToolErrors, type GetToolResponse, type GetToolResponses, type GetTraceData, type GetTraceError, type GetTraceErrors, type GetTraceResponse, type GetTraceResponses, type GetTraceTreeData, type GetTraceTreeError, type GetTraceTreeErrors, type GetTraceTreeResponse, type GetTraceTreeResponses, type GetUserData, type GetUserError, type GetUserErrors, type GetUserPoliciesData, type GetUserPoliciesErrors, type GetUserPoliciesResponse, type GetUserPoliciesResponses, type GetUserResponse, type GetUserResponses, type GetWebhookData, type GetWebhookDeliveryData, type GetWebhookDeliveryErrors, type GetWebhookDeliveryResponse, type GetWebhookDeliveryResponses, type GetWebhookErrors, type GetWebhookResponse, type GetWebhookResponses, type GetWebhookSecretData, type GetWebhookSecretErrors, type GetWebhookSecretResponse, type GetWebhookSecretResponses, Knowledge, type KnowledgeResult, type ListActorsData, type ListActorsError, type ListActorsErrors, type ListActorsResponse, type ListActorsResponses, type ListAgentSessionMessagesData, type ListAgentSessionMessagesError, type ListAgentSessionMessagesErrors, type ListAgentSessionMessagesResponse, type ListAgentSessionMessagesResponses, type ListAgentSessionsData, type ListAgentSessionsError, type ListAgentSessionsErrors, type ListAgentSessionsResponse, type ListAgentSessionsResponses, type ListAgentsData, type ListAgentsError, type ListAgentsErrors, type ListAgentsResponse, type ListAgentsResponses, type ListAiProvidersData, type ListAiProvidersErrors, type ListAiProvidersResponse, type ListAiProvidersResponses, type ListApiKeysData, type ListApiKeysErrors, type ListApiKeysResponse, type ListApiKeysResponses, type ListChatsData, type ListChatsError, type ListChatsErrors, type ListChatsResponse, type ListChatsResponses, type ListConversationActorsData, type ListConversationActorsError, type ListConversationActorsErrors, type ListConversationActorsResponse, type ListConversationActorsResponses, type ListConversationMessagesData, type ListConversationMessagesError, type ListConversationMessagesErrors, type ListConversationMessagesResponse, type ListConversationMessagesResponses, type ListConversationsData, type ListConversationsError, type ListConversationsErrors, type ListConversationsResponse, type ListConversationsResponses, type ListDocumentsData, type ListDocumentsError, type ListDocumentsErrors, type ListDocumentsResponse, type ListDocumentsResponses, type ListFilesData, type ListFilesError, type ListFilesErrors, type ListFilesResponse, type ListFilesResponses, type ListFormationEventsData, type ListFormationEventsErrors, type ListFormationEventsResponse, type ListFormationEventsResponses, type ListFormationsData, type ListFormationsErrors, type ListFormationsResponse, type ListFormationsResponses, type ListMemoriesData, type ListMemoriesErrors, type ListMemoriesResponse, type ListMemoriesResponses, type ListMemoryEntriesData, type ListMemoryEntriesErrors, type ListMemoryEntriesResponse, type ListMemoryEntriesResponses, type ListPoliciesData, type ListPoliciesErrors, type ListPoliciesResponse, type ListPoliciesResponses, type ListSecretsData, type ListSecretsErrors, type ListSecretsResponse, type ListSecretsResponses, type ListToolsData, type ListToolsError, type ListToolsErrors, type ListToolsResponse, type ListToolsResponses, type ListTracesData, type ListTracesError, type ListTracesErrors, type ListTracesResponse, type ListTracesResponses, type ListUsersData, type ListUsersError, type ListUsersErrors, type ListUsersResponse, type ListUsersResponses, type ListWebhookDeliveriesData, type ListWebhookDeliveriesErrors, type ListWebhookDeliveriesResponse, type ListWebhookDeliveriesResponses, type ListWebhooksData, type ListWebhooksErrors, type ListWebhooksResponse, type ListWebhooksResponses, type LoginResponse, type LoginUserData, type LoginUserError, type LoginUserErrors, type LoginUserResponse, type LoginUserResponses, Memories, type Memory, MemoryEntries, type MemoryEntry, type MemoryEntryResourceProperties, type MemoryEntryWriteResult, type MemoryKnowledgeResult, type MemoryResourceProperties, type MergeActorTagsData, type MergeActorTagsError, type MergeActorTagsErrors, type MergeActorTagsResponse, type MergeActorTagsResponses, type MergeConversationTagsData, type MergeConversationTagsError, type MergeConversationTagsErrors, type MergeConversationTagsResponse, type MergeConversationTagsResponses, type MergeDocumentTagsData, type MergeDocumentTagsError, type MergeDocumentTagsErrors, type MergeDocumentTagsResponse, type MergeDocumentTagsResponses, type MergeFileTagsData, type MergeFileTagsError, type MergeFileTagsErrors, type MergeFileTagsResponse, type MergeFileTagsResponses, type MergeSessionTagsData, type MergeSessionTagsError, type MergeSessionTagsErrors, type MergeSessionTagsResponse, type MergeSessionTagsResponses, type Options, type ParameterDeclaration, type PlanChange, type PlanFormationData, type PlanFormationErrors, type PlanFormationResponse, type PlanFormationResponses, type PlanResult, Policies, type PolicyDocument, type PolicyRecord, type PolicyResourceProperties, type PolicyStatement, type ProjectRecord, Projects, type RemoveConversationMessageData, type RemoveConversationMessageError, type RemoveConversationMessageErrors, type RemoveConversationMessageResponse, type RemoveConversationMessageResponses, type ReplaceActorTagsData, type ReplaceActorTagsError, type ReplaceActorTagsErrors, type ReplaceActorTagsResponse, type ReplaceActorTagsResponses, type ReplaceConversationTagsData, type ReplaceConversationTagsError, type ReplaceConversationTagsErrors, type ReplaceConversationTagsResponse, type ReplaceConversationTagsResponses, type ReplaceDocumentTagsData, type ReplaceDocumentTagsError, type ReplaceDocumentTagsErrors, type ReplaceDocumentTagsResponse, type ReplaceDocumentTagsResponses, type ReplaceFileTagsData, type ReplaceFileTagsError, type ReplaceFileTagsErrors, type ReplaceFileTagsResponse, type ReplaceFileTagsResponses, type ReplaceSessionTagsData, type ReplaceSessionTagsError, type ReplaceSessionTagsErrors, type ReplaceSessionTagsResponse, type ReplaceSessionTagsResponses, type ResourceDeclaration, type RotateWebhookSecretData, type RotateWebhookSecretErrors, type RotateWebhookSecretResponse, type RotateWebhookSecretResponses, type SearchKnowledgeData, type SearchKnowledgeError, type SearchKnowledgeErrors, type SearchKnowledgeResponse, type SearchKnowledgeResponses, type SecretResourceProperties, Secrets, type SendSessionMessageResponse, type SessionId, type SessionMessage, type SessionRecord, type SessionResourceProperties, Sessions, SoatClient, type SoatClientOptions, type SubmitAgentToolOutputsData, type SubmitAgentToolOutputsError, type SubmitAgentToolOutputsErrors, type SubmitAgentToolOutputsResponse, type SubmitAgentToolOutputsResponses, type SubmitSessionToolOutputsData, type SubmitSessionToolOutputsError, type SubmitSessionToolOutputsErrors, type SubmitSessionToolOutputsRequest, type SubmitSessionToolOutputsResponse, type SubmitSessionToolOutputsResponses, type SubmitToolOutputsRequest, type Tool, type ToolResourceProperties, Tools, type Trace, type TraceTreeNode, Traces, type UpdateActorData, type UpdateActorError, type UpdateActorErrors, type UpdateActorResponse, type UpdateActorResponses, type UpdateAgentData, type UpdateAgentError, type UpdateAgentErrors, type UpdateAgentRequest, type UpdateAgentResponse, type UpdateAgentResponses, type UpdateAiProviderData, type UpdateAiProviderErrors, type UpdateAiProviderResponses, type UpdateApiKeyData, type UpdateApiKeyError, type UpdateApiKeyErrors, type UpdateApiKeyResponse, type UpdateApiKeyResponses, type UpdateConversationData, type UpdateConversationError, type UpdateConversationErrors, type UpdateConversationResponse, type UpdateConversationResponses, type UpdateDocumentData, type UpdateDocumentError, type UpdateDocumentErrors, type UpdateDocumentResponse, type UpdateDocumentResponses, type UpdateFileMetadataData, type UpdateFileMetadataError, type UpdateFileMetadataErrors, type UpdateFileMetadataResponse, type UpdateFileMetadataResponses, type UpdateFormationData, type UpdateFormationErrors, type UpdateFormationResponse, type UpdateFormationResponses, type UpdateMemoryData, type UpdateMemoryEntryData, type UpdateMemoryEntryErrors, type UpdateMemoryEntryResponse, type UpdateMemoryEntryResponses, type UpdateMemoryErrors, type UpdateMemoryResponse, type UpdateMemoryResponses, type UpdatePolicyData, type UpdatePolicyError, type UpdatePolicyErrors, type UpdatePolicyResponse, type UpdatePolicyResponses, type UpdateSecretData, type UpdateSecretErrors, type UpdateSecretResponses, type UpdateSessionData, type UpdateSessionError, type UpdateSessionErrors, type UpdateSessionRequest, type UpdateSessionResponse, type UpdateSessionResponses, type UpdateToolData, type UpdateToolError, type UpdateToolErrors, type UpdateToolRequest, type UpdateToolResponse, type UpdateToolResponses, type UpdateWebhookData, type UpdateWebhookErrors, type UpdateWebhookRequest, type UpdateWebhookResponse, type UpdateWebhookResponses, type UploadFileBase64Data, type UploadFileBase64Error, type UploadFileBase64Errors, type UploadFileBase64Request, type UploadFileBase64Response, type UploadFileBase64Responses, type UploadFileData, type UploadFileError, type UploadFileErrors, type UploadFileResponse, type UploadFileResponses, type UserRecord, Users, type ValidateFormationData, type ValidateFormationErrors, type ValidateFormationResponse, type ValidateFormationResponses, type ValidationError, type ValidationResult, type Webhook, type WebhookResourceProperties, type WebhookSecretResponse, type WebhookWithSecret, Webhooks, createClient, createConfig };
|
|
8939
|
+
export { type ActorRecord, type ActorResourceProperties, Actors, type AddConversationMessageData, type AddConversationMessageError, type AddConversationMessageErrors, type AddConversationMessageResponse, type AddConversationMessageResponses, type AddSessionMessageData, type AddSessionMessageError, type AddSessionMessageErrors, type AddSessionMessageRequest, type AddSessionMessageResponse, type AddSessionMessageResponse2, type AddSessionMessageResponses, type AddSessionMessageSaved, type Agent, type AgentGenerationResponse, type AgentId, type AgentResourceProperties, Agents, type AiProviderResourceProperties, AiProviders, type ApiKeyCreated, type ApiKeyRecord, type ApiKeyResourceProperties, ApiKeys, type AttachUserPoliciesData, type AttachUserPoliciesError, type AttachUserPoliciesErrors, type AttachUserPoliciesResponse, type AttachUserPoliciesResponses, type BootstrapUserData, type BootstrapUserError, type BootstrapUserErrors, type BootstrapUserResponse, type BootstrapUserResponses, type CallToolData, type CallToolError, type CallToolErrors, type CallToolRequest, type CallToolResponse, type CallToolResponses, type CancelRunData, type CancelRunErrors, type CancelRunResponse, type CancelRunResponses, type Chat, type ChatCompletionChoice, type ChatCompletionForChatRequest, type ChatCompletionRequest, type ChatCompletionResponse, type ChatCompletionResponseMessage, type ChatMessage, type ChatMessageInput, type ChatResourceProperties, Chats, type ClientOptions, type ConversationActorRecord, type ConversationMessageRecord, type ConversationRecord, type ConversationResourceProperties, Conversations, type CreateActorData, type CreateActorError, type CreateActorErrors, type CreateActorResponse, type CreateActorResponses, type CreateAgentActorData, type CreateAgentActorError, type CreateAgentActorErrors, type CreateAgentActorResponse, type CreateAgentActorResponses, type CreateAgentData, type CreateAgentError, type CreateAgentErrors, type CreateAgentGenerationData, type CreateAgentGenerationError, type CreateAgentGenerationErrors, type CreateAgentGenerationRequest, type CreateAgentGenerationResponse, type CreateAgentGenerationResponses, type CreateAgentRequest, type CreateAgentResponse, type CreateAgentResponses, type CreateAgentSessionData, type CreateAgentSessionError, type CreateAgentSessionErrors, type CreateAgentSessionResponse, type CreateAgentSessionResponses, type CreateAiProviderData, type CreateAiProviderErrors, type CreateAiProviderResponse, type CreateAiProviderResponses, type CreateApiKeyData, type CreateApiKeyError, type CreateApiKeyErrors, type CreateApiKeyResponse, type CreateApiKeyResponses, type CreateChatActorData, type CreateChatActorError, type CreateChatActorErrors, type CreateChatActorResponse, type CreateChatActorResponses, type CreateChatCompletionData, type CreateChatCompletionError, type CreateChatCompletionErrors, type CreateChatCompletionForChatData, type CreateChatCompletionForChatError, type CreateChatCompletionForChatErrors, type CreateChatCompletionForChatResponse, type CreateChatCompletionForChatResponses, type CreateChatCompletionResponse, type CreateChatCompletionResponses, type CreateChatData, type CreateChatError, type CreateChatErrors, type CreateChatRequest, type CreateChatResponse, type CreateChatResponses, type CreateConversationData, type CreateConversationError, type CreateConversationErrors, type CreateConversationResponse, type CreateConversationResponses, type CreateDocumentData, type CreateDocumentError, type CreateDocumentErrors, type CreateDocumentResponse, type CreateDocumentResponses, type CreateFileData, type CreateFileError, type CreateFileErrors, type CreateFileResponse, type CreateFileResponses, type CreateFormationData, type CreateFormationErrors, type CreateFormationResponse, type CreateFormationResponses, type CreateMemoryData, type CreateMemoryEntryData, type CreateMemoryEntryErrors, type CreateMemoryEntryResponse, type CreateMemoryEntryResponses, type CreateMemoryErrors, type CreateMemoryResponse, type CreateMemoryResponses, type CreateOrchestrationData, type CreateOrchestrationErrors, type CreateOrchestrationRequest, type CreateOrchestrationResponse, type CreateOrchestrationResponses, type CreatePolicyData, type CreatePolicyError, type CreatePolicyErrors, type CreatePolicyResponse, type CreatePolicyResponses, type CreateProjectData, type CreateProjectErrors, type CreateProjectResponse, type CreateProjectResponses, type CreateSecretData, type CreateSecretErrors, type CreateSecretResponse, type CreateSecretResponses, type CreateSessionRequest, type CreateToolData, type CreateToolError, type CreateToolErrors, type CreateToolRequest, type CreateToolResponse, type CreateToolResponses, type CreateUserData, type CreateUserError, type CreateUserErrors, type CreateUserResponse, type CreateUserResponses, type CreateWebhookData, type CreateWebhookErrors, type CreateWebhookRequest, type CreateWebhookResponse, type CreateWebhookResponses, type DeleteActorData, type DeleteActorError, type DeleteActorErrors, type DeleteActorResponse, type DeleteActorResponses, type DeleteAgentData, type DeleteAgentError, type DeleteAgentErrors, type DeleteAgentResponse, type DeleteAgentResponses, type DeleteAgentSessionData, type DeleteAgentSessionError, type DeleteAgentSessionErrors, type DeleteAgentSessionResponse, type DeleteAgentSessionResponses, type DeleteAiProviderData, type DeleteAiProviderErrors, type DeleteAiProviderResponses, type DeleteApiKeyData, type DeleteApiKeyErrors, type DeleteApiKeyResponse, type DeleteApiKeyResponses, type DeleteChatData, type DeleteChatError, type DeleteChatErrors, type DeleteChatResponse, type DeleteChatResponses, type DeleteConversationData, type DeleteConversationError, type DeleteConversationErrors, type DeleteConversationResponse, type DeleteConversationResponses, type DeleteDocumentData, type DeleteDocumentError, type DeleteDocumentErrors, type DeleteDocumentResponse, type DeleteDocumentResponses, type DeleteFileData, type DeleteFileError, type DeleteFileErrors, type DeleteFileResponse, type DeleteFileResponses, type DeleteFormationData, type DeleteFormationErrors, type DeleteFormationResponse, type DeleteFormationResponses, type DeleteMemoryData, type DeleteMemoryEntryData, type DeleteMemoryEntryErrors, type DeleteMemoryEntryResponse, type DeleteMemoryEntryResponses, type DeleteMemoryErrors, type DeleteMemoryResponse, type DeleteMemoryResponses, type DeleteOrchestrationData, type DeleteOrchestrationErrors, type DeleteOrchestrationResponse, type DeleteOrchestrationResponses, type DeletePolicyData, type DeletePolicyErrors, type DeletePolicyResponse, type DeletePolicyResponses, type DeleteProjectData, type DeleteProjectErrors, type DeleteProjectResponse, type DeleteProjectResponses, type DeleteSecretData, type DeleteSecretErrors, type DeleteSecretResponses, type DeleteToolData, type DeleteToolError, type DeleteToolErrors, type DeleteToolResponse, type DeleteToolResponses, type DeleteUserData, type DeleteUserError, type DeleteUserErrors, type DeleteUserResponse, type DeleteUserResponses, type DeleteWebhookData, type DeleteWebhookErrors, type DeleteWebhookResponse, type DeleteWebhookResponses, type Delivery, type DeliveryListResponse, type DocumentKnowledgeResult, type DocumentRecord, type DocumentResourceProperties, Documents, type DownloadFileBase64Data, type DownloadFileBase64Error, type DownloadFileBase64Errors, type DownloadFileBase64Response, type DownloadFileBase64Responses, type DownloadFileData, type DownloadFileError, type DownloadFileErrors, type DownloadFileResponse, type DownloadFileResponses, type ErrorResponse, type FileRecord, type FileResourceProperties, Files, type Formation, type FormationEvent, type FormationOperation, type FormationResource, type FormationTemplate, type FormationTemplateInput, Formations, type GenerateConversationMessageCompleted, type GenerateConversationMessageData, type GenerateConversationMessageError, type GenerateConversationMessageErrors, type GenerateConversationMessageRequiresAction, type GenerateConversationMessageResponse, type GenerateConversationMessageResponse2, type GenerateConversationMessageResponses, type GenerateSessionRequest, type GenerateSessionResponse, type GenerateSessionResponseData, type GenerateSessionResponseError, type GenerateSessionResponseErrors, type GenerateSessionResponseResponse, type GenerateSessionResponseResponses, type GetActorData, type GetActorError, type GetActorErrors, type GetActorResponse, type GetActorResponses, type GetActorTagsData, type GetActorTagsError, type GetActorTagsErrors, type GetActorTagsResponse, type GetActorTagsResponses, type GetAgentData, type GetAgentError, type GetAgentErrors, type GetAgentResponse, type GetAgentResponses, type GetAgentSessionData, type GetAgentSessionError, type GetAgentSessionErrors, type GetAgentSessionResponse, type GetAgentSessionResponses, type GetAiProviderData, type GetAiProviderErrors, type GetAiProviderResponse, type GetAiProviderResponses, type GetApiKeyData, type GetApiKeyErrors, type GetApiKeyResponse, type GetApiKeyResponses, type GetChatData, type GetChatError, type GetChatErrors, type GetChatResponse, type GetChatResponses, type GetConversationData, type GetConversationError, type GetConversationErrors, type GetConversationResponse, type GetConversationResponses, type GetConversationTagsData, type GetConversationTagsError, type GetConversationTagsErrors, type GetConversationTagsResponse, type GetConversationTagsResponses, type GetDocumentData, type GetDocumentError, type GetDocumentErrors, type GetDocumentResponse, type GetDocumentResponses, type GetDocumentTagsData, type GetDocumentTagsError, type GetDocumentTagsErrors, type GetDocumentTagsResponse, type GetDocumentTagsResponses, type GetFileData, type GetFileError, type GetFileErrors, type GetFileResponse, type GetFileResponses, type GetFileTagsData, type GetFileTagsError, type GetFileTagsErrors, type GetFileTagsResponse, type GetFileTagsResponses, type GetFormationData, type GetFormationErrors, type GetFormationResponse, type GetFormationResponses, type GetMemoryData, type GetMemoryEntryData, type GetMemoryEntryErrors, type GetMemoryEntryResponse, type GetMemoryEntryResponses, type GetMemoryErrors, type GetMemoryResponse, type GetMemoryResponses, type GetOrchestrationData, type GetOrchestrationErrors, type GetOrchestrationResponse, type GetOrchestrationResponses, type GetPolicyData, type GetPolicyErrors, type GetPolicyResponse, type GetPolicyResponses, type GetProjectData, type GetProjectErrors, type GetProjectResponse, type GetProjectResponses, type GetRunData, type GetRunErrors, type GetRunResponse, type GetRunResponses, type GetSecretData, type GetSecretErrors, type GetSecretResponse, type GetSecretResponses, type GetSessionTagsData, type GetSessionTagsError, type GetSessionTagsErrors, type GetSessionTagsResponse, type GetSessionTagsResponses, type GetToolData, type GetToolError, type GetToolErrors, type GetToolResponse, type GetToolResponses, type GetTraceData, type GetTraceError, type GetTraceErrors, type GetTraceResponse, type GetTraceResponses, type GetTraceTreeData, type GetTraceTreeError, type GetTraceTreeErrors, type GetTraceTreeResponse, type GetTraceTreeResponses, type GetUserData, type GetUserError, type GetUserErrors, type GetUserPoliciesData, type GetUserPoliciesErrors, type GetUserPoliciesResponse, type GetUserPoliciesResponses, type GetUserResponse, type GetUserResponses, type GetWebhookData, type GetWebhookDeliveryData, type GetWebhookDeliveryErrors, type GetWebhookDeliveryResponse, type GetWebhookDeliveryResponses, type GetWebhookErrors, type GetWebhookResponse, type GetWebhookResponses, type GetWebhookSecretData, type GetWebhookSecretErrors, type GetWebhookSecretResponse, type GetWebhookSecretResponses, type HumanInputRequest, Knowledge, type KnowledgeResult, type ListActorsData, type ListActorsError, type ListActorsErrors, type ListActorsResponse, type ListActorsResponses, type ListAgentSessionMessagesData, type ListAgentSessionMessagesError, type ListAgentSessionMessagesErrors, type ListAgentSessionMessagesResponse, type ListAgentSessionMessagesResponses, type ListAgentSessionsData, type ListAgentSessionsError, type ListAgentSessionsErrors, type ListAgentSessionsResponse, type ListAgentSessionsResponses, type ListAgentsData, type ListAgentsError, type ListAgentsErrors, type ListAgentsResponse, type ListAgentsResponses, type ListAiProvidersData, type ListAiProvidersErrors, type ListAiProvidersResponse, type ListAiProvidersResponses, type ListApiKeysData, type ListApiKeysErrors, type ListApiKeysResponse, type ListApiKeysResponses, type ListChatsData, type ListChatsError, type ListChatsErrors, type ListChatsResponse, type ListChatsResponses, type ListConversationActorsData, type ListConversationActorsError, type ListConversationActorsErrors, type ListConversationActorsResponse, type ListConversationActorsResponses, type ListConversationMessagesData, type ListConversationMessagesError, type ListConversationMessagesErrors, type ListConversationMessagesResponse, type ListConversationMessagesResponses, type ListConversationsData, type ListConversationsError, type ListConversationsErrors, type ListConversationsResponse, type ListConversationsResponses, type ListDocumentsData, type ListDocumentsError, type ListDocumentsErrors, type ListDocumentsResponse, type ListDocumentsResponses, type ListFilesData, type ListFilesError, type ListFilesErrors, type ListFilesResponse, type ListFilesResponses, type ListFormationEventsData, type ListFormationEventsErrors, type ListFormationEventsResponse, type ListFormationEventsResponses, type ListFormationsData, type ListFormationsErrors, type ListFormationsResponse, type ListFormationsResponses, type ListMemoriesData, type ListMemoriesErrors, type ListMemoriesResponse, type ListMemoriesResponses, type ListMemoryEntriesData, type ListMemoryEntriesErrors, type ListMemoryEntriesResponse, type ListMemoryEntriesResponses, type ListOrchestrationsData, type ListOrchestrationsErrors, type ListOrchestrationsResponse, type ListOrchestrationsResponses, type ListPoliciesData, type ListPoliciesErrors, type ListPoliciesResponse, type ListPoliciesResponses, type ListRunsData, type ListRunsErrors, type ListRunsResponse, type ListRunsResponses, type ListSecretsData, type ListSecretsErrors, type ListSecretsResponse, type ListSecretsResponses, type ListToolsData, type ListToolsError, type ListToolsErrors, type ListToolsResponse, type ListToolsResponses, type ListTracesData, type ListTracesError, type ListTracesErrors, type ListTracesResponse, type ListTracesResponses, type ListUsersData, type ListUsersError, type ListUsersErrors, type ListUsersResponse, type ListUsersResponses, type ListWebhookDeliveriesData, type ListWebhookDeliveriesErrors, type ListWebhookDeliveriesResponse, type ListWebhookDeliveriesResponses, type ListWebhooksData, type ListWebhooksErrors, type ListWebhooksResponse, type ListWebhooksResponses, type LoginResponse, type LoginUserData, type LoginUserError, type LoginUserErrors, type LoginUserResponse, type LoginUserResponses, Memories, type Memory, MemoryEntries, type MemoryEntry, type MemoryEntryResourceProperties, type MemoryEntryWriteResult, type MemoryKnowledgeResult, type MemoryResourceProperties, type MergeActorTagsData, type MergeActorTagsError, type MergeActorTagsErrors, type MergeActorTagsResponse, type MergeActorTagsResponses, type MergeConversationTagsData, type MergeConversationTagsError, type MergeConversationTagsErrors, type MergeConversationTagsResponse, type MergeConversationTagsResponses, type MergeDocumentTagsData, type MergeDocumentTagsError, type MergeDocumentTagsErrors, type MergeDocumentTagsResponse, type MergeDocumentTagsResponses, type MergeFileTagsData, type MergeFileTagsError, type MergeFileTagsErrors, type MergeFileTagsResponse, type MergeFileTagsResponses, type MergeSessionTagsData, type MergeSessionTagsError, type MergeSessionTagsErrors, type MergeSessionTagsResponse, type MergeSessionTagsResponses, type Options, type Orchestration, type OrchestrationEdge, type OrchestrationId, type OrchestrationNode, type OrchestrationRun, Orchestrations, type ParameterDeclaration, type PlanChange, type PlanFormationData, type PlanFormationErrors, type PlanFormationResponse, type PlanFormationResponses, type PlanResult, Policies, type PolicyDocument, type PolicyRecord, type PolicyResourceProperties, type PolicyStatement, type ProjectRecord, Projects, type RemoveConversationMessageData, type RemoveConversationMessageError, type RemoveConversationMessageErrors, type RemoveConversationMessageResponse, type RemoveConversationMessageResponses, type ReplaceActorTagsData, type ReplaceActorTagsError, type ReplaceActorTagsErrors, type ReplaceActorTagsResponse, type ReplaceActorTagsResponses, type ReplaceConversationTagsData, type ReplaceConversationTagsError, type ReplaceConversationTagsErrors, type ReplaceConversationTagsResponse, type ReplaceConversationTagsResponses, type ReplaceDocumentTagsData, type ReplaceDocumentTagsError, type ReplaceDocumentTagsErrors, type ReplaceDocumentTagsResponse, type ReplaceDocumentTagsResponses, type ReplaceFileTagsData, type ReplaceFileTagsError, type ReplaceFileTagsErrors, type ReplaceFileTagsResponse, type ReplaceFileTagsResponses, type ReplaceSessionTagsData, type ReplaceSessionTagsError, type ReplaceSessionTagsErrors, type ReplaceSessionTagsResponse, type ReplaceSessionTagsResponses, type RequiredAction, type ResourceDeclaration, type ResumeRunData, type ResumeRunErrors, type ResumeRunResponse, type ResumeRunResponses, type RotateWebhookSecretData, type RotateWebhookSecretErrors, type RotateWebhookSecretResponse, type RotateWebhookSecretResponses, type RunId, type SearchKnowledgeData, type SearchKnowledgeError, type SearchKnowledgeErrors, type SearchKnowledgeResponse, type SearchKnowledgeResponses, type SecretResourceProperties, Secrets, type SendSessionMessageResponse, type SessionId, type SessionMessage, type SessionRecord, type SessionResourceProperties, Sessions, SoatClient, type SoatClientOptions, type StartRunData, type StartRunErrors, type StartRunRequest, type StartRunResponse, type StartRunResponses, type SubmitAgentToolOutputsData, type SubmitAgentToolOutputsError, type SubmitAgentToolOutputsErrors, type SubmitAgentToolOutputsResponse, type SubmitAgentToolOutputsResponses, type SubmitHumanInputData, type SubmitHumanInputErrors, type SubmitHumanInputResponse, type SubmitHumanInputResponses, type SubmitSessionToolOutputsData, type SubmitSessionToolOutputsError, type SubmitSessionToolOutputsErrors, type SubmitSessionToolOutputsRequest, type SubmitSessionToolOutputsResponse, type SubmitSessionToolOutputsResponses, type SubmitToolOutputsRequest, type Tool, type ToolResourceProperties, Tools, type Trace, type TraceTreeNode, Traces, type UpdateActorData, type UpdateActorError, type UpdateActorErrors, type UpdateActorResponse, type UpdateActorResponses, type UpdateAgentData, type UpdateAgentError, type UpdateAgentErrors, type UpdateAgentRequest, type UpdateAgentResponse, type UpdateAgentResponses, type UpdateAiProviderData, type UpdateAiProviderErrors, type UpdateAiProviderResponses, type UpdateApiKeyData, type UpdateApiKeyError, type UpdateApiKeyErrors, type UpdateApiKeyResponse, type UpdateApiKeyResponses, type UpdateConversationData, type UpdateConversationError, type UpdateConversationErrors, type UpdateConversationResponse, type UpdateConversationResponses, type UpdateDocumentData, type UpdateDocumentError, type UpdateDocumentErrors, type UpdateDocumentResponse, type UpdateDocumentResponses, type UpdateFileMetadataData, type UpdateFileMetadataError, type UpdateFileMetadataErrors, type UpdateFileMetadataResponse, type UpdateFileMetadataResponses, type UpdateFormationData, type UpdateFormationErrors, type UpdateFormationResponse, type UpdateFormationResponses, type UpdateMemoryData, type UpdateMemoryEntryData, type UpdateMemoryEntryErrors, type UpdateMemoryEntryResponse, type UpdateMemoryEntryResponses, type UpdateMemoryErrors, type UpdateMemoryResponse, type UpdateMemoryResponses, type UpdateOrchestrationData, type UpdateOrchestrationErrors, type UpdateOrchestrationRequest, type UpdateOrchestrationResponse, type UpdateOrchestrationResponses, type UpdatePolicyData, type UpdatePolicyError, type UpdatePolicyErrors, type UpdatePolicyResponse, type UpdatePolicyResponses, type UpdateSecretData, type UpdateSecretErrors, type UpdateSecretResponses, type UpdateSessionData, type UpdateSessionError, type UpdateSessionErrors, type UpdateSessionRequest, type UpdateSessionResponse, type UpdateSessionResponses, type UpdateToolData, type UpdateToolError, type UpdateToolErrors, type UpdateToolRequest, type UpdateToolResponse, type UpdateToolResponses, type UpdateWebhookData, type UpdateWebhookErrors, type UpdateWebhookRequest, type UpdateWebhookResponse, type UpdateWebhookResponses, type UploadFileBase64Data, type UploadFileBase64Error, type UploadFileBase64Errors, type UploadFileBase64Request, type UploadFileBase64Response, type UploadFileBase64Responses, type UploadFileData, type UploadFileError, type UploadFileErrors, type UploadFileResponse, type UploadFileResponses, type UserRecord, Users, type ValidateFormationData, type ValidateFormationErrors, type ValidateFormationResponse, type ValidateFormationResponses, type ValidationError, type ValidationResult, type Webhook, type WebhookResourceProperties, type WebhookSecretResponse, type WebhookWithSecret, Webhooks, createClient, createConfig };
|