keevo-api-services-hcm 0.0.52 → 0.0.53
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/esm2022/lib/services/hcm/falhaintegracao.service.mjs +27 -0
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/keevo-api-services-hcm.mjs +24 -1
- package/fesm2022/keevo-api-services-hcm.mjs.map +1 -1
- package/lib/services/hcm/falhaintegracao.service.d.ts +13 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
@@ -0,0 +1,13 @@
|
|
1
|
+
import { HttpClient } from "@angular/common/http";
|
2
|
+
import { BaseApiService, HostEnvironment } from "keevo-api-services";
|
3
|
+
import { FiltroListaHcmModel } from "../../models/filtro/filtrolistahcm.model";
|
4
|
+
import * as i0 from "@angular/core";
|
5
|
+
export declare class FalhaIntegracaoService extends BaseApiService {
|
6
|
+
private httpClient;
|
7
|
+
private hostEnv;
|
8
|
+
private rotaListar;
|
9
|
+
constructor(httpClient: HttpClient, hostEnv: HostEnvironment);
|
10
|
+
Listar(filtro: FiltroListaHcmModel): import("rxjs").Observable<unknown>;
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FalhaIntegracaoService, never>;
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FalhaIntegracaoService>;
|
13
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
@@ -114,6 +114,7 @@ export * from './lib/services/pessoa/registro.service';
|
|
114
114
|
export * from './lib/services/pessoa/tomador.service';
|
115
115
|
export * from './lib/services/utilitarios/dadosrelacionamento.service';
|
116
116
|
export * from './lib/services/utilitarios/validators.service';
|
117
|
+
export * from './lib/services/hcm/falhaintegracao.service';
|
117
118
|
/**
|
118
119
|
* Services Dominio
|
119
120
|
*/
|