@facteurjs/adonisjs 2.0.0-beta.5 → 2.0.0-beta.7
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/_virtual/{rolldown_runtime.mjs → _rolldown/runtime.mjs} +3 -3
- package/dist/channels/aws-sns.d.mts +1 -0
- package/dist/channels/database.d.mts +1 -0
- package/dist/channels/discord.d.mts +1 -0
- package/dist/channels/fcm.d.mts +1 -0
- package/dist/channels/mail.mjs +0 -1
- package/dist/channels/socketio.d.mts +1 -0
- package/dist/channels/transmit.d.mts +1 -0
- package/dist/channels/twilio.d.mts +1 -0
- package/dist/channels/webpush.d.mts +1 -0
- package/dist/types.d.mts +1 -1
- package/package.json +7 -7
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
//#region
|
|
1
|
+
//#region \0rolldown/runtime.js
|
|
2
2
|
var __defProp = Object.defineProperty;
|
|
3
3
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
5
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __exportAll = (all,
|
|
6
|
+
var __exportAll = (all, no_symbols) => {
|
|
7
7
|
let target = {};
|
|
8
8
|
for (var name in all) {
|
|
9
9
|
__defProp(target, name, {
|
|
@@ -11,7 +11,7 @@ var __exportAll = (all, symbols) => {
|
|
|
11
11
|
enumerable: true
|
|
12
12
|
});
|
|
13
13
|
}
|
|
14
|
-
if (
|
|
14
|
+
if (!no_symbols) {
|
|
15
15
|
__defProp(target, Symbol.toStringTag, { value: "Module" });
|
|
16
16
|
}
|
|
17
17
|
return target;
|
package/dist/channels/fcm.d.mts
CHANGED
package/dist/channels/mail.mjs
CHANGED
|
@@ -20,7 +20,6 @@ var MailChannel = class {
|
|
|
20
20
|
async send(options) {
|
|
21
21
|
const targets = options.targets;
|
|
22
22
|
if (!targets || !targets.email) throw new errors.E_UNAVAILABLE_TARGETS(["Mail"]);
|
|
23
|
-
console.log(options.message);
|
|
24
23
|
if (options.message instanceof BaseMail) {
|
|
25
24
|
options.message.message.to(targets.email);
|
|
26
25
|
this.config.mailer.send(options.message);
|
package/dist/types.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __exportAll, __reExport } from "./_virtual/
|
|
1
|
+
import { __exportAll, __reExport } from "./_virtual/_rolldown/runtime.mjs";
|
|
2
2
|
import { Identifier } from "@facteurjs/core/database/types";
|
|
3
3
|
import { ConfigProvider } from "@adonisjs/core/types";
|
|
4
4
|
import { HttpContext } from "@adonisjs/core/http";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@facteurjs/adonisjs",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.7",
|
|
4
4
|
"description": "AdonisJS integration for Facteur - Send notifications via multiple channels in your AdonisJS application",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"adonis",
|
|
@@ -47,15 +47,15 @@
|
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"@julr/utils": "1.9.0",
|
|
49
49
|
"@poppinss/exception": "^1.2.3",
|
|
50
|
-
"@facteurjs/core": "2.0.0-beta.
|
|
50
|
+
"@facteurjs/core": "2.0.0-beta.1"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@adonisjs/core": "^7.0.0-next.
|
|
54
|
-
"@adonisjs/
|
|
55
|
-
"@adonisjs/lucid": "^22.0.0-next.5",
|
|
53
|
+
"@adonisjs/core": "^7.0.0-next.28",
|
|
54
|
+
"@adonisjs/lucid": "^22.0.0-next.9",
|
|
56
55
|
"@adonisjs/mail": "^10.0.0-next.1",
|
|
57
56
|
"@adonisjs/redis": "^10.0.0-next.2",
|
|
58
|
-
"@adonisjs/transmit": "^2.0.
|
|
57
|
+
"@adonisjs/transmit": "^2.0.2",
|
|
58
|
+
"@adonisjs/tsconfig": "2.0.0-next.3"
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|
|
61
61
|
"@adonisjs/core": "^7.0.0-next.23",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"@adonisjs/transmit": "^2.0.0-1"
|
|
66
66
|
},
|
|
67
67
|
"engines": {
|
|
68
|
-
"node": ">=
|
|
68
|
+
"node": ">=24.0.0"
|
|
69
69
|
},
|
|
70
70
|
"peerDependenciesMeta": {
|
|
71
71
|
"@adonisjs/lucid": {
|