sigesp 0.9.3-20221025 → 0.9.4-2022-11-20

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.
@@ -47,4 +47,5 @@ export interface IServiceCharges {
47
47
  id_servicio: string;
48
48
  codcar: string;
49
49
  dencar: string;
50
+ estcarpri: string;
50
51
  }
@@ -6,6 +6,7 @@ export declare class MServiceCharge extends MBasicModel {
6
6
  serviceId: number;
7
7
  denomination: string;
8
8
  code: string;
9
+ status: boolean;
9
10
  constructor(ser?: IServiceCharges);
10
11
  interface(): IServiceCharges;
11
12
  }
@@ -303,8 +303,9 @@ export declare class SigespService {
303
303
  * @description Obtiene los centros de costo
304
304
  * @return Observable<MCentroCosto[]>
305
305
  * @author Miguel Ramírez
306
+ * modificado 9-11-2022
306
307
  */
307
- getCentroCosto(): Observable<MCentroCosto[]>;
308
+ getCentroCosto(tipo: string): Observable<MCentroCosto[]>;
308
309
  /**
309
310
  * @description Obtiene los centros de costo
310
311
  * @return Observable<IResponse>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigesp",
3
- "version": "0.9.3-20221025",
3
+ "version": "0.9.4-2022-11-20",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },