@visulima/email 1.0.0-alpha.28 → 1.0.0-alpha.29
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/CHANGELOG.md +8 -0
- package/dist/crypto/index.d.ts +2 -2
- package/dist/index.d.ts +5 -5
- package/dist/packem_shared/{provider.d-1mSg_bdf.d.ts → provider.d-DcfYeGJJ.d.ts} +1 -1
- package/dist/packem_shared/{types.d-CzCROKCz.d.ts → types.d-CNnnk-Ya.d.ts} +1 -1
- package/dist/packem_shared/{types.d-Ce1Cxldz.d.ts → types.d-wwpgA3to.d.ts} +1 -1
- package/dist/providers/ahasend/index.d.ts +3 -3
- package/dist/providers/aws-ses/index.d.ts +3 -3
- package/dist/providers/azure/index.d.ts +3 -3
- package/dist/providers/brevo/index.d.ts +3 -3
- package/dist/providers/failover/index.d.ts +3 -3
- package/dist/providers/http/index.d.ts +3 -3
- package/dist/providers/infobip/index.d.ts +3 -3
- package/dist/providers/mailcrab/index.d.ts +3 -3
- package/dist/providers/mailersend/index.d.ts +3 -3
- package/dist/providers/mailgun/index.d.ts +3 -3
- package/dist/providers/mailjet/index.d.ts +3 -3
- package/dist/providers/mailomat/index.d.ts +3 -3
- package/dist/providers/mailpace/index.d.ts +3 -3
- package/dist/providers/mailtrap/index.d.ts +3 -3
- package/dist/providers/mandrill/index.d.ts +3 -3
- package/dist/providers/mock/index.d.ts +3 -3
- package/dist/providers/nodemailer/index.d.ts +3 -3
- package/dist/providers/opentelemetry/index.d.ts +2 -2
- package/dist/providers/plunk/index.d.ts +3 -3
- package/dist/providers/postal/index.d.ts +3 -3
- package/dist/providers/postmark/index.d.ts +3 -3
- package/dist/providers/resend/index.d.ts +3 -3
- package/dist/providers/roundrobin/index.d.ts +3 -3
- package/dist/providers/scaleway/index.d.ts +3 -3
- package/dist/providers/sendgrid/index.d.ts +3 -3
- package/dist/providers/smtp/index.d.ts +3 -3
- package/dist/providers/sweego/index.d.ts +3 -3
- package/dist/providers/zeptomail/index.d.ts +3 -3
- package/dist/utils/format-email-address.d.ts +1 -1
- package/dist/utils/parse-address.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## @visulima/email [1.0.0-alpha.29](https://github.com/visulima/visulima/compare/@visulima/email@1.0.0-alpha.28...@visulima/email@1.0.0-alpha.29) (2026-05-16)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Dependencies
|
|
5
|
+
|
|
6
|
+
* **@visulima/error:** upgraded to 6.0.0-alpha.25
|
|
7
|
+
* **@visulima/fs:** upgraded to 5.0.0-alpha.23
|
|
8
|
+
|
|
1
9
|
## @visulima/email [1.0.0-alpha.28](https://github.com/visulima/visulima/compare/@visulima/email@1.0.0-alpha.27...@visulima/email@1.0.0-alpha.28) (2026-05-14)
|
|
2
10
|
|
|
3
11
|
### Miscellaneous Chores
|
package/dist/crypto/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { E as EmailOptions } from "../packem_shared/types.d-
|
|
2
|
-
import { D as DkimOptions, E as EmailSigner, S as SmimeEncryptOptions, a as EmailEncrypter, b as SmimeSignOptions } from "../packem_shared/types.d-
|
|
1
|
+
import { E as EmailOptions } from "../packem_shared/types.d-wwpgA3to.js";
|
|
2
|
+
import { D as DkimOptions, E as EmailSigner, S as SmimeEncryptOptions, a as EmailEncrypter, b as SmimeSignOptions } from "../packem_shared/types.d-CNnnk-Ya.js";
|
|
3
3
|
import 'node:buffer';
|
|
4
4
|
/**
|
|
5
5
|
* DKIM signer implementation
|
package/dist/index.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { Buffer as Buffer$1 } from 'node:buffer';
|
|
2
2
|
import { ICalCalendar } from 'ical-generator';
|
|
3
|
-
import { b as EmailAddress, e as EmailHeaders, P as Priority, C as CalendarEventOptions, E as EmailOptions, A as Attachment, a as EmailResult, R as Result,
|
|
4
|
-
export { type B as BaseConfig, type
|
|
5
|
-
import { E as EmailSigner, a as EmailEncrypter } from "./packem_shared/types.d-
|
|
3
|
+
import { b as EmailAddress, e as EmailHeaders, P as Priority, C as CalendarEventOptions, E as EmailOptions, A as Attachment, a as EmailResult, R as Result, d as Receipt } from "./packem_shared/types.d-wwpgA3to.js";
|
|
4
|
+
export { type B as BaseConfig, type c as EmailTag, type F as FeatureFlags, type I as ImmutableHeaders, type M as MaybePromise } from "./packem_shared/types.d-wwpgA3to.js";
|
|
5
|
+
import { E as EmailSigner, a as EmailEncrypter } from "./packem_shared/types.d-CNnnk-Ya.js";
|
|
6
6
|
import { T as TemplateRenderer } from "./packem_shared/types.d-nyR1ty1Q.js";
|
|
7
|
-
import { a as Provider } from "./packem_shared/provider.d-
|
|
8
|
-
export { type P as ProviderFactory, d as defineProvider } from "./packem_shared/provider.d-
|
|
7
|
+
import { a as Provider } from "./packem_shared/provider.d-DcfYeGJJ.js";
|
|
8
|
+
export { type P as ProviderFactory, d as defineProvider } from "./packem_shared/provider.d-DcfYeGJJ.js";
|
|
9
9
|
/**
|
|
10
10
|
* Detects MIME type from filename using mime package.
|
|
11
11
|
* Falls back to application/octet-stream if not found.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { E as EmailOptions, F as FeatureFlags, R as Result, M as MaybePromise, a as EmailResult } from "./types.d-
|
|
1
|
+
import { E as EmailOptions, F as FeatureFlags, R as Result, M as MaybePromise, a as EmailResult } from "./types.d-wwpgA3to.js";
|
|
2
2
|
/**
|
|
3
3
|
* Standard provider interface for email services.
|
|
4
4
|
*/
|
|
@@ -201,4 +201,4 @@ interface Result<T = unknown> {
|
|
|
201
201
|
error?: Error | unknown;
|
|
202
202
|
success: boolean;
|
|
203
203
|
}
|
|
204
|
-
export { Attachment as A, BaseConfig as B, CalendarEventOptions as C, EmailOptions as E, FeatureFlags as F, ImmutableHeaders as I, MaybePromise as M, Priority as P, Result as R, EmailResult as a, EmailAddress as b,
|
|
204
|
+
export { Attachment as A, BaseConfig as B, CalendarEventOptions as C, EmailOptions as E, FeatureFlags as F, ImmutableHeaders as I, MaybePromise as M, Priority as P, Result as R, EmailResult as a, EmailAddress as b, EmailTag as c, Receipt as d, EmailHeaders as e };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { P as ProviderFactory } from "../../packem_shared/provider.d-
|
|
2
|
-
export { type a as Provider } from "../../packem_shared/provider.d-
|
|
3
|
-
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-
|
|
1
|
+
import { P as ProviderFactory } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-wwpgA3to.js";
|
|
4
4
|
import 'node:buffer';
|
|
5
5
|
/**
|
|
6
6
|
* AhaSend configuration
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { P as ProviderFactory } from "../../packem_shared/provider.d-
|
|
2
|
-
export { type a as Provider } from "../../packem_shared/provider.d-
|
|
3
|
-
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-
|
|
1
|
+
import { P as ProviderFactory } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-wwpgA3to.js";
|
|
4
4
|
import 'node:buffer';
|
|
5
5
|
/**
|
|
6
6
|
* AWS SES configuration
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { P as ProviderFactory } from "../../packem_shared/provider.d-
|
|
2
|
-
export { type a as Provider } from "../../packem_shared/provider.d-
|
|
3
|
-
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-
|
|
1
|
+
import { P as ProviderFactory } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-wwpgA3to.js";
|
|
4
4
|
import 'node:buffer';
|
|
5
5
|
/**
|
|
6
6
|
* Azure Communication Services configuration
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { P as ProviderFactory } from "../../packem_shared/provider.d-
|
|
2
|
-
export { type a as Provider } from "../../packem_shared/provider.d-
|
|
3
|
-
import { B as BaseConfig, E as EmailOptions, b as EmailAddress } from "../../packem_shared/types.d-
|
|
1
|
+
import { P as ProviderFactory } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions, b as EmailAddress } from "../../packem_shared/types.d-wwpgA3to.js";
|
|
4
4
|
import 'node:buffer';
|
|
5
5
|
/**
|
|
6
6
|
* Brevo configuration
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { P as ProviderFactory } from "../../packem_shared/provider.d-
|
|
2
|
-
export { type a as Provider } from "../../packem_shared/provider.d-
|
|
3
|
-
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-
|
|
1
|
+
import { P as ProviderFactory } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-wwpgA3to.js";
|
|
4
4
|
import 'node:buffer';
|
|
5
5
|
/**
|
|
6
6
|
* Failover configuration
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { P as ProviderFactory } from "../../packem_shared/provider.d-
|
|
2
|
-
export { type a as Provider } from "../../packem_shared/provider.d-
|
|
3
|
-
import { E as EmailOptions } from "../../packem_shared/types.d-
|
|
1
|
+
import { P as ProviderFactory } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
3
|
+
import { E as EmailOptions } from "../../packem_shared/types.d-wwpgA3to.js";
|
|
4
4
|
import 'node:buffer';
|
|
5
5
|
/**
|
|
6
6
|
* HTTP email configuration
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { P as ProviderFactory } from "../../packem_shared/provider.d-
|
|
2
|
-
export { type a as Provider } from "../../packem_shared/provider.d-
|
|
3
|
-
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-
|
|
1
|
+
import { P as ProviderFactory } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-wwpgA3to.js";
|
|
4
4
|
import 'node:buffer';
|
|
5
5
|
/**
|
|
6
6
|
* Infobip configuration
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { P as ProviderFactory } from "../../packem_shared/provider.d-
|
|
2
|
-
export { type a as Provider } from "../../packem_shared/provider.d-
|
|
3
|
-
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-
|
|
1
|
+
import { P as ProviderFactory } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-wwpgA3to.js";
|
|
4
4
|
import 'node:buffer';
|
|
5
5
|
/**
|
|
6
6
|
* MailCrab configuration (for local development/testing)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { P as ProviderFactory } from "../../packem_shared/provider.d-
|
|
2
|
-
export { type a as Provider } from "../../packem_shared/provider.d-
|
|
3
|
-
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-
|
|
1
|
+
import { P as ProviderFactory } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-wwpgA3to.js";
|
|
4
4
|
import 'node:buffer';
|
|
5
5
|
/**
|
|
6
6
|
* MailerSend configuration
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { P as ProviderFactory } from "../../packem_shared/provider.d-
|
|
2
|
-
export { type a as Provider } from "../../packem_shared/provider.d-
|
|
3
|
-
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-
|
|
1
|
+
import { P as ProviderFactory } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-wwpgA3to.js";
|
|
4
4
|
import 'node:buffer';
|
|
5
5
|
/**
|
|
6
6
|
* Mailgun configuration
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { P as ProviderFactory } from "../../packem_shared/provider.d-
|
|
2
|
-
export { type a as Provider } from "../../packem_shared/provider.d-
|
|
3
|
-
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-
|
|
1
|
+
import { P as ProviderFactory } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-wwpgA3to.js";
|
|
4
4
|
import 'node:buffer';
|
|
5
5
|
/**
|
|
6
6
|
* Mailjet configuration
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { P as ProviderFactory } from "../../packem_shared/provider.d-
|
|
2
|
-
export { type a as Provider } from "../../packem_shared/provider.d-
|
|
3
|
-
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-
|
|
1
|
+
import { P as ProviderFactory } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-wwpgA3to.js";
|
|
4
4
|
import 'node:buffer';
|
|
5
5
|
/**
|
|
6
6
|
* Mailomat configuration
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { P as ProviderFactory } from "../../packem_shared/provider.d-
|
|
2
|
-
export { type a as Provider } from "../../packem_shared/provider.d-
|
|
3
|
-
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-
|
|
1
|
+
import { P as ProviderFactory } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-wwpgA3to.js";
|
|
4
4
|
import 'node:buffer';
|
|
5
5
|
/**
|
|
6
6
|
* MailPace configuration
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { P as ProviderFactory } from "../../packem_shared/provider.d-
|
|
2
|
-
export { type a as Provider } from "../../packem_shared/provider.d-
|
|
3
|
-
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-
|
|
1
|
+
import { P as ProviderFactory } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-wwpgA3to.js";
|
|
4
4
|
import 'node:buffer';
|
|
5
5
|
/**
|
|
6
6
|
* Mailtrap configuration
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { P as ProviderFactory } from "../../packem_shared/provider.d-
|
|
2
|
-
export { type a as Provider } from "../../packem_shared/provider.d-
|
|
3
|
-
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-
|
|
1
|
+
import { P as ProviderFactory } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-wwpgA3to.js";
|
|
4
4
|
import 'node:buffer';
|
|
5
5
|
/**
|
|
6
6
|
* Mandrill configuration
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { P as ProviderFactory } from "../../packem_shared/provider.d-
|
|
2
|
-
export { type a as Provider } from "../../packem_shared/provider.d-
|
|
3
|
-
import {
|
|
1
|
+
import { P as ProviderFactory } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
3
|
+
import { d as Receipt, B as BaseConfig, E as EmailOptions, a as EmailResult } from "../../packem_shared/types.d-wwpgA3to.js";
|
|
4
4
|
import 'node:buffer';
|
|
5
5
|
/**
|
|
6
6
|
* Random delay range configuration
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { P as ProviderFactory } from "../../packem_shared/provider.d-
|
|
2
|
-
export { type a as Provider } from "../../packem_shared/provider.d-
|
|
3
|
-
import { b as EmailAddress, B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-
|
|
1
|
+
import { P as ProviderFactory } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
3
|
+
import { b as EmailAddress, B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-wwpgA3to.js";
|
|
4
4
|
import 'node:buffer';
|
|
5
5
|
/**
|
|
6
6
|
* Nodemailer configuration
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { a as Provider, P as ProviderFactory } from "../../packem_shared/provider.d-
|
|
2
|
-
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-
|
|
1
|
+
import { a as Provider, P as ProviderFactory } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
2
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-wwpgA3to.js";
|
|
3
3
|
import 'node:buffer';
|
|
4
4
|
/**
|
|
5
5
|
* @since 1.0.0
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { P as ProviderFactory } from "../../packem_shared/provider.d-
|
|
2
|
-
export { type a as Provider } from "../../packem_shared/provider.d-
|
|
3
|
-
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-
|
|
1
|
+
import { P as ProviderFactory } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-wwpgA3to.js";
|
|
4
4
|
import 'node:buffer';
|
|
5
5
|
/**
|
|
6
6
|
* Plunk configuration
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { P as ProviderFactory } from "../../packem_shared/provider.d-
|
|
2
|
-
export { type a as Provider } from "../../packem_shared/provider.d-
|
|
3
|
-
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-
|
|
1
|
+
import { P as ProviderFactory } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-wwpgA3to.js";
|
|
4
4
|
import 'node:buffer';
|
|
5
5
|
/**
|
|
6
6
|
* Postal configuration
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { P as ProviderFactory } from "../../packem_shared/provider.d-
|
|
2
|
-
export { type a as Provider } from "../../packem_shared/provider.d-
|
|
3
|
-
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-
|
|
1
|
+
import { P as ProviderFactory } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-wwpgA3to.js";
|
|
4
4
|
import 'node:buffer';
|
|
5
5
|
/**
|
|
6
6
|
* Postmark configuration
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { P as ProviderFactory } from "../../packem_shared/provider.d-
|
|
2
|
-
export { type a as Provider } from "../../packem_shared/provider.d-
|
|
3
|
-
import { B as BaseConfig, E as EmailOptions,
|
|
1
|
+
import { P as ProviderFactory } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions, c as EmailTag } from "../../packem_shared/types.d-wwpgA3to.js";
|
|
4
4
|
import 'node:buffer';
|
|
5
5
|
/**
|
|
6
6
|
* Resend configuration
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { P as ProviderFactory } from "../../packem_shared/provider.d-
|
|
2
|
-
export { type a as Provider } from "../../packem_shared/provider.d-
|
|
3
|
-
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-
|
|
1
|
+
import { P as ProviderFactory } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-wwpgA3to.js";
|
|
4
4
|
import 'node:buffer';
|
|
5
5
|
/**
|
|
6
6
|
* Round Robin configuration
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { P as ProviderFactory } from "../../packem_shared/provider.d-
|
|
2
|
-
export { type a as Provider } from "../../packem_shared/provider.d-
|
|
3
|
-
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-
|
|
1
|
+
import { P as ProviderFactory } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-wwpgA3to.js";
|
|
4
4
|
import 'node:buffer';
|
|
5
5
|
/**
|
|
6
6
|
* Scaleway configuration
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { P as ProviderFactory } from "../../packem_shared/provider.d-
|
|
2
|
-
export { type a as Provider } from "../../packem_shared/provider.d-
|
|
3
|
-
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-
|
|
1
|
+
import { P as ProviderFactory } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-wwpgA3to.js";
|
|
4
4
|
import 'node:buffer';
|
|
5
5
|
/**
|
|
6
6
|
* SendGrid configuration
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { P as ProviderFactory } from "../../packem_shared/provider.d-
|
|
2
|
-
export { type a as Provider } from "../../packem_shared/provider.d-
|
|
3
|
-
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-
|
|
1
|
+
import { P as ProviderFactory } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-wwpgA3to.js";
|
|
4
4
|
import 'node:buffer';
|
|
5
5
|
/**
|
|
6
6
|
* SMTP configuration
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { P as ProviderFactory } from "../../packem_shared/provider.d-
|
|
2
|
-
export { type a as Provider } from "../../packem_shared/provider.d-
|
|
3
|
-
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-
|
|
1
|
+
import { P as ProviderFactory } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-wwpgA3to.js";
|
|
4
4
|
import 'node:buffer';
|
|
5
5
|
/**
|
|
6
6
|
* Sweego configuration
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { P as ProviderFactory } from "../../packem_shared/provider.d-
|
|
2
|
-
export { type a as Provider } from "../../packem_shared/provider.d-
|
|
3
|
-
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-
|
|
1
|
+
import { P as ProviderFactory } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-DcfYeGJJ.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-wwpgA3to.js";
|
|
4
4
|
import 'node:buffer';
|
|
5
5
|
/**
|
|
6
6
|
* Zeptomail configuration
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { b as EmailAddress } from "../packem_shared/types.d-
|
|
1
|
+
import { b as EmailAddress } from "../packem_shared/types.d-wwpgA3to.js";
|
|
2
2
|
import 'node:buffer';
|
|
3
3
|
/**
|
|
4
4
|
* Formats an email address as "Name <email@example.com>" or just "email@example.com" if no name is provided.
|
package/package.json
CHANGED