sigesp 0.9.36-20230211 → 0.9.38-20230223
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/bundles/sigesp.umd.js +7 -4
- package/bundles/sigesp.umd.js.map +1 -1
- package/bundles/sigesp.umd.min.js +1 -1
- package/bundles/sigesp.umd.min.js.map +1 -1
- package/esm2015/lib/sigesp.service.js +6 -3
- package/esm2015/lib/validation.service.js +3 -3
- package/fesm2015/sigesp.js +7 -4
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/sigesp.service.d.ts +5 -2
- package/package.json +1 -1
package/lib/sigesp.service.d.ts
CHANGED
|
@@ -474,10 +474,11 @@ export declare class SigespService {
|
|
|
474
474
|
*/
|
|
475
475
|
getMonedas(tipo: string, id?: number): Observable<MMoneda[]>;
|
|
476
476
|
/**
|
|
477
|
-
* @Description: Obtiene la tasa de cambio
|
|
477
|
+
* @Description: Obtiene la tasa de cambio asociadas a uno o varias monedas
|
|
478
478
|
* @param tipo string
|
|
479
479
|
* @param id codigo moneda
|
|
480
480
|
* @returns array/null
|
|
481
|
+
* @tipo:all->todas, (moneda->una moneda id->id de moneda)
|
|
481
482
|
*/
|
|
482
483
|
getCurrencyExchangeRate(tipo?: 'all' | 'moneda', id?: number): Observable<MExchangeRate[]>;
|
|
483
484
|
/**
|
|
@@ -602,6 +603,9 @@ export declare class SigespService {
|
|
|
602
603
|
* @return Observable<IResponse>
|
|
603
604
|
* @author Carlos Albornoz
|
|
604
605
|
* @actualizado: 4-12-20222
|
|
606
|
+
* @params id: id de la moneda,
|
|
607
|
+
* @params tipo: todas->obtiene todas las moneda, (uno-> obtiene una moneda + id)
|
|
608
|
+
* (mon:formato para inputCurrency + id )
|
|
605
609
|
*/
|
|
606
610
|
getCurrentCurrency(tipo?: 'todas' | 'uno' | 'mon', id?: number): Observable<IResponse>;
|
|
607
611
|
/**
|
|
@@ -609,7 +613,6 @@ export declare class SigespService {
|
|
|
609
613
|
* @return Observable<IResponse>
|
|
610
614
|
* @author Dimaly Crespo
|
|
611
615
|
* @actualizado: 5-12-20222
|
|
612
|
-
* @tipo
|
|
613
616
|
*/
|
|
614
617
|
getEnterprise(tipo?: 'usuario' | 'proceso' | 'default', id?: number): Observable<IResponse>;
|
|
615
618
|
/**
|