@mediaryorg/contracts 1.0.6 → 1.0.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/events/auth/event-keys.d.ts +5 -0
- package/dist/events/auth/event-keys.js +8 -0
- package/dist/events/auth/index.d.ts +2 -1
- package/dist/events/auth/index.js +2 -1
- package/package.json +1 -1
- /package/dist/events/auth/{notification-payloads.d.ts → event-payloads.ts.d.ts} +0 -0
- /package/dist/events/auth/{notification-payloads.js → event-payloads.ts.js} +0 -0
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/** Routing keys / patterns for auth-related notification messages (e.g. RMQ) */
|
|
2
|
+
export declare const AUTH_NOTIFICATION_EVENTS: {
|
|
3
|
+
readonly EMAIL_VERIFICATION_REQUESTED: "auth.email-verification.requested";
|
|
4
|
+
readonly PASSWORD_RESET_REQUESTED: "auth.password-reset.requested";
|
|
5
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AUTH_NOTIFICATION_EVENTS = void 0;
|
|
4
|
+
/** Routing keys / patterns for auth-related notification messages (e.g. RMQ) */
|
|
5
|
+
exports.AUTH_NOTIFICATION_EVENTS = {
|
|
6
|
+
EMAIL_VERIFICATION_REQUESTED: "auth.email-verification.requested",
|
|
7
|
+
PASSWORD_RESET_REQUESTED: "auth.password-reset.requested",
|
|
8
|
+
};
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export * from
|
|
1
|
+
export * from "./event-payloads.ts.js";
|
|
2
|
+
export * from "./event-keys.js";
|
|
@@ -14,4 +14,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./
|
|
17
|
+
__exportStar(require("./event-payloads.ts.js"), exports);
|
|
18
|
+
__exportStar(require("./event-keys.js"), exports);
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|