fiscalia_bo-nest-helpers 0.1.76 → 0.1.78
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/README.md +81 -0
- package/dist/custom-validators/validator.functions.d.ts +1 -1
- package/dist/custom-validators/validator.functions.js +6 -1
- package/dist/custom-validators/validator.functions.js.map +1 -1
- package/dist/http-service/http-service.pipes.js +3 -3
- package/dist/http-service/http-service.pipes.js.map +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.js +4 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -337,3 +337,84 @@ Descripcion de los objecto para envio de datos
|
|
337
337
|
| virtualHost | String (null) | Host Virtual donde creara una conexion, si este se envia null lo creara automaticamete |
|
338
338
|
| queueListen | String (null) | El canal o queue que desea transmitir datos |
|
339
339
|
| data | String | Campo necesario para enviar datos en formato Json String |
|
340
|
+
|
341
|
+
|
342
|
+
# USO DEL MODULO `MS-LOGS`
|
343
|
+
|
344
|
+
Configuracion de Paquete en el archivo app.module.ts
|
345
|
+
|
346
|
+
```typescript
|
347
|
+
import { MsLogsModule } from 'fiscalia_bo-nest-helpers';
|
348
|
+
@Module({
|
349
|
+
imports: [
|
350
|
+
MsLogsModule.register({
|
351
|
+
global:true,
|
352
|
+
urlMsLogs:process.env.SERVICE_MS_LOGS
|
353
|
+
}),
|
354
|
+
],
|
355
|
+
controllers: [],
|
356
|
+
providers: [],
|
357
|
+
})
|
358
|
+
export class AppModule {}
|
359
|
+
```
|
360
|
+
|
361
|
+
Servicios Disponibles para el uso de logs
|
362
|
+
|
363
|
+
```typescript
|
364
|
+
import { MsLogsService } from 'fiscalia_bo-nest-helpers';
|
365
|
+
@Injectable()
|
366
|
+
export class AppService {
|
367
|
+
constructor(private readonly msLogsService:MsLogsService) {}
|
368
|
+
async test_services_logs() {
|
369
|
+
try {
|
370
|
+
await this.msLogsService.generateLogLogin({
|
371
|
+
"aplicacion": "jl1",
|
372
|
+
"funcionario_id": 1,
|
373
|
+
"funcionario_ci": "51234124",
|
374
|
+
"funcionario_nombre": "Javier Contreras Mamani",
|
375
|
+
"dispositivo_ip": "192.168.0.1",
|
376
|
+
"dispositivo_so": "Windows 11",
|
377
|
+
"dispositivo_navegador": "Chrome 99"
|
378
|
+
})
|
379
|
+
await this.msLogsService.generateLogView({
|
380
|
+
"aplicacion": "jl2",
|
381
|
+
"apartado": "caso",
|
382
|
+
"apartado_info_extra": "cud: 3143233",
|
383
|
+
"tabla_id": "string",
|
384
|
+
"tabla_nombre": "vacaciones",
|
385
|
+
"funcionario_id": 1,
|
386
|
+
"funcionario_ci": "51234124",
|
387
|
+
"funcionario_nombre": "Javier Contreras Mamani",
|
388
|
+
"dispositivo_ip": "192.168.0.1",
|
389
|
+
"dispositivo_so": "Windows 11",
|
390
|
+
"dispositivo_navegador": "Chrome 99"
|
391
|
+
})
|
392
|
+
await this.msLogsService.generateLogEvents({
|
393
|
+
"aplicacion": "jl2",
|
394
|
+
"evento": "editar",
|
395
|
+
"tabla_id": "1001",
|
396
|
+
"tabla_nombre": "vacaciones",
|
397
|
+
"tabla_pre_cambios": "{id:123,nombre:\"misnombre\"}",
|
398
|
+
"request": "PUT /listar/vacaciones",
|
399
|
+
"funcionario_id": 1,
|
400
|
+
"funcionario_ci": "5131343",
|
401
|
+
"funcionario_nombre": "Javier Contreras Mamani",
|
402
|
+
"dispositivo_ip": "192.168.0.1",
|
403
|
+
"dispositivo_so": "Windows 11",
|
404
|
+
"dispositivo_navegador": "Chrome 99"
|
405
|
+
})
|
406
|
+
await this.msLogsService.generateLogError({
|
407
|
+
"aplicacion": "jl2",
|
408
|
+
"evento": "Listar vacaciones",
|
409
|
+
"tabla_id": "string",
|
410
|
+
"tabla_nombre": "vacaciones",
|
411
|
+
"request": "POST /listar/vacaciones",
|
412
|
+
"error_string_json": "string"
|
413
|
+
})
|
414
|
+
}catch(e){
|
415
|
+
console.log(e)
|
416
|
+
throw e
|
417
|
+
}
|
418
|
+
}
|
419
|
+
}
|
420
|
+
```
|
@@ -1 +1 @@
|
|
1
|
-
export declare const paramTypeValidator: (value: string, metaType: any) => any;
|
1
|
+
export declare const paramTypeValidator: (value: string | undefined, metaType: any) => any;
|
@@ -32,7 +32,12 @@ const MapTypes = {
|
|
32
32
|
},
|
33
33
|
};
|
34
34
|
const paramTypeValidator = (value, metaType) => {
|
35
|
-
|
35
|
+
if (value === undefined && value === null) {
|
36
|
+
return value;
|
37
|
+
}
|
38
|
+
else {
|
39
|
+
return MapTypes[typeof metaType()](value);
|
40
|
+
}
|
36
41
|
};
|
37
42
|
exports.paramTypeValidator = paramTypeValidator;
|
38
43
|
//# sourceMappingURL=validator.functions.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"validator.functions.js","sourceRoot":"","sources":["../../src/custom-validators/validator.functions.ts"],"names":[],"mappings":";;;AAAA,2CAA+C;AAC/C,qDAA2C;AAC3C,MAAM,QAAQ,GAAG;IACf,MAAM,EAAE,CAAC,GAAW,EAAU,EAAE,CAAC,GAAG;IACpC,OAAO,EAAE,CAAC,GAAW,EAAE,EAAE;QACvB,IAAI,GAAG,KAAK,MAAM,IAAI,GAAG,KAAK,OAAO;YAAE,OAAO,GAAG,KAAK,MAAM,CAAC;;YAE3D,MAAM,IAAI,sBAAa,CACrB;gBACE,KAAK,EAAE,IAAI;gBACX,OAAO,EAAE,iCAAiC;gBAC1C,QAAQ,EAAE,IAAI;gBACd,MAAM,EAAE,GAAG;aACZ,EACD,GAAG,CACJ,CAAC;IACN,CAAC;IACD,MAAM,EAAE,CAAC,GAAW,EAAE,EAAE;QACtB,IAAI,IAAA,0BAAQ,EAAC,MAAM,CAAC,GAAG,CAAC,EAAE,EAAE,aAAa,EAAE,KAAK,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;YAAE,OAAO,MAAM,CAAC,GAAG,CAAC,CAAC;;YAEvF,MAAM,IAAI,sBAAa,CACrB;gBACE,KAAK,EAAE,IAAI;gBACX,OAAO,EAAE,gCAAgC;gBACzC,QAAQ,EAAE,IAAI;gBACd,MAAM,EAAE,GAAG;aACZ,EACD,GAAG,CACJ,CAAC;IACN,CAAC;IACD,MAAM,EAAE,CAAC,KAAU,EAAE,EAAE;QACrB,OAAO,KAAK,CAAC;IACf,CAAC;CACF,CAAC;AAEK,MAAM,kBAAkB,GAAG,CAAC,
|
1
|
+
{"version":3,"file":"validator.functions.js","sourceRoot":"","sources":["../../src/custom-validators/validator.functions.ts"],"names":[],"mappings":";;;AAAA,2CAA+C;AAC/C,qDAA2C;AAC3C,MAAM,QAAQ,GAAG;IACf,MAAM,EAAE,CAAC,GAAW,EAAU,EAAE,CAAC,GAAG;IACpC,OAAO,EAAE,CAAC,GAAW,EAAE,EAAE;QACvB,IAAI,GAAG,KAAK,MAAM,IAAI,GAAG,KAAK,OAAO;YAAE,OAAO,GAAG,KAAK,MAAM,CAAC;;YAE3D,MAAM,IAAI,sBAAa,CACrB;gBACE,KAAK,EAAE,IAAI;gBACX,OAAO,EAAE,iCAAiC;gBAC1C,QAAQ,EAAE,IAAI;gBACd,MAAM,EAAE,GAAG;aACZ,EACD,GAAG,CACJ,CAAC;IACN,CAAC;IACD,MAAM,EAAE,CAAC,GAAW,EAAE,EAAE;QACtB,IAAI,IAAA,0BAAQ,EAAC,MAAM,CAAC,GAAG,CAAC,EAAE,EAAE,aAAa,EAAE,KAAK,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;YAAE,OAAO,MAAM,CAAC,GAAG,CAAC,CAAC;;YAEvF,MAAM,IAAI,sBAAa,CACrB;gBACE,KAAK,EAAE,IAAI;gBACX,OAAO,EAAE,gCAAgC;gBACzC,QAAQ,EAAE,IAAI;gBACd,MAAM,EAAE,GAAG;aACZ,EACD,GAAG,CACJ,CAAC;IACN,CAAC;IACD,MAAM,EAAE,CAAC,KAAU,EAAE,EAAE;QACrB,OAAO,KAAK,CAAC;IACf,CAAC;CACF,CAAC;AAEK,MAAM,kBAAkB,GAAG,CAAC,KAAyB,EAAE,QAAa,EAAE,EAAE;IAC7E,IAAG,KAAK,KAAK,SAAS,IAAI,KAAK,KAAK,IAAI,EAAE;QACxC,OAAO,KAAK,CAAC;KACd;SAAM;QACL,OAAO,QAAQ,CAAC,OAAO,QAAQ,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC;KAC3C;AACH,CAAC,CAAC;AANW,QAAA,kBAAkB,sBAM7B"}
|
@@ -96,13 +96,13 @@ exports.FilterHttpServiceResponse = (0, rxjs_1.catchError)((error) => {
|
|
96
96
|
if (error.isAxiosError) {
|
97
97
|
if (error.code === 'ECONNREFUSED') {
|
98
98
|
const err = error;
|
99
|
-
resp.message = `Error: no se pudo connecter al HOST [http(s)://${err.address}
|
99
|
+
resp.message = `Error: no se pudo connecter al HOST [http(s)://${err.address}/${err.request._options.path}]`;
|
100
100
|
}
|
101
101
|
else if (error.code === 'ENOTFOUND') {
|
102
|
-
resp.message = `Error: no se pudo connecter al servicio ${error.config.baseURL}
|
102
|
+
resp.message = `Error: no se pudo connecter al servicio ${error.config.baseURL}/${error.config.url}`;
|
103
103
|
}
|
104
104
|
else if (error.code === 'ECONNABORTED') {
|
105
|
-
resp.message = `Error: tiempo limite de espera excedido ${error.config.baseURL}
|
105
|
+
resp.message = `Error: tiempo limite de espera excedido ${error.config.baseURL}/${error.config.url}`;
|
106
106
|
}
|
107
107
|
else if (error.response) {
|
108
108
|
const respData = error.response.data;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"http-service.pipes.js","sourceRoot":"","sources":["../../src/http-service/http-service.pipes.ts"],"names":[],"mappings":"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
|
1
|
+
{"version":3,"file":"http-service.pipes.js","sourceRoot":"","sources":["../../src/http-service/http-service.pipes.ts"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts
CHANGED
@@ -5,6 +5,8 @@ export * from './ms-rabbit/rabbit.module';
|
|
5
5
|
export * from './ms-rabbit/rabbit.service';
|
6
6
|
export * from './ms-geojson/ms-geojson.module';
|
7
7
|
export * from './ms-geojson/ms-geojson.service';
|
8
|
+
export * from './ms-logs/logs.module';
|
9
|
+
export * from './ms-logs/logs.service';
|
8
10
|
export * from './ms-seguridad/ms-seguridad.module';
|
9
11
|
export * from './ms-seguridad/ms-seguridad.service';
|
10
12
|
export * from './ms-seguridad/rpa-agetic/rpa-agetic.service';
|
@@ -25,6 +27,7 @@ export * as Decorators from './decorators';
|
|
25
27
|
export * as Dtos from './dto';
|
26
28
|
export * as RequestRestrict from './request-restrict';
|
27
29
|
export * as MsRabbit from './ms-rabbit';
|
30
|
+
export * as MsLogs from './ms-logs';
|
28
31
|
export * as Helpers from './helpers';
|
29
32
|
export * as HttpService from './http-service';
|
30
33
|
export * as MsShortLink from './ms-shortlink';
|
package/dist/index.js
CHANGED
@@ -14,7 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
15
15
|
};
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
17
|
-
exports.SeguridadConvenio = exports.ExcelJS = exports.MsShortLink = exports.HttpService = exports.Helpers = exports.MsRabbit = exports.RequestRestrict = exports.Dtos = exports.Decorators = exports.CustomValidators = exports.MsSkylogs = exports.MsFiles = exports.MsPdf = exports.MsWhatsApp = exports.MsPersonas = exports.PermissionsGuard = exports.MsSeguridadHttpError = void 0;
|
17
|
+
exports.SeguridadConvenio = exports.ExcelJS = exports.MsShortLink = exports.HttpService = exports.Helpers = exports.MsLogs = exports.MsRabbit = exports.RequestRestrict = exports.Dtos = exports.Decorators = exports.CustomValidators = exports.MsSkylogs = exports.MsFiles = exports.MsPdf = exports.MsWhatsApp = exports.MsPersonas = exports.PermissionsGuard = exports.MsSeguridadHttpError = void 0;
|
18
18
|
__exportStar(require("./ms-redis/ms-redis.module"), exports);
|
19
19
|
__exportStar(require("./ms-redis/ms-redis.service"), exports);
|
20
20
|
__exportStar(require("./ms-redis/datapass.interceptor"), exports);
|
@@ -22,6 +22,8 @@ __exportStar(require("./ms-rabbit/rabbit.module"), exports);
|
|
22
22
|
__exportStar(require("./ms-rabbit/rabbit.service"), exports);
|
23
23
|
__exportStar(require("./ms-geojson/ms-geojson.module"), exports);
|
24
24
|
__exportStar(require("./ms-geojson/ms-geojson.service"), exports);
|
25
|
+
__exportStar(require("./ms-logs/logs.module"), exports);
|
26
|
+
__exportStar(require("./ms-logs/logs.service"), exports);
|
25
27
|
__exportStar(require("./ms-seguridad/ms-seguridad.module"), exports);
|
26
28
|
__exportStar(require("./ms-seguridad/ms-seguridad.service"), exports);
|
27
29
|
__exportStar(require("./ms-seguridad/rpa-agetic/rpa-agetic.service"), exports);
|
@@ -44,6 +46,7 @@ exports.Decorators = require("./decorators");
|
|
44
46
|
exports.Dtos = require("./dto");
|
45
47
|
exports.RequestRestrict = require("./request-restrict");
|
46
48
|
exports.MsRabbit = require("./ms-rabbit");
|
49
|
+
exports.MsLogs = require("./ms-logs");
|
47
50
|
exports.Helpers = require("./helpers");
|
48
51
|
exports.HttpService = require("./http-service");
|
49
52
|
exports.MsShortLink = require("./ms-shortlink");
|