keevo-api-services-hcm 0.0.50 → 0.0.52
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/dominio/agrupamentomovimentofolha.model.mjs +7 -0
- package/esm2022/lib/models/filtro/filtrolistaregistro.model.mjs +1 -1
- package/esm2022/lib/models/hcm/denunciaanonima/denunciacomtarefaresumo.model.mjs +1 -1
- package/esm2022/lib/models/hcm/movimentofolhafatogerador/movimentofolhafatogerador.model.mjs +2 -0
- package/esm2022/lib/models/hcm/movimentofolhafatogeradordatas/movimentofolhafatogeradordatas.model.mjs +2 -0
- package/esm2022/lib/models/hcm/movimentosfolha/movimentosfolha.model.mjs +1 -1
- package/esm2022/lib/models/passaporte/empresa/empresa.model.mjs +1 -1
- package/esm2022/lib/services/dominio/agrupamentomovimentofolha.service.mjs +35 -0
- package/esm2022/lib/services/hcm/denunciaanonima.service.mjs +8 -1
- package/esm2022/lib/services/passaporte/empresa.service.mjs +7 -3
- package/esm2022/public-api.mjs +3 -1
- package/fesm2022/keevo-api-services-hcm.mjs +52 -3
- package/fesm2022/keevo-api-services-hcm.mjs.map +1 -1
- package/lib/models/dominio/agrupamentomovimentofolha.model.d.ts +9 -0
- package/lib/models/filtro/filtrolistaregistro.model.d.ts +1 -1
- package/lib/models/hcm/denunciaanonima/denunciacomtarefaresumo.model.d.ts +2 -2
- package/lib/models/hcm/movimentofolhafatogerador/movimentofolhafatogerador.model.d.ts +12 -0
- package/lib/models/hcm/movimentofolhafatogeradordatas/movimentofolhafatogeradordatas.model.d.ts +9 -0
- package/lib/models/hcm/movimentosfolha/movimentosfolha.model.d.ts +5 -7
- package/lib/services/dominio/agrupamentomovimentofolha.service.d.ts +18 -0
- package/lib/services/hcm/configuracaomovimentosfolha.service.d.ts +2 -2
- package/lib/services/hcm/denunciaanonima.service.d.ts +9 -0
- package/lib/services/hcm/equipe-membro.service.d.ts +2 -2
- package/lib/services/hcm/equipe.service.d.ts +1 -1
- package/lib/services/hcm/hierarquiaorganizacional.service.d.ts +10 -10
- package/lib/services/hcm/movimentos-folha.service.d.ts +2 -2
- package/lib/services/hcm/relacionamento-lotacao.service.d.ts +1 -1
- package/lib/services/hcm/sub-tipo-ocorrencia.service.d.ts +1 -1
- package/lib/services/hcm/tipo-estado.service.d.ts +1 -1
- package/lib/services/hcm/tipo-ocorrencia.service.d.ts +1 -1
- package/lib/services/hcm/unidade-hierarquica.service.d.ts +1 -1
- package/lib/services/keex/keex.service.d.ts +1 -1
- package/lib/services/passaporte/empresa-banner.service.d.ts +1 -1
- package/lib/services/passaporte/empresa-parametros.service.d.ts +2 -2
- package/lib/services/passaporte/empresa.service.d.ts +3 -1
- package/lib/services/pessoa/analista-pessoa.service.d.ts +2 -2
- package/lib/services/pessoa/colaborador.service.d.ts +2 -2
- package/lib/services/pessoa/lider.service.d.ts +1 -1
- package/lib/services/pessoa/registro.service.d.ts +3 -3
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
@@ -5,7 +5,7 @@ export interface FiltroListaRegistroModel extends FiltroListaHcmModel {
|
|
5
5
|
funcionarios?: number[];
|
6
6
|
indvisualizarmembrosrecursivamente: boolean;
|
7
7
|
gestores?: number[];
|
8
|
-
|
8
|
+
iddepartamento?: number[];
|
9
9
|
hierarquiaorganizacional?: number[];
|
10
10
|
indcolaboradorexterno?: number[];
|
11
11
|
}
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import {
|
1
|
+
import { TarefaResumoModel } from "keevo-api-services-tarefas";
|
2
2
|
import { DenunciaAnonimaModel } from "./denunciaanonima.model";
|
3
3
|
export interface DenunciaComTarefaResumo {
|
4
4
|
denuncia: DenunciaAnonimaModel;
|
5
|
-
tarefa:
|
5
|
+
tarefa: TarefaResumoModel;
|
6
6
|
}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import { MovimentoFolhaFatoGeradorDatasModel } from "../movimentofolhafatogeradordatas/movimentofolhafatogeradordatas.model";
|
2
|
+
export interface MovimentoFolhaFatoGeradorModel {
|
3
|
+
idmovimentofolhafatogerador: number;
|
4
|
+
idmaster: number;
|
5
|
+
idempresaevocenter: string;
|
6
|
+
idmovimentofolha: number;
|
7
|
+
idtipofatogerador: number;
|
8
|
+
idsubtipofatogerador: number;
|
9
|
+
quantidade?: number;
|
10
|
+
valor?: number;
|
11
|
+
fatogeradordatas: MovimentoFolhaFatoGeradorDatasModel[];
|
12
|
+
}
|
@@ -1,11 +1,9 @@
|
|
1
|
+
import { MovimentoFolhaFatoGeradorModel } from "../movimentofolhafatogerador/movimentofolhafatogerador.model";
|
1
2
|
export interface MovimentosFolhaModel {
|
2
|
-
|
3
|
+
idmovimentofolha: number;
|
3
4
|
idmaster: number;
|
4
5
|
idempresaevocenter: string;
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
idpessoa: number;
|
9
|
-
quantidade: number;
|
10
|
-
valor: number;
|
6
|
+
idcolaborador: number;
|
7
|
+
competencia: string;
|
8
|
+
fatogeradores: MovimentoFolhaFatoGeradorModel[];
|
11
9
|
}
|
@@ -0,0 +1,18 @@
|
|
1
|
+
import { BaseApiService, HostEnvironment } from "keevo-api-services";
|
2
|
+
import { HttpClient } from '@angular/common/http';
|
3
|
+
import { Observable } from 'rxjs';
|
4
|
+
import { AgrupamentoMovimentoFolhaModel } from "../../models/dominio/agrupamentomovimentofolha.model";
|
5
|
+
import * as i0 from "@angular/core";
|
6
|
+
export declare class AgrupamentoMovimentoFolhaService extends BaseApiService {
|
7
|
+
private httpClient;
|
8
|
+
private hostEnv;
|
9
|
+
private rotaListar;
|
10
|
+
private rotaExisteID;
|
11
|
+
private rotaSelecionar;
|
12
|
+
constructor(httpClient: HttpClient, hostEnv: HostEnvironment);
|
13
|
+
Listar(): Observable<AgrupamentoMovimentoFolhaModel[]>;
|
14
|
+
ExisteID(id: number): Observable<boolean>;
|
15
|
+
Selecionar(id: number): Observable<AgrupamentoMovimentoFolhaModel>;
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AgrupamentoMovimentoFolhaService, never>;
|
17
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AgrupamentoMovimentoFolhaService>;
|
18
|
+
}
|
@@ -12,9 +12,9 @@ export declare class ConfiguracaoMovimentosFolhaService extends BaseApiService {
|
|
12
12
|
private rotaSalvar;
|
13
13
|
constructor(httpClient: HttpClient, hostEnv: HostEnvironment);
|
14
14
|
Excluir(id: number): Observable<Object>;
|
15
|
-
Listar(filtro: FiltroListaHcmModel): Observable<
|
15
|
+
Listar(filtro: FiltroListaHcmModel): Observable<unknown>;
|
16
16
|
Selecionar(id: number): Observable<ConfiguracaoMovimentosFolhaModel>;
|
17
|
-
Salvar(dados: ConfiguracaoMovimentosFolhaModel): Observable<
|
17
|
+
Salvar(dados: ConfiguracaoMovimentosFolhaModel): Observable<unknown>;
|
18
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<ConfiguracaoMovimentosFolhaService, never>;
|
19
19
|
static ɵprov: i0.ɵɵInjectableDeclaration<ConfiguracaoMovimentosFolhaService>;
|
20
20
|
}
|
@@ -2,6 +2,9 @@ import { BaseApiService, HostEnvironment } from 'keevo-api-services';
|
|
2
2
|
import { HttpClient } from '@angular/common/http';
|
3
3
|
import { Observable } from 'rxjs';
|
4
4
|
import { DenunciaAnonimaInteracaoModel, DenunciaAnonimaModel } from '../../models/hcm/denunciaanonima/denunciaanonima.model';
|
5
|
+
import { DenunciaComTarefaResumo } from '../../models/hcm/denunciaanonima/denunciacomtarefaresumo.model';
|
6
|
+
import { FiltroListaDenunciaModel } from '../../models/hcm/denunciaanonima/filtrolista-denuncia.model';
|
7
|
+
import { UsuarioPassaporteModel } from 'keevo-api-services-keevocenter';
|
5
8
|
import * as i0 from "@angular/core";
|
6
9
|
export declare class DenunciaanonimaService extends BaseApiService {
|
7
10
|
private httpClient;
|
@@ -13,6 +16,8 @@ export declare class DenunciaanonimaService extends BaseApiService {
|
|
13
16
|
private readonly rotaSelecionarPorId;
|
14
17
|
private readonly rotaSelecionarPorCodigoDeAcesso;
|
15
18
|
private readonly rotaListarDenunciasParaGerenciamento;
|
19
|
+
private readonly rotaCadastrarUsuarioDenunciaKeevoCenterComKeePass;
|
20
|
+
CadastrarUsuarioDenunciaKeevoCenterComKeePass(usuario: UsuarioPassaporteModel): Observable<UsuarioPassaporteModel>;
|
16
21
|
/**
|
17
22
|
* Cria uma nova denúncia anônima.
|
18
23
|
*
|
@@ -45,6 +50,10 @@ export declare class DenunciaanonimaService extends BaseApiService {
|
|
45
50
|
* @returns {Observable<DenunciaAnonimaModel>} Um Observable contendo o modelo de resposta da denúncia anônima.
|
46
51
|
*/
|
47
52
|
selecionarPorCodigoAcesso(codigoAcesso: string): Observable<DenunciaAnonimaModel>;
|
53
|
+
ListarDenunciasParaGerenciamento(filtro: FiltroListaDenunciaModel): Observable<{
|
54
|
+
item1: number;
|
55
|
+
item2: DenunciaComTarefaResumo[];
|
56
|
+
}>;
|
48
57
|
static ɵfac: i0.ɵɵFactoryDeclaration<DenunciaanonimaService, never>;
|
49
58
|
static ɵprov: i0.ɵɵInjectableDeclaration<DenunciaanonimaService>;
|
50
59
|
}
|
@@ -23,8 +23,8 @@ export declare class EquipeMembroService extends BaseApiService {
|
|
23
23
|
Listar(filtro: FiltroListaHcmModel): Observable<RelacionamentoLotacaoModel[]>;
|
24
24
|
ListarPorChave(filtro: FiltroListaRelacionamentoLotacaoModel): Observable<EquipeResumoModel[]>;
|
25
25
|
ListarPossiveisMembros(filtro: FiltroListaRelacionamentoLotacaoModel): Observable<EquipeMembroResumoModel[]>;
|
26
|
-
Salvar(data: EquipeMembroModel): Observable<
|
27
|
-
SalvarEmLote(data: EquipeMembroModel[]): Observable<
|
26
|
+
Salvar(data: EquipeMembroModel): Observable<unknown>;
|
27
|
+
SalvarEmLote(data: EquipeMembroModel[]): Observable<unknown>;
|
28
28
|
Selecionar(idanalista: number): Observable<RelacionamentoLotacaoModel>;
|
29
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<EquipeMembroService, never>;
|
30
30
|
static ɵprov: i0.ɵɵInjectableDeclaration<EquipeMembroService>;
|
@@ -19,7 +19,7 @@ export declare class EquipeService extends BaseApiService {
|
|
19
19
|
Excluir(idequipe: number): Observable<Object>;
|
20
20
|
Listar(filtro: FiltroListaHcmModel): Observable<RelacionamentoLotacaoModel[]>;
|
21
21
|
ListarPorChave(filtro: FiltroListaRelacionamentoLotacaoModel): Observable<EquipeResumoModel[]>;
|
22
|
-
Salvar(data: EquipeModel): Observable<
|
22
|
+
Salvar(data: EquipeModel): Observable<unknown>;
|
23
23
|
Selecionar(idanalista: number): Observable<RelacionamentoLotacaoModel>;
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<EquipeService, never>;
|
25
25
|
static ɵprov: i0.ɵɵInjectableDeclaration<EquipeService>;
|
@@ -29,20 +29,20 @@ export declare class HierarquiaOrganizacionalService extends BaseApiService {
|
|
29
29
|
private rotaVerificaLideranca;
|
30
30
|
private rotalistarTodosLideres;
|
31
31
|
constructor(httpClient: HttpClient, hostEnv: HostEnvironment);
|
32
|
-
AtualizaVinculoDeHierarquia(dados: HierarquiaOrganizacionalAssociacaoModel): Observable<
|
32
|
+
AtualizaVinculoDeHierarquia(dados: HierarquiaOrganizacionalAssociacaoModel): Observable<unknown>;
|
33
33
|
AtualizarOrdemHierarquia(idhierarquiaorganizacional: number, idordem: number): Observable<unknown>;
|
34
|
-
AtualizarOrdemHierarquias(listaOrdens: AtualizarOrdemModel | AtualizarOrdemModel[]): Observable<
|
35
|
-
Excluir(id: number[]): Observable<
|
34
|
+
AtualizarOrdemHierarquias(listaOrdens: AtualizarOrdemModel | AtualizarOrdemModel[]): Observable<unknown>;
|
35
|
+
Excluir(id: number[]): Observable<unknown>;
|
36
36
|
ExcluirLiderSubstituto(id: number): Observable<Object>;
|
37
|
-
Listar(filtro: FiltroListaHcmModel): Observable<
|
38
|
-
ListarTodos(filtro: FiltroListaHcmModel): Observable<
|
37
|
+
Listar(filtro: FiltroListaHcmModel): Observable<unknown>;
|
38
|
+
ListarTodos(filtro: FiltroListaHcmModel): Observable<unknown>;
|
39
39
|
ListarTodosPorLider(filtro: FiltroCpfCnpj): Observable<unknown[]>;
|
40
|
-
ListarLideresSubstitutosPorHierarquiaOrganizacional(filtro: FiltroListaLiderSubstitutoModel): Observable<
|
41
|
-
ListarPossiveisLideres(filtro: FiltroHierarquia): Observable<
|
42
|
-
ListarHierarquiasQueSeraoExcluidas(idhierarquiaorganizacional: number[]): Observable<
|
40
|
+
ListarLideresSubstitutosPorHierarquiaOrganizacional(filtro: FiltroListaLiderSubstitutoModel): Observable<unknown>;
|
41
|
+
ListarPossiveisLideres(filtro: FiltroHierarquia): Observable<unknown>;
|
42
|
+
ListarHierarquiasQueSeraoExcluidas(idhierarquiaorganizacional: number[]): Observable<unknown>;
|
43
43
|
ListarTodosLideres(filtro: FiltroListaHcmModel): Observable<unknown[]>;
|
44
|
-
ListarMembros(filtro: FiltroListaHcmModel): Observable<
|
45
|
-
Salvar(dados: HierarquiaOrganizacionalModel): Observable<
|
44
|
+
ListarMembros(filtro: FiltroListaHcmModel): Observable<unknown>;
|
45
|
+
Salvar(dados: HierarquiaOrganizacionalModel): Observable<unknown>;
|
46
46
|
SolicitarConfirmacaoAlteracaoLideranca(filtro: FiltroHierarquia): Observable<boolean>;
|
47
47
|
Selecionar(id: number): Observable<HierarquiaOrganizacionalModel>;
|
48
48
|
SelecionarTotalHierarquias(idmaster: number, idempresaevocenter: string): Observable<number>;
|
@@ -12,9 +12,9 @@ export declare class MovimentosFolhaService extends BaseApiService {
|
|
12
12
|
private rotaSalvar;
|
13
13
|
constructor(httpClient: HttpClient, hostEnv: HostEnvironment);
|
14
14
|
Excluir(id: number): Observable<Object>;
|
15
|
-
Listar(filtro: FiltroListaHcmModel): Observable<
|
15
|
+
Listar(filtro: FiltroListaHcmModel): Observable<unknown>;
|
16
16
|
Selecionar(id: number): Observable<MovimentosFolhaModel>;
|
17
|
-
Salvar(dados: any): Observable<
|
17
|
+
Salvar(dados: any): Observable<unknown>;
|
18
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<MovimentosFolhaService, never>;
|
19
19
|
static ɵprov: i0.ɵɵInjectableDeclaration<MovimentosFolhaService>;
|
20
20
|
}
|
@@ -20,7 +20,7 @@ export declare class RelacionamentoLotacaoService extends BaseApiService {
|
|
20
20
|
Listar(filtro: FiltroListaHcmModel): Observable<RelacionamentoLotacaoModel[]>;
|
21
21
|
ListarTodos(filtro: FiltroListaHcmModel): Observable<RelacionamentoLotacaoModel[]>;
|
22
22
|
ListarPossiveisAnalistas(filtro: FiltroListaHcmModel): Observable<RelacionamentoLotacaoModel[]>;
|
23
|
-
Salvar(data: RelacionamentoLotacaoModel): Observable<
|
23
|
+
Salvar(data: RelacionamentoLotacaoModel): Observable<unknown>;
|
24
24
|
Selecionar(idrelacionamentolotacao: number): Observable<RelacionamentoLotacaoModel>;
|
25
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<RelacionamentoLotacaoService, never>;
|
26
26
|
static ɵprov: i0.ɵɵInjectableDeclaration<RelacionamentoLotacaoService>;
|
@@ -11,7 +11,7 @@ export declare class SubTipoOcorrenciaService extends BaseApiService {
|
|
11
11
|
private rotaSalvar;
|
12
12
|
constructor(httpClient: HttpClient, hostEnv: HostEnvironment);
|
13
13
|
Listar(filtro: FiltroListaHcmModel): Observable<SubTipoOcorrenciaModel[]>;
|
14
|
-
Salvar(data: SubTipoOcorrenciaModel): Observable<
|
14
|
+
Salvar(data: SubTipoOcorrenciaModel): Observable<unknown>;
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<SubTipoOcorrenciaService, never>;
|
16
16
|
static ɵprov: i0.ɵɵInjectableDeclaration<SubTipoOcorrenciaService>;
|
17
17
|
}
|
@@ -15,7 +15,7 @@ export declare class TipoEstadoService extends BaseApiService {
|
|
15
15
|
constructor(httpClient: HttpClient, hostEnv: HostEnvironment);
|
16
16
|
Excluir(id: number): Observable<Object>;
|
17
17
|
Listar(filtro: FiltroListaHcmModel): Observable<TipoEstadoResumoModel[]>;
|
18
|
-
Salvar(estado: TipoEstadoModel): Observable<
|
18
|
+
Salvar(estado: TipoEstadoModel): Observable<unknown>;
|
19
19
|
Selecionar(id: number): Observable<TipoEstadoModel>;
|
20
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<TipoEstadoService, never>;
|
21
21
|
static ɵprov: i0.ɵɵInjectableDeclaration<TipoEstadoService>;
|
@@ -14,7 +14,7 @@ export declare class TipoOcorrenciaService extends BaseApiService {
|
|
14
14
|
constructor(httpClient: HttpClient, hostEnv: HostEnvironment);
|
15
15
|
Excluir(idtipoocorrencia: number): Observable<Object>;
|
16
16
|
Listar(filtro: FiltroListaHcmModel): Observable<TipoOcorrenciaModel[]>;
|
17
|
-
Salvar(data: TipoOcorrenciaModel): Observable<
|
17
|
+
Salvar(data: TipoOcorrenciaModel): Observable<unknown>;
|
18
18
|
Selecionar(idtipoocorrencia: number): Observable<TipoOcorrenciaModel>;
|
19
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<TipoOcorrenciaService, never>;
|
20
20
|
static ɵprov: i0.ɵɵInjectableDeclaration<TipoOcorrenciaService>;
|
@@ -24,7 +24,7 @@ export declare class UnidadehierarquicaService extends BaseApiService {
|
|
24
24
|
ListarPorChave(filtro: FiltroListaHcmModel): Observable<UnidadeHierarquicaModel[]>;
|
25
25
|
ListarPossiveisUnidadesSuperiores(filtro: FiltroListaRelacionamentoLotacaoModel): Observable<UnidadeHierarquicaModel[]>;
|
26
26
|
ListarTodos(filtro: FiltroListaHcmModel): Observable<UnidadeHierarquicaModel[]>;
|
27
|
-
Salvar(data: UnidadeHierarquicaModel): Observable<
|
27
|
+
Salvar(data: UnidadeHierarquicaModel): Observable<unknown>;
|
28
28
|
Selecionar(idunidadehierarquica: number): Observable<UnidadeHierarquicaModel>;
|
29
29
|
SelecionarRaizPorChave(filtro: FiltroListaRelacionamentoLotacaoModel): Observable<UnidadeHierarquicaModel>;
|
30
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<UnidadehierarquicaService, never>;
|
@@ -25,7 +25,7 @@ export declare class KeexService extends BaseApiService {
|
|
25
25
|
private rotaSelecionarFlagsDeAcessoAokeex;
|
26
26
|
private rotaListarTelefonesValidacaoInicial;
|
27
27
|
constructor(httpClient: HttpClient, hostEnv: HostEnvironment);
|
28
|
-
ListarUsuarios(filtro: FiltroListaUsuarioModel): Observable<
|
28
|
+
ListarUsuarios(filtro: FiltroListaUsuarioModel): Observable<unknown>;
|
29
29
|
ListarTodosUsuarios(idmaster: number, idempresaevocenter: string): Observable<unknown[]>;
|
30
30
|
PesquisarUsuario(filtro: FiltroListaHcmModel): Observable<UsuarioPessoaResumoModel[]>;
|
31
31
|
TotalFuncionariosAcessokeex(filtro: FiltroListaHcmModel): Observable<number[]>;
|
@@ -9,7 +9,7 @@ export declare class EmpresaBannerService extends BaseApiService {
|
|
9
9
|
private rotaSalvar;
|
10
10
|
private rotaSelecionar;
|
11
11
|
constructor(httpClient: HttpClient, hostEnv: HostEnvironment);
|
12
|
-
Salvar(data: FormData): Observable<
|
12
|
+
Salvar(data: FormData): Observable<unknown>;
|
13
13
|
Selecionar(idmaster: number, idempresaevocenter: string, ordem: number): Observable<EmpresaBannerModel>;
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<EmpresaBannerService, never>;
|
15
15
|
static ɵprov: i0.ɵɵInjectableDeclaration<EmpresaBannerService>;
|
@@ -11,8 +11,8 @@ export declare class EmpresaParametrosService extends BaseApiService {
|
|
11
11
|
private rotaSelecionar;
|
12
12
|
constructor(httpClient: HttpClient, hostEnv: HostEnvironment);
|
13
13
|
Selecionar(idempresaevocenter: string): Observable<EmpresaParametrosModel>;
|
14
|
-
Salvar(data: FormData): Observable<
|
15
|
-
SalvarEkeep(data: FormData): Observable<
|
14
|
+
Salvar(data: FormData): Observable<unknown>;
|
15
|
+
SalvarEkeep(data: FormData): Observable<unknown>;
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<EmpresaParametrosService, never>;
|
17
17
|
static ɵprov: i0.ɵɵInjectableDeclaration<EmpresaParametrosService>;
|
18
18
|
}
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import { BaseApiService, HostEnvironment } from "keevo-api-services";
|
2
1
|
import { HttpClient } from '@angular/common/http';
|
2
|
+
import { BaseApiService, HostEnvironment } from 'keevo-api-services';
|
3
3
|
import { Observable } from 'rxjs';
|
4
4
|
import { EmpresaModel } from '../../models/passaporte/empresa/empresa.model';
|
5
5
|
import * as i0 from "@angular/core";
|
@@ -9,10 +9,12 @@ export declare class EmpresaService extends BaseApiService {
|
|
9
9
|
private rotaListarEmpresas;
|
10
10
|
private rotaListarEmpresaseFiliais;
|
11
11
|
private rotaListarFiliais;
|
12
|
+
private rotaSelecionar;
|
12
13
|
constructor(httpClient: HttpClient, hostEnv: HostEnvironment);
|
13
14
|
ListarEmpresas(idmaster: number): Observable<EmpresaModel[]>;
|
14
15
|
ListarEmpresaEFiliais(idmaster: number, idempresaevocenter: string): Observable<EmpresaModel[]>;
|
15
16
|
ListarFiliais(idempresaevocenter: string): Observable<EmpresaModel[]>;
|
17
|
+
Selecionar(idempresaevocenter: string): Observable<EmpresaModel>;
|
16
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<EmpresaService, never>;
|
17
19
|
static ɵprov: i0.ɵɵInjectableDeclaration<EmpresaService>;
|
18
20
|
}
|
@@ -15,9 +15,9 @@ export declare class AnalistaPessoaService extends BaseApiService {
|
|
15
15
|
private rotaSelecionar;
|
16
16
|
constructor(httpClient: HttpClient, hostEnv: HostEnvironment);
|
17
17
|
Excluir(idanalista: number): Observable<Object>;
|
18
|
-
Listar(filtro: FiltroListaAnalistasModel): Observable<
|
18
|
+
Listar(filtro: FiltroListaAnalistasModel): Observable<unknown>;
|
19
19
|
ListarPossiveisAnalistas(filtro: FiltroListaAnalistasModel): Observable<PossivelAnalistaPessoaModel[]>;
|
20
|
-
Salvar(data: AnalistaPessoaModel): Observable<
|
20
|
+
Salvar(data: AnalistaPessoaModel): Observable<unknown>;
|
21
21
|
Selecionar(idanalista: number): Observable<AnalistaPessoaModel>;
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnalistaPessoaService, never>;
|
23
23
|
static ɵprov: i0.ɵɵInjectableDeclaration<AnalistaPessoaService>;
|
@@ -34,8 +34,8 @@ export declare class ColaboradorService extends BaseApiService {
|
|
34
34
|
private rotaAlterarNomes;
|
35
35
|
constructor(httpClient: HttpClient, hostEnv: HostEnvironment);
|
36
36
|
AtualizaVinculoDeHierarquia(colaboradores: any): Observable<any>;
|
37
|
-
AlterarNomes(model: DadosPessoaEmpresaNomesModel): Observable<
|
38
|
-
VincularColaboradorHierarquia(model: HierarquiaOrganizacionalAssociacaoModel): Observable<
|
37
|
+
AlterarNomes(model: DadosPessoaEmpresaNomesModel): Observable<unknown>;
|
38
|
+
VincularColaboradorHierarquia(model: HierarquiaOrganizacionalAssociacaoModel): Observable<unknown>;
|
39
39
|
Listar(filtro: any): Observable<ColaboradorModel[]>;
|
40
40
|
ListarColaboradores(filtro: any): Observable<ColaboradorResumoModel[]>;
|
41
41
|
ListarTodos(idmaster: number, idempresaevocenter: string): Observable<ColaboradorModel[]>;
|
@@ -33,7 +33,7 @@ export declare class LiderService extends BaseApiService {
|
|
33
33
|
ListarPorChave(filtro: FiltroListaHcmModel): Observable<LiderResumoModel[]>;
|
34
34
|
Selecionar(idlider: number): Observable<LiderModel>;
|
35
35
|
SelecionarDadosPessoa(idmaster: number, cpf: string): Observable<LiderModel>;
|
36
|
-
Salvar(lider: LiderModel): Observable<
|
36
|
+
Salvar(lider: LiderModel): Observable<unknown>;
|
37
37
|
Excluir(idlider: number): Observable<Object>;
|
38
38
|
VerificaLiderAtivo(idlider: number): Observable<boolean>;
|
39
39
|
ExisteLiderPrincipal(idmaster: number, idempresaevocenter: string): Observable<boolean>;
|
@@ -43,7 +43,7 @@ export declare class RegistroService extends BaseApiService {
|
|
43
43
|
constructor(httpClient: HttpClient, hostEnv: HostEnvironment);
|
44
44
|
Excluir(id: number): Observable<Object>;
|
45
45
|
ExisteCpf(idmaster: number, idempresaevocenter: string, cpf: string): Observable<boolean>;
|
46
|
-
Listar(filtro?: FiltroListaRegistroModel): Observable<
|
46
|
+
Listar(filtro?: FiltroListaRegistroModel): Observable<unknown>;
|
47
47
|
ListarContatos(filtro: any): Observable<any[]>;
|
48
48
|
ListarIdPorCpf(filtro: FiltroCpfCnpj): Observable<number[]>;
|
49
49
|
ListarGuidPorCpforCpf(filtro: FiltroCpfCnpj): Observable<string[]>;
|
@@ -56,11 +56,11 @@ export declare class RegistroService extends BaseApiService {
|
|
56
56
|
ListarRegistrosAtivos(filtro?: any): Observable<PessoaSelectModel[]>;
|
57
57
|
SelecionarPerfil(filtro: FiltroCpfCnpj): Observable<PessoaPerfilModel>;
|
58
58
|
GEDListarDemonstrativoDePagamentoPorEmpresa(filtro: FiltroDemonstrativoPagamentoEmpresaModel): Observable<any>;
|
59
|
-
Salvar(data: RegistroModel): Observable<
|
59
|
+
Salvar(data: RegistroModel): Observable<unknown>;
|
60
60
|
Selecionar(id: number): Observable<RegistroModel>;
|
61
61
|
SelecionarPorGuid(uuid: string): Observable<unknown>;
|
62
62
|
SelecionarResumo(id: number): Observable<RegistroResumoModel>;
|
63
|
-
AtualizarFoto(model: PessoaFotoModel): Observable<
|
63
|
+
AtualizarFoto(model: PessoaFotoModel): Observable<unknown>;
|
64
64
|
AlteraVisualizacaoTelefone(idmaster: number, idempresaevocenter: string, cpf: string, estado: boolean): Observable<PessoaPerfilModel>;
|
65
65
|
AlteraVisualizacaoAniversario(idmaster: number, idempresaevocenter: string, cpf: string, estado: boolean): Observable<PessoaPerfilModel>;
|
66
66
|
TotalColaboradoresAtivos(filtro: FiltroListaHcmModel): Observable<number[]>;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
@@ -80,6 +80,7 @@ export * from './lib/models/keex/bannerkeex.model';
|
|
80
80
|
export * from './lib/models/keex/permissaopapelarea.model';
|
81
81
|
export * from './lib/models/keex/personalizacaokeex.model';
|
82
82
|
export * from './lib/models/keex/parametroskeex.model';
|
83
|
+
export * from './lib/models/dominio/agrupamentomovimentofolha.model';
|
83
84
|
/**
|
84
85
|
* Services
|
85
86
|
*/
|
@@ -128,6 +129,7 @@ export * from './lib/services/dominio/contribuicao-patronal.service';
|
|
128
129
|
export * from './lib/services/dominio/contribuicao-substituida.service';
|
129
130
|
export * from './lib/services/dominio/cooperativa.service';
|
130
131
|
export * from './lib/services/dominio/fpas.service';
|
132
|
+
export * from './lib/services/dominio/agrupamentomovimentofolha.service';
|
131
133
|
export * from './lib/services/dominio/tipo-pagamento-salario.service';
|
132
134
|
export * from './lib/services/dominio/tipo-salario.service';
|
133
135
|
export * from './lib/services/dominio/indicativo-admissao.service';
|