agentmail 0.1.6 → 0.1.7
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/README.md +63 -0
- package/dist/cjs/BaseClient.d.ts +14 -1
- package/dist/cjs/BaseClient.js +59 -0
- package/dist/cjs/Client.d.ts +30 -29
- package/dist/cjs/Client.js +12 -53
- package/dist/cjs/api/resources/apiKeys/client/Client.d.ts +12 -12
- package/dist/cjs/api/resources/apiKeys/client/Client.js +29 -31
- package/dist/cjs/api/resources/domains/client/Client.d.ts +19 -19
- package/dist/cjs/api/resources/domains/client/Client.js +60 -53
- package/dist/cjs/api/resources/drafts/client/Client.d.ts +10 -10
- package/dist/cjs/api/resources/drafts/client/Client.js +23 -28
- package/dist/cjs/api/resources/events/types/DomainVerifiedEvent.d.ts +7 -0
- package/dist/cjs/api/resources/{webhooks → events}/types/EventType.d.ts +1 -0
- package/dist/cjs/api/resources/{webhooks → events}/types/EventType.js +1 -0
- package/dist/cjs/api/resources/events/types/EventTypes.d.ts +5 -0
- package/dist/cjs/api/resources/events/types/EventTypes.js +3 -0
- package/dist/cjs/api/resources/events/types/index.d.ts +3 -0
- package/dist/cjs/api/resources/events/types/index.js +3 -0
- package/dist/cjs/api/resources/inboxes/client/Client.d.ts +30 -30
- package/dist/cjs/api/resources/inboxes/client/Client.js +55 -51
- package/dist/cjs/api/resources/inboxes/resources/drafts/client/Client.d.ts +27 -27
- package/dist/cjs/api/resources/inboxes/resources/drafts/client/Client.js +77 -70
- package/dist/cjs/api/resources/inboxes/resources/messages/client/Client.d.ts +25 -25
- package/dist/cjs/api/resources/inboxes/resources/messages/client/Client.js +83 -73
- package/dist/cjs/api/resources/inboxes/resources/metrics/client/Client.d.ts +8 -8
- package/dist/cjs/api/resources/inboxes/resources/metrics/client/Client.js +17 -25
- package/dist/cjs/api/resources/inboxes/resources/threads/client/Client.d.ts +17 -17
- package/dist/cjs/api/resources/inboxes/resources/threads/client/Client.js +51 -50
- package/dist/cjs/api/resources/metrics/client/Client.d.ts +7 -7
- package/dist/cjs/api/resources/metrics/client/Client.js +12 -20
- package/dist/cjs/api/resources/pods/client/Client.d.ts +27 -27
- package/dist/cjs/api/resources/pods/client/Client.js +44 -43
- package/dist/cjs/api/resources/pods/resources/domains/client/Client.d.ts +15 -15
- package/dist/cjs/api/resources/pods/resources/domains/client/Client.js +41 -43
- package/dist/cjs/api/resources/pods/resources/drafts/client/Client.d.ts +12 -12
- package/dist/cjs/api/resources/pods/resources/drafts/client/Client.js +30 -35
- package/dist/cjs/api/resources/pods/resources/inboxes/client/Client.d.ts +19 -19
- package/dist/cjs/api/resources/pods/resources/inboxes/client/Client.js +53 -52
- package/dist/cjs/api/resources/pods/resources/threads/client/Client.d.ts +13 -13
- package/dist/cjs/api/resources/pods/resources/threads/client/Client.js +39 -41
- package/dist/cjs/api/resources/threads/client/Client.d.ts +11 -11
- package/dist/cjs/api/resources/threads/client/Client.js +32 -34
- package/dist/cjs/api/resources/webhooks/client/Client.d.ts +15 -15
- package/dist/cjs/api/resources/webhooks/client/Client.js +40 -39
- package/dist/cjs/api/resources/webhooks/types/CreateWebhookRequest.d.ts +1 -1
- package/dist/cjs/api/resources/webhooks/types/Webhook.d.ts +1 -1
- package/dist/cjs/api/resources/webhooks/types/index.d.ts +0 -2
- package/dist/cjs/api/resources/webhooks/types/index.js +0 -2
- package/dist/cjs/api/resources/websockets/client/Client.d.ts +6 -6
- package/dist/cjs/api/resources/websockets/client/Client.js +8 -19
- package/dist/cjs/api/resources/websockets/client/Socket.d.ts +1 -1
- package/dist/cjs/api/resources/websockets/types/Subscribe.d.ts +5 -1
- package/dist/cjs/api/resources/websockets/types/Subscribed.d.ts +5 -1
- package/dist/cjs/auth/BearerAuthProvider.d.ts +14 -0
- package/dist/cjs/auth/BearerAuthProvider.js +72 -0
- package/dist/cjs/auth/index.d.ts +1 -0
- package/dist/cjs/auth/index.js +5 -0
- package/dist/cjs/core/auth/AuthProvider.d.ts +4 -1
- package/dist/cjs/core/auth/BearerToken.d.ts +3 -1
- package/dist/cjs/core/auth/BearerToken.js +7 -6
- package/dist/cjs/core/auth/NoOpAuthProvider.d.ts +5 -0
- package/dist/cjs/core/auth/NoOpAuthProvider.js +9 -0
- package/dist/cjs/core/auth/index.d.ts +1 -0
- package/dist/cjs/core/auth/index.js +3 -1
- package/dist/cjs/core/exports.d.ts +1 -0
- package/dist/cjs/core/exports.js +1 -0
- package/dist/cjs/core/fetcher/Fetcher.d.ts +4 -1
- package/dist/cjs/core/fetcher/Fetcher.js +202 -9
- package/dist/cjs/core/fetcher/getRequestBody.d.ts +1 -1
- package/dist/cjs/core/fetcher/getRequestBody.js +4 -0
- package/dist/cjs/core/fetcher/makeRequest.d.ts +1 -1
- package/dist/cjs/core/fetcher/makeRequest.js +0 -2
- package/dist/cjs/core/fetcher/requestWithRetries.js +0 -9
- package/dist/cjs/core/fetcher/signals.d.ts +0 -6
- package/dist/cjs/core/fetcher/signals.js +0 -12
- package/dist/cjs/core/headers.js +6 -4
- package/dist/cjs/core/index.d.ts +1 -0
- package/dist/cjs/core/index.js +2 -1
- package/dist/cjs/core/logging/exports.d.ts +18 -0
- package/dist/cjs/core/logging/exports.js +45 -0
- package/dist/cjs/core/logging/index.d.ts +1 -0
- package/dist/cjs/core/logging/index.js +17 -0
- package/dist/cjs/core/logging/logger.d.ts +126 -0
- package/dist/cjs/core/logging/logger.js +144 -0
- package/dist/cjs/core/schemas/Schema.d.ts +1 -0
- package/dist/cjs/core/schemas/Schema.js +1 -0
- package/dist/cjs/core/schemas/builders/primitives/index.d.ts +1 -0
- package/dist/cjs/core/schemas/builders/primitives/index.js +3 -1
- package/dist/cjs/core/schemas/builders/primitives/never.d.ts +2 -0
- package/dist/cjs/core/schemas/builders/primitives/never.js +14 -0
- package/dist/cjs/core/url/join.js +0 -1
- package/dist/cjs/serialization/resources/events/types/DomainVerifiedEvent.d.ts +14 -0
- package/dist/cjs/serialization/resources/events/types/DomainVerifiedEvent.js +46 -0
- package/dist/cjs/serialization/resources/{webhooks → events}/types/EventType.d.ts +2 -2
- package/dist/cjs/serialization/resources/{webhooks → events}/types/EventType.js +1 -0
- package/dist/cjs/serialization/resources/{webhooks → events}/types/EventTypes.d.ts +1 -1
- package/dist/cjs/serialization/resources/events/types/index.d.ts +3 -0
- package/dist/cjs/serialization/resources/events/types/index.js +3 -0
- package/dist/cjs/serialization/resources/webhooks/types/CreateWebhookRequest.d.ts +1 -1
- package/dist/cjs/serialization/resources/webhooks/types/CreateWebhookRequest.js +1 -1
- package/dist/cjs/serialization/resources/webhooks/types/Webhook.d.ts +1 -1
- package/dist/cjs/serialization/resources/webhooks/types/Webhook.js +1 -1
- package/dist/cjs/serialization/resources/webhooks/types/index.d.ts +0 -2
- package/dist/cjs/serialization/resources/webhooks/types/index.js +0 -2
- package/dist/cjs/serialization/resources/websockets/client/socket/WebsocketsSocketResponse.d.ts +3 -2
- package/dist/cjs/serialization/resources/websockets/client/socket/WebsocketsSocketResponse.js +2 -0
- package/dist/cjs/serialization/resources/websockets/types/Subscribe.d.ts +4 -1
- package/dist/cjs/serialization/resources/websockets/types/Subscribe.js +4 -1
- package/dist/cjs/serialization/resources/websockets/types/Subscribed.d.ts +4 -1
- package/dist/cjs/serialization/resources/websockets/types/Subscribed.js +4 -1
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/esm/BaseClient.d.mts +14 -1
- package/dist/esm/BaseClient.mjs +24 -1
- package/dist/esm/Client.d.mts +30 -29
- package/dist/esm/Client.mjs +21 -29
- package/dist/esm/api/resources/apiKeys/client/Client.d.mts +12 -12
- package/dist/esm/api/resources/apiKeys/client/Client.mjs +28 -30
- package/dist/esm/api/resources/domains/client/Client.d.mts +19 -19
- package/dist/esm/api/resources/domains/client/Client.mjs +59 -52
- package/dist/esm/api/resources/drafts/client/Client.d.mts +10 -10
- package/dist/esm/api/resources/drafts/client/Client.mjs +22 -27
- package/dist/esm/api/resources/events/types/DomainVerifiedEvent.d.mts +7 -0
- package/dist/esm/api/resources/{webhooks → events}/types/EventType.d.mts +1 -0
- package/dist/esm/api/resources/{webhooks → events}/types/EventType.mjs +1 -0
- package/dist/esm/api/resources/events/types/EventTypes.d.mts +5 -0
- package/dist/esm/api/resources/events/types/EventTypes.mjs +2 -0
- package/dist/esm/api/resources/events/types/index.d.mts +3 -0
- package/dist/esm/api/resources/events/types/index.mjs +3 -0
- package/dist/esm/api/resources/inboxes/client/Client.d.mts +30 -30
- package/dist/esm/api/resources/inboxes/client/Client.mjs +58 -54
- package/dist/esm/api/resources/inboxes/resources/drafts/client/Client.d.mts +27 -27
- package/dist/esm/api/resources/inboxes/resources/drafts/client/Client.mjs +76 -69
- package/dist/esm/api/resources/inboxes/resources/messages/client/Client.d.mts +25 -25
- package/dist/esm/api/resources/inboxes/resources/messages/client/Client.mjs +82 -72
- package/dist/esm/api/resources/inboxes/resources/metrics/client/Client.d.mts +8 -8
- package/dist/esm/api/resources/inboxes/resources/metrics/client/Client.mjs +16 -24
- package/dist/esm/api/resources/inboxes/resources/threads/client/Client.d.mts +17 -17
- package/dist/esm/api/resources/inboxes/resources/threads/client/Client.mjs +50 -49
- package/dist/esm/api/resources/metrics/client/Client.d.mts +7 -7
- package/dist/esm/api/resources/metrics/client/Client.mjs +11 -19
- package/dist/esm/api/resources/pods/client/Client.d.mts +27 -27
- package/dist/esm/api/resources/pods/client/Client.mjs +47 -46
- package/dist/esm/api/resources/pods/resources/domains/client/Client.d.mts +15 -15
- package/dist/esm/api/resources/pods/resources/domains/client/Client.mjs +40 -42
- package/dist/esm/api/resources/pods/resources/drafts/client/Client.d.mts +12 -12
- package/dist/esm/api/resources/pods/resources/drafts/client/Client.mjs +29 -34
- package/dist/esm/api/resources/pods/resources/inboxes/client/Client.d.mts +19 -19
- package/dist/esm/api/resources/pods/resources/inboxes/client/Client.mjs +52 -51
- package/dist/esm/api/resources/pods/resources/threads/client/Client.d.mts +13 -13
- package/dist/esm/api/resources/pods/resources/threads/client/Client.mjs +38 -40
- package/dist/esm/api/resources/threads/client/Client.d.mts +11 -11
- package/dist/esm/api/resources/threads/client/Client.mjs +31 -33
- package/dist/esm/api/resources/webhooks/client/Client.d.mts +15 -15
- package/dist/esm/api/resources/webhooks/client/Client.mjs +39 -38
- package/dist/esm/api/resources/webhooks/types/CreateWebhookRequest.d.mts +1 -1
- package/dist/esm/api/resources/webhooks/types/Webhook.d.mts +1 -1
- package/dist/esm/api/resources/webhooks/types/index.d.mts +0 -2
- package/dist/esm/api/resources/webhooks/types/index.mjs +0 -2
- package/dist/esm/api/resources/websockets/client/Client.d.mts +6 -6
- package/dist/esm/api/resources/websockets/client/Client.mjs +7 -18
- package/dist/esm/api/resources/websockets/client/Socket.d.mts +1 -1
- package/dist/esm/api/resources/websockets/types/Subscribe.d.mts +5 -1
- package/dist/esm/api/resources/websockets/types/Subscribed.d.mts +5 -1
- package/dist/esm/auth/BearerAuthProvider.d.mts +14 -0
- package/dist/esm/auth/BearerAuthProvider.mjs +35 -0
- package/dist/esm/auth/index.d.mts +1 -0
- package/dist/esm/auth/index.mjs +1 -0
- package/dist/esm/core/auth/AuthProvider.d.mts +4 -1
- package/dist/esm/core/auth/BearerToken.d.mts +3 -1
- package/dist/esm/core/auth/BearerToken.mjs +7 -6
- package/dist/esm/core/auth/NoOpAuthProvider.d.mts +5 -0
- package/dist/esm/core/auth/NoOpAuthProvider.mjs +5 -0
- package/dist/esm/core/auth/index.d.mts +1 -0
- package/dist/esm/core/auth/index.mjs +1 -0
- package/dist/esm/core/exports.d.mts +1 -0
- package/dist/esm/core/exports.mjs +1 -0
- package/dist/esm/core/fetcher/Fetcher.d.mts +4 -1
- package/dist/esm/core/fetcher/Fetcher.mjs +202 -9
- package/dist/esm/core/fetcher/getRequestBody.d.mts +1 -1
- package/dist/esm/core/fetcher/getRequestBody.mjs +4 -0
- package/dist/esm/core/fetcher/makeRequest.d.mts +1 -1
- package/dist/esm/core/fetcher/makeRequest.mjs +0 -2
- package/dist/esm/core/fetcher/requestWithRetries.mjs +0 -9
- package/dist/esm/core/fetcher/signals.d.mts +0 -6
- package/dist/esm/core/fetcher/signals.mjs +0 -12
- package/dist/esm/core/headers.mjs +6 -4
- package/dist/esm/core/index.d.mts +1 -0
- package/dist/esm/core/index.mjs +1 -0
- package/dist/esm/core/logging/exports.d.mts +18 -0
- package/dist/esm/core/logging/exports.mjs +9 -0
- package/dist/esm/core/logging/index.d.mts +1 -0
- package/dist/esm/core/logging/index.mjs +1 -0
- package/dist/esm/core/logging/logger.d.mts +126 -0
- package/dist/esm/core/logging/logger.mjs +138 -0
- package/dist/esm/core/schemas/Schema.d.mts +1 -0
- package/dist/esm/core/schemas/Schema.mjs +1 -0
- package/dist/esm/core/schemas/builders/primitives/index.d.mts +1 -0
- package/dist/esm/core/schemas/builders/primitives/index.mjs +1 -0
- package/dist/esm/core/schemas/builders/primitives/never.d.mts +2 -0
- package/dist/esm/core/schemas/builders/primitives/never.mjs +11 -0
- package/dist/esm/core/url/join.mjs +0 -1
- package/dist/esm/serialization/resources/events/types/DomainVerifiedEvent.d.mts +14 -0
- package/dist/esm/serialization/resources/events/types/DomainVerifiedEvent.mjs +10 -0
- package/dist/esm/serialization/resources/{webhooks → events}/types/EventType.d.mts +2 -2
- package/dist/esm/serialization/resources/{webhooks → events}/types/EventType.mjs +1 -0
- package/dist/esm/serialization/resources/{webhooks → events}/types/EventTypes.d.mts +1 -1
- package/dist/esm/serialization/resources/events/types/index.d.mts +3 -0
- package/dist/esm/serialization/resources/events/types/index.mjs +3 -0
- package/dist/esm/serialization/resources/webhooks/types/CreateWebhookRequest.d.mts +1 -1
- package/dist/esm/serialization/resources/webhooks/types/CreateWebhookRequest.mjs +1 -1
- package/dist/esm/serialization/resources/webhooks/types/Webhook.d.mts +1 -1
- package/dist/esm/serialization/resources/webhooks/types/Webhook.mjs +1 -1
- package/dist/esm/serialization/resources/webhooks/types/index.d.mts +0 -2
- package/dist/esm/serialization/resources/webhooks/types/index.mjs +0 -2
- package/dist/esm/serialization/resources/websockets/client/socket/WebsocketsSocketResponse.d.mts +3 -2
- package/dist/esm/serialization/resources/websockets/client/socket/WebsocketsSocketResponse.mjs +2 -0
- package/dist/esm/serialization/resources/websockets/types/Subscribe.d.mts +4 -1
- package/dist/esm/serialization/resources/websockets/types/Subscribe.mjs +4 -1
- package/dist/esm/serialization/resources/websockets/types/Subscribed.d.mts +4 -1
- package/dist/esm/serialization/resources/websockets/types/Subscribed.mjs +4 -1
- package/dist/esm/version.d.mts +1 -1
- package/dist/esm/version.mjs +1 -1
- package/dist/llms-full.txt +620 -54
- package/dist/llms.txt +6 -1
- package/package.json +1 -1
- package/reference.md +170 -170
- package/dist/cjs/api/resources/webhooks/types/EventTypes.d.ts +0 -5
- package/dist/esm/api/resources/webhooks/types/EventTypes.d.mts +0 -5
- /package/dist/cjs/api/resources/{webhooks/types/EventTypes.js → events/types/DomainVerifiedEvent.js} +0 -0
- /package/dist/cjs/serialization/resources/{webhooks → events}/types/EventTypes.js +0 -0
- /package/dist/esm/api/resources/{webhooks/types/EventTypes.mjs → events/types/DomainVerifiedEvent.mjs} +0 -0
- /package/dist/esm/serialization/resources/{webhooks → events}/types/EventTypes.mjs +0 -0
|
@@ -8,39 +8,40 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
8
8
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
9
|
});
|
|
10
10
|
};
|
|
11
|
-
import {
|
|
11
|
+
import { normalizeClientOptionsWithAuth } from "../../../../BaseClient.mjs";
|
|
12
|
+
import { mergeHeaders } from "../../../../core/headers.mjs";
|
|
12
13
|
import * as core from "../../../../core/index.mjs";
|
|
13
14
|
import * as environments from "../../../../environments.mjs";
|
|
14
15
|
import * as errors from "../../../../errors/index.mjs";
|
|
15
16
|
import * as serializers from "../../../../serialization/index.mjs";
|
|
16
17
|
import * as AgentMail from "../../../index.mjs";
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
export class
|
|
22
|
-
constructor(
|
|
23
|
-
this._options =
|
|
18
|
+
import { DraftsClient } from "../resources/drafts/client/Client.mjs";
|
|
19
|
+
import { MessagesClient } from "../resources/messages/client/Client.mjs";
|
|
20
|
+
import { MetricsClient } from "../resources/metrics/client/Client.mjs";
|
|
21
|
+
import { ThreadsClient } from "../resources/threads/client/Client.mjs";
|
|
22
|
+
export class InboxesClient {
|
|
23
|
+
constructor(options = {}) {
|
|
24
|
+
this._options = normalizeClientOptionsWithAuth(options);
|
|
24
25
|
}
|
|
25
26
|
get threads() {
|
|
26
27
|
var _a;
|
|
27
|
-
return ((_a = this._threads) !== null && _a !== void 0 ? _a : (this._threads = new
|
|
28
|
+
return ((_a = this._threads) !== null && _a !== void 0 ? _a : (this._threads = new ThreadsClient(this._options)));
|
|
28
29
|
}
|
|
29
30
|
get messages() {
|
|
30
31
|
var _a;
|
|
31
|
-
return ((_a = this._messages) !== null && _a !== void 0 ? _a : (this._messages = new
|
|
32
|
+
return ((_a = this._messages) !== null && _a !== void 0 ? _a : (this._messages = new MessagesClient(this._options)));
|
|
32
33
|
}
|
|
33
34
|
get drafts() {
|
|
34
35
|
var _a;
|
|
35
|
-
return ((_a = this._drafts) !== null && _a !== void 0 ? _a : (this._drafts = new
|
|
36
|
+
return ((_a = this._drafts) !== null && _a !== void 0 ? _a : (this._drafts = new DraftsClient(this._options)));
|
|
36
37
|
}
|
|
37
38
|
get metrics() {
|
|
38
39
|
var _a;
|
|
39
|
-
return ((_a = this._metrics) !== null && _a !== void 0 ? _a : (this._metrics = new
|
|
40
|
+
return ((_a = this._metrics) !== null && _a !== void 0 ? _a : (this._metrics = new MetricsClient(this._options)));
|
|
40
41
|
}
|
|
41
42
|
/**
|
|
42
43
|
* @param {AgentMail.inboxes.ListInboxesRequest} request
|
|
43
|
-
* @param {
|
|
44
|
+
* @param {InboxesClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
44
45
|
*
|
|
45
46
|
* @example
|
|
46
47
|
* await client.inboxes.list()
|
|
@@ -50,7 +51,7 @@ export class Inboxes {
|
|
|
50
51
|
}
|
|
51
52
|
__list() {
|
|
52
53
|
return __awaiter(this, arguments, void 0, function* (request = {}, requestOptions) {
|
|
53
|
-
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
54
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
|
54
55
|
const { limit, pageToken } = request;
|
|
55
56
|
const _queryParams = {};
|
|
56
57
|
if (limit != null) {
|
|
@@ -59,7 +60,8 @@ export class Inboxes {
|
|
|
59
60
|
if (pageToken != null) {
|
|
60
61
|
_queryParams.page_token = pageToken;
|
|
61
62
|
}
|
|
62
|
-
const
|
|
63
|
+
const _authRequest = yield this._options.authProvider.getAuthRequest();
|
|
64
|
+
const _headers = mergeHeaders(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
|
|
63
65
|
const _response = yield core.fetcher({
|
|
64
66
|
url: core.url.join((_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : ((_c = (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.AgentMailEnvironment.Production).http, "/v0/inboxes"),
|
|
65
67
|
method: "GET",
|
|
@@ -68,6 +70,8 @@ export class Inboxes {
|
|
|
68
70
|
timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
|
|
69
71
|
maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
|
|
70
72
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
73
|
+
fetchFn: (_j = this._options) === null || _j === void 0 ? void 0 : _j.fetch,
|
|
74
|
+
logging: this._options.logging,
|
|
71
75
|
});
|
|
72
76
|
if (_response.ok) {
|
|
73
77
|
return {
|
|
@@ -106,29 +110,32 @@ export class Inboxes {
|
|
|
106
110
|
});
|
|
107
111
|
}
|
|
108
112
|
/**
|
|
109
|
-
* @param {AgentMail.inboxes.InboxId}
|
|
110
|
-
* @param {
|
|
113
|
+
* @param {AgentMail.inboxes.InboxId} inbox_id
|
|
114
|
+
* @param {InboxesClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
111
115
|
*
|
|
112
116
|
* @throws {@link AgentMail.NotFoundError}
|
|
113
117
|
*
|
|
114
118
|
* @example
|
|
115
119
|
* await client.inboxes.get("inbox_id")
|
|
116
120
|
*/
|
|
117
|
-
get(
|
|
118
|
-
return core.HttpResponsePromise.fromPromise(this.__get(
|
|
121
|
+
get(inbox_id, requestOptions) {
|
|
122
|
+
return core.HttpResponsePromise.fromPromise(this.__get(inbox_id, requestOptions));
|
|
119
123
|
}
|
|
120
|
-
__get(
|
|
124
|
+
__get(inbox_id, requestOptions) {
|
|
121
125
|
return __awaiter(this, void 0, void 0, function* () {
|
|
122
|
-
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
123
|
-
const
|
|
126
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
|
127
|
+
const _authRequest = yield this._options.authProvider.getAuthRequest();
|
|
128
|
+
const _headers = mergeHeaders(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
|
|
124
129
|
const _response = yield core.fetcher({
|
|
125
|
-
url: core.url.join((_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : ((_c = (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.AgentMailEnvironment.Production).http, `/v0/inboxes/${core.url.encodePathParam(serializers.inboxes.InboxId.jsonOrThrow(
|
|
130
|
+
url: core.url.join((_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : ((_c = (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.AgentMailEnvironment.Production).http, `/v0/inboxes/${core.url.encodePathParam(serializers.inboxes.InboxId.jsonOrThrow(inbox_id, { omitUndefined: true }))}`),
|
|
126
131
|
method: "GET",
|
|
127
132
|
headers: _headers,
|
|
128
133
|
queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
|
|
129
134
|
timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
|
|
130
135
|
maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
|
|
131
136
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
137
|
+
fetchFn: (_j = this._options) === null || _j === void 0 ? void 0 : _j.fetch,
|
|
138
|
+
logging: this._options.logging,
|
|
132
139
|
});
|
|
133
140
|
if (_response.ok) {
|
|
134
141
|
return {
|
|
@@ -179,7 +186,7 @@ export class Inboxes {
|
|
|
179
186
|
}
|
|
180
187
|
/**
|
|
181
188
|
* @param {AgentMail.inboxes.CreateInboxRequest} request
|
|
182
|
-
* @param {
|
|
189
|
+
* @param {InboxesClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
183
190
|
*
|
|
184
191
|
* @throws {@link AgentMail.ValidationError}
|
|
185
192
|
*
|
|
@@ -191,8 +198,9 @@ export class Inboxes {
|
|
|
191
198
|
}
|
|
192
199
|
__create(request, requestOptions) {
|
|
193
200
|
return __awaiter(this, void 0, void 0, function* () {
|
|
194
|
-
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
195
|
-
const
|
|
201
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
|
202
|
+
const _authRequest = yield this._options.authProvider.getAuthRequest();
|
|
203
|
+
const _headers = mergeHeaders(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
|
|
196
204
|
const _response = yield core.fetcher({
|
|
197
205
|
url: core.url.join((_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : ((_c = (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.AgentMailEnvironment.Production).http, "/v0/inboxes"),
|
|
198
206
|
method: "POST",
|
|
@@ -209,6 +217,8 @@ export class Inboxes {
|
|
|
209
217
|
timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
|
|
210
218
|
maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
|
|
211
219
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
220
|
+
fetchFn: (_j = this._options) === null || _j === void 0 ? void 0 : _j.fetch,
|
|
221
|
+
logging: this._options.logging,
|
|
212
222
|
});
|
|
213
223
|
if (_response.ok) {
|
|
214
224
|
return {
|
|
@@ -258,9 +268,9 @@ export class Inboxes {
|
|
|
258
268
|
});
|
|
259
269
|
}
|
|
260
270
|
/**
|
|
261
|
-
* @param {AgentMail.inboxes.InboxId}
|
|
271
|
+
* @param {AgentMail.inboxes.InboxId} inbox_id
|
|
262
272
|
* @param {AgentMail.inboxes.UpdateInboxRequest} request
|
|
263
|
-
* @param {
|
|
273
|
+
* @param {InboxesClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
264
274
|
*
|
|
265
275
|
* @throws {@link AgentMail.NotFoundError}
|
|
266
276
|
*
|
|
@@ -269,15 +279,16 @@ export class Inboxes {
|
|
|
269
279
|
* displayName: "display_name"
|
|
270
280
|
* })
|
|
271
281
|
*/
|
|
272
|
-
update(
|
|
273
|
-
return core.HttpResponsePromise.fromPromise(this.__update(
|
|
282
|
+
update(inbox_id, request, requestOptions) {
|
|
283
|
+
return core.HttpResponsePromise.fromPromise(this.__update(inbox_id, request, requestOptions));
|
|
274
284
|
}
|
|
275
|
-
__update(
|
|
285
|
+
__update(inbox_id, request, requestOptions) {
|
|
276
286
|
return __awaiter(this, void 0, void 0, function* () {
|
|
277
|
-
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
278
|
-
const
|
|
287
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
|
288
|
+
const _authRequest = yield this._options.authProvider.getAuthRequest();
|
|
289
|
+
const _headers = mergeHeaders(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
|
|
279
290
|
const _response = yield core.fetcher({
|
|
280
|
-
url: core.url.join((_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : ((_c = (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.AgentMailEnvironment.Production).http, `/v0/inboxes/${core.url.encodePathParam(serializers.inboxes.InboxId.jsonOrThrow(
|
|
291
|
+
url: core.url.join((_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : ((_c = (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.AgentMailEnvironment.Production).http, `/v0/inboxes/${core.url.encodePathParam(serializers.inboxes.InboxId.jsonOrThrow(inbox_id, { omitUndefined: true }))}`),
|
|
281
292
|
method: "PATCH",
|
|
282
293
|
headers: _headers,
|
|
283
294
|
contentType: "application/json",
|
|
@@ -292,6 +303,8 @@ export class Inboxes {
|
|
|
292
303
|
timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
|
|
293
304
|
maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
|
|
294
305
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
306
|
+
fetchFn: (_j = this._options) === null || _j === void 0 ? void 0 : _j.fetch,
|
|
307
|
+
logging: this._options.logging,
|
|
295
308
|
});
|
|
296
309
|
if (_response.ok) {
|
|
297
310
|
return {
|
|
@@ -341,29 +354,32 @@ export class Inboxes {
|
|
|
341
354
|
});
|
|
342
355
|
}
|
|
343
356
|
/**
|
|
344
|
-
* @param {AgentMail.inboxes.InboxId}
|
|
345
|
-
* @param {
|
|
357
|
+
* @param {AgentMail.inboxes.InboxId} inbox_id
|
|
358
|
+
* @param {InboxesClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
346
359
|
*
|
|
347
360
|
* @throws {@link AgentMail.NotFoundError}
|
|
348
361
|
*
|
|
349
362
|
* @example
|
|
350
363
|
* await client.inboxes.delete("inbox_id")
|
|
351
364
|
*/
|
|
352
|
-
delete(
|
|
353
|
-
return core.HttpResponsePromise.fromPromise(this.__delete(
|
|
365
|
+
delete(inbox_id, requestOptions) {
|
|
366
|
+
return core.HttpResponsePromise.fromPromise(this.__delete(inbox_id, requestOptions));
|
|
354
367
|
}
|
|
355
|
-
__delete(
|
|
368
|
+
__delete(inbox_id, requestOptions) {
|
|
356
369
|
return __awaiter(this, void 0, void 0, function* () {
|
|
357
|
-
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
358
|
-
const
|
|
370
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
|
371
|
+
const _authRequest = yield this._options.authProvider.getAuthRequest();
|
|
372
|
+
const _headers = mergeHeaders(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
|
|
359
373
|
const _response = yield core.fetcher({
|
|
360
|
-
url: core.url.join((_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : ((_c = (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.AgentMailEnvironment.Production).http, `/v0/inboxes/${core.url.encodePathParam(serializers.inboxes.InboxId.jsonOrThrow(
|
|
374
|
+
url: core.url.join((_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : ((_c = (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.AgentMailEnvironment.Production).http, `/v0/inboxes/${core.url.encodePathParam(serializers.inboxes.InboxId.jsonOrThrow(inbox_id, { omitUndefined: true }))}`),
|
|
361
375
|
method: "DELETE",
|
|
362
376
|
headers: _headers,
|
|
363
377
|
queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
|
|
364
378
|
timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
|
|
365
379
|
maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
|
|
366
380
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
381
|
+
fetchFn: (_j = this._options) === null || _j === void 0 ? void 0 : _j.fetch,
|
|
382
|
+
logging: this._options.logging,
|
|
367
383
|
});
|
|
368
384
|
if (_response.ok) {
|
|
369
385
|
return { data: undefined, rawResponse: _response.rawResponse };
|
|
@@ -403,16 +419,4 @@ export class Inboxes {
|
|
|
403
419
|
}
|
|
404
420
|
});
|
|
405
421
|
}
|
|
406
|
-
_getAuthorizationHeader() {
|
|
407
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
408
|
-
var _a;
|
|
409
|
-
const bearer = (_a = (yield core.Supplier.get(this._options.apiKey))) !== null && _a !== void 0 ? _a : process === null || process === void 0 ? void 0 : process.env.AGENTMAIL_API_KEY;
|
|
410
|
-
if (bearer == null) {
|
|
411
|
-
throw new errors.AgentMailError({
|
|
412
|
-
message: "Please specify a bearer by either passing it in to the constructor or initializing a AGENTMAIL_API_KEY environment variable",
|
|
413
|
-
});
|
|
414
|
-
}
|
|
415
|
-
return `Bearer ${bearer}`;
|
|
416
|
-
});
|
|
417
|
-
}
|
|
418
422
|
}
|
|
@@ -1,69 +1,70 @@
|
|
|
1
1
|
import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient.mjs";
|
|
2
|
+
import { type NormalizedClientOptionsWithAuth } from "../../../../../../BaseClient.mjs";
|
|
2
3
|
import * as core from "../../../../../../core/index.mjs";
|
|
3
4
|
import * as AgentMail from "../../../../../index.mjs";
|
|
4
|
-
export declare namespace
|
|
5
|
+
export declare namespace DraftsClient {
|
|
5
6
|
interface Options extends BaseClientOptions {
|
|
6
7
|
}
|
|
7
8
|
interface RequestOptions extends BaseRequestOptions {
|
|
8
9
|
}
|
|
9
10
|
}
|
|
10
|
-
export declare class
|
|
11
|
-
protected readonly _options:
|
|
12
|
-
constructor(
|
|
11
|
+
export declare class DraftsClient {
|
|
12
|
+
protected readonly _options: NormalizedClientOptionsWithAuth<DraftsClient.Options>;
|
|
13
|
+
constructor(options?: DraftsClient.Options);
|
|
13
14
|
/**
|
|
14
|
-
* @param {AgentMail.inboxes.InboxId}
|
|
15
|
+
* @param {AgentMail.inboxes.InboxId} inbox_id
|
|
15
16
|
* @param {AgentMail.inboxes.ListDraftsRequest} request
|
|
16
|
-
* @param {
|
|
17
|
+
* @param {DraftsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
17
18
|
*
|
|
18
19
|
* @throws {@link AgentMail.NotFoundError}
|
|
19
20
|
*
|
|
20
21
|
* @example
|
|
21
22
|
* await client.inboxes.drafts.list("inbox_id")
|
|
22
23
|
*/
|
|
23
|
-
list(
|
|
24
|
+
list(inbox_id: AgentMail.inboxes.InboxId, request?: AgentMail.inboxes.ListDraftsRequest, requestOptions?: DraftsClient.RequestOptions): core.HttpResponsePromise<AgentMail.ListDraftsResponse>;
|
|
24
25
|
private __list;
|
|
25
26
|
/**
|
|
26
|
-
* @param {AgentMail.inboxes.InboxId}
|
|
27
|
-
* @param {AgentMail.DraftId}
|
|
28
|
-
* @param {
|
|
27
|
+
* @param {AgentMail.inboxes.InboxId} inbox_id
|
|
28
|
+
* @param {AgentMail.DraftId} draft_id
|
|
29
|
+
* @param {DraftsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
29
30
|
*
|
|
30
31
|
* @throws {@link AgentMail.NotFoundError}
|
|
31
32
|
*
|
|
32
33
|
* @example
|
|
33
34
|
* await client.inboxes.drafts.get("inbox_id", "draft_id")
|
|
34
35
|
*/
|
|
35
|
-
get(
|
|
36
|
+
get(inbox_id: AgentMail.inboxes.InboxId, draft_id: AgentMail.DraftId, requestOptions?: DraftsClient.RequestOptions): core.HttpResponsePromise<AgentMail.Draft>;
|
|
36
37
|
private __get;
|
|
37
38
|
/**
|
|
38
|
-
* @param {AgentMail.inboxes.InboxId}
|
|
39
|
+
* @param {AgentMail.inboxes.InboxId} inbox_id
|
|
39
40
|
* @param {AgentMail.CreateDraftRequest} request
|
|
40
|
-
* @param {
|
|
41
|
+
* @param {DraftsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
41
42
|
*
|
|
42
43
|
* @throws {@link AgentMail.NotFoundError}
|
|
43
44
|
*
|
|
44
45
|
* @example
|
|
45
46
|
* await client.inboxes.drafts.create("inbox_id", {})
|
|
46
47
|
*/
|
|
47
|
-
create(
|
|
48
|
+
create(inbox_id: AgentMail.inboxes.InboxId, request: AgentMail.CreateDraftRequest, requestOptions?: DraftsClient.RequestOptions): core.HttpResponsePromise<AgentMail.Draft>;
|
|
48
49
|
private __create;
|
|
49
50
|
/**
|
|
50
|
-
* @param {AgentMail.inboxes.InboxId}
|
|
51
|
-
* @param {AgentMail.DraftId}
|
|
51
|
+
* @param {AgentMail.inboxes.InboxId} inbox_id
|
|
52
|
+
* @param {AgentMail.DraftId} draft_id
|
|
52
53
|
* @param {AgentMail.UpdateDraftRequest} request
|
|
53
|
-
* @param {
|
|
54
|
+
* @param {DraftsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
54
55
|
*
|
|
55
56
|
* @throws {@link AgentMail.NotFoundError}
|
|
56
57
|
*
|
|
57
58
|
* @example
|
|
58
59
|
* await client.inboxes.drafts.update("inbox_id", "draft_id", {})
|
|
59
60
|
*/
|
|
60
|
-
update(
|
|
61
|
+
update(inbox_id: AgentMail.inboxes.InboxId, draft_id: AgentMail.DraftId, request: AgentMail.UpdateDraftRequest, requestOptions?: DraftsClient.RequestOptions): core.HttpResponsePromise<AgentMail.Draft>;
|
|
61
62
|
private __update;
|
|
62
63
|
/**
|
|
63
|
-
* @param {AgentMail.inboxes.InboxId}
|
|
64
|
-
* @param {AgentMail.DraftId}
|
|
64
|
+
* @param {AgentMail.inboxes.InboxId} inbox_id
|
|
65
|
+
* @param {AgentMail.DraftId} draft_id
|
|
65
66
|
* @param {AgentMail.UpdateMessageRequest} request
|
|
66
|
-
* @param {
|
|
67
|
+
* @param {DraftsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
67
68
|
*
|
|
68
69
|
* @throws {@link AgentMail.NotFoundError}
|
|
69
70
|
* @throws {@link AgentMail.ValidationError}
|
|
@@ -72,19 +73,18 @@ export declare class Drafts {
|
|
|
72
73
|
* @example
|
|
73
74
|
* await client.inboxes.drafts.send("inbox_id", "draft_id", {})
|
|
74
75
|
*/
|
|
75
|
-
send(
|
|
76
|
+
send(inbox_id: AgentMail.inboxes.InboxId, draft_id: AgentMail.DraftId, request: AgentMail.UpdateMessageRequest, requestOptions?: DraftsClient.RequestOptions): core.HttpResponsePromise<AgentMail.SendMessageResponse>;
|
|
76
77
|
private __send;
|
|
77
78
|
/**
|
|
78
|
-
* @param {AgentMail.inboxes.InboxId}
|
|
79
|
-
* @param {AgentMail.DraftId}
|
|
80
|
-
* @param {
|
|
79
|
+
* @param {AgentMail.inboxes.InboxId} inbox_id
|
|
80
|
+
* @param {AgentMail.DraftId} draft_id
|
|
81
|
+
* @param {DraftsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
81
82
|
*
|
|
82
83
|
* @throws {@link AgentMail.NotFoundError}
|
|
83
84
|
*
|
|
84
85
|
* @example
|
|
85
86
|
* await client.inboxes.drafts.delete("inbox_id", "draft_id")
|
|
86
87
|
*/
|
|
87
|
-
delete(
|
|
88
|
+
delete(inbox_id: AgentMail.inboxes.InboxId, draft_id: AgentMail.DraftId, requestOptions?: DraftsClient.RequestOptions): core.HttpResponsePromise<void>;
|
|
88
89
|
private __delete;
|
|
89
|
-
protected _getAuthorizationHeader(): Promise<string>;
|
|
90
90
|
}
|