agentmail 0.1.14 → 0.1.15

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.
Files changed (24) hide show
  1. package/dist/cjs/BaseClient.js +2 -2
  2. package/dist/cjs/api/resources/domains/types/RecordStatus.d.ts +2 -1
  3. package/dist/cjs/api/resources/domains/types/RecordStatus.js +2 -1
  4. package/dist/cjs/api/resources/domains/types/VerificationStatus.d.ts +4 -1
  5. package/dist/cjs/api/resources/domains/types/VerificationStatus.js +4 -1
  6. package/dist/cjs/serialization/resources/domains/types/RecordStatus.d.ts +1 -1
  7. package/dist/cjs/serialization/resources/domains/types/RecordStatus.js +1 -1
  8. package/dist/cjs/serialization/resources/domains/types/VerificationStatus.d.ts +1 -1
  9. package/dist/cjs/serialization/resources/domains/types/VerificationStatus.js +1 -1
  10. package/dist/cjs/version.d.ts +1 -1
  11. package/dist/cjs/version.js +1 -1
  12. package/dist/esm/BaseClient.mjs +2 -2
  13. package/dist/esm/api/resources/domains/types/RecordStatus.d.mts +2 -1
  14. package/dist/esm/api/resources/domains/types/RecordStatus.mjs +2 -1
  15. package/dist/esm/api/resources/domains/types/VerificationStatus.d.mts +4 -1
  16. package/dist/esm/api/resources/domains/types/VerificationStatus.mjs +4 -1
  17. package/dist/esm/serialization/resources/domains/types/RecordStatus.d.mts +1 -1
  18. package/dist/esm/serialization/resources/domains/types/RecordStatus.mjs +1 -1
  19. package/dist/esm/serialization/resources/domains/types/VerificationStatus.d.mts +1 -1
  20. package/dist/esm/serialization/resources/domains/types/VerificationStatus.mjs +1 -1
  21. package/dist/esm/version.d.mts +1 -1
  22. package/dist/esm/version.mjs +1 -1
  23. package/dist/llms-full.txt +56 -40
  24. package/package.json +1 -1
@@ -43,8 +43,8 @@ function normalizeClientOptions(options) {
43
43
  const headers = (0, headers_js_1.mergeHeaders)({
44
44
  "X-Fern-Language": "JavaScript",
45
45
  "X-Fern-SDK-Name": "agentmail",
46
- "X-Fern-SDK-Version": "0.1.14",
47
- "User-Agent": "agentmail/0.1.14",
46
+ "X-Fern-SDK-Version": "0.1.15",
47
+ "User-Agent": "agentmail/0.1.15",
48
48
  "X-Fern-Runtime": core.RUNTIME.type,
49
49
  "X-Fern-Runtime-Version": core.RUNTIME.version,
50
50
  }, options === null || options === void 0 ? void 0 : options.headers);
@@ -1,5 +1,6 @@
1
1
  export declare const RecordStatus: {
2
2
  readonly Missing: "MISSING";
3
- readonly Verified: "VERIFIED";
3
+ readonly Invalid: "INVALID";
4
+ readonly Valid: "VALID";
4
5
  };
5
6
  export type RecordStatus = (typeof RecordStatus)[keyof typeof RecordStatus];
@@ -4,5 +4,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.RecordStatus = void 0;
5
5
  exports.RecordStatus = {
6
6
  Missing: "MISSING",
7
- Verified: "VERIFIED",
7
+ Invalid: "INVALID",
8
+ Valid: "VALID",
8
9
  };
@@ -1,6 +1,9 @@
1
1
  export declare const VerificationStatus: {
2
+ readonly NotStarted: "NOT_STARTED";
2
3
  readonly Pending: "PENDING";
4
+ readonly Invalid: "INVALID";
5
+ readonly Failed: "FAILED";
3
6
  readonly Verifying: "VERIFYING";
4
- readonly Ready: "READY";
7
+ readonly Verified: "VERIFIED";
5
8
  };
6
9
  export type VerificationStatus = (typeof VerificationStatus)[keyof typeof VerificationStatus];
@@ -3,7 +3,10 @@
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.VerificationStatus = void 0;
5
5
  exports.VerificationStatus = {
6
+ NotStarted: "NOT_STARTED",
6
7
  Pending: "PENDING",
8
+ Invalid: "INVALID",
9
+ Failed: "FAILED",
7
10
  Verifying: "VERIFYING",
8
- Ready: "READY",
11
+ Verified: "VERIFIED",
9
12
  };
@@ -3,5 +3,5 @@ import * as core from "../../../../core/index.js";
3
3
  import type * as serializers from "../../../index.js";
4
4
  export declare const RecordStatus: core.serialization.Schema<serializers.RecordStatus.Raw, AgentMail.RecordStatus>;
5
5
  export declare namespace RecordStatus {
6
- type Raw = "MISSING" | "VERIFIED";
6
+ type Raw = "MISSING" | "INVALID" | "VALID";
7
7
  }
@@ -36,4 +36,4 @@ var __importStar = (this && this.__importStar) || (function () {
36
36
  Object.defineProperty(exports, "__esModule", { value: true });
37
37
  exports.RecordStatus = void 0;
38
38
  const core = __importStar(require("../../../../core/index.js"));
39
- exports.RecordStatus = core.serialization.enum_(["MISSING", "VERIFIED"]);
39
+ exports.RecordStatus = core.serialization.enum_(["MISSING", "INVALID", "VALID"]);
@@ -3,5 +3,5 @@ import * as core from "../../../../core/index.js";
3
3
  import type * as serializers from "../../../index.js";
4
4
  export declare const VerificationStatus: core.serialization.Schema<serializers.VerificationStatus.Raw, AgentMail.VerificationStatus>;
5
5
  export declare namespace VerificationStatus {
6
- type Raw = "PENDING" | "VERIFYING" | "READY";
6
+ type Raw = "NOT_STARTED" | "PENDING" | "INVALID" | "FAILED" | "VERIFYING" | "VERIFIED";
7
7
  }
@@ -36,4 +36,4 @@ var __importStar = (this && this.__importStar) || (function () {
36
36
  Object.defineProperty(exports, "__esModule", { value: true });
37
37
  exports.VerificationStatus = void 0;
38
38
  const core = __importStar(require("../../../../core/index.js"));
39
- exports.VerificationStatus = core.serialization.enum_(["PENDING", "VERIFYING", "READY"]);
39
+ exports.VerificationStatus = core.serialization.enum_(["NOT_STARTED", "PENDING", "INVALID", "FAILED", "VERIFYING", "VERIFIED"]);
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "0.1.14";
1
+ export declare const SDK_VERSION = "0.1.15";
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SDK_VERSION = void 0;
4
- exports.SDK_VERSION = "0.1.14";
4
+ exports.SDK_VERSION = "0.1.15";
@@ -6,8 +6,8 @@ export function normalizeClientOptions(options) {
6
6
  const headers = mergeHeaders({
7
7
  "X-Fern-Language": "JavaScript",
8
8
  "X-Fern-SDK-Name": "agentmail",
9
- "X-Fern-SDK-Version": "0.1.14",
10
- "User-Agent": "agentmail/0.1.14",
9
+ "X-Fern-SDK-Version": "0.1.15",
10
+ "User-Agent": "agentmail/0.1.15",
11
11
  "X-Fern-Runtime": core.RUNTIME.type,
12
12
  "X-Fern-Runtime-Version": core.RUNTIME.version,
13
13
  }, options === null || options === void 0 ? void 0 : options.headers);
@@ -1,5 +1,6 @@
1
1
  export declare const RecordStatus: {
2
2
  readonly Missing: "MISSING";
3
- readonly Verified: "VERIFIED";
3
+ readonly Invalid: "INVALID";
4
+ readonly Valid: "VALID";
4
5
  };
5
6
  export type RecordStatus = (typeof RecordStatus)[keyof typeof RecordStatus];
@@ -1,5 +1,6 @@
1
1
  // This file was auto-generated by Fern from our API Definition.
2
2
  export const RecordStatus = {
3
3
  Missing: "MISSING",
4
- Verified: "VERIFIED",
4
+ Invalid: "INVALID",
5
+ Valid: "VALID",
5
6
  };
@@ -1,6 +1,9 @@
1
1
  export declare const VerificationStatus: {
2
+ readonly NotStarted: "NOT_STARTED";
2
3
  readonly Pending: "PENDING";
4
+ readonly Invalid: "INVALID";
5
+ readonly Failed: "FAILED";
3
6
  readonly Verifying: "VERIFYING";
4
- readonly Ready: "READY";
7
+ readonly Verified: "VERIFIED";
5
8
  };
6
9
  export type VerificationStatus = (typeof VerificationStatus)[keyof typeof VerificationStatus];
@@ -1,6 +1,9 @@
1
1
  // This file was auto-generated by Fern from our API Definition.
2
2
  export const VerificationStatus = {
3
+ NotStarted: "NOT_STARTED",
3
4
  Pending: "PENDING",
5
+ Invalid: "INVALID",
6
+ Failed: "FAILED",
4
7
  Verifying: "VERIFYING",
5
- Ready: "READY",
8
+ Verified: "VERIFIED",
6
9
  };
@@ -3,5 +3,5 @@ import * as core from "../../../../core/index.mjs";
3
3
  import type * as serializers from "../../../index.mjs";
4
4
  export declare const RecordStatus: core.serialization.Schema<serializers.RecordStatus.Raw, AgentMail.RecordStatus>;
5
5
  export declare namespace RecordStatus {
6
- type Raw = "MISSING" | "VERIFIED";
6
+ type Raw = "MISSING" | "INVALID" | "VALID";
7
7
  }
@@ -1,3 +1,3 @@
1
1
  // This file was auto-generated by Fern from our API Definition.
2
2
  import * as core from "../../../../core/index.mjs";
3
- export const RecordStatus = core.serialization.enum_(["MISSING", "VERIFIED"]);
3
+ export const RecordStatus = core.serialization.enum_(["MISSING", "INVALID", "VALID"]);
@@ -3,5 +3,5 @@ import * as core from "../../../../core/index.mjs";
3
3
  import type * as serializers from "../../../index.mjs";
4
4
  export declare const VerificationStatus: core.serialization.Schema<serializers.VerificationStatus.Raw, AgentMail.VerificationStatus>;
5
5
  export declare namespace VerificationStatus {
6
- type Raw = "PENDING" | "VERIFYING" | "READY";
6
+ type Raw = "NOT_STARTED" | "PENDING" | "INVALID" | "FAILED" | "VERIFYING" | "VERIFIED";
7
7
  }
@@ -1,3 +1,3 @@
1
1
  // This file was auto-generated by Fern from our API Definition.
2
2
  import * as core from "../../../../core/index.mjs";
3
- export const VerificationStatus = core.serialization.enum_(["PENDING", "VERIFYING", "READY"]);
3
+ export const VerificationStatus = core.serialization.enum_(["NOT_STARTED", "PENDING", "INVALID", "FAILED", "VERIFYING", "VERIFIED"]);
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "0.1.14";
1
+ export declare const SDK_VERSION = "0.1.15";
@@ -1 +1 @@
1
- export const SDK_VERSION = "0.1.14";
1
+ export const SDK_VERSION = "0.1.15";
@@ -5,7 +5,7 @@
5
5
  <Tip title="Welcome to AgentMail!" icon="fa-solid fa-star" />
6
6
 
7
7
  <Frame caption="We're excited to have you onboard!">
8
- <img src="file:7e31e22e-f85c-4c5a-b25b-b83579d445d7" alt="We're excited to have you onboard!" />
8
+ <img src="file:e53d2b86-fc27-4718-9b51-14cf6ad0cf40" alt="We're excited to have you onboard!" />
9
9
  </Frame>
10
10
 
11
11
  AgentMail is an API platform for giving AI agents their own inboxes to send, receive, and act upon emails. This allows agents to assume their own identity and communicate via the universal protocol of email with services, people, and other agents.
@@ -171,7 +171,7 @@ This guide will walk you through installing the AgentMail SDK, authenticating wi
171
171
  <Step title="Create an API Key">
172
172
  Now that you're in the console, you'll need to create an API key to
173
173
  authenticate your requests. Navigate to the API Keys section in your console
174
- dashboard. ![API Key Creation Screenshot](file:7ec4475a-6fe5-4cfc-8e16-e8aa1dc51a8d) Click
174
+ dashboard. ![API Key Creation Screenshot](file:da49aed8-52d2-4bb8-9fca-f018e82fe721) Click
175
175
  "Create New API Key" and give it a descriptive name. Once created, copy the
176
176
  API key and store it securely. Create a `.env` file in your project's root
177
177
  directory and add your key to it. We recommend using environment variables to
@@ -322,7 +322,7 @@ Unlike traditional email providers that are designed for human scale, AgentMail
322
322
 
323
323
  As the diagram below illustrates, your `organization` is the top-level container that holds all your resources. You can provision many `Inboxes` within your `organization`, each with its own `Threads`, `Messages`, and `Attachments`, allowing you to manage a large fleet of agents seamlessly.
324
324
 
325
- <img src="file:c85a1de1-ac59-4d3c-bf3d-be58c1e545fe" alt="AgentMail Organizational Hierarchy" />
325
+ <img src="file:ca8f8d7a-74d3-4f45-8b91-767788e96af6" alt="AgentMail Organizational Hierarchy" />
326
326
 
327
327
  <Steps>
328
328
  <Step title="Organization">
@@ -742,7 +742,7 @@ Here is an example of a well-structured and styled HTML header:
742
742
  </CodeBlocks>
743
743
 
744
744
  <Frame caption="Look how pretty this message looks!">
745
- <img src="file:d544decc-f10a-4531-a0ed-c5d90ad5c4bd" alt="rendered css" />
745
+ <img src="file:149f72bc-a78d-4519-95c1-fa25a108d242" alt="rendered css" />
746
746
  </Frame>
747
747
 
748
748
  ## Receiving `Messages`
@@ -1981,7 +1981,7 @@ Configuring your domain is a three-step process: add the domain via API, copy th
1981
1981
  After creating your domain in the AgentMail Console, click the "Download BIND Zone File" button to get the complete zone file.
1982
1982
 
1983
1983
  <Frame caption="Downloading BIND zone file from AgentMail Console">
1984
- <img src="file:d4a4f23e-5b69-4258-9516-a9b5bce15090" alt="Download BIND Zone File from Console" />
1984
+ <img src="file:b2476421-c898-403a-8fb9-1c285f2475ba" alt="Download BIND Zone File from Console" />
1985
1985
  </Frame>
1986
1986
 
1987
1987
  <Tabs>
@@ -1992,13 +1992,13 @@ Configuring your domain is a three-step process: add the domain via API, copy th
1992
1992
  2. Navigate to **DNS > Records**
1993
1993
 
1994
1994
  <Frame caption="This is what the page looks like">
1995
- <img src="file:dc3c97c7-14ba-4e76-8043-9f4db1d4ee15" alt="Cloudflare BIND Import" />
1995
+ <img src="file:1fb7b8c5-abf2-40f4-8580-8b50008be7b5" alt="Cloudflare BIND Import" />
1996
1996
  </Frame>
1997
1997
 
1998
1998
  3. Click **"Import and Export"**
1999
1999
 
2000
2000
  <Frame caption="You should be able to just drop the file in">
2001
- <img src="file:2c1ab1ff-9580-4873-bd7c-71bef79ba387" alt="Cloudflare BIND Import" />
2001
+ <img src="file:f1d72f77-daad-4cab-af9d-7ed652ff7d03" alt="Cloudflare BIND Import" />
2002
2002
  </Frame>
2003
2003
 
2004
2004
  4. Upload the downloaded BIND zone file as is
@@ -2011,13 +2011,13 @@ Configuring your domain is a three-step process: add the domain via API, copy th
2011
2011
  2. Click **"Import zone file"** in the top right corner
2012
2012
 
2013
2013
  <Frame caption="Importing BIND zone file in AWS Route 53">
2014
- <img src="file:bc92f8b9-ca2b-42b3-80d7-7a8bad684cbb" alt="AWS Route 53 BIND Import" />
2014
+ <img src="file:1902dcea-b3a3-4d84-a2ae-c368b1e7f573" alt="AWS Route 53 BIND Import" />
2015
2015
  </Frame>
2016
2016
 
2017
2017
  3. Paste the CONTENTS of downloaded BIND zone file
2018
2018
 
2019
2019
  <Frame caption="Open the file with text editor and paste the contents. It should look similar to what we have in this image.">
2020
- <img src="file:85169b02-214a-41fe-9e04-7ef8eff1fa2c" alt="AWS Route 53 BIND Import" />
2020
+ <img src="file:253c47aa-4c82-4d30-8dd6-21f74cb60b8d" alt="AWS Route 53 BIND Import" />
2021
2021
  </Frame>
2022
2022
 
2023
2023
  4. Review the records and click **"Import"**
@@ -2046,13 +2046,13 @@ Configuring your domain is a three-step process: add the domain via API, copy th
2046
2046
  2. Navigate to the **DNS** subtab of the domain you want to send from
2047
2047
 
2048
2048
  <Frame caption="Click on this button!">
2049
- <img src="file:afc83fd7-56ca-4401-a9bb-8b2b97dc1c98" alt="Porkbun DNS Management" />
2049
+ <img src="file:7a037d10-18ee-46d3-82bf-ffd2ce684655" alt="Porkbun DNS Management" />
2050
2050
  </Frame>
2051
2051
 
2052
2052
  3. Scroll down to the quick upload section
2053
2053
 
2054
2054
  <Frame caption="Upload your BIND zone file here">
2055
- <img src="file:1338c4d9-2241-4bb6-9004-47b443bda49d" alt="Porkbun Zone File Import" />
2055
+ <img src="file:f1a1b25e-e3c4-41ef-afce-e16d23a491e5" alt="Porkbun Zone File Import" />
2056
2056
  </Frame>
2057
2057
 
2058
2058
  4. Upload the downloaded BIND zone file as is
@@ -2870,13 +2870,13 @@ Ngrok creates a secure tunnel from a public URL to your local development server
2870
2870
 
2871
2871
  Visit [ngrok.com](https://ngrok.com/) and click "Sign up" to create a free account.
2872
2872
 
2873
- <img src="file:9836b58f-369e-4dcc-9813-b0ff5613e37d" alt="Ngrok homepage" />
2873
+ <img src="file:6fac6217-a180-4bb3-8d3b-d7d7bda85343" alt="Ngrok homepage" />
2874
2874
 
2875
2875
  ### 1.2 Choose your platform and install
2876
2876
 
2877
2877
  After logging in, ngrok will guide you through the setup process. Select your operating system and follow the installation instructions.
2878
2878
 
2879
- <img src="file:8a4a7ad0-6c03-4e13-a7dc-f986ce988f19" alt="Ngrok setup instructions" />
2879
+ <img src="file:dcf53b09-c6e2-494c-afdb-4be04830d89b" alt="Ngrok setup instructions" />
2880
2880
 
2881
2881
  For macOS, you can install ngrok via Homebrew:
2882
2882
 
@@ -2922,7 +2922,7 @@ ngrok http 3000
2922
2922
 
2923
2923
  You should see output similar to this:
2924
2924
 
2925
- <img src="file:dbd52d4e-2186-4925-85a8-40f7e08dd062" alt="Ngrok terminal output" />
2925
+ <img src="file:8b6e039d-c311-41d5-99c4-054c326bd107" alt="Ngrok terminal output" />
2926
2926
 
2927
2927
  Copy the **Forwarding URL** (e.g., `https://your-subdomain.ngrok-free.app`). This is the public URL that AgentMail will use to send webhooks.
2928
2928
 
@@ -3019,7 +3019,7 @@ python webhook_receiver.py
3019
3019
 
3020
3020
  Open your browser and visit `http://127.0.0.1:3000` to see the status page confirming your webhook receiver is running:
3021
3021
 
3022
- <img src="file:bea7ba98-6cd7-4dba-a73f-92b14c538c61" alt="Webhook receiver status page" />
3022
+ <img src="file:01ea6d2c-542b-44a1-b485-1fdc62145b1e" alt="Webhook receiver status page" />
3023
3023
 
3024
3024
  ## Testing Your Setup
3025
3025
 
@@ -3516,7 +3516,7 @@ How you send your emails is just as important as what you send. If you're sendin
3516
3516
  more natural to email providers. AgentMail's ability to create inboxes at
3517
3517
  scale makes this strategy easy to implement.
3518
3518
 
3519
- <img src="file:809afcab-40b2-4798-93ca-5b7cc0b19b7a" alt="Diagram comparing one inbox sending 1000 emails vs. five inboxes sending 200 each." />
3519
+ <img src="file:c8e83af7-6444-48c7-be8b-8b8531b5bb9d" alt="Diagram comparing one inbox sending 1000 emails vs. five inboxes sending 200 each." />
3520
3520
  </Step>
3521
3521
 
3522
3522
  <Step title="Protect Your Reputation with Multiple Domains">
@@ -5535,7 +5535,7 @@ Done
5535
5535
 
5536
5536
  Go to your AgentMail inbox and filter by labels to organize your emails:
5537
5537
 
5538
- <img src="file:4332462e-7efd-4695-a8e1-daa0da6699f4" alt="Test image" />
5538
+ <img src="file:80803caa-05f7-4aea-8dd0-1d65380cd6ba" alt="Test image" />
5539
5539
 
5540
5540
  **Filter by sentiment:**
5541
5541
 
@@ -16175,7 +16175,11 @@ components:
16175
16175
  type: array
16176
16176
  items:
16177
16177
  $ref: '#/components/schemas/type_events:EventType'
16178
- type_webhooks:InboxIds:
16178
+ type_events:PodIds:
16179
+ type: array
16180
+ items:
16181
+ type: string
16182
+ type_events:InboxIds:
16179
16183
  type: array
16180
16184
  items:
16181
16185
  type: string
@@ -16190,8 +16194,10 @@ components:
16190
16194
  $ref: '#/components/schemas/type_webhooks:Url'
16191
16195
  event_types:
16192
16196
  $ref: '#/components/schemas/type_events:EventTypes'
16197
+ pod_ids:
16198
+ $ref: '#/components/schemas/type_events:PodIds'
16193
16199
  inbox_ids:
16194
- $ref: '#/components/schemas/type_webhooks:InboxIds'
16200
+ $ref: '#/components/schemas/type_events:InboxIds'
16195
16201
  secret:
16196
16202
  type: string
16197
16203
  description: Secret for webhook signature verification.
@@ -16422,7 +16428,11 @@ components:
16422
16428
  type: array
16423
16429
  items:
16424
16430
  $ref: '#/components/schemas/type_events:EventType'
16425
- type_webhooks:InboxIds:
16431
+ type_events:PodIds:
16432
+ type: array
16433
+ items:
16434
+ type: string
16435
+ type_events:InboxIds:
16426
16436
  type: array
16427
16437
  items:
16428
16438
  type: string
@@ -16437,8 +16447,10 @@ components:
16437
16447
  $ref: '#/components/schemas/type_webhooks:Url'
16438
16448
  event_types:
16439
16449
  $ref: '#/components/schemas/type_events:EventTypes'
16450
+ pod_ids:
16451
+ $ref: '#/components/schemas/type_events:PodIds'
16440
16452
  inbox_ids:
16441
- $ref: '#/components/schemas/type_webhooks:InboxIds'
16453
+ $ref: '#/components/schemas/type_events:InboxIds'
16442
16454
  secret:
16443
16455
  type: string
16444
16456
  description: Secret for webhook signature verification.
@@ -16653,7 +16665,11 @@ components:
16653
16665
  type: array
16654
16666
  items:
16655
16667
  $ref: '#/components/schemas/type_events:EventType'
16656
- type_webhooks:InboxIds:
16668
+ type_events:PodIds:
16669
+ type: array
16670
+ items:
16671
+ type: string
16672
+ type_events:InboxIds:
16657
16673
  type: array
16658
16674
  items:
16659
16675
  type: string
@@ -16666,8 +16682,10 @@ components:
16666
16682
  $ref: '#/components/schemas/type_webhooks:Url'
16667
16683
  event_types:
16668
16684
  $ref: '#/components/schemas/type_events:EventTypes'
16685
+ pod_ids:
16686
+ $ref: '#/components/schemas/type_events:PodIds'
16669
16687
  inbox_ids:
16670
- $ref: '#/components/schemas/type_webhooks:InboxIds'
16688
+ $ref: '#/components/schemas/type_events:InboxIds'
16671
16689
  client_id:
16672
16690
  $ref: '#/components/schemas/type_webhooks:ClientId'
16673
16691
  required:
@@ -16684,8 +16702,10 @@ components:
16684
16702
  $ref: '#/components/schemas/type_webhooks:Url'
16685
16703
  event_types:
16686
16704
  $ref: '#/components/schemas/type_events:EventTypes'
16705
+ pod_ids:
16706
+ $ref: '#/components/schemas/type_events:PodIds'
16687
16707
  inbox_ids:
16688
- $ref: '#/components/schemas/type_webhooks:InboxIds'
16708
+ $ref: '#/components/schemas/type_events:InboxIds'
16689
16709
  secret:
16690
16710
  type: string
16691
16711
  description: Secret for webhook signature verification.
@@ -18221,6 +18241,14 @@ components:
18221
18241
  type: array
18222
18242
  items:
18223
18243
  $ref: '#/components/schemas/type_events:EventType'
18244
+ type_events:InboxIds:
18245
+ type: array
18246
+ items:
18247
+ type: string
18248
+ type_events:PodIds:
18249
+ type: array
18250
+ items:
18251
+ type: string
18224
18252
  type_websockets:Subscribed:
18225
18253
  type: object
18226
18254
  properties:
@@ -18232,15 +18260,9 @@ components:
18232
18260
  event_types:
18233
18261
  $ref: '#/components/schemas/type_events:EventTypes'
18234
18262
  inbox_ids:
18235
- type: array
18236
- items:
18237
- type: string
18238
- description: IDs of the inboxes that have been subscribed to.
18263
+ $ref: '#/components/schemas/type_events:InboxIds'
18239
18264
  pod_ids:
18240
- type: array
18241
- items:
18242
- type: string
18243
- description: IDs of the pods that have been subscribed to.
18265
+ $ref: '#/components/schemas/type_events:PodIds'
18244
18266
  required:
18245
18267
  - type
18246
18268
  type_events:EventId:
@@ -18875,15 +18897,9 @@ components:
18875
18897
  event_types:
18876
18898
  $ref: '#/components/schemas/type_events:EventTypes'
18877
18899
  inbox_ids:
18878
- type: array
18879
- items:
18880
- type: string
18881
- description: IDs of the inboxes to subscribe to.
18900
+ $ref: '#/components/schemas/type_events:InboxIds'
18882
18901
  pod_ids:
18883
- type: array
18884
- items:
18885
- type: string
18886
- description: IDs of the pods to subscribe to.
18902
+ $ref: '#/components/schemas/type_events:PodIds'
18887
18903
  required:
18888
18904
  - type
18889
18905
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentmail",
3
- "version": "0.1.14",
3
+ "version": "0.1.15",
4
4
  "private": false,
5
5
  "repository": "github:agentmail-to/agentmail-node",
6
6
  "type": "commonjs",