agentmail 0.0.34 → 0.0.35

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 (148) hide show
  1. package/Client.d.ts +3 -0
  2. package/Client.js +11 -6
  3. package/api/resources/contexts/client/Client.d.ts +76 -0
  4. package/api/resources/contexts/client/Client.js +327 -0
  5. package/api/resources/contexts/client/index.d.ts +1 -0
  6. package/api/resources/contexts/client/index.js +17 -0
  7. package/api/resources/contexts/client/requests/ListContextsRequest.d.ts +12 -0
  8. package/api/resources/contexts/client/requests/ListContextsRequest.js +5 -0
  9. package/api/resources/contexts/client/requests/index.d.ts +1 -0
  10. package/api/resources/contexts/client/requests/index.js +2 -0
  11. package/api/resources/contexts/index.d.ts +2 -0
  12. package/api/resources/contexts/index.js +18 -0
  13. package/api/resources/contexts/types/Context.d.ts +15 -0
  14. package/api/resources/contexts/types/Context.js +5 -0
  15. package/api/resources/contexts/types/ContextData.d.ts +7 -0
  16. package/api/resources/contexts/types/ContextData.js +5 -0
  17. package/api/resources/contexts/types/ContextId.d.ts +7 -0
  18. package/api/resources/contexts/types/ContextId.js +5 -0
  19. package/api/resources/contexts/types/ContextIsEvent.d.ts +7 -0
  20. package/api/resources/contexts/types/ContextIsEvent.js +5 -0
  21. package/api/resources/contexts/types/ContextMetadata.d.ts +7 -0
  22. package/api/resources/contexts/types/ContextMetadata.js +5 -0
  23. package/api/resources/contexts/types/ContextType.d.ts +7 -0
  24. package/api/resources/contexts/types/ContextType.js +5 -0
  25. package/api/resources/contexts/types/CreateContextRequest.d.ts +10 -0
  26. package/api/resources/contexts/types/CreateContextRequest.js +5 -0
  27. package/api/resources/contexts/types/ListContextsResponse.d.ts +11 -0
  28. package/api/resources/contexts/types/ListContextsResponse.js +5 -0
  29. package/api/resources/contexts/types/index.d.ts +8 -0
  30. package/api/resources/contexts/types/index.js +24 -0
  31. package/api/resources/drafts/client/Client.js +2 -2
  32. package/api/resources/drafts/types/ListDraftsResponse.d.ts +1 -1
  33. package/api/resources/inboxes/client/Client.js +3 -3
  34. package/api/resources/inboxes/resources/drafts/client/Client.js +4 -4
  35. package/api/resources/inboxes/resources/messages/client/Client.js +6 -6
  36. package/api/resources/inboxes/resources/threads/client/Client.js +2 -2
  37. package/api/resources/inboxes/types/Inbox.d.ts +2 -0
  38. package/api/resources/inboxes/types/ListInboxesResponse.d.ts +1 -1
  39. package/api/resources/index.d.ts +3 -0
  40. package/api/resources/index.js +4 -1
  41. package/api/resources/messages/types/ListMessagesResponse.d.ts +1 -1
  42. package/api/resources/threads/client/Client.js +2 -2
  43. package/api/resources/threads/types/ListThreadsResponse.d.ts +1 -1
  44. package/api/resources/threads/types/Thread.d.ts +1 -1
  45. package/api/resources/webhooks/client/Client.js +4 -4
  46. package/api/resources/webhooks/types/ListWebhooksResponse.d.ts +1 -1
  47. package/api/types/PageToken.d.ts +1 -1
  48. package/dist/Client.d.ts +3 -0
  49. package/dist/Client.js +11 -6
  50. package/dist/api/resources/contexts/client/Client.d.ts +76 -0
  51. package/dist/api/resources/contexts/client/Client.js +327 -0
  52. package/dist/api/resources/contexts/client/index.d.ts +1 -0
  53. package/dist/api/resources/contexts/client/index.js +17 -0
  54. package/dist/api/resources/contexts/client/requests/ListContextsRequest.d.ts +12 -0
  55. package/dist/api/resources/contexts/client/requests/ListContextsRequest.js +5 -0
  56. package/dist/api/resources/contexts/client/requests/index.d.ts +1 -0
  57. package/dist/api/resources/contexts/client/requests/index.js +2 -0
  58. package/dist/api/resources/contexts/index.d.ts +2 -0
  59. package/dist/api/resources/contexts/index.js +18 -0
  60. package/dist/api/resources/contexts/types/Context.d.ts +15 -0
  61. package/dist/api/resources/contexts/types/Context.js +5 -0
  62. package/dist/api/resources/contexts/types/ContextData.d.ts +7 -0
  63. package/dist/api/resources/contexts/types/ContextData.js +5 -0
  64. package/dist/api/resources/contexts/types/ContextId.d.ts +7 -0
  65. package/dist/api/resources/contexts/types/ContextId.js +5 -0
  66. package/dist/api/resources/contexts/types/ContextIsEvent.d.ts +7 -0
  67. package/dist/api/resources/contexts/types/ContextIsEvent.js +5 -0
  68. package/dist/api/resources/contexts/types/ContextMetadata.d.ts +7 -0
  69. package/dist/api/resources/contexts/types/ContextMetadata.js +5 -0
  70. package/dist/api/resources/contexts/types/ContextType.d.ts +7 -0
  71. package/dist/api/resources/contexts/types/ContextType.js +5 -0
  72. package/dist/api/resources/contexts/types/CreateContextRequest.d.ts +10 -0
  73. package/dist/api/resources/contexts/types/CreateContextRequest.js +5 -0
  74. package/dist/api/resources/contexts/types/ListContextsResponse.d.ts +11 -0
  75. package/dist/api/resources/contexts/types/ListContextsResponse.js +5 -0
  76. package/dist/api/resources/contexts/types/index.d.ts +8 -0
  77. package/dist/api/resources/contexts/types/index.js +24 -0
  78. package/dist/api/resources/drafts/client/Client.js +2 -2
  79. package/dist/api/resources/drafts/types/ListDraftsResponse.d.ts +1 -1
  80. package/dist/api/resources/inboxes/client/Client.js +3 -3
  81. package/dist/api/resources/inboxes/resources/drafts/client/Client.js +4 -4
  82. package/dist/api/resources/inboxes/resources/messages/client/Client.js +6 -6
  83. package/dist/api/resources/inboxes/resources/threads/client/Client.js +2 -2
  84. package/dist/api/resources/inboxes/types/Inbox.d.ts +2 -0
  85. package/dist/api/resources/inboxes/types/ListInboxesResponse.d.ts +1 -1
  86. package/dist/api/resources/index.d.ts +3 -0
  87. package/dist/api/resources/index.js +4 -1
  88. package/dist/api/resources/messages/types/ListMessagesResponse.d.ts +1 -1
  89. package/dist/api/resources/threads/client/Client.js +2 -2
  90. package/dist/api/resources/threads/types/ListThreadsResponse.d.ts +1 -1
  91. package/dist/api/resources/threads/types/Thread.d.ts +1 -1
  92. package/dist/api/resources/webhooks/client/Client.js +4 -4
  93. package/dist/api/resources/webhooks/types/ListWebhooksResponse.d.ts +1 -1
  94. package/dist/api/types/PageToken.d.ts +1 -1
  95. package/dist/serialization/resources/contexts/index.d.ts +1 -0
  96. package/dist/serialization/resources/contexts/index.js +17 -0
  97. package/dist/serialization/resources/contexts/types/Context.d.ts +23 -0
  98. package/dist/serialization/resources/contexts/types/Context.js +54 -0
  99. package/dist/serialization/resources/contexts/types/ContextData.d.ts +10 -0
  100. package/dist/serialization/resources/contexts/types/ContextData.js +41 -0
  101. package/dist/serialization/resources/contexts/types/ContextId.d.ts +10 -0
  102. package/dist/serialization/resources/contexts/types/ContextId.js +41 -0
  103. package/dist/serialization/resources/contexts/types/ContextIsEvent.d.ts +10 -0
  104. package/dist/serialization/resources/contexts/types/ContextIsEvent.js +41 -0
  105. package/dist/serialization/resources/contexts/types/ContextMetadata.d.ts +10 -0
  106. package/dist/serialization/resources/contexts/types/ContextMetadata.js +41 -0
  107. package/dist/serialization/resources/contexts/types/ContextType.d.ts +10 -0
  108. package/dist/serialization/resources/contexts/types/ContextType.js +41 -0
  109. package/dist/serialization/resources/contexts/types/CreateContextRequest.d.ts +19 -0
  110. package/dist/serialization/resources/contexts/types/CreateContextRequest.js +50 -0
  111. package/dist/serialization/resources/contexts/types/ListContextsResponse.d.ts +19 -0
  112. package/dist/serialization/resources/contexts/types/ListContextsResponse.js +50 -0
  113. package/dist/serialization/resources/contexts/types/index.d.ts +8 -0
  114. package/dist/serialization/resources/contexts/types/index.js +24 -0
  115. package/dist/serialization/resources/inboxes/types/Inbox.d.ts +1 -0
  116. package/dist/serialization/resources/inboxes/types/Inbox.js +1 -0
  117. package/dist/serialization/resources/index.d.ts +2 -0
  118. package/dist/serialization/resources/index.js +3 -1
  119. package/dist/version.d.ts +1 -1
  120. package/dist/version.js +1 -1
  121. package/package.json +1 -1
  122. package/reference.md +203 -0
  123. package/serialization/resources/contexts/index.d.ts +1 -0
  124. package/serialization/resources/contexts/index.js +17 -0
  125. package/serialization/resources/contexts/types/Context.d.ts +23 -0
  126. package/serialization/resources/contexts/types/Context.js +54 -0
  127. package/serialization/resources/contexts/types/ContextData.d.ts +10 -0
  128. package/serialization/resources/contexts/types/ContextData.js +41 -0
  129. package/serialization/resources/contexts/types/ContextId.d.ts +10 -0
  130. package/serialization/resources/contexts/types/ContextId.js +41 -0
  131. package/serialization/resources/contexts/types/ContextIsEvent.d.ts +10 -0
  132. package/serialization/resources/contexts/types/ContextIsEvent.js +41 -0
  133. package/serialization/resources/contexts/types/ContextMetadata.d.ts +10 -0
  134. package/serialization/resources/contexts/types/ContextMetadata.js +41 -0
  135. package/serialization/resources/contexts/types/ContextType.d.ts +10 -0
  136. package/serialization/resources/contexts/types/ContextType.js +41 -0
  137. package/serialization/resources/contexts/types/CreateContextRequest.d.ts +19 -0
  138. package/serialization/resources/contexts/types/CreateContextRequest.js +50 -0
  139. package/serialization/resources/contexts/types/ListContextsResponse.d.ts +19 -0
  140. package/serialization/resources/contexts/types/ListContextsResponse.js +50 -0
  141. package/serialization/resources/contexts/types/index.d.ts +8 -0
  142. package/serialization/resources/contexts/types/index.js +24 -0
  143. package/serialization/resources/inboxes/types/Inbox.d.ts +1 -0
  144. package/serialization/resources/inboxes/types/Inbox.js +1 -0
  145. package/serialization/resources/index.d.ts +2 -0
  146. package/serialization/resources/index.js +3 -1
  147. package/version.d.ts +1 -1
  148. package/version.js +1 -1
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,11 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as AgentMail from "../../../index";
5
+ export interface ListContextsResponse {
6
+ count: AgentMail.Count;
7
+ limit?: AgentMail.Limit;
8
+ nextPageToken?: AgentMail.PageToken;
9
+ /** Ordered by `created_at` descending. */
10
+ contexts: AgentMail.Context[];
11
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,8 @@
1
+ export * from "./ContextId";
2
+ export * from "./ContextType";
3
+ export * from "./ContextData";
4
+ export * from "./ContextMetadata";
5
+ export * from "./ContextIsEvent";
6
+ export * from "./Context";
7
+ export * from "./ListContextsResponse";
8
+ export * from "./CreateContextRequest";
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./ContextId"), exports);
18
+ __exportStar(require("./ContextType"), exports);
19
+ __exportStar(require("./ContextData"), exports);
20
+ __exportStar(require("./ContextMetadata"), exports);
21
+ __exportStar(require("./ContextIsEvent"), exports);
22
+ __exportStar(require("./Context"), exports);
23
+ __exportStar(require("./ListContextsResponse"), exports);
24
+ __exportStar(require("./CreateContextRequest"), exports);
@@ -89,7 +89,7 @@ class Drafts {
89
89
  const _response = yield core.fetcher({
90
90
  url: (0, url_join_1.default)((_b = (_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AgentMailEnvironment.Production, "/v0/drafts"),
91
91
  method: "GET",
92
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.34", "User-Agent": "agentmail/0.0.34", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
92
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.35", "User-Agent": "agentmail/0.0.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
93
93
  contentType: "application/json",
94
94
  queryParameters: _queryParams,
95
95
  requestType: "json",
@@ -153,7 +153,7 @@ class Drafts {
153
153
  const _response = yield core.fetcher({
154
154
  url: (0, url_join_1.default)((_b = (_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AgentMailEnvironment.Production, `/v0/drafts/${encodeURIComponent(serializers.DraftId.jsonOrThrow(draftId))}`),
155
155
  method: "GET",
156
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.34", "User-Agent": "agentmail/0.0.34", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
156
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.35", "User-Agent": "agentmail/0.0.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
157
157
  contentType: "application/json",
158
158
  requestType: "json",
159
159
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -6,6 +6,6 @@ export interface ListDraftsResponse {
6
6
  count: AgentMail.Count;
7
7
  limit?: AgentMail.Limit;
8
8
  nextPageToken?: AgentMail.PageToken;
9
- /** Draft items. Ordered by `updated_at` descending. */
9
+ /** Ordered by `updated_at` descending. */
10
10
  drafts: AgentMail.DraftItem[];
11
11
  }
@@ -95,7 +95,7 @@ class Inboxes {
95
95
  const _response = yield core.fetcher({
96
96
  url: (0, url_join_1.default)((_b = (_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AgentMailEnvironment.Production, "/v0/inboxes"),
97
97
  method: "GET",
98
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.34", "User-Agent": "agentmail/0.0.34", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
98
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.35", "User-Agent": "agentmail/0.0.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
99
99
  contentType: "application/json",
100
100
  queryParameters: _queryParams,
101
101
  requestType: "json",
@@ -148,7 +148,7 @@ class Inboxes {
148
148
  const _response = yield core.fetcher({
149
149
  url: (0, url_join_1.default)((_b = (_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AgentMailEnvironment.Production, `/v0/inboxes/${encodeURIComponent(serializers.inboxes.InboxId.jsonOrThrow(inboxId))}`),
150
150
  method: "GET",
151
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.34", "User-Agent": "agentmail/0.0.34", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
151
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.35", "User-Agent": "agentmail/0.0.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
152
152
  contentType: "application/json",
153
153
  requestType: "json",
154
154
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -215,7 +215,7 @@ class Inboxes {
215
215
  const _response = yield core.fetcher({
216
216
  url: (0, url_join_1.default)((_b = (_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AgentMailEnvironment.Production, "/v0/inboxes"),
217
217
  method: "POST",
218
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.34", "User-Agent": "agentmail/0.0.34", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
218
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.35", "User-Agent": "agentmail/0.0.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
219
219
  contentType: "application/json",
220
220
  requestType: "json",
221
221
  body: serializers.inboxes.CreateInboxRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -90,7 +90,7 @@ class Drafts {
90
90
  const _response = yield core.fetcher({
91
91
  url: (0, url_join_1.default)((_b = (_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AgentMailEnvironment.Production, `/v0/inboxes/${encodeURIComponent(serializers.inboxes.InboxId.jsonOrThrow(inboxId))}/drafts`),
92
92
  method: "GET",
93
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.34", "User-Agent": "agentmail/0.0.34", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
93
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.35", "User-Agent": "agentmail/0.0.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
94
94
  contentType: "application/json",
95
95
  queryParameters: _queryParams,
96
96
  requestType: "json",
@@ -155,7 +155,7 @@ class Drafts {
155
155
  const _response = yield core.fetcher({
156
156
  url: (0, url_join_1.default)((_b = (_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AgentMailEnvironment.Production, `/v0/inboxes/${encodeURIComponent(serializers.inboxes.InboxId.jsonOrThrow(inboxId))}/drafts/${encodeURIComponent(serializers.DraftId.jsonOrThrow(draftId))}`),
157
157
  method: "GET",
158
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.34", "User-Agent": "agentmail/0.0.34", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
158
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.35", "User-Agent": "agentmail/0.0.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
159
159
  contentType: "application/json",
160
160
  requestType: "json",
161
161
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -227,7 +227,7 @@ class Drafts {
227
227
  const _response = yield core.fetcher({
228
228
  url: (0, url_join_1.default)((_b = (_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AgentMailEnvironment.Production, `/v0/inboxes/${encodeURIComponent(serializers.inboxes.InboxId.jsonOrThrow(inboxId))}/drafts`),
229
229
  method: "POST",
230
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.34", "User-Agent": "agentmail/0.0.34", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
230
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.35", "User-Agent": "agentmail/0.0.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
231
231
  contentType: "application/json",
232
232
  requestType: "json",
233
233
  body: serializers.CreateDraftRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -298,7 +298,7 @@ class Drafts {
298
298
  const _response = yield core.fetcher({
299
299
  url: (0, url_join_1.default)((_b = (_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AgentMailEnvironment.Production, `/v0/inboxes/${encodeURIComponent(serializers.inboxes.InboxId.jsonOrThrow(inboxId))}/drafts/${encodeURIComponent(serializers.DraftId.jsonOrThrow(draftId))}/send`),
300
300
  method: "POST",
301
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.34", "User-Agent": "agentmail/0.0.34", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
301
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.35", "User-Agent": "agentmail/0.0.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
302
302
  contentType: "application/json",
303
303
  requestType: "json",
304
304
  body: serializers.UpdateMessageRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -90,7 +90,7 @@ class Messages {
90
90
  const _response = yield core.fetcher({
91
91
  url: (0, url_join_1.default)((_b = (_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AgentMailEnvironment.Production, `/v0/inboxes/${encodeURIComponent(serializers.inboxes.InboxId.jsonOrThrow(inboxId))}/messages`),
92
92
  method: "GET",
93
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.34", "User-Agent": "agentmail/0.0.34", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
93
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.35", "User-Agent": "agentmail/0.0.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
94
94
  contentType: "application/json",
95
95
  queryParameters: _queryParams,
96
96
  requestType: "json",
@@ -155,7 +155,7 @@ class Messages {
155
155
  const _response = yield core.fetcher({
156
156
  url: (0, url_join_1.default)((_b = (_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AgentMailEnvironment.Production, `/v0/inboxes/${encodeURIComponent(serializers.inboxes.InboxId.jsonOrThrow(inboxId))}/messages/${encodeURIComponent(serializers.MessageId.jsonOrThrow(messageId))}`),
157
157
  method: "GET",
158
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.34", "User-Agent": "agentmail/0.0.34", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
158
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.35", "User-Agent": "agentmail/0.0.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
159
159
  contentType: "application/json",
160
160
  requestType: "json",
161
161
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -212,7 +212,7 @@ class Messages {
212
212
  const _response = yield core.fetcher({
213
213
  url: (0, url_join_1.default)((_b = (_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AgentMailEnvironment.Production, `/v0/inboxes/${encodeURIComponent(serializers.inboxes.InboxId.jsonOrThrow(inboxId))}/messages/${encodeURIComponent(serializers.MessageId.jsonOrThrow(messageId))}/attachments/${encodeURIComponent(serializers.AttachmentId.jsonOrThrow(attachmentId))}`),
214
214
  method: "GET",
215
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.34", "User-Agent": "agentmail/0.0.34", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
215
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.35", "User-Agent": "agentmail/0.0.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
216
216
  contentType: "application/json",
217
217
  requestType: "json",
218
218
  responseType: "streaming",
@@ -282,7 +282,7 @@ class Messages {
282
282
  const _response = yield core.fetcher({
283
283
  url: (0, url_join_1.default)((_b = (_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AgentMailEnvironment.Production, `/v0/inboxes/${encodeURIComponent(serializers.inboxes.InboxId.jsonOrThrow(inboxId))}/messages/send`),
284
284
  method: "POST",
285
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.34", "User-Agent": "agentmail/0.0.34", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
285
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.35", "User-Agent": "agentmail/0.0.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
286
286
  contentType: "application/json",
287
287
  requestType: "json",
288
288
  body: serializers.SendMessageRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -374,7 +374,7 @@ class Messages {
374
374
  const _response = yield core.fetcher({
375
375
  url: (0, url_join_1.default)((_b = (_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AgentMailEnvironment.Production, `/v0/inboxes/${encodeURIComponent(serializers.inboxes.InboxId.jsonOrThrow(inboxId))}/messages/${encodeURIComponent(serializers.MessageId.jsonOrThrow(messageId))}/reply`),
376
376
  method: "POST",
377
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.34", "User-Agent": "agentmail/0.0.34", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
377
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.35", "User-Agent": "agentmail/0.0.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
378
378
  contentType: "application/json",
379
379
  requestType: "json",
380
380
  body: serializers.ReplyToMessageRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -460,7 +460,7 @@ class Messages {
460
460
  const _response = yield core.fetcher({
461
461
  url: (0, url_join_1.default)((_b = (_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AgentMailEnvironment.Production, `/v0/inboxes/${encodeURIComponent(serializers.inboxes.InboxId.jsonOrThrow(inboxId))}/messages/${encodeURIComponent(serializers.MessageId.jsonOrThrow(messageId))}`),
462
462
  method: "PATCH",
463
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.34", "User-Agent": "agentmail/0.0.34", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
463
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.35", "User-Agent": "agentmail/0.0.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
464
464
  contentType: "application/json",
465
465
  requestType: "json",
466
466
  body: serializers.UpdateMessageRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -90,7 +90,7 @@ class Threads {
90
90
  const _response = yield core.fetcher({
91
91
  url: (0, url_join_1.default)((_b = (_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AgentMailEnvironment.Production, `/v0/inboxes/${encodeURIComponent(serializers.inboxes.InboxId.jsonOrThrow(inboxId))}/threads`),
92
92
  method: "GET",
93
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.34", "User-Agent": "agentmail/0.0.34", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
93
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.35", "User-Agent": "agentmail/0.0.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
94
94
  contentType: "application/json",
95
95
  queryParameters: _queryParams,
96
96
  requestType: "json",
@@ -155,7 +155,7 @@ class Threads {
155
155
  const _response = yield core.fetcher({
156
156
  url: (0, url_join_1.default)((_b = (_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AgentMailEnvironment.Production, `/v0/inboxes/${encodeURIComponent(serializers.inboxes.InboxId.jsonOrThrow(inboxId))}/threads/${encodeURIComponent(serializers.ThreadId.jsonOrThrow(threadId))}`),
157
157
  method: "GET",
158
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.34", "User-Agent": "agentmail/0.0.34", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
158
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.35", "User-Agent": "agentmail/0.0.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
159
159
  contentType: "application/json",
160
160
  requestType: "json",
161
161
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -6,6 +6,8 @@ export interface Inbox {
6
6
  inboxId: AgentMail.inboxes.InboxId;
7
7
  /** Display name: `Display Name <username@domain.com>`. */
8
8
  displayName: string;
9
+ /** Time at which inbox was last updated. */
10
+ updatedAt: Date;
9
11
  /** Time at which inbox was created. */
10
12
  createdAt: Date;
11
13
  }
@@ -6,6 +6,6 @@ export interface ListInboxesResponse {
6
6
  count: AgentMail.Count;
7
7
  limit?: AgentMail.Limit;
8
8
  nextPageToken?: AgentMail.PageToken;
9
- /** Ordered by `created_at` ascending. */
9
+ /** Ordered by `created_at` descending. */
10
10
  inboxes: AgentMail.inboxes.Inbox[];
11
11
  }
@@ -1,4 +1,6 @@
1
1
  export * as inboxes from "./inboxes";
2
+ export * as contexts from "./contexts";
3
+ export * from "./contexts/types";
2
4
  export * as drafts from "./drafts";
3
5
  export * from "./drafts/types";
4
6
  export * as messages from "./messages";
@@ -8,6 +10,7 @@ export * from "./threads/types";
8
10
  export * as webhooks from "./webhooks";
9
11
  export * from "./webhooks/types";
10
12
  export * from "./messages/errors";
13
+ export * from "./contexts/client/requests";
11
14
  export * from "./drafts/client/requests";
12
15
  export * from "./threads/client/requests";
13
16
  export * from "./webhooks/client/requests";
@@ -36,8 +36,10 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
36
36
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
37
37
  };
38
38
  Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.webhooks = exports.threads = exports.messages = exports.drafts = exports.inboxes = void 0;
39
+ exports.webhooks = exports.threads = exports.messages = exports.drafts = exports.contexts = exports.inboxes = void 0;
40
40
  exports.inboxes = __importStar(require("./inboxes"));
41
+ exports.contexts = __importStar(require("./contexts"));
42
+ __exportStar(require("./contexts/types"), exports);
41
43
  exports.drafts = __importStar(require("./drafts"));
42
44
  __exportStar(require("./drafts/types"), exports);
43
45
  exports.messages = __importStar(require("./messages"));
@@ -47,6 +49,7 @@ __exportStar(require("./threads/types"), exports);
47
49
  exports.webhooks = __importStar(require("./webhooks"));
48
50
  __exportStar(require("./webhooks/types"), exports);
49
51
  __exportStar(require("./messages/errors"), exports);
52
+ __exportStar(require("./contexts/client/requests"), exports);
50
53
  __exportStar(require("./drafts/client/requests"), exports);
51
54
  __exportStar(require("./threads/client/requests"), exports);
52
55
  __exportStar(require("./webhooks/client/requests"), exports);
@@ -6,6 +6,6 @@ export interface ListMessagesResponse {
6
6
  count: AgentMail.Count;
7
7
  limit?: AgentMail.Limit;
8
8
  nextPageToken?: AgentMail.PageToken;
9
- /** Message items. Ordered by `timestamp` descending. */
9
+ /** Ordered by `timestamp` descending. */
10
10
  messages: AgentMail.MessageItem[];
11
11
  }
@@ -89,7 +89,7 @@ class Threads {
89
89
  const _response = yield core.fetcher({
90
90
  url: (0, url_join_1.default)((_b = (_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AgentMailEnvironment.Production, "/v0/threads"),
91
91
  method: "GET",
92
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.34", "User-Agent": "agentmail/0.0.34", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
92
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.35", "User-Agent": "agentmail/0.0.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
93
93
  contentType: "application/json",
94
94
  queryParameters: _queryParams,
95
95
  requestType: "json",
@@ -153,7 +153,7 @@ class Threads {
153
153
  const _response = yield core.fetcher({
154
154
  url: (0, url_join_1.default)((_b = (_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AgentMailEnvironment.Production, `/v0/threads/${encodeURIComponent(serializers.ThreadId.jsonOrThrow(threadId))}`),
155
155
  method: "GET",
156
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.34", "User-Agent": "agentmail/0.0.34", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
156
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.35", "User-Agent": "agentmail/0.0.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
157
157
  contentType: "application/json",
158
158
  requestType: "json",
159
159
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -6,6 +6,6 @@ export interface ListThreadsResponse {
6
6
  count: AgentMail.Count;
7
7
  limit?: AgentMail.Limit;
8
8
  nextPageToken?: AgentMail.PageToken;
9
- /** Thread items. Ordered by `timestamp` descending. */
9
+ /** Ordered by `timestamp` descending. */
10
10
  threads: AgentMail.ThreadItem[];
11
11
  }
@@ -14,6 +14,6 @@ export interface Thread {
14
14
  subject?: AgentMail.ThreadSubject;
15
15
  preview?: AgentMail.ThreadPreview;
16
16
  attachments?: AgentMail.ThreadAttachments;
17
- /** Messages in thread. Ordered by `sent_at` ascending. */
17
+ /** Messages in thread. Ordered by `timestamp` ascending. */
18
18
  messages: AgentMail.Message[];
19
19
  }
@@ -80,7 +80,7 @@ class Webhooks {
80
80
  const _response = yield core.fetcher({
81
81
  url: (0, url_join_1.default)((_b = (_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AgentMailEnvironment.Production, "/v0/webhooks"),
82
82
  method: "GET",
83
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.34", "User-Agent": "agentmail/0.0.34", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
83
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.35", "User-Agent": "agentmail/0.0.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
84
84
  contentType: "application/json",
85
85
  queryParameters: _queryParams,
86
86
  requestType: "json",
@@ -133,7 +133,7 @@ class Webhooks {
133
133
  const _response = yield core.fetcher({
134
134
  url: (0, url_join_1.default)((_b = (_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AgentMailEnvironment.Production, `/v0/webhooks/${encodeURIComponent(serializers.WebhookId.jsonOrThrow(webhookId))}`),
135
135
  method: "GET",
136
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.34", "User-Agent": "agentmail/0.0.34", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
136
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.35", "User-Agent": "agentmail/0.0.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
137
137
  contentType: "application/json",
138
138
  requestType: "json",
139
139
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -200,7 +200,7 @@ class Webhooks {
200
200
  const _response = yield core.fetcher({
201
201
  url: (0, url_join_1.default)((_b = (_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AgentMailEnvironment.Production, "/v0/webhooks"),
202
202
  method: "POST",
203
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.34", "User-Agent": "agentmail/0.0.34", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
203
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.35", "User-Agent": "agentmail/0.0.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
204
204
  contentType: "application/json",
205
205
  requestType: "json",
206
206
  body: serializers.CreateWebhookRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -264,7 +264,7 @@ class Webhooks {
264
264
  const _response = yield core.fetcher({
265
265
  url: (0, url_join_1.default)((_b = (_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AgentMailEnvironment.Production, `/v0/webhooks/${encodeURIComponent(serializers.WebhookId.jsonOrThrow(webhookId))}`),
266
266
  method: "DELETE",
267
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.34", "User-Agent": "agentmail/0.0.34", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
267
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "agentmail", "X-Fern-SDK-Version": "0.0.35", "User-Agent": "agentmail/0.0.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
268
268
  contentType: "application/json",
269
269
  requestType: "json",
270
270
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -6,6 +6,6 @@ export interface ListWebhooksResponse {
6
6
  count: AgentMail.Count;
7
7
  limit?: AgentMail.Limit;
8
8
  nextPageToken?: AgentMail.PageToken;
9
- /** Webhook items. Ordered by `created_at` ascending. */
9
+ /** Ordered by `created_at` descending. */
10
10
  webhooks: AgentMail.Webhook[];
11
11
  }
@@ -2,6 +2,6 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  /**
5
- * Page token.
5
+ * Page token for pagination.
6
6
  */
7
7
  export type PageToken = string;
package/dist/Client.d.ts CHANGED
@@ -4,6 +4,7 @@
4
4
  import * as environments from "./environments";
5
5
  import * as core from "./core";
6
6
  import { Inboxes } from "./api/resources/inboxes/client/Client";
7
+ import { Contexts } from "./api/resources/contexts/client/Client";
7
8
  import { Drafts } from "./api/resources/drafts/client/Client";
8
9
  import { Threads } from "./api/resources/threads/client/Client";
9
10
  import { Webhooks } from "./api/resources/webhooks/client/Client";
@@ -28,11 +29,13 @@ export declare namespace AgentMailClient {
28
29
  export declare class AgentMailClient {
29
30
  protected readonly _options: AgentMailClient.Options;
30
31
  protected _inboxes: Inboxes | undefined;
32
+ protected _contexts: Contexts | undefined;
31
33
  protected _drafts: Drafts | undefined;
32
34
  protected _threads: Threads | undefined;
33
35
  protected _webhooks: Webhooks | undefined;
34
36
  constructor(_options?: AgentMailClient.Options);
35
37
  get inboxes(): Inboxes;
38
+ get contexts(): Contexts;
36
39
  get drafts(): Drafts;
37
40
  get threads(): Threads;
38
41
  get webhooks(): Webhooks;
package/dist/Client.js CHANGED
@@ -5,9 +5,10 @@
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.AgentMailClient = void 0;
7
7
  const Client_1 = require("./api/resources/inboxes/client/Client");
8
- const Client_2 = require("./api/resources/drafts/client/Client");
9
- const Client_3 = require("./api/resources/threads/client/Client");
10
- const Client_4 = require("./api/resources/webhooks/client/Client");
8
+ const Client_2 = require("./api/resources/contexts/client/Client");
9
+ const Client_3 = require("./api/resources/drafts/client/Client");
10
+ const Client_4 = require("./api/resources/threads/client/Client");
11
+ const Client_5 = require("./api/resources/webhooks/client/Client");
11
12
  class AgentMailClient {
12
13
  constructor(_options = {}) {
13
14
  this._options = _options;
@@ -16,17 +17,21 @@ class AgentMailClient {
16
17
  var _a;
17
18
  return ((_a = this._inboxes) !== null && _a !== void 0 ? _a : (this._inboxes = new Client_1.Inboxes(this._options)));
18
19
  }
20
+ get contexts() {
21
+ var _a;
22
+ return ((_a = this._contexts) !== null && _a !== void 0 ? _a : (this._contexts = new Client_2.Contexts(this._options)));
23
+ }
19
24
  get drafts() {
20
25
  var _a;
21
- return ((_a = this._drafts) !== null && _a !== void 0 ? _a : (this._drafts = new Client_2.Drafts(this._options)));
26
+ return ((_a = this._drafts) !== null && _a !== void 0 ? _a : (this._drafts = new Client_3.Drafts(this._options)));
22
27
  }
23
28
  get threads() {
24
29
  var _a;
25
- return ((_a = this._threads) !== null && _a !== void 0 ? _a : (this._threads = new Client_3.Threads(this._options)));
30
+ return ((_a = this._threads) !== null && _a !== void 0 ? _a : (this._threads = new Client_4.Threads(this._options)));
26
31
  }
27
32
  get webhooks() {
28
33
  var _a;
29
- return ((_a = this._webhooks) !== null && _a !== void 0 ? _a : (this._webhooks = new Client_4.Webhooks(this._options)));
34
+ return ((_a = this._webhooks) !== null && _a !== void 0 ? _a : (this._webhooks = new Client_5.Webhooks(this._options)));
30
35
  }
31
36
  }
32
37
  exports.AgentMailClient = AgentMailClient;
@@ -0,0 +1,76 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as environments from "../../../../environments";
5
+ import * as core from "../../../../core";
6
+ import * as AgentMail from "../../../index";
7
+ export declare namespace Contexts {
8
+ interface Options {
9
+ environment?: core.Supplier<environments.AgentMailEnvironment | string>;
10
+ /** Specify a custom URL to connect the client to. */
11
+ baseUrl?: core.Supplier<string>;
12
+ apiKey?: core.Supplier<core.BearerToken | undefined>;
13
+ }
14
+ interface RequestOptions {
15
+ /** The maximum time to wait for a response in seconds. */
16
+ timeoutInSeconds?: number;
17
+ /** The number of times to retry the request. Defaults to 2. */
18
+ maxRetries?: number;
19
+ /** A hook to abort the request. */
20
+ abortSignal?: AbortSignal;
21
+ /** Additional headers to include in the request. */
22
+ headers?: Record<string, string>;
23
+ }
24
+ }
25
+ export declare class Contexts {
26
+ protected readonly _options: Contexts.Options;
27
+ constructor(_options?: Contexts.Options);
28
+ /**
29
+ * @param {AgentMail.ListContextsRequest} request
30
+ * @param {Contexts.RequestOptions} requestOptions - Request-specific configuration.
31
+ *
32
+ * @example
33
+ * await client.contexts.list()
34
+ */
35
+ list(request?: AgentMail.ListContextsRequest, requestOptions?: Contexts.RequestOptions): Promise<AgentMail.ListContextsResponse>;
36
+ /**
37
+ * @param {AgentMail.ContextId} contextId
38
+ * @param {Contexts.RequestOptions} requestOptions - Request-specific configuration.
39
+ *
40
+ * @throws {@link AgentMail.NotFoundError}
41
+ *
42
+ * @example
43
+ * await client.contexts.get("context_id")
44
+ */
45
+ get(contextId: AgentMail.ContextId, requestOptions?: Contexts.RequestOptions): Promise<AgentMail.Context>;
46
+ /**
47
+ * @param {AgentMail.CreateContextRequest} request
48
+ * @param {Contexts.RequestOptions} requestOptions - Request-specific configuration.
49
+ *
50
+ * @throws {@link AgentMail.ValidationError}
51
+ *
52
+ * @example
53
+ * await client.contexts.create({
54
+ * type: "type",
55
+ * data: {
56
+ * "data": {
57
+ * "key": "value"
58
+ * }
59
+ * },
60
+ * metadata: undefined,
61
+ * isEvent: true
62
+ * })
63
+ */
64
+ create(request: AgentMail.CreateContextRequest, requestOptions?: Contexts.RequestOptions): Promise<AgentMail.Context>;
65
+ /**
66
+ * @param {AgentMail.ContextId} contextId
67
+ * @param {Contexts.RequestOptions} requestOptions - Request-specific configuration.
68
+ *
69
+ * @throws {@link AgentMail.NotFoundError}
70
+ *
71
+ * @example
72
+ * await client.contexts.delete("context_id")
73
+ */
74
+ delete(contextId: AgentMail.ContextId, requestOptions?: Contexts.RequestOptions): Promise<void>;
75
+ protected _getAuthorizationHeader(): Promise<string>;
76
+ }