@visulima/email 1.0.0-alpha.26 → 1.0.0-alpha.28
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 +21 -0
- package/dist/crypto/index.d.ts +2 -2
- package/dist/index.d.ts +5 -5
- package/dist/packem_shared/{provider.d-DcfYeGJJ.d.ts → provider.d-1mSg_bdf.d.ts} +1 -1
- package/dist/packem_shared/{types.d-wwpgA3to.d.ts → types.d-Ce1Cxldz.d.ts} +1 -1
- package/dist/packem_shared/{types.d-CNnnk-Ya.d.ts → types.d-CzCROKCz.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 +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
## @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
|
+
|
|
3
|
+
### Miscellaneous Chores
|
|
4
|
+
|
|
5
|
+
* **email:** apply prettier and eslint formatting sweep ([6950709](https://github.com/visulima/visulima/commit/69507091f75a9c4783f4ce04927c4152d7a00cd7))
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Dependencies
|
|
9
|
+
|
|
10
|
+
* **@visulima/disposable-email-domains:** upgraded to 1.0.0-alpha.14
|
|
11
|
+
* **@visulima/error:** upgraded to 6.0.0-alpha.24
|
|
12
|
+
* **@visulima/fs:** upgraded to 5.0.0-alpha.22
|
|
13
|
+
|
|
14
|
+
## @visulima/email [1.0.0-alpha.27](https://github.com/visulima/visulima/compare/@visulima/email@1.0.0-alpha.26...@visulima/email@1.0.0-alpha.27) (2026-05-11)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Dependencies
|
|
18
|
+
|
|
19
|
+
* **@visulima/error:** upgraded to 6.0.0-alpha.23
|
|
20
|
+
* **@visulima/fs:** upgraded to 5.0.0-alpha.21
|
|
21
|
+
|
|
1
22
|
## @visulima/email [1.0.0-alpha.26](https://github.com/visulima/visulima/compare/@visulima/email@1.0.0-alpha.25...@visulima/email@1.0.0-alpha.26) (2026-05-11)
|
|
2
23
|
|
|
3
24
|
|
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-Ce1Cxldz.js";
|
|
2
|
+
import { D as DkimOptions, E as EmailSigner, S as SmimeEncryptOptions, a as EmailEncrypter, b as SmimeSignOptions } from "../packem_shared/types.d-CzCROKCz.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, c as Receipt } from "./packem_shared/types.d-Ce1Cxldz.js";
|
|
4
|
+
export { type B as BaseConfig, type d as EmailTag, type F as FeatureFlags, type I as ImmutableHeaders, type M as MaybePromise } from "./packem_shared/types.d-Ce1Cxldz.js";
|
|
5
|
+
import { E as EmailSigner, a as EmailEncrypter } from "./packem_shared/types.d-CzCROKCz.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-1mSg_bdf.js";
|
|
8
|
+
export { type P as ProviderFactory, d as defineProvider } from "./packem_shared/provider.d-1mSg_bdf.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-Ce1Cxldz.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, Receipt as c, EmailTag 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-1mSg_bdf.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-1mSg_bdf.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-Ce1Cxldz.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-1mSg_bdf.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-1mSg_bdf.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-Ce1Cxldz.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-1mSg_bdf.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-1mSg_bdf.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-Ce1Cxldz.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-1mSg_bdf.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-1mSg_bdf.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions, b as EmailAddress } from "../../packem_shared/types.d-Ce1Cxldz.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-1mSg_bdf.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-1mSg_bdf.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-Ce1Cxldz.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-1mSg_bdf.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-1mSg_bdf.js";
|
|
3
|
+
import { E as EmailOptions } from "../../packem_shared/types.d-Ce1Cxldz.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-1mSg_bdf.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-1mSg_bdf.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-Ce1Cxldz.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-1mSg_bdf.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-1mSg_bdf.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-Ce1Cxldz.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-1mSg_bdf.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-1mSg_bdf.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-Ce1Cxldz.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-1mSg_bdf.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-1mSg_bdf.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-Ce1Cxldz.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-1mSg_bdf.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-1mSg_bdf.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-Ce1Cxldz.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-1mSg_bdf.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-1mSg_bdf.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-Ce1Cxldz.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-1mSg_bdf.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-1mSg_bdf.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-Ce1Cxldz.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-1mSg_bdf.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-1mSg_bdf.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-Ce1Cxldz.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-1mSg_bdf.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-1mSg_bdf.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-Ce1Cxldz.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-1mSg_bdf.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-1mSg_bdf.js";
|
|
3
|
+
import { c as Receipt, B as BaseConfig, E as EmailOptions, a as EmailResult } from "../../packem_shared/types.d-Ce1Cxldz.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-1mSg_bdf.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-1mSg_bdf.js";
|
|
3
|
+
import { b as EmailAddress, B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-Ce1Cxldz.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-1mSg_bdf.js";
|
|
2
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-Ce1Cxldz.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-1mSg_bdf.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-1mSg_bdf.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-Ce1Cxldz.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-1mSg_bdf.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-1mSg_bdf.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-Ce1Cxldz.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-1mSg_bdf.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-1mSg_bdf.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-Ce1Cxldz.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-1mSg_bdf.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-1mSg_bdf.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions, d as EmailTag } from "../../packem_shared/types.d-Ce1Cxldz.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-1mSg_bdf.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-1mSg_bdf.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-Ce1Cxldz.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-1mSg_bdf.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-1mSg_bdf.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-Ce1Cxldz.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-1mSg_bdf.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-1mSg_bdf.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-Ce1Cxldz.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-1mSg_bdf.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-1mSg_bdf.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-Ce1Cxldz.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-1mSg_bdf.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-1mSg_bdf.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-Ce1Cxldz.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-1mSg_bdf.js";
|
|
2
|
+
export { type a as Provider } from "../../packem_shared/provider.d-1mSg_bdf.js";
|
|
3
|
+
import { B as BaseConfig, E as EmailOptions } from "../../packem_shared/types.d-Ce1Cxldz.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-Ce1Cxldz.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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/email",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.28",
|
|
4
4
|
"description": "A comprehensive email library with multi-provider support, crypto utilities, and template engines",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ahasend",
|
|
@@ -267,7 +267,7 @@
|
|
|
267
267
|
"provenance": true
|
|
268
268
|
},
|
|
269
269
|
"dependencies": {
|
|
270
|
-
"@visulima/disposable-email-domains": "1.0.0-alpha.
|
|
270
|
+
"@visulima/disposable-email-domains": "1.0.0-alpha.14",
|
|
271
271
|
"html-to-text": "^10.0.0",
|
|
272
272
|
"ical-generator": "10.2.0",
|
|
273
273
|
"lru-cache": "11.3.6",
|