@bloggie/library 1.0.3 → 1.0.4

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.
@@ -1,5 +1,5 @@
1
1
  import { Subjects } from './subjects';
2
- export interface UserVerificationOtp {
2
+ export interface UserVerificationOtpEvent {
3
3
  subject: Subjects.UserVerificationOtp;
4
4
  data: {
5
5
  email: string;
@@ -1,5 +1,5 @@
1
1
  import { Subjects } from './subjects';
2
- export interface UserResendOtp {
2
+ export interface UserResendOtpEvent {
3
3
  subject: Subjects.UserResendOtp;
4
4
  data: {
5
5
  email: string;
@@ -1,5 +1,5 @@
1
1
  import { Subjects } from './subjects';
2
- export interface UserVerified {
2
+ export interface VerifiedUserEvent {
3
3
  subject: Subjects.UserVerified;
4
4
  data: {
5
5
  email: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bloggie/library",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",