@carlosdiazz/lottodiz-shared 3.0.7 → 3.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.
- package/dist/enum/method-valid.d.ts +4 -0
- package/dist/enum/method-valid.js +5 -0
- package/dist/models/pos_user/index.d.ts +1 -0
- package/dist/models/pos_user/index.js +1 -0
- package/dist/models/pos_user/login-pos_user.base.d.ts +24 -0
- package/dist/models/pos_user/login-pos_user.base.js +2 -0
- package/dist/models/pos_user/pos_user.base.d.ts +1 -1
- package/package.json +1 -1
|
@@ -166,6 +166,10 @@ export declare class MethodValid {
|
|
|
166
166
|
static POS_USER_FIND_ALL: string;
|
|
167
167
|
static POS_USER_UPDATE: string;
|
|
168
168
|
static POS_USER_REMOVE: string;
|
|
169
|
+
static POS_USER_LOGIN: string;
|
|
170
|
+
static FIREBASE_CREATE_POS_USER: string;
|
|
171
|
+
static FIREBASE_DELETE_POS_USER: string;
|
|
172
|
+
static FIREBASE_UPDATE_PASSWORD_POS_USER: string;
|
|
169
173
|
static POS_MONITOR_CREATE: string;
|
|
170
174
|
static POS_MONITOR_FIND_ONE: string;
|
|
171
175
|
static POS_MONITOR_FIND_ALL: string;
|
|
@@ -199,6 +199,11 @@ MethodValid.POS_USER_FIND_ONE = "POS_USER_FIND_ONE";
|
|
|
199
199
|
MethodValid.POS_USER_FIND_ALL = "POS_USER_FIND_ALL";
|
|
200
200
|
MethodValid.POS_USER_UPDATE = "POS_USER_UPDATE";
|
|
201
201
|
MethodValid.POS_USER_REMOVE = "POS_USER_REMOVE";
|
|
202
|
+
MethodValid.POS_USER_LOGIN = "POS_USER_LOGIN";
|
|
203
|
+
//FIREBASE POS USER
|
|
204
|
+
MethodValid.FIREBASE_CREATE_POS_USER = "FIREBASE_CREATE_POS_USER";
|
|
205
|
+
MethodValid.FIREBASE_DELETE_POS_USER = "FIREBASE_DELETE_POS_USER";
|
|
206
|
+
MethodValid.FIREBASE_UPDATE_PASSWORD_POS_USER = "FIREBASE_UPDATE_PASSWORD_POS_USER";
|
|
202
207
|
//POS MONITOR
|
|
203
208
|
MethodValid.POS_MONITOR_CREATE = "POS_MONITOR_CREATE";
|
|
204
209
|
MethodValid.POS_MONITOR_FIND_ONE = "POS_MONITOR_FIND_ONE";
|
|
@@ -4,6 +4,7 @@ export * from "./pos_user.datasource";
|
|
|
4
4
|
export * from "./pos_user.resolver";
|
|
5
5
|
export * from "./pos_user.service";
|
|
6
6
|
export * from "./create-pos_user.base";
|
|
7
|
+
export * from "./login-pos_user.base";
|
|
7
8
|
export * from "./params-pos_user.base";
|
|
8
9
|
export * from "./response-pos_user.base";
|
|
9
10
|
export * from "./update-pos_user.base";
|
|
@@ -20,6 +20,7 @@ __exportStar(require("./pos_user.datasource"), exports);
|
|
|
20
20
|
__exportStar(require("./pos_user.resolver"), exports);
|
|
21
21
|
__exportStar(require("./pos_user.service"), exports);
|
|
22
22
|
__exportStar(require("./create-pos_user.base"), exports);
|
|
23
|
+
__exportStar(require("./login-pos_user.base"), exports);
|
|
23
24
|
__exportStar(require("./params-pos_user.base"), exports);
|
|
24
25
|
__exportStar(require("./response-pos_user.base"), exports);
|
|
25
26
|
__exportStar(require("./update-pos_user.base"), exports);
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { PosUserInterface } from "./pos_user.base";
|
|
2
|
+
import { PosInterface } from "../pos";
|
|
3
|
+
export interface LoginPosUserInterface {
|
|
4
|
+
token: string;
|
|
5
|
+
uuidDevice: string;
|
|
6
|
+
}
|
|
7
|
+
export interface LoginPosUserResponseInterface {
|
|
8
|
+
posUser: PosUserInterface;
|
|
9
|
+
pos: PosInterface;
|
|
10
|
+
}
|
|
11
|
+
export interface CreateFirebaseUserInterface {
|
|
12
|
+
email: string;
|
|
13
|
+
password: string;
|
|
14
|
+
}
|
|
15
|
+
export interface CreateFirebaseUserResponseInterface {
|
|
16
|
+
uid: string;
|
|
17
|
+
}
|
|
18
|
+
export interface DeleteFirebaseUserInterface {
|
|
19
|
+
uid: string;
|
|
20
|
+
}
|
|
21
|
+
export interface UpdateFirebaseUserPasswordInterface {
|
|
22
|
+
uid: string;
|
|
23
|
+
password: string;
|
|
24
|
+
}
|