Aller au contenu

lib/notifier

Ce contenu n’est pas encore disponible dans votre langue.

type AdminNotification = keyof AdminNotifications;

Defined in: studiocms/packages/studiocms/src/lib/notifier/index.ts:112

The type of the adminNotificationTypes array.


type EditorNotification = keyof EditorNotifications;

Defined in: studiocms/packages/studiocms/src/lib/notifier/index.ts:107

The type of the editorNotificationTypes array.


type UserNotification = keyof UserNotifications;

Defined in: studiocms/packages/studiocms/src/lib/notifier/index.ts:102

The type of the userNotificationTypes array.

const notificationTitleStrings: Record<UserNotificationOptions, string>;

Defined in: studiocms/packages/studiocms/src/lib/notifier/index.ts:57

An object containing notification titles for each notification type.


const notificationTypes: {
admin: string[];
editor: string[];
user: string[];
};

Defined in: studiocms/packages/studiocms/src/lib/notifier/index.ts:93

An object containing all notification types.

admin: string[];

editor: string[];

user: string[];

function sendAdminNotification<T, K>(notification: T, data: K): Promise<void>

Defined in: studiocms/packages/studiocms/src/lib/notifier/index.ts:292

Sends an admin notification if the mailer is enabled and the mail connection is verified.

T extends "user_updated" | "user_deleted" | "new_user"

The type of the admin notification.

K extends string

The type of the data required by the notification.

T

The type of notification to send.

K

The data to include in the notification.

Promise<void>


function sendEditorNotification<T, K>(notification: T, data: K): Promise<void>

Defined in: studiocms/packages/studiocms/src/lib/notifier/index.ts:251

Sends an editor notification if the mailer is enabled and the mail connection is verified.

T extends | "page_updated" | "page_deleted" | "new_page" | "folder_updated" | "folder_deleted" | "new_folder"

The type of the editor notification.

K extends string

The type of the data required by the notification.

T

The type of notification to send.

K

The data to include in the notification.

Promise<void>


function sendUserNotification<T>(notification: T, userId: string): Promise<void>

Defined in: studiocms/packages/studiocms/src/lib/notifier/index.ts:204

Sends a user notification if the mailer is enabled and the mail connection is verified.

T extends "account_updated"

The type of the user notification.

T

The notification to be sent.

string

The ID of the user to whom the notification will be sent.

Promise<void>

A promise that resolves when the notification is sent or if the mailer is disabled.