@konplit-services/common 1.0.315 → 1.0.316
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/build/events/notification-events/interfaces/emails/admin-account-created-notify.interface.d.ts +8 -0
- package/build/events/notification-events/interfaces/emails/admin-account-created-notify.interface.js +2 -0
- package/build/events/notification-events/interfaces/emails/cust-trans-notify.interface.d.ts +8 -0
- package/build/events/notification-events/interfaces/emails/cust-trans-notify.interface.js +2 -0
- package/build/events/notification-events/interfaces/emails/customer-welcome-notify.interface.d.ts +8 -0
- package/build/events/notification-events/interfaces/emails/customer-welcome-notify.interface.js +2 -0
- package/build/events/notification-events/interfaces/emails/email-verification-notify.interface.d.ts +8 -0
- package/build/events/notification-events/interfaces/emails/email-verification-notify.interface.js +2 -0
- package/build/events/notification-events/interfaces/emails/index.d.ts +20 -0
- package/build/events/notification-events/interfaces/emails/index.js +36 -0
- package/build/events/notification-events/interfaces/emails/invoice-notify.interface.d.ts +8 -0
- package/build/events/notification-events/interfaces/emails/invoice-notify.interface.js +2 -0
- package/build/events/notification-events/interfaces/emails/invoice-receipt-notify.interface.d.ts +8 -0
- package/build/events/notification-events/interfaces/emails/invoice-receipt-notify.interface.js +2 -0
- package/build/events/notification-events/interfaces/emails/merchant-password-update-notify.interface.d.ts +8 -0
- package/build/events/notification-events/interfaces/emails/merchant-password-update-notify.interface.js +2 -0
- package/build/events/notification-events/interfaces/emails/merchant-trans-notify.interface.d.ts +8 -0
- package/build/events/notification-events/interfaces/emails/merchant-trans-notify.interface.js +2 -0
- package/build/events/notification-events/interfaces/emails/merchant-user-invitation-notify.interface.d.ts +8 -0
- package/build/events/notification-events/interfaces/emails/merchant-user-invitation-notify.interface.js +2 -0
- package/build/events/notification-events/interfaces/emails/merchant-welcome-notify.interface.d.ts +8 -0
- package/build/events/notification-events/interfaces/emails/merchant-welcome-notify.interface.js +2 -0
- package/build/events/notification-events/interfaces/emails/new-sub-notify.interface.d.ts +8 -0
- package/build/events/notification-events/interfaces/emails/new-sub-notify.interface.js +2 -0
- package/build/events/notification-events/interfaces/emails/password-change-request-notify.interface.d.ts +8 -0
- package/build/events/notification-events/interfaces/emails/password-change-request-notify.interface.js +2 -0
- package/build/events/notification-events/interfaces/emails/password-reset-notify.interface.d.ts +8 -0
- package/build/events/notification-events/interfaces/emails/password-reset-notify.interface.js +2 -0
- package/build/events/notification-events/interfaces/emails/pending-payment-request-notify.interface.d.ts +8 -0
- package/build/events/notification-events/interfaces/emails/pending-payment-request-notify.interface.js +2 -0
- package/build/events/notification-events/interfaces/emails/pre-charge-notify.interface.d.ts +8 -0
- package/build/events/notification-events/interfaces/emails/pre-charge-notify.interface.js +2 -0
- package/build/events/notification-events/interfaces/emails/sub-cancel-notify.interface.d.ts +8 -0
- package/build/events/notification-events/interfaces/emails/sub-cancel-notify.interface.js +2 -0
- package/build/events/notification-events/interfaces/emails/sub-charge-receipt-notify.interface.d.ts +8 -0
- package/build/events/notification-events/interfaces/emails/sub-charge-receipt-notify.interface.js +2 -0
- package/build/events/notification-events/interfaces/emails/sub-payment-fail-notify.interface.d.ts +8 -0
- package/build/events/notification-events/interfaces/emails/sub-payment-fail-notify.interface.js +2 -0
- package/build/events/notification-events/interfaces/emails/token-verification-notify.interface.d.ts +8 -0
- package/build/events/notification-events/interfaces/emails/token-verification-notify.interface.js +2 -0
- package/build/events/notification-events/interfaces/emails/two2factor-auth-notify.interface.d.ts +8 -0
- package/build/events/notification-events/interfaces/emails/two2factor-auth-notify.interface.js +2 -0
- package/build/events/notification-events/interfaces/index.d.ts +1 -0
- package/build/events/notification-events/interfaces/index.js +1 -0
- package/build/events/subjects.d.ts +20 -0
- package/build/events/subjects.js +21 -0
- package/package.json +1 -1
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { AdminAccountCreationTemplateData } from "../../../../notification";
|
|
2
|
+
import { StreamEvent, StreamName, Subjects } from "../../../subjects";
|
|
3
|
+
export interface AdminAccountCreatedNotifyEmailCreatedEvent {
|
|
4
|
+
subject: Subjects.AdminAccountCreatedNotificationEmailCreated;
|
|
5
|
+
streamName: StreamName.name;
|
|
6
|
+
streamEvents: StreamEvent.Event;
|
|
7
|
+
data: AdminAccountCreationTemplateData;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { CustomerTransactionReceiptTemplateData } from "../../../../notification";
|
|
2
|
+
import { StreamEvent, StreamName, Subjects } from "../../../subjects";
|
|
3
|
+
export interface CustomerTransNotifyEmailCreatedEvent {
|
|
4
|
+
subject: Subjects.CustomerTransactionNotificationEmailCreated;
|
|
5
|
+
streamName: StreamName.name;
|
|
6
|
+
streamEvents: StreamEvent.Event;
|
|
7
|
+
data: CustomerTransactionReceiptTemplateData;
|
|
8
|
+
}
|
package/build/events/notification-events/interfaces/emails/customer-welcome-notify.interface.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { CustomerWelcomeTemplateData } from "../../../../notification";
|
|
2
|
+
import { StreamEvent, StreamName, Subjects } from "../../../subjects";
|
|
3
|
+
export interface CustomerWelcomeNotifyEmailCreatedEvent {
|
|
4
|
+
subject: Subjects.CustomerWelcomeNotificationEmailCreated;
|
|
5
|
+
streamName: StreamName.name;
|
|
6
|
+
streamEvents: StreamEvent.Event;
|
|
7
|
+
data: CustomerWelcomeTemplateData;
|
|
8
|
+
}
|
package/build/events/notification-events/interfaces/emails/email-verification-notify.interface.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { EmailVerificationTemplateData } from "../../../../notification";
|
|
2
|
+
import { StreamEvent, StreamName, Subjects } from "../../../subjects";
|
|
3
|
+
export interface EmailVerificationNotifyEmailCreatedEvent {
|
|
4
|
+
subject: Subjects.EmailVerificationNotificationEmailCreated;
|
|
5
|
+
streamName: StreamName.name;
|
|
6
|
+
streamEvents: StreamEvent.Event;
|
|
7
|
+
data: EmailVerificationTemplateData;
|
|
8
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export * from "./admin-account-created-notify.interface";
|
|
2
|
+
export * from "./cust-trans-notify.interface";
|
|
3
|
+
export * from "./customer-welcome-notify.interface";
|
|
4
|
+
export * from "./email-verification-notify.interface";
|
|
5
|
+
export * from "./invoice-notify.interface";
|
|
6
|
+
export * from "./invoice-receipt-notify.interface";
|
|
7
|
+
export * from "./merchant-password-update-notify.interface";
|
|
8
|
+
export * from "./merchant-trans-notify.interface";
|
|
9
|
+
export * from "./merchant-user-invitation-notify.interface";
|
|
10
|
+
export * from "./merchant-welcome-notify.interface";
|
|
11
|
+
export * from "./new-sub-notify.interface";
|
|
12
|
+
export * from "./password-change-request-notify.interface";
|
|
13
|
+
export * from "./password-reset-notify.interface";
|
|
14
|
+
export * from "./pending-payment-request-notify.interface";
|
|
15
|
+
export * from "./pre-charge-notify.interface";
|
|
16
|
+
export * from "./sub-cancel-notify.interface";
|
|
17
|
+
export * from "./sub-charge-receipt-notify.interface";
|
|
18
|
+
export * from "./sub-payment-fail-notify.interface";
|
|
19
|
+
export * from "./token-verification-notify.interface";
|
|
20
|
+
export * from "./two2factor-auth-notify.interface";
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./admin-account-created-notify.interface"), exports);
|
|
18
|
+
__exportStar(require("./cust-trans-notify.interface"), exports);
|
|
19
|
+
__exportStar(require("./customer-welcome-notify.interface"), exports);
|
|
20
|
+
__exportStar(require("./email-verification-notify.interface"), exports);
|
|
21
|
+
__exportStar(require("./invoice-notify.interface"), exports);
|
|
22
|
+
__exportStar(require("./invoice-receipt-notify.interface"), exports);
|
|
23
|
+
__exportStar(require("./merchant-password-update-notify.interface"), exports);
|
|
24
|
+
__exportStar(require("./merchant-trans-notify.interface"), exports);
|
|
25
|
+
__exportStar(require("./merchant-user-invitation-notify.interface"), exports);
|
|
26
|
+
__exportStar(require("./merchant-welcome-notify.interface"), exports);
|
|
27
|
+
__exportStar(require("./new-sub-notify.interface"), exports);
|
|
28
|
+
__exportStar(require("./password-change-request-notify.interface"), exports);
|
|
29
|
+
__exportStar(require("./password-reset-notify.interface"), exports);
|
|
30
|
+
__exportStar(require("./pending-payment-request-notify.interface"), exports);
|
|
31
|
+
__exportStar(require("./pre-charge-notify.interface"), exports);
|
|
32
|
+
__exportStar(require("./sub-cancel-notify.interface"), exports);
|
|
33
|
+
__exportStar(require("./sub-charge-receipt-notify.interface"), exports);
|
|
34
|
+
__exportStar(require("./sub-payment-fail-notify.interface"), exports);
|
|
35
|
+
__exportStar(require("./token-verification-notify.interface"), exports);
|
|
36
|
+
__exportStar(require("./two2factor-auth-notify.interface"), exports);
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { InvoiceTemplateData } from "../../../../notification";
|
|
2
|
+
import { StreamEvent, StreamName, Subjects } from "../../../subjects";
|
|
3
|
+
export interface InvoiceNotifyEmailCreatedEvent {
|
|
4
|
+
subject: Subjects.InvoiceNotificationEmailCreated;
|
|
5
|
+
streamName: StreamName.name;
|
|
6
|
+
streamEvents: StreamEvent.Event;
|
|
7
|
+
data: InvoiceTemplateData;
|
|
8
|
+
}
|
package/build/events/notification-events/interfaces/emails/invoice-receipt-notify.interface.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { InvoiceReceiptTemplateData } from "../../../../notification";
|
|
2
|
+
import { StreamEvent, StreamName, Subjects } from "../../../subjects";
|
|
3
|
+
export interface InvoiceReceiptNotifyEmailCreatedEvent {
|
|
4
|
+
subject: Subjects.InvoiceReceiptNotificationEmailCreated;
|
|
5
|
+
streamName: StreamName.name;
|
|
6
|
+
streamEvents: StreamEvent.Event;
|
|
7
|
+
data: InvoiceReceiptTemplateData;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { MerchantPasswordUpdateTemplateData } from "../../../../notification";
|
|
2
|
+
import { StreamEvent, StreamName, Subjects } from "../../../subjects";
|
|
3
|
+
export interface MerchantPasswordUpdateNotifyEmailCreatedEvent {
|
|
4
|
+
subject: Subjects.MerchantPasswordUpdatedNotificationEmailCreated;
|
|
5
|
+
streamName: StreamName.name;
|
|
6
|
+
streamEvents: StreamEvent.Event;
|
|
7
|
+
data: MerchantPasswordUpdateTemplateData;
|
|
8
|
+
}
|
package/build/events/notification-events/interfaces/emails/merchant-trans-notify.interface.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { MerchantTransactionNotificationTemplateData } from "../../../../notification";
|
|
2
|
+
import { StreamEvent, StreamName, Subjects } from "../../../subjects";
|
|
3
|
+
export interface MerchantTrasNotifyEmailCreatedEvent {
|
|
4
|
+
subject: Subjects.MerchantTransactionNotificationEmailCreated;
|
|
5
|
+
streamName: StreamName.name;
|
|
6
|
+
streamEvents: StreamEvent.Event;
|
|
7
|
+
data: MerchantTransactionNotificationTemplateData;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { MerchantInvitationTemplateData } from "../../../../notification";
|
|
2
|
+
import { StreamEvent, StreamName, Subjects } from "../../../subjects";
|
|
3
|
+
export interface MerchantUserInvitationNotifyEmailCreatedEvent {
|
|
4
|
+
subject: Subjects.MerchantUserInviteNotificationEmailCreated;
|
|
5
|
+
streamName: StreamName.name;
|
|
6
|
+
streamEvents: StreamEvent.Event;
|
|
7
|
+
data: MerchantInvitationTemplateData;
|
|
8
|
+
}
|
package/build/events/notification-events/interfaces/emails/merchant-welcome-notify.interface.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { MerchantWelcomeTemplateData } from "../../../../notification";
|
|
2
|
+
import { StreamEvent, StreamName, Subjects } from "../../../subjects";
|
|
3
|
+
export interface MerchantWelcomeNotifyEmailCreatedEvent {
|
|
4
|
+
subject: Subjects.MerchantWelcomeNotificationEmailCreated;
|
|
5
|
+
streamName: StreamName.name;
|
|
6
|
+
streamEvents: StreamEvent.Event;
|
|
7
|
+
data: MerchantWelcomeTemplateData;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { NewSubscriptionTemplateData } from "../../../../notification";
|
|
2
|
+
import { StreamEvent, StreamName, Subjects } from "../../../subjects";
|
|
3
|
+
export interface NewSubNotifyEmailCreatedEvent {
|
|
4
|
+
subject: Subjects.NewSubNotificationEmailCreated;
|
|
5
|
+
streamName: StreamName.name;
|
|
6
|
+
streamEvents: StreamEvent.Event;
|
|
7
|
+
data: NewSubscriptionTemplateData;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { PasswordChangeRequestTemplateData } from "../../../../notification";
|
|
2
|
+
import { StreamEvent, StreamName, Subjects } from "../../../subjects";
|
|
3
|
+
export interface PasswordChangeRequestNotifyEmailCreatedEvent {
|
|
4
|
+
subject: Subjects.PasswordChangeRequestNotificationEmailCreated;
|
|
5
|
+
streamName: StreamName.name;
|
|
6
|
+
streamEvents: StreamEvent.Event;
|
|
7
|
+
data: PasswordChangeRequestTemplateData;
|
|
8
|
+
}
|
package/build/events/notification-events/interfaces/emails/password-reset-notify.interface.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { PasswordResetTemplateData } from "../../../../notification";
|
|
2
|
+
import { StreamEvent, StreamName, Subjects } from "../../../subjects";
|
|
3
|
+
export interface PasswordResetNotifyEmailCreatedEvent {
|
|
4
|
+
subject: Subjects.PasswordResetNotificationEmailCreated;
|
|
5
|
+
streamName: StreamName.name;
|
|
6
|
+
streamEvents: StreamEvent.Event;
|
|
7
|
+
data: PasswordResetTemplateData;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { PendingPaymentRequestTemplateData } from "../../../../notification";
|
|
2
|
+
import { StreamEvent, StreamName, Subjects } from "../../../subjects";
|
|
3
|
+
export interface PendingPaymentRequestNotifyEmailCreatedEvent {
|
|
4
|
+
subject: Subjects.PendingPaymentRequestNotificationEmailCreated;
|
|
5
|
+
streamName: StreamName.name;
|
|
6
|
+
streamEvents: StreamEvent.Event;
|
|
7
|
+
data: PendingPaymentRequestTemplateData;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { PreChargeNotificationTemplateData } from "../../../../notification";
|
|
2
|
+
import { StreamEvent, StreamName, Subjects } from "../../../subjects";
|
|
3
|
+
export interface PreSubChargeNotifyEmailCreatedEvent {
|
|
4
|
+
subject: Subjects.PreChargeSubNotificationEmailCreated;
|
|
5
|
+
streamName: StreamName.name;
|
|
6
|
+
streamEvents: StreamEvent.Event;
|
|
7
|
+
data: PreChargeNotificationTemplateData;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { CancellationConfirmationTemplateData } from "../../../../notification";
|
|
2
|
+
import { StreamEvent, StreamName, Subjects } from "../../../subjects";
|
|
3
|
+
export interface SubCancelNotifyEmailCreatedEvent {
|
|
4
|
+
subject: Subjects.SubCancelNotificationEmailCreated;
|
|
5
|
+
streamName: StreamName.name;
|
|
6
|
+
streamEvents: StreamEvent.Event;
|
|
7
|
+
data: CancellationConfirmationTemplateData;
|
|
8
|
+
}
|
package/build/events/notification-events/interfaces/emails/sub-charge-receipt-notify.interface.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ChargeReceiptTemplateData } from "../../../../notification";
|
|
2
|
+
import { StreamEvent, StreamName, Subjects } from "../../../subjects";
|
|
3
|
+
export interface SubChargeReceiptNotifyEmailCreatedEvent {
|
|
4
|
+
subject: Subjects.SubChargeReceiptNotificationEmailCreated;
|
|
5
|
+
streamName: StreamName.name;
|
|
6
|
+
streamEvents: StreamEvent.Event;
|
|
7
|
+
data: ChargeReceiptTemplateData;
|
|
8
|
+
}
|
package/build/events/notification-events/interfaces/emails/sub-payment-fail-notify.interface.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { PaymentFailureTemplateData } from "../../../../notification";
|
|
2
|
+
import { StreamEvent, StreamName, Subjects } from "../../../subjects";
|
|
3
|
+
export interface SubPaymentFaileNotifyEmailCreatedEvent {
|
|
4
|
+
subject: Subjects.SubPaymentFailureNotificationEmailCreated;
|
|
5
|
+
streamName: StreamName.name;
|
|
6
|
+
streamEvents: StreamEvent.Event;
|
|
7
|
+
data: PaymentFailureTemplateData;
|
|
8
|
+
}
|
package/build/events/notification-events/interfaces/emails/token-verification-notify.interface.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { TokenVerificationTemplateData } from "../../../../notification";
|
|
2
|
+
import { StreamEvent, StreamName, Subjects } from "../../../subjects";
|
|
3
|
+
export interface TokenVerificationNotifyEmailCreatedEvent {
|
|
4
|
+
subject: Subjects.TokenVerificationNotificationEmailCreated;
|
|
5
|
+
streamName: StreamName.name;
|
|
6
|
+
streamEvents: StreamEvent.Event;
|
|
7
|
+
data: TokenVerificationTemplateData;
|
|
8
|
+
}
|
package/build/events/notification-events/interfaces/emails/two2factor-auth-notify.interface.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { TwoFactorAuthStatusTemplateData } from "../../../../notification";
|
|
2
|
+
import { StreamEvent, StreamName, Subjects } from "../../../subjects";
|
|
3
|
+
export interface TwoFactorAuthNotifyEmailCreatedEvent {
|
|
4
|
+
subject: Subjects.TwoFactorAuthNotificationEmailCreated;
|
|
5
|
+
streamName: StreamName.name;
|
|
6
|
+
streamEvents: StreamEvent.Event;
|
|
7
|
+
data: TwoFactorAuthStatusTemplateData;
|
|
8
|
+
}
|
|
@@ -16,3 +16,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./mailersend.interface"), exports);
|
|
18
18
|
__exportStar(require("./termii-sms.interface"), exports);
|
|
19
|
+
__exportStar(require("./emails/index"), exports);
|
|
@@ -23,6 +23,26 @@ export declare enum Subjects {
|
|
|
23
23
|
AddPermissionToUser = "events.add.permission.to.user",
|
|
24
24
|
NotificationSmsCreated = "events.sms.created",
|
|
25
25
|
NotificationEmailCreated = "events.email.created",
|
|
26
|
+
InvoiceNotificationEmailCreated = "events.invoice.notification",
|
|
27
|
+
InvoiceReceiptNotificationEmailCreated = "events.invoice.receipt.notification",
|
|
28
|
+
NewSubNotificationEmailCreated = "events.new.sub.notification",
|
|
29
|
+
PreChargeSubNotificationEmailCreated = "events.pre.charge.sub.notification",
|
|
30
|
+
SubChargeReceiptNotificationEmailCreated = "events.sub.charrge.receipt.notification",
|
|
31
|
+
SubCancelNotificationEmailCreated = "events.sub.cancel.notification",
|
|
32
|
+
SubPaymentFailureNotificationEmailCreated = "events.sub.payment.fail.notification",
|
|
33
|
+
CustomerTransactionNotificationEmailCreated = "events.customer.trans.notification",
|
|
34
|
+
MerchantTransactionNotificationEmailCreated = "events.merchant.trans.notification",
|
|
35
|
+
PendingPaymentRequestNotificationEmailCreated = "events.pending.payment.request.notification",
|
|
36
|
+
TwoFactorAuthNotificationEmailCreated = "events.two.factor.auth.notification",
|
|
37
|
+
AdminAccountCreatedNotificationEmailCreated = "events.admin.account.created.notification",
|
|
38
|
+
MerchantWelcomeNotificationEmailCreated = "events.merchant.welcome.notification",
|
|
39
|
+
EmailVerificationNotificationEmailCreated = "events.email.verification.notification",
|
|
40
|
+
PasswordResetNotificationEmailCreated = "events.password.reset.notification",
|
|
41
|
+
MerchantPasswordUpdatedNotificationEmailCreated = "events.merchant.password.updated.notification",
|
|
42
|
+
PasswordChangeRequestNotificationEmailCreated = "events.password.change.request.notification",
|
|
43
|
+
TokenVerificationNotificationEmailCreated = "events.token.verification.notification",
|
|
44
|
+
MerchantUserInviteNotificationEmailCreated = "events.merchant.user.invite.notification",
|
|
45
|
+
CustomerWelcomeNotificationEmailCreated = "events.customer.welcome.notification",
|
|
26
46
|
UserRoleUpdated = "events.user.role.updated",
|
|
27
47
|
AdminLogCreated = "events.admin.log.created",
|
|
28
48
|
WalletCreated = "events.wallet.created",
|
package/build/events/subjects.js
CHANGED
|
@@ -36,6 +36,27 @@ var Subjects;
|
|
|
36
36
|
//Notification
|
|
37
37
|
Subjects["NotificationSmsCreated"] = "events.sms.created";
|
|
38
38
|
Subjects["NotificationEmailCreated"] = "events.email.created";
|
|
39
|
+
//Advance Notifications
|
|
40
|
+
Subjects["InvoiceNotificationEmailCreated"] = "events.invoice.notification";
|
|
41
|
+
Subjects["InvoiceReceiptNotificationEmailCreated"] = "events.invoice.receipt.notification";
|
|
42
|
+
Subjects["NewSubNotificationEmailCreated"] = "events.new.sub.notification";
|
|
43
|
+
Subjects["PreChargeSubNotificationEmailCreated"] = "events.pre.charge.sub.notification";
|
|
44
|
+
Subjects["SubChargeReceiptNotificationEmailCreated"] = "events.sub.charrge.receipt.notification";
|
|
45
|
+
Subjects["SubCancelNotificationEmailCreated"] = "events.sub.cancel.notification";
|
|
46
|
+
Subjects["SubPaymentFailureNotificationEmailCreated"] = "events.sub.payment.fail.notification";
|
|
47
|
+
Subjects["CustomerTransactionNotificationEmailCreated"] = "events.customer.trans.notification";
|
|
48
|
+
Subjects["MerchantTransactionNotificationEmailCreated"] = "events.merchant.trans.notification";
|
|
49
|
+
Subjects["PendingPaymentRequestNotificationEmailCreated"] = "events.pending.payment.request.notification";
|
|
50
|
+
Subjects["TwoFactorAuthNotificationEmailCreated"] = "events.two.factor.auth.notification";
|
|
51
|
+
Subjects["AdminAccountCreatedNotificationEmailCreated"] = "events.admin.account.created.notification";
|
|
52
|
+
Subjects["MerchantWelcomeNotificationEmailCreated"] = "events.merchant.welcome.notification";
|
|
53
|
+
Subjects["EmailVerificationNotificationEmailCreated"] = "events.email.verification.notification";
|
|
54
|
+
Subjects["PasswordResetNotificationEmailCreated"] = "events.password.reset.notification";
|
|
55
|
+
Subjects["MerchantPasswordUpdatedNotificationEmailCreated"] = "events.merchant.password.updated.notification";
|
|
56
|
+
Subjects["PasswordChangeRequestNotificationEmailCreated"] = "events.password.change.request.notification";
|
|
57
|
+
Subjects["TokenVerificationNotificationEmailCreated"] = "events.token.verification.notification";
|
|
58
|
+
Subjects["MerchantUserInviteNotificationEmailCreated"] = "events.merchant.user.invite.notification";
|
|
59
|
+
Subjects["CustomerWelcomeNotificationEmailCreated"] = "events.customer.welcome.notification";
|
|
39
60
|
// Roles
|
|
40
61
|
Subjects["UserRoleUpdated"] = "events.user.role.updated";
|
|
41
62
|
Subjects["AdminLogCreated"] = "events.admin.log.created";
|