asteroid-odyssey 1.6.895 → 1.6.896

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
@@ -1867,10 +1867,6 @@ type AgentsGraphModelsSettings = {
1867
1867
  * LLM provider override for the new agent loop (admin-only in UI; defaults to server config)
1868
1868
  */
1869
1869
  llm_provider?: AgentsGraphModelsLlmProvider;
1870
- /**
1871
- * Extension IDs (provider-issued UUIDs returned when an extension is registered with the browser provider — not Chrome's 32-char extension IDs) to load into the session at boot time
1872
- */
1873
- extension_ids?: Array<string>;
1874
1870
  };
1875
1871
  type AgentsGraphModelsStickyNote = {
1876
1872
  id: CommonUuid;
@@ -2010,6 +2006,10 @@ type AgentsProfileAgentProfile = {
2010
2006
  * Whether browser tracing is enabled (admin only)
2011
2007
  */
2012
2008
  tracingEnabled: boolean;
2009
+ /**
2010
+ * Stable org extension IDs attached to this profile
2011
+ */
2012
+ extensionIds: Array<CommonUuid>;
2013
2013
  /**
2014
2014
  * Optional custom prefix for the agent's inbox email address. If set, the inbox will be {prefix}@agentmail.asteroid.ai. If not set, defaults to the first 8 characters of the profile ID.
2015
2015
  */
@@ -2264,6 +2264,10 @@ type AgentsProfileCreateAgentProfileRequest = {
2264
2264
  * Whether browser tracing is enabled (admin only, defaults to true)
2265
2265
  */
2266
2266
  tracingEnabled?: boolean;
2267
+ /**
2268
+ * Stable org extension IDs to attach to this profile
2269
+ */
2270
+ extensionIds?: Array<CommonUuid>;
2267
2271
  /**
2268
2272
  * Optional custom prefix for the agent's inbox email address. If set, the inbox will be {prefix}@agentmail.asteroid.ai.
2269
2273
  */
@@ -2550,6 +2554,10 @@ type AgentsProfileUpdateAgentProfileRequest = {
2550
2554
  * Whether browser tracing is enabled (admin only)
2551
2555
  */
2552
2556
  tracingEnabled?: boolean;
2557
+ /**
2558
+ * Stable org extension IDs to attach to this profile
2559
+ */
2560
+ extensionIds?: Array<CommonUuid>;
2553
2561
  /**
2554
2562
  * Optional custom prefix for the agent's inbox email address. If set, the inbox will be {prefix}@agentmail.asteroid.ai.
2555
2563
  */
package/dist/index.d.ts CHANGED
@@ -1867,10 +1867,6 @@ type AgentsGraphModelsSettings = {
1867
1867
  * LLM provider override for the new agent loop (admin-only in UI; defaults to server config)
1868
1868
  */
1869
1869
  llm_provider?: AgentsGraphModelsLlmProvider;
1870
- /**
1871
- * Extension IDs (provider-issued UUIDs returned when an extension is registered with the browser provider — not Chrome's 32-char extension IDs) to load into the session at boot time
1872
- */
1873
- extension_ids?: Array<string>;
1874
1870
  };
1875
1871
  type AgentsGraphModelsStickyNote = {
1876
1872
  id: CommonUuid;
@@ -2010,6 +2006,10 @@ type AgentsProfileAgentProfile = {
2010
2006
  * Whether browser tracing is enabled (admin only)
2011
2007
  */
2012
2008
  tracingEnabled: boolean;
2009
+ /**
2010
+ * Stable org extension IDs attached to this profile
2011
+ */
2012
+ extensionIds: Array<CommonUuid>;
2013
2013
  /**
2014
2014
  * Optional custom prefix for the agent's inbox email address. If set, the inbox will be {prefix}@agentmail.asteroid.ai. If not set, defaults to the first 8 characters of the profile ID.
2015
2015
  */
@@ -2264,6 +2264,10 @@ type AgentsProfileCreateAgentProfileRequest = {
2264
2264
  * Whether browser tracing is enabled (admin only, defaults to true)
2265
2265
  */
2266
2266
  tracingEnabled?: boolean;
2267
+ /**
2268
+ * Stable org extension IDs to attach to this profile
2269
+ */
2270
+ extensionIds?: Array<CommonUuid>;
2267
2271
  /**
2268
2272
  * Optional custom prefix for the agent's inbox email address. If set, the inbox will be {prefix}@agentmail.asteroid.ai.
2269
2273
  */
@@ -2550,6 +2554,10 @@ type AgentsProfileUpdateAgentProfileRequest = {
2550
2554
  * Whether browser tracing is enabled (admin only)
2551
2555
  */
2552
2556
  tracingEnabled?: boolean;
2557
+ /**
2558
+ * Stable org extension IDs to attach to this profile
2559
+ */
2560
+ extensionIds?: Array<CommonUuid>;
2553
2561
  /**
2554
2562
  * Optional custom prefix for the agent's inbox email address. If set, the inbox will be {prefix}@agentmail.asteroid.ai.
2555
2563
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asteroid-odyssey",
3
- "version": "1.6.895",
3
+ "version": "1.6.896",
4
4
  "description": "SDK for interacting with Asteroid Agents API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",