fiscalia_bo-nest-helpers 0.1.96 → 0.1.98
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/helpers/index.d.ts
CHANGED
package/dist/helpers/index.js
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.PackageJson = exports.Exceptions = void 0;
|
3
|
+
exports.Utils = exports.PackageJson = exports.Exceptions = void 0;
|
4
4
|
exports.Exceptions = require("./global-exception.filter");
|
5
5
|
exports.PackageJson = require("./package-json.helper");
|
6
|
+
exports.Utils = require("./expresion_regular.helper");
|
6
7
|
//# sourceMappingURL=index.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/helpers/index.ts"],"names":[],"mappings":";;;AAAA,0DAAwD;AACxD,uDAAqD"}
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/helpers/index.ts"],"names":[],"mappings":";;;AAAA,0DAAwD;AACxD,uDAAqD;AACrD,sDAAoD"}
|
@@ -198,6 +198,7 @@ export interface LoginResponse_ResponseLogin {
|
|
198
198
|
permisos: string[];
|
199
199
|
}
|
200
200
|
export interface LoginResponse_Usuario {
|
201
|
+
id: number;
|
201
202
|
ci: string;
|
202
203
|
nombre: string;
|
203
204
|
paterno: string;
|
@@ -205,7 +206,6 @@ export interface LoginResponse_Usuario {
|
|
205
206
|
perfilPersonaId: number;
|
206
207
|
personaId: number;
|
207
208
|
msPersonaId: number;
|
208
|
-
nombreCompleto: string;
|
209
209
|
nacimiento: string;
|
210
210
|
sexo: string;
|
211
211
|
direccion: string;
|
@@ -219,7 +219,8 @@ export interface LoginResponse_Usuario {
|
|
219
219
|
telegram: number;
|
220
220
|
emailValidado: number;
|
221
221
|
notificacionDefault: string;
|
222
|
-
|
222
|
+
nombreCompleto: string;
|
223
|
+
ciudadanoDigital: boolean;
|
223
224
|
}
|
224
225
|
export interface LoginResponse_Funcionario {
|
225
226
|
funcionarioId: number;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"seguridad.pb.js","sourceRoot":"","sources":["../../src/ms-seguridad/seguridad.pb.ts"],"names":[],"mappings":";;;AACA,yDAAqE;AAGxD,QAAA,eAAe,GAAG,oBAAoB,CAAC;
|
1
|
+
{"version":3,"file":"seguridad.pb.js","sourceRoot":"","sources":["../../src/ms-seguridad/seguridad.pb.ts"],"names":[],"mappings":";;;AACA,yDAAqE;AAGxD,QAAA,eAAe,GAAG,oBAAoB,CAAC;AAuWvC,QAAA,+BAA+B,GAAG,oBAAoB,CAAC;AA4GpE,SAAgB,iCAAiC;IAC/C,OAAO,UAAU,WAAqB;QACpC,MAAM,WAAW,GAAa;YAC5B,iBAAiB;YACjB,cAAc;YACd,eAAe;YACf,gBAAgB;YAChB,aAAa;YACb,0BAA0B;YAC1B,sBAAsB;YACtB,wBAAwB;YACxB,wBAAwB;YACxB,YAAY;YACZ,OAAO;YACP,wBAAwB;YACxB,cAAc;YACd,gBAAgB;YAChB,kBAAkB;YAClB,QAAQ;YACR,iBAAiB;YACjB,YAAY;YACZ,UAAU;SACX,CAAC;QACF,KAAK,MAAM,MAAM,IAAI,WAAW,EAAE;YAChC,MAAM,UAAU,GAAQ,OAAO,CAAC,wBAAwB,CAAC,WAAW,CAAC,SAAS,EAAE,MAAM,CAAC,CAAC;YACxF,IAAA,0BAAU,EAAC,kBAAkB,EAAE,MAAM,CAAC,CAAC,WAAW,CAAC,SAAS,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,UAAU,CAAC,CAAC;SAC3F;QACD,MAAM,iBAAiB,GAAa,EAAE,CAAC;QACvC,KAAK,MAAM,MAAM,IAAI,iBAAiB,EAAE;YACtC,MAAM,UAAU,GAAQ,OAAO,CAAC,wBAAwB,CAAC,WAAW,CAAC,SAAS,EAAE,MAAM,CAAC,CAAC;YACxF,IAAA,gCAAgB,EAAC,kBAAkB,EAAE,MAAM,CAAC,CAAC,WAAW,CAAC,SAAS,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,UAAU,CAAC,CAAC;SACjG;IACH,CAAC,CAAC;AACJ,CAAC;AAjCD,8EAiCC;AAEY,QAAA,sBAAsB,GAAG,kBAAkB,CAAC"}
|
@@ -264,14 +264,14 @@ message LoginResponse {
|
|
264
264
|
}
|
265
265
|
|
266
266
|
message Usuario {
|
267
|
-
|
268
|
-
string
|
269
|
-
string
|
270
|
-
string
|
271
|
-
|
272
|
-
int32
|
273
|
-
int32
|
274
|
-
|
267
|
+
int32 id = 1;
|
268
|
+
string ci = 2;
|
269
|
+
string nombre = 3;
|
270
|
+
string paterno = 4;
|
271
|
+
string materno = 5;
|
272
|
+
int32 perfilPersonaId = 6;
|
273
|
+
int32 personaId = 7;
|
274
|
+
int32 msPersonaId = 8;
|
275
275
|
string nacimiento = 9;
|
276
276
|
string sexo = 10;
|
277
277
|
string direccion = 11;
|
@@ -285,7 +285,8 @@ message LoginResponse {
|
|
285
285
|
int32 telegram = 19;
|
286
286
|
int32 emailValidado = 20;
|
287
287
|
string notificacionDefault = 21;
|
288
|
-
|
288
|
+
string nombreCompleto = 22;
|
289
|
+
bool ciudadanoDigital = 23;
|
289
290
|
}
|
290
291
|
|
291
292
|
message Funcionario {
|