@vsniksnet/contracts 1.2.0 → 1.2.1

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.
@@ -0,0 +1,5 @@
1
+ export interface AccountCreatedEvent {
2
+ email: string;
3
+ code: string;
4
+ }
5
+ export declare const AUTH_ACCOUNT_CREATED = "auth.account.created";
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AUTH_ACCOUNT_CREATED = void 0;
4
+ exports.AUTH_ACCOUNT_CREATED = 'auth.account.created';
@@ -1 +1,2 @@
1
1
  export * from './otp-requested.event';
2
+ export * from './account-created.event';
@@ -15,3 +15,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./otp-requested.event"), exports);
18
+ __exportStar(require("./account-created.event"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vsniksnet/contracts",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "Protobuf definitions and generated typescript types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",