2025-11-13 13:13:34 -07:00

80 lines
2.9 KiB
JavaScript

"use strict";
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
Object.defineProperty(exports, "__esModule", { value: true });
exports.AddressesV4PagePaginationArray = exports.Addresses = void 0;
const resource_1 = require("../../resource.js");
const pagination_1 = require("../../pagination.js");
class Addresses extends resource_1.APIResource {
/**
* Create a destination address to forward your emails to. Destination addresses
* need to be verified before they can be used.
*
* @example
* ```ts
* const address = await client.emailRouting.addresses.create({
* account_id: '023e105f4ecef8ad9ca31a8372d0c353',
* email: 'user@example.com',
* });
* ```
*/
create(params, options) {
const { account_id, ...body } = params;
return this._client.post(`/accounts/${account_id}/email/routing/addresses`, {
body,
...options,
})._thenUnwrap((obj) => obj.result);
}
/**
* Lists existing destination addresses.
*
* @example
* ```ts
* // Automatically fetches more pages as needed.
* for await (const address of client.emailRouting.addresses.list(
* { account_id: '023e105f4ecef8ad9ca31a8372d0c353' },
* )) {
* // ...
* }
* ```
*/
list(params, options) {
const { account_id, ...query } = params;
return this._client.getAPIList(`/accounts/${account_id}/email/routing/addresses`, AddressesV4PagePaginationArray, { query, ...options });
}
/**
* Deletes a specific destination address.
*
* @example
* ```ts
* const address = await client.emailRouting.addresses.delete(
* 'ea95132c15732412d22c1476fa83f27a',
* { account_id: '023e105f4ecef8ad9ca31a8372d0c353' },
* );
* ```
*/
delete(destinationAddressIdentifier, params, options) {
const { account_id } = params;
return this._client.delete(`/accounts/${account_id}/email/routing/addresses/${destinationAddressIdentifier}`, options)._thenUnwrap((obj) => obj.result);
}
/**
* Gets information for a specific destination email already created.
*
* @example
* ```ts
* const address = await client.emailRouting.addresses.get(
* 'ea95132c15732412d22c1476fa83f27a',
* { account_id: '023e105f4ecef8ad9ca31a8372d0c353' },
* );
* ```
*/
get(destinationAddressIdentifier, params, options) {
const { account_id } = params;
return this._client.get(`/accounts/${account_id}/email/routing/addresses/${destinationAddressIdentifier}`, options)._thenUnwrap((obj) => obj.result);
}
}
exports.Addresses = Addresses;
class AddressesV4PagePaginationArray extends pagination_1.V4PagePaginationArray {
}
exports.AddressesV4PagePaginationArray = AddressesV4PagePaginationArray;
Addresses.AddressesV4PagePaginationArray = AddressesV4PagePaginationArray;
//# sourceMappingURL=addresses.js.map