keevo-api-services-hcm 0.0.43 → 0.0.44
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/hcm/denunciaanonima/denunciaanonima.model.mjs +1 -1
- package/esm2022/lib/services/hcm/denunciaanonima.service.mjs +5 -1
- package/esm2022/lib/services/keex/keex.service.mjs +19 -2
- package/fesm2022/keevo-api-services-hcm.mjs +22 -1
- package/fesm2022/keevo-api-services-hcm.mjs.map +1 -1
- package/lib/models/hcm/denunciaanonima/denunciaanonima.model.d.ts +1 -0
- package/lib/services/hcm/denunciaanonima.service.d.ts +3 -0
- package/lib/services/keex/keex.service.d.ts +1 -0
- package/package.json +1 -1
@@ -2,6 +2,7 @@ import { BaseApiService, HostEnvironment } from 'keevo-api-services';
|
|
2
2
|
import { HttpClient } from '@angular/common/http';
|
3
3
|
import { Observable } from 'rxjs';
|
4
4
|
import { DenunciaAnonimaModel } from '../../models/hcm/denunciaanonima/denunciaanonima.model';
|
5
|
+
import { FiltroListaHcmModel } from '../../../public-api';
|
5
6
|
import * as i0 from "@angular/core";
|
6
7
|
export declare class DenunciaanonimaService extends BaseApiService {
|
7
8
|
private httpClient;
|
@@ -10,6 +11,7 @@ export declare class DenunciaanonimaService extends BaseApiService {
|
|
10
11
|
private readonly rotaCriar;
|
11
12
|
private readonly rotaSelecionarPorId;
|
12
13
|
private readonly rotaSelecionarPorCodigoDeAcesso;
|
14
|
+
private readonly rotaListarDenunciasParaGerenciamento;
|
13
15
|
/**
|
14
16
|
* Cria uma nova denúncia anônima.
|
15
17
|
*
|
@@ -33,6 +35,7 @@ export declare class DenunciaanonimaService extends BaseApiService {
|
|
33
35
|
* @returns {Observable<DenunciaAnonimaModel>} Um Observable contendo o modelo de resposta da denúncia anônima.
|
34
36
|
*/
|
35
37
|
selecionarPorCodigoAcesso(codigoAcesso: string): Observable<DenunciaAnonimaModel>;
|
38
|
+
ListarDenunciasParaGerenciamento(filtro: FiltroListaHcmModel): Observable<DenunciaAnonimaModel[]>;
|
36
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<DenunciaanonimaService, never>;
|
37
40
|
static ɵprov: i0.ɵɵInjectableDeclaration<DenunciaanonimaService>;
|
38
41
|
}
|
@@ -33,6 +33,7 @@ export declare class KeexService extends BaseApiService {
|
|
33
33
|
EnviarConvite(usuarios: UsuarioPessoaResumoModel[]): Observable<any>;
|
34
34
|
ListarEnderecos(filtro: FiltroCpfCnpj): Observable<number[]>;
|
35
35
|
ValidaAcesoInicial(dados: ValidaUsuarioModel): Observable<any>;
|
36
|
+
private flagsKeexCacheDataMap;
|
36
37
|
SelecionarFlagsDeAcessoAokeex(filtro: FiltroCpfCnpj): Observable<any>;
|
37
38
|
private TelefonesValidacaoInicialCacheDataMap;
|
38
39
|
ListarTelefonesValidacaoInicial(filtro: FiltroCpfCnpj, chached?: boolean): Observable<string[]>;
|