keevo-api-services-hcm 0.0.41 → 0.0.42
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/models/pessoa/colaborador/colaborador.model.mjs +1 -1
- package/esm2022/lib/services/hcm/denunciaanonima.service.mjs +29 -0
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/keevo-api-services-hcm.mjs +27 -1
- package/fesm2022/keevo-api-services-hcm.mjs.map +1 -1
- package/lib/models/pessoa/colaborador/colaborador.model.d.ts +0 -1
- package/lib/services/hcm/denunciaanonima.service.d.ts +12 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
@@ -0,0 +1,12 @@
|
|
1
|
+
import { HostEnvironment } from 'keevo-api-services';
|
2
|
+
import { HttpClient } from '@angular/common/http';
|
3
|
+
import { Observable } from 'rxjs';
|
4
|
+
import * as i0 from "@angular/core";
|
5
|
+
export declare class DenunciaanonimaService {
|
6
|
+
private httpClient;
|
7
|
+
private hostEnv;
|
8
|
+
constructor(httpClient: HttpClient, hostEnv: HostEnvironment);
|
9
|
+
criar(idEmpresaEvoCenter: string, texto: string, anexos: File[]): Observable<string>;
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DenunciaanonimaService, never>;
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DenunciaanonimaService>;
|
12
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
@@ -97,6 +97,7 @@ export * from './lib/services/hcm/unidade-administrativa.service';
|
|
97
97
|
export * from './lib/services/hcm/unidade-hierarquica.service';
|
98
98
|
export * from './lib/services/hcm/configuracaomovimentosfolha.service';
|
99
99
|
export * from './lib/services/hcm/movimentos-folha.service';
|
100
|
+
export * from './lib/services/hcm/denunciaanonima.service';
|
100
101
|
export * from './lib/services/passaporte/empresa-banner.service';
|
101
102
|
export * from './lib/services/passaporte/empresa-parametros.service';
|
102
103
|
export * from './lib/services/passaporte/empresa.service';
|