mailery 0.3.0 → 0.3.2
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-B1Mp8lSz.js +41 -0
- package/dist/admin/spa/index-B1Mp8lSz.js.map +1 -0
- package/dist/admin/spa/index.html +1 -1
- package/dist/admin/spa/{template-editor-BuYSO1FP.js → template-editor-dMzrGcva.js} +66 -66
- package/dist/admin/spa/{template-editor-BuYSO1FP.js.map → template-editor-dMzrGcva.js.map} +1 -1
- package/dist/cli.cjs +1 -1
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +1 -1
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +130 -18
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +130 -18
- package/dist/index.js.map +1 -1
- package/dist/{null-DaisDvB_.d.cts → null-CGaNDDlQ.d.cts} +4 -0
- package/dist/{null-DaisDvB_.d.ts → null-CGaNDDlQ.d.ts} +4 -0
- package/dist/testing.cjs +5 -0
- package/dist/testing.cjs.map +1 -1
- package/dist/testing.d.cts +1 -1
- package/dist/testing.d.ts +1 -1
- package/dist/testing.js +5 -0
- package/dist/testing.js.map +1 -1
- package/package.json +1 -1
- package/dist/admin/spa/index-csgOs39s.js +0 -41
- package/dist/admin/spa/index-csgOs39s.js.map +0 -1
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, r as NullProvider } from './null-
|
|
2
|
+
import { C as ContactAdapter, a as Contact, A as AdapterFilter, c as Mailer, r as NullProvider } from './null-CGaNDDlQ.cjs';
|
|
3
3
|
import 'zod';
|
|
4
4
|
import 'handlebars';
|
|
5
5
|
import 'ioredis';
|
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, r as NullProvider } from './null-
|
|
2
|
+
import { C as ContactAdapter, a as Contact, A as AdapterFilter, c as Mailer, r as NullProvider } from './null-CGaNDDlQ.js';
|
|
3
3
|
import 'zod';
|
|
4
4
|
import 'handlebars';
|
|
5
5
|
import 'ioredis';
|
package/dist/testing.js
CHANGED
|
@@ -14568,6 +14568,11 @@ function adaptBullQueue(q) {
|
|
|
14568
14568
|
return {
|
|
14569
14569
|
add: (name, data, opts) => q.add(name, data, opts),
|
|
14570
14570
|
getWaitingCount: () => q.getWaitingCount(),
|
|
14571
|
+
getInFlightCount: async () => {
|
|
14572
|
+
const [active, waiting] = await Promise.all([q.getActiveCount(), q.getWaitingCount()]);
|
|
14573
|
+
return active + waiting;
|
|
14574
|
+
},
|
|
14575
|
+
getDelayedCount: () => q.getDelayedCount(),
|
|
14571
14576
|
close: () => q.close()
|
|
14572
14577
|
};
|
|
14573
14578
|
}
|