@managemint-solutions/entities 1.0.7 → 1.0.9

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,18 @@
1
+ export type loginDto = {
2
+ email: string;
3
+ password: string;
4
+ };
5
+ export type ExchangeRefreshTokenDto = {
6
+ refresh_token: string;
7
+ };
8
+ export type SendPasswordResetEmailDto = {
9
+ email: string;
10
+ };
11
+ export type ExchangeTokenHashDto = {
12
+ token_hash: string;
13
+ };
14
+ export type ResetPasswordDto = {
15
+ password: string;
16
+ access_token: string;
17
+ refresh_token: string;
18
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@managemint-solutions/entities",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "description": "Entity types used by both the api and portal",
5
5
  "homepage": "https://github.com/ManageMint-Solutions/managemint-solutions-entities#readme",
6
6
  "bugs": {