asteroid-odyssey 1.7.59 → 1.7.84

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -1603,7 +1603,7 @@ type AgentsFilesAgentFileCreatedBy = 'user' | 'agent' | 'environment' | 'system'
1603
1603
  /**
1604
1604
  * Directory types within the agent filesystem
1605
1605
  */
1606
- type AgentsFilesAgentFileDirectory = 'uploads' | 'downloads' | 'workspace' | 'shared' | 'debug';
1606
+ type AgentsFilesAgentFileDirectory = 'uploads' | 'downloads' | 'workspace' | 'shared' | 'debug' | 'tracing';
1607
1607
  /**
1608
1608
  * Files grouped by their agent directory
1609
1609
  */
@@ -1613,6 +1613,10 @@ type AgentsFilesAgentFilesDirectoryListing = {
1613
1613
  workspace?: Array<AgentsFilesAgentFile>;
1614
1614
  shared?: Array<AgentsFilesAgentFile>;
1615
1615
  debug?: Array<AgentsFilesAgentFile>;
1616
+ /**
1617
+ * Reserved for internal use.
1618
+ */
1619
+ tracing?: Array<AgentsFilesAgentFile>;
1616
1620
  };
1617
1621
  /**
1618
1622
  * Response containing all agent files for an execution, grouped by directory
@@ -1727,6 +1731,9 @@ type AgentsGraphModelsNodesPosition = {
1727
1731
  y: number;
1728
1732
  };
1729
1733
  type AgentsGraphModelsNodesPropertiesApiMethod = 'GET' | 'POST' | 'PUT' | 'DELETE';
1734
+ /**
1735
+ * @deprecated
1736
+ */
1730
1737
  type AgentsGraphModelsNodesPropertiesApiProperties = {
1731
1738
  type: 'api';
1732
1739
  method: AgentsGraphModelsNodesPropertiesApiMethod;
@@ -1840,6 +1847,9 @@ type AgentsGraphModelsNodesPropertiesPlaywrightScriptProperties = {
1840
1847
  type AgentsGraphModelsNodesPropertiesStartProperties = {
1841
1848
  type: 'start';
1842
1849
  };
1850
+ /**
1851
+ * @deprecated
1852
+ */
1843
1853
  type AgentsGraphModelsNodesPropertiesUrlProperties = {
1844
1854
  type: 'url';
1845
1855
  url: string;
@@ -1888,6 +1898,10 @@ type AgentsGraphModelsSettings = {
1888
1898
  * LLM provider override for the new agent loop (admin-only in UI; defaults to server config)
1889
1899
  */
1890
1900
  llm_provider?: AgentsGraphModelsLlmProvider;
1901
+ /**
1902
+ * Reserved for internal use.
1903
+ */
1904
+ advanced_tracing?: boolean;
1891
1905
  };
1892
1906
  type AgentsGraphModelsStickyNote = {
1893
1907
  id: CommonUuid;
package/dist/index.d.ts CHANGED
@@ -1603,7 +1603,7 @@ type AgentsFilesAgentFileCreatedBy = 'user' | 'agent' | 'environment' | 'system'
1603
1603
  /**
1604
1604
  * Directory types within the agent filesystem
1605
1605
  */
1606
- type AgentsFilesAgentFileDirectory = 'uploads' | 'downloads' | 'workspace' | 'shared' | 'debug';
1606
+ type AgentsFilesAgentFileDirectory = 'uploads' | 'downloads' | 'workspace' | 'shared' | 'debug' | 'tracing';
1607
1607
  /**
1608
1608
  * Files grouped by their agent directory
1609
1609
  */
@@ -1613,6 +1613,10 @@ type AgentsFilesAgentFilesDirectoryListing = {
1613
1613
  workspace?: Array<AgentsFilesAgentFile>;
1614
1614
  shared?: Array<AgentsFilesAgentFile>;
1615
1615
  debug?: Array<AgentsFilesAgentFile>;
1616
+ /**
1617
+ * Reserved for internal use.
1618
+ */
1619
+ tracing?: Array<AgentsFilesAgentFile>;
1616
1620
  };
1617
1621
  /**
1618
1622
  * Response containing all agent files for an execution, grouped by directory
@@ -1727,6 +1731,9 @@ type AgentsGraphModelsNodesPosition = {
1727
1731
  y: number;
1728
1732
  };
1729
1733
  type AgentsGraphModelsNodesPropertiesApiMethod = 'GET' | 'POST' | 'PUT' | 'DELETE';
1734
+ /**
1735
+ * @deprecated
1736
+ */
1730
1737
  type AgentsGraphModelsNodesPropertiesApiProperties = {
1731
1738
  type: 'api';
1732
1739
  method: AgentsGraphModelsNodesPropertiesApiMethod;
@@ -1840,6 +1847,9 @@ type AgentsGraphModelsNodesPropertiesPlaywrightScriptProperties = {
1840
1847
  type AgentsGraphModelsNodesPropertiesStartProperties = {
1841
1848
  type: 'start';
1842
1849
  };
1850
+ /**
1851
+ * @deprecated
1852
+ */
1843
1853
  type AgentsGraphModelsNodesPropertiesUrlProperties = {
1844
1854
  type: 'url';
1845
1855
  url: string;
@@ -1888,6 +1898,10 @@ type AgentsGraphModelsSettings = {
1888
1898
  * LLM provider override for the new agent loop (admin-only in UI; defaults to server config)
1889
1899
  */
1890
1900
  llm_provider?: AgentsGraphModelsLlmProvider;
1901
+ /**
1902
+ * Reserved for internal use.
1903
+ */
1904
+ advanced_tracing?: boolean;
1891
1905
  };
1892
1906
  type AgentsGraphModelsStickyNote = {
1893
1907
  id: CommonUuid;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asteroid-odyssey",
3
- "version": "1.7.59",
3
+ "version": "1.7.84",
4
4
  "description": "SDK for interacting with Asteroid Agents API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",