@carlosdiazz/lottodiz-shared 3.0.8 → 3.1.0

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.
@@ -169,6 +169,7 @@ export declare class MethodValid {
169
169
  static POS_USER_LOGIN: string;
170
170
  static FIREBASE_CREATE_POS_USER: string;
171
171
  static FIREBASE_DELETE_POS_USER: string;
172
+ static FIREBASE_UPDATE_PASSWORD_POS_USER: string;
172
173
  static POS_MONITOR_CREATE: string;
173
174
  static POS_MONITOR_FIND_ONE: string;
174
175
  static POS_MONITOR_FIND_ALL: string;
@@ -203,6 +203,7 @@ MethodValid.POS_USER_LOGIN = "POS_USER_LOGIN";
203
203
  //FIREBASE POS USER
204
204
  MethodValid.FIREBASE_CREATE_POS_USER = "FIREBASE_CREATE_POS_USER";
205
205
  MethodValid.FIREBASE_DELETE_POS_USER = "FIREBASE_DELETE_POS_USER";
206
+ MethodValid.FIREBASE_UPDATE_PASSWORD_POS_USER = "FIREBASE_UPDATE_PASSWORD_POS_USER";
206
207
  //POS MONITOR
207
208
  MethodValid.POS_MONITOR_CREATE = "POS_MONITOR_CREATE";
208
209
  MethodValid.POS_MONITOR_FIND_ONE = "POS_MONITOR_FIND_ONE";
@@ -18,3 +18,7 @@ export interface CreateFirebaseUserResponseInterface {
18
18
  export interface DeleteFirebaseUserInterface {
19
19
  uid: string;
20
20
  }
21
+ export interface UpdateFirebaseUserPasswordInterface {
22
+ uid: string;
23
+ password: string;
24
+ }
@@ -2,7 +2,6 @@ import { PosInterface } from "../pos";
2
2
  export interface PosUserInterface {
3
3
  id: number;
4
4
  name: string;
5
- password: string;
6
5
  active: boolean;
7
6
  nickname: string;
8
7
  firebaseUid: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carlosdiazz/lottodiz-shared",
3
- "version": "3.0.8",
3
+ "version": "3.1.0",
4
4
  "description": "Shared Dtos, models, constants and utils",
5
5
  "main": "dist/index.js",
6
6
  "private": false,