sigesp 0.9.46-20230713 → 0.9.47-20230717
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 +12 -3
- 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/core/models/RPC/providerBeneficiary.model.js +4 -2
- package/esm2015/lib/sigesp.service.js +8 -3
- package/fesm2015/sigesp.js +10 -3
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/sigesp.service.d.ts +6 -1
- package/package.json +1 -1
package/lib/sigesp.service.d.ts
CHANGED
|
@@ -669,10 +669,15 @@ export declare class SigespService {
|
|
|
669
669
|
getProveedores(): Observable<MProveedor[]>;
|
|
670
670
|
/**
|
|
671
671
|
* @description Obtiene los proveedores y beneficiarios
|
|
672
|
+
* @Note Si quiere solo los datos basicos use los parametros ('S','P','N')
|
|
672
673
|
* @return Observable<IResponse>
|
|
673
674
|
* @author Carlos Albornoz
|
|
675
|
+
* @type ={'P','B','S'}
|
|
676
|
+
* @destination ={'P','B','C','A','N'}≈{Proveedor,Beneficiario,Contatista,Ambos,Ninguno}
|
|
677
|
+
* @account ={'S','N'} para traer las cuentas bancarias del proveedor por defecto esta en N
|
|
678
|
+
* @modificado 17-07-2023
|
|
674
679
|
*/
|
|
675
|
-
getProvidersAndBeneficiaries(type?: string): Observable<IResponse>;
|
|
680
|
+
getProvidersAndBeneficiaries(type?: string, destination?: string, account?: string): Observable<IResponse>;
|
|
676
681
|
/**
|
|
677
682
|
* @description Obtiene un Usuario segun su ID
|
|
678
683
|
* @return Observable<IResponse>
|