@arkstack/notifications 0.12.11 → 0.12.12
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/index.d.ts +6 -7
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { DotPath, DotPathValue, MergedConfig } from "@arkstack/common";
|
|
2
2
|
import { Transporter } from "nodemailer";
|
|
3
3
|
import { Model } from "@arkstack/database";
|
|
4
|
-
import * as _$arkormx from "arkormx";
|
|
5
4
|
import { User } from "@arkstack/auth";
|
|
6
5
|
import * as _$twilio_lib_rest_api_v2010_account_message0 from "twilio/lib/rest/api/v2010/account/message.js";
|
|
7
6
|
|
|
@@ -163,8 +162,8 @@ declare class DbNotification extends NotificationContract<UserNotification> {
|
|
|
163
162
|
type(type: DbNotificationPayload['type']): this;
|
|
164
163
|
action(text?: string | null, link?: string | null): this;
|
|
165
164
|
meta(meta?: NotificationData | null): this;
|
|
166
|
-
create(user: User$1, payload: DbNotificationPayload): Promise<
|
|
167
|
-
send(message: string, subject?: string, _recipient?: NotificationRecipient, data?: NotificationData): Promise<
|
|
165
|
+
create(user: User$1, payload: DbNotificationPayload): Promise<any>;
|
|
166
|
+
send(message: string, subject?: string, _recipient?: NotificationRecipient, data?: NotificationData): Promise<any>;
|
|
168
167
|
}
|
|
169
168
|
//#endregion
|
|
170
169
|
//#region src/drivers/MailNotification.d.ts
|
|
@@ -280,7 +279,7 @@ declare class Notification<D extends keyof DriverMap = keyof DriverMap> {
|
|
|
280
279
|
static email(options?: MailDriverOptions): MailNotification;
|
|
281
280
|
static sms(options?: SmsDriverOptions): SmsNotification;
|
|
282
281
|
static db(): DbNotification;
|
|
283
|
-
static channel(channel?: NotificationChannel | 'email', options?: MailDriverOptions | SmsDriverOptions):
|
|
282
|
+
static channel(channel?: NotificationChannel | 'email', options?: MailDriverOptions | SmsDriverOptions): DbNotification | MailNotification | SmsNotification;
|
|
284
283
|
prepare(recipient?: null | MailRecipient | NotificationRecipient | User$1, data?: NotificationData): DriverMap[D];
|
|
285
284
|
private static createDriver;
|
|
286
285
|
}
|
|
@@ -288,9 +287,9 @@ declare class Notification<D extends keyof DriverMap = keyof DriverMap> {
|
|
|
288
287
|
//#region src/UserNotificationCenter.d.ts
|
|
289
288
|
declare class UserNotificationCenter {
|
|
290
289
|
private static getModel;
|
|
291
|
-
static create(user: User$1, payload: DbNotificationPayload): Promise<
|
|
292
|
-
static forUser(user: User$1): Promise<
|
|
293
|
-
static unreadForUser(user: User$1): Promise<
|
|
290
|
+
static create(user: User$1, payload: DbNotificationPayload): Promise<any>;
|
|
291
|
+
static forUser(user: User$1): Promise<any>;
|
|
292
|
+
static unreadForUser(user: User$1): Promise<any>;
|
|
294
293
|
static markRead(notification: UserNotification | UserNotification['id']): Promise<void>;
|
|
295
294
|
static markAllRead(user: User$1): Promise<void>;
|
|
296
295
|
static delete(notification: UserNotification | UserNotification['id']): Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arkstack/notifications",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.12",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Framework-agnostic notification module for Arkstack and Nodejs, providing support for multi-channel notification delivery.",
|
|
6
6
|
"homepage": "https://arkstack.toneflix.net/guide/notifications",
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
"africastalking": "^0.8.0",
|
|
35
35
|
"nodemailer": "^8.0.7",
|
|
36
36
|
"twilio": "^6.0.0",
|
|
37
|
-
"@arkstack/common": "^0.12.
|
|
37
|
+
"@arkstack/common": "^0.12.12"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
|
-
"@arkstack/database": "^0.12.
|
|
41
|
-
"@arkstack/contract": "^0.12.
|
|
40
|
+
"@arkstack/database": "^0.12.12",
|
|
41
|
+
"@arkstack/contract": "^0.12.12"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/nodemailer": "^7.0.11"
|