asteroid-odyssey 1.6.195 → 1.6.201

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
@@ -1370,6 +1370,14 @@ type AgentsProfileAgentProfile = {
1370
1370
  * Whether browser tracing is enabled (admin only)
1371
1371
  */
1372
1372
  tracingEnabled: boolean;
1373
+ /**
1374
+ * 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.
1375
+ */
1376
+ inboxEmailPrefix?: string;
1377
+ /**
1378
+ * The resolved inbox email address for this profile
1379
+ */
1380
+ inboxEmail: string;
1373
1381
  /**
1374
1382
  * List of credentials associated with this profile
1375
1383
  */
@@ -1516,6 +1524,10 @@ type AgentsProfileCreateAgentProfileRequest = {
1516
1524
  * Whether browser tracing is enabled (admin only, defaults to true)
1517
1525
  */
1518
1526
  tracingEnabled?: boolean;
1527
+ /**
1528
+ * Optional custom prefix for the agent's inbox email address. If set, the inbox will be {prefix}@agentmail.asteroid.ai.
1529
+ */
1530
+ inboxEmailPrefix?: string;
1519
1531
  /**
1520
1532
  * Initial credentials to create with the profile
1521
1533
  */
@@ -1690,6 +1702,10 @@ type AgentsProfileUpdateAgentProfileRequest = {
1690
1702
  * Whether browser tracing is enabled (admin only)
1691
1703
  */
1692
1704
  tracingEnabled?: boolean;
1705
+ /**
1706
+ * Optional custom prefix for the agent's inbox email address. If set, the inbox will be {prefix}@agentmail.asteroid.ai.
1707
+ */
1708
+ inboxEmailPrefix?: string;
1693
1709
  /**
1694
1710
  * Credentials to add to the profile
1695
1711
  */
package/dist/index.d.ts CHANGED
@@ -1370,6 +1370,14 @@ type AgentsProfileAgentProfile = {
1370
1370
  * Whether browser tracing is enabled (admin only)
1371
1371
  */
1372
1372
  tracingEnabled: boolean;
1373
+ /**
1374
+ * 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.
1375
+ */
1376
+ inboxEmailPrefix?: string;
1377
+ /**
1378
+ * The resolved inbox email address for this profile
1379
+ */
1380
+ inboxEmail: string;
1373
1381
  /**
1374
1382
  * List of credentials associated with this profile
1375
1383
  */
@@ -1516,6 +1524,10 @@ type AgentsProfileCreateAgentProfileRequest = {
1516
1524
  * Whether browser tracing is enabled (admin only, defaults to true)
1517
1525
  */
1518
1526
  tracingEnabled?: boolean;
1527
+ /**
1528
+ * Optional custom prefix for the agent's inbox email address. If set, the inbox will be {prefix}@agentmail.asteroid.ai.
1529
+ */
1530
+ inboxEmailPrefix?: string;
1519
1531
  /**
1520
1532
  * Initial credentials to create with the profile
1521
1533
  */
@@ -1690,6 +1702,10 @@ type AgentsProfileUpdateAgentProfileRequest = {
1690
1702
  * Whether browser tracing is enabled (admin only)
1691
1703
  */
1692
1704
  tracingEnabled?: boolean;
1705
+ /**
1706
+ * Optional custom prefix for the agent's inbox email address. If set, the inbox will be {prefix}@agentmail.asteroid.ai.
1707
+ */
1708
+ inboxEmailPrefix?: string;
1693
1709
  /**
1694
1710
  * Credentials to add to the profile
1695
1711
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asteroid-odyssey",
3
- "version": "1.6.195",
3
+ "version": "1.6.201",
4
4
  "description": "SDK for interacting with Asteroid Agents API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",