mailery 0.1.0 → 0.1.1
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/dist/admin/spa/index-DnPQRmZe.js +41 -0
- package/dist/admin/spa/index-DnPQRmZe.js.map +1 -0
- package/dist/admin/spa/index.html +1 -1
- package/dist/admin/spa/{template-editor-Cx1ky7rr.js → template-editor-DFGyqPn3.js} +2 -2
- package/dist/admin/spa/{template-editor-Cx1ky7rr.js.map → template-editor-DFGyqPn3.js.map} +1 -1
- package/dist/index.cjs +160 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +51 -3
- package/dist/index.d.ts +51 -3
- package/dist/index.js +153 -1
- package/dist/index.js.map +1 -1
- package/dist/{null-7gnz1V98.d.cts → null-sygex0Ru.d.cts} +1 -1
- package/dist/{null-7gnz1V98.d.ts → null-sygex0Ru.d.ts} +1 -1
- package/dist/testing.d.cts +1 -1
- package/dist/testing.d.ts +1 -1
- package/package.json +1 -1
- package/dist/admin/spa/index-C_FJL_E_.js +0 -41
- package/dist/admin/spa/index-C_FJL_E_.js.map +0 -1
|
@@ -956,4 +956,4 @@ declare class NullProvider implements MailProvider {
|
|
|
956
956
|
reset(): void;
|
|
957
957
|
}
|
|
958
958
|
|
|
959
|
-
export { type AdapterFilter as A, type BroadcastDoc as B, type ContactAdapter as C, type TemplateVersionDoc as D, type EventDoc as E, type
|
|
959
|
+
export { type AdapterFilter as A, type BroadcastDoc as B, type ContactAdapter as C, type TemplateVersionDoc as D, type EventDoc as E, type FlowStep as F, ensureIndexes as G, type HealthDoc as H, getCollections as I, type LeadDoc as L, type MailProvider as M, type NormalizedEvent as N, type OutboxDoc as O, type Predicate as P, type RedisOptions as R, type SendArgs as S, type TemplateDoc as T, type WebhookEventDoc as W, type Contact as a, type SendResult as b, Mailer as c, type SuppressionScope as d, type SegmentFilter as e, type AuditLogDoc as f, type BroadcastStatus as g, type CircuitBreakerThresholds as h, type Collections as i, type ContactTagDoc as j, type FlowDoc as k, type FlowGoal as l, type FlowRunDoc as m, type FlowRunStatus as n, type FlowVersionDoc as o, type HealthStatus as p, type MailerConfig as q, NullProvider as r, type SegmentDefinition as s, type SendDoc as t, type SendStatus as u, type SubscriptionDoc as v, type SubscriptionStatus as w, type SuppressionDoc as x, type SuppressionReason as y, type TemplateKind as z };
|
|
@@ -956,4 +956,4 @@ declare class NullProvider implements MailProvider {
|
|
|
956
956
|
reset(): void;
|
|
957
957
|
}
|
|
958
958
|
|
|
959
|
-
export { type AdapterFilter as A, type BroadcastDoc as B, type ContactAdapter as C, type TemplateVersionDoc as D, type EventDoc as E, type
|
|
959
|
+
export { type AdapterFilter as A, type BroadcastDoc as B, type ContactAdapter as C, type TemplateVersionDoc as D, type EventDoc as E, type FlowStep as F, ensureIndexes as G, type HealthDoc as H, getCollections as I, type LeadDoc as L, type MailProvider as M, type NormalizedEvent as N, type OutboxDoc as O, type Predicate as P, type RedisOptions as R, type SendArgs as S, type TemplateDoc as T, type WebhookEventDoc as W, type Contact as a, type SendResult as b, Mailer as c, type SuppressionScope as d, type SegmentFilter as e, type AuditLogDoc as f, type BroadcastStatus as g, type CircuitBreakerThresholds as h, type Collections as i, type ContactTagDoc as j, type FlowDoc as k, type FlowGoal as l, type FlowRunDoc as m, type FlowRunStatus as n, type FlowVersionDoc as o, type HealthStatus as p, type MailerConfig as q, NullProvider as r, type SegmentDefinition as s, type SendDoc as t, type SendStatus as u, type SubscriptionDoc as v, type SubscriptionStatus as w, type SuppressionDoc as x, type SuppressionReason as y, type TemplateKind as z };
|
package/dist/testing.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Db } from 'mongodb';
|
|
2
|
-
import { C as ContactAdapter, a as Contact, A as AdapterFilter, c as Mailer,
|
|
2
|
+
import { C as ContactAdapter, a as Contact, A as AdapterFilter, c as Mailer, r as NullProvider } from './null-sygex0Ru.cjs';
|
|
3
3
|
import 'ioredis';
|
|
4
4
|
import 'zod';
|
|
5
5
|
import 'handlebars';
|
package/dist/testing.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Db } from 'mongodb';
|
|
2
|
-
import { C as ContactAdapter, a as Contact, A as AdapterFilter, c as Mailer,
|
|
2
|
+
import { C as ContactAdapter, a as Contact, A as AdapterFilter, c as Mailer, r as NullProvider } from './null-sygex0Ru.js';
|
|
3
3
|
import 'ioredis';
|
|
4
4
|
import 'zod';
|
|
5
5
|
import 'handlebars';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mailery",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Embedded, MongoDB-backed email automation for Node.js. Triggered flows, broadcasts, tracking, suppression, and an admin UI you mount inside your Express app.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Jeff Jassky <jeff@jeffjassky.com>",
|