keevo-api-services-hcm 0.0.21 → 0.0.23
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/filtro/filtrolistausuario.model.mjs +1 -1
- package/esm2022/lib/models/pessoa/colaborador/colaborador.model.mjs +1 -1
- package/esm2022/lib/models/pessoa/registro/registro.model.mjs +1 -1
- package/esm2022/lib/models/pessoa/registro/usuariopessoaresumo.model.mjs +1 -1
- package/esm2022/lib/services/hcm/hierarquiaorganizacional.service.mjs +1 -1
- package/esm2022/lib/services/pessoa/colaborador.service.mjs +5 -1
- package/esm2022/lib/services/pessoa/keex.service.mjs +5 -1
- package/esm2022/lib/services/pessoa/registro.service.mjs +17 -1
- package/esm2022/lib/services/utilitarios/validators.service.mjs +21 -1
- package/fesm2022/keevo-api-services-hcm.mjs +44 -0
- package/fesm2022/keevo-api-services-hcm.mjs.map +1 -1
- package/lib/models/filtro/filtrolistausuario.model.d.ts +1 -0
- package/lib/models/pessoa/colaborador/colaborador.model.d.ts +2 -0
- package/lib/models/pessoa/registro/registro.model.d.ts +1 -0
- package/lib/models/pessoa/registro/usuariopessoaresumo.model.d.ts +1 -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 +9 -9
- 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/passaporte/empresa-banner.service.d.ts +1 -1
- package/lib/services/passaporte/empresa-parametros.service.d.ts +2 -2
- package/lib/services/pessoa/analista-pessoa.service.d.ts +2 -2
- package/lib/services/pessoa/colaborador.service.d.ts +2 -0
- package/lib/services/pessoa/keex.service.d.ts +3 -1
- package/lib/services/pessoa/lider.service.d.ts +1 -1
- package/lib/services/pessoa/registro.service.d.ts +14 -3
- package/lib/services/utilitarios/validators.service.d.ts +1 -0
- package/package.json +2 -2
@@ -7,6 +7,7 @@ export interface ColaboradorModel {
|
|
7
7
|
idempresaevocenter: string;
|
8
8
|
email: string;
|
9
9
|
telefone: string;
|
10
|
+
numerowhatsapp: string;
|
10
11
|
cpfcnpj?: string;
|
11
12
|
nome: string;
|
12
13
|
indativo: string;
|
@@ -16,6 +17,7 @@ export interface ColaboradorModel {
|
|
16
17
|
periodovigencia: PeriodoVigenciaModel[];
|
17
18
|
urlfoto?: string | null;
|
18
19
|
imagem?: string | null;
|
20
|
+
contatoscolaborador: any;
|
19
21
|
iduf: number;
|
20
22
|
idmunicipio: number;
|
21
23
|
cep: string;
|
@@ -187,6 +187,7 @@ export interface RegistroModel {
|
|
187
187
|
indexibirtelefone: boolean;
|
188
188
|
indexibirdatanascimento: boolean;
|
189
189
|
indverificado?: boolean;
|
190
|
+
indvalidado?: boolean;
|
190
191
|
afastamentos: RegistroAfastamentoModel[] | null;
|
191
192
|
empresa: RegistroEmpresaModel[] | null;
|
192
193
|
cargo: RegistroCargoModel[] | null;
|
@@ -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<EquipeMembroModel>;
|
27
|
+
SalvarEmLote(data: EquipeMembroModel[]): Observable<EquipeMembroModel[]>;
|
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<EquipeModel>;
|
23
23
|
Selecionar(idanalista: number): Observable<RelacionamentoLotacaoModel>;
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<EquipeService, never>;
|
25
25
|
static ɵprov: i0.ɵɵInjectableDeclaration<EquipeService>;
|
@@ -28,19 +28,19 @@ export declare class HierarquiaOrganizacionalService extends BaseApiService {
|
|
28
28
|
private rotaVerificaLideranca;
|
29
29
|
private rotalistarTodosLideres;
|
30
30
|
constructor(httpClient: HttpClient, hostEnv: HostEnvironment);
|
31
|
-
AtualizaVinculoDeHierarquia(dados: HierarquiaOrganizacionalAssociacaoModel): Observable<
|
31
|
+
AtualizaVinculoDeHierarquia(dados: HierarquiaOrganizacionalAssociacaoModel): Observable<HierarquiaOrganizacionalAssociacaoModel>;
|
32
32
|
AtualizarOrdemHierarquia(idhierarquiaorganizacional: number, idordem: number): Observable<unknown>;
|
33
|
-
AtualizarOrdemHierarquias(listaOrdens: AtualizarOrdemModel): Observable<
|
34
|
-
Excluir(id: number[]): Observable<
|
33
|
+
AtualizarOrdemHierarquias(listaOrdens: AtualizarOrdemModel): Observable<AtualizarOrdemModel>;
|
34
|
+
Excluir(id: number[]): Observable<number[]>;
|
35
35
|
ExcluirLiderSubstituto(id: number): Observable<Object>;
|
36
|
-
Listar(filtro: FiltroListaHcmModel): Observable<
|
37
|
-
ListarTodos(filtro: FiltroListaHcmModel): Observable<
|
36
|
+
Listar(filtro: FiltroListaHcmModel): Observable<FiltroListaHcmModel>;
|
37
|
+
ListarTodos(filtro: FiltroListaHcmModel): Observable<FiltroListaHcmModel>;
|
38
38
|
ListarTodosPorLider(filtro: FiltroCpfCnpj): Observable<unknown[]>;
|
39
|
-
ListarLideresSubstitutosPorHierarquiaOrganizacional(filtro: FiltroListaLiderSubstitutoModel): Observable<
|
40
|
-
ListarPossiveisLideres(filtro: FiltroHierarquia): Observable<
|
41
|
-
ListarMembros(filtro: FiltroListaHcmModel): Observable<
|
39
|
+
ListarLideresSubstitutosPorHierarquiaOrganizacional(filtro: FiltroListaLiderSubstitutoModel): Observable<FiltroListaLiderSubstitutoModel>;
|
40
|
+
ListarPossiveisLideres(filtro: FiltroHierarquia): Observable<FiltroHierarquia>;
|
41
|
+
ListarMembros(filtro: FiltroListaHcmModel): Observable<FiltroListaHcmModel>;
|
42
42
|
ListarTodosLideres(filtro: FiltroListaHcmModel): Observable<unknown[]>;
|
43
|
-
Salvar(dados: HierarquiaOrganizacionalModel): Observable<
|
43
|
+
Salvar(dados: HierarquiaOrganizacionalModel): Observable<HierarquiaOrganizacionalModel>;
|
44
44
|
SolicitarConfirmacaoAlteracaoLideranca(filtro: FiltroHierarquia): Observable<boolean>;
|
45
45
|
Selecionar(id: number): Observable<HierarquiaOrganizacionalModel>;
|
46
46
|
SelecionarTotalHierarquias(idmaster: number, idempresaevocenter: string): Observable<number>;
|
@@ -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<RelacionamentoLotacaoModel>;
|
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<SubTipoOcorrenciaModel>;
|
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<TipoEstadoModel>;
|
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<TipoOcorrenciaModel>;
|
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<UnidadeHierarquicaModel>;
|
28
28
|
Selecionar(idunidadehierarquica: number): Observable<UnidadeHierarquicaModel>;
|
29
29
|
SelecionarRaizPorChave(filtro: FiltroListaRelacionamentoLotacaoModel): Observable<UnidadeHierarquicaModel>;
|
30
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<UnidadehierarquicaService, never>;
|
@@ -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<FormData>;
|
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<FormData>;
|
15
|
+
SalvarEkeep(data: FormData): Observable<FormData>;
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<EmpresaParametrosService, never>;
|
17
17
|
static ɵprov: i0.ɵɵInjectableDeclaration<EmpresaParametrosService>;
|
18
18
|
}
|
@@ -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<FiltroListaAnalistasModel>;
|
19
19
|
ListarPossiveisAnalistas(filtro: FiltroListaAnalistasModel): Observable<PossivelAnalistaPessoaModel[]>;
|
20
|
-
Salvar(data: AnalistaPessoaModel): Observable<
|
20
|
+
Salvar(data: AnalistaPessoaModel): Observable<AnalistaPessoaModel>;
|
21
21
|
Selecionar(idanalista: number): Observable<AnalistaPessoaModel>;
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnalistaPessoaService, never>;
|
23
23
|
static ɵprov: i0.ɵɵInjectableDeclaration<AnalistaPessoaService>;
|
@@ -14,6 +14,7 @@ export declare class ColaboradorService extends BaseApiService {
|
|
14
14
|
private rotaListarColaboradoresSecundariosPorHierarquiaOrganizacional;
|
15
15
|
private rotaListarPossiveisColaboradores;
|
16
16
|
private rotaSelecionar;
|
17
|
+
private rotaSelecionarPorGuid;
|
17
18
|
private rotaSelecionarPossivelColaborador;
|
18
19
|
private rotaSalvar;
|
19
20
|
private rotaSalvarLinha;
|
@@ -27,6 +28,7 @@ export declare class ColaboradorService extends BaseApiService {
|
|
27
28
|
ListarColaboradoresSecundariosPorHierarquiaOrganizacional(idhierarquiaorganizacional: number): Observable<ColaboradorModel[]>;
|
28
29
|
ListarPossiveisColaboradores(model: FiltroListaColaboradores): Observable<ColaboradorModel>;
|
29
30
|
Selecionar(idcolaborador: number): Observable<ColaboradorModel>;
|
31
|
+
SelecionarPorGuid(guid: string): Observable<ColaboradorModel>;
|
30
32
|
SelecionarPossivelColaborador(filtro: FiltroCpfCnpj): Observable<ColaboradorModel>;
|
31
33
|
Salvar(colaborador: ColaboradorModel): Observable<ColaboradorModel>;
|
32
34
|
SalvarLinha(colaborador: ColaboradorModel): Observable<ColaboradorModel>;
|
@@ -15,16 +15,18 @@ export declare class KeexService extends BaseApiService {
|
|
15
15
|
private rotaPesquisarUsuario;
|
16
16
|
private rotaTotalFuncionariosAcessoKeex;
|
17
17
|
private rotaAlteracoesKeex;
|
18
|
+
private rotaValidacaoKeex;
|
18
19
|
private rotaAlteracoesKeexEmpresa;
|
19
20
|
private rotaEnviaConvite;
|
20
21
|
private rotaListarEnderecos;
|
21
22
|
private rotaValidaAcesoInicial;
|
22
23
|
private rotaSelecionarFlagsDeAcessoAokeex;
|
23
24
|
constructor(httpClient: HttpClient, hostEnv: HostEnvironment);
|
24
|
-
ListarUsuarios(filtro: FiltroListaUsuarioModel): Observable<
|
25
|
+
ListarUsuarios(filtro: FiltroListaUsuarioModel): Observable<FiltroListaUsuarioModel>;
|
25
26
|
PesquisarUsuario(filtro: FiltroListaHcmModel): Observable<UsuarioPessoaResumoModel[]>;
|
26
27
|
TotalFuncionariosAcessokeex(filtro: FiltroListaHcmModel): Observable<number[]>;
|
27
28
|
AlteraAcessoAoKeex(parametros: AtualizaFlagPessoaModel): Observable<any>;
|
29
|
+
AlteraValidacaoKeex(parametros: AtualizaFlagPessoaModel): Observable<any>;
|
28
30
|
EnviarConvite(usuarios: UsuarioPessoaResumoModel[]): Observable<any>;
|
29
31
|
ListarEnderecos(filtro: FiltroCpfCnpj): Observable<number[]>;
|
30
32
|
ValidaAcesoInicial(dados: ValidaUsuarioModel): Observable<any>;
|
@@ -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<LiderModel>;
|
37
37
|
Excluir(idlider: number): Observable<Object>;
|
38
38
|
VerificaLiderAtivo(idlider: number): Observable<boolean>;
|
39
39
|
ExisteLiderPrincipal(idmaster: number, idempresaevocenter: string): Observable<boolean>;
|
@@ -19,37 +19,48 @@ export declare class RegistroService extends BaseApiService {
|
|
19
19
|
private rotaListar;
|
20
20
|
private rotaListarContatos;
|
21
21
|
private rotaListarIdPorCpf;
|
22
|
+
private rotaListarGuidPorCpf;
|
22
23
|
private rotaListarFuncionariosSemLotacao;
|
23
24
|
private rotaPesquisar;
|
24
25
|
private rotaListarAniversariantes;
|
25
26
|
private rotaSelecionarPerfil;
|
26
27
|
private rotaSalvar;
|
27
28
|
private rotaSelecionar;
|
29
|
+
private rotaSelecionarPorGuid;
|
28
30
|
private rotaAtualizarFoto;
|
29
31
|
private rotaAlteraVisualizacaoTelefone;
|
30
32
|
private rotaAlteraVisualizacaoAniversario;
|
31
33
|
private rotaTotalColaboradoresAtivos;
|
32
34
|
private rotaPesquisaLiderSubordinado;
|
33
35
|
private rotaGEDListarDemonstrativoDePagamentoPorEmpresa;
|
36
|
+
private rotaVerificaDemissaoIndividual;
|
37
|
+
private rotaVerificaDemissaoPorEmpresa;
|
34
38
|
constructor(httpClient: HttpClient, hostEnv: HostEnvironment);
|
35
39
|
Excluir(id: number): Observable<Object>;
|
36
40
|
ExisteCpf(idmaster: number, idempresaevocenter: string, cpf: string): Observable<boolean>;
|
37
|
-
Listar(filtro: FiltroListaRegistroModel): Observable<
|
41
|
+
Listar(filtro: FiltroListaRegistroModel): Observable<FiltroListaRegistroModel>;
|
38
42
|
ListarContatos(filtro: any): Observable<any[]>;
|
39
43
|
ListarIdPorCpf(filtro: FiltroCpfCnpj): Observable<number[]>;
|
44
|
+
ListarGuidPorCpforCpf(filtro: FiltroCpfCnpj): Observable<string[]>;
|
40
45
|
ListarFuncionariosSemLotacao(filtro: FiltroListaRegistroModel): Observable<RegistroResumoModel[]>;
|
41
46
|
Pesquisar(filtro: FiltroListaRegistroModel): Observable<RegistroPesquisaModel[]>;
|
42
47
|
PesquisarLiderSubordinado(filtro: FiltroListaHcmModel): Observable<unknown>;
|
43
48
|
ListarAniversariantes(filtro: FiltroAniversarianteModel): Observable<any[]>;
|
44
49
|
SelecionarPerfil(filtro: FiltroCpfCnpj): Observable<PessoaPerfilModel>;
|
45
50
|
GEDListarDemonstrativoDePagamentoPorEmpresa(filtro: FiltroDemonstrativoPagamentoEmpresaModel): Observable<any>;
|
46
|
-
Salvar(data: RegistroModel): Observable<
|
51
|
+
Salvar(data: RegistroModel): Observable<RegistroModel>;
|
47
52
|
Selecionar(id: number): Observable<RegistroModel>;
|
53
|
+
SelecionarPorGuid(uuid: string): Observable<unknown>;
|
48
54
|
SelecionarResumo(id: number): Observable<RegistroResumoModel>;
|
49
|
-
AtualizarFoto(model: PessoaFotoModel): Observable<
|
55
|
+
AtualizarFoto(model: PessoaFotoModel): Observable<PessoaFotoModel>;
|
50
56
|
AlteraVisualizacaoTelefone(idmaster: number, idempresaevocenter: string, cpf: string, estado: boolean): Observable<PessoaPerfilModel>;
|
51
57
|
AlteraVisualizacaoAniversario(idmaster: number, idempresaevocenter: string, cpf: string, estado: boolean): Observable<PessoaPerfilModel>;
|
52
58
|
TotalColaboradoresAtivos(filtro: FiltroListaHcmModel): Observable<number[]>;
|
59
|
+
VerificaDemissaoIndividual(idmaster: number, idempresaevocenter: string, cpfcnpj: string): Observable<number[]>;
|
60
|
+
VerificaDemissaoPorEmpresa(idmaster: number, idempresaevocenter: string): Observable<{
|
61
|
+
itme1: boolean;
|
62
|
+
item2: Notification[];
|
63
|
+
}>;
|
53
64
|
static ɵfac: i0.ɵɵFactoryDeclaration<RegistroService, never>;
|
54
65
|
static ɵprov: i0.ɵɵInjectableDeclaration<RegistroService>;
|
55
66
|
}
|
@@ -21,6 +21,7 @@ export declare class ValidatorsService {
|
|
21
21
|
conditionalValueRequired(conditionalFormControlName: string[], value: any, message?: string): (control: AbstractControl) => ValidationErrors | null;
|
22
22
|
conditionalNotValueRequired(conditionalFormControlName: string[], value: any, message?: string): (control: AbstractControl) => ValidationErrors | null;
|
23
23
|
maxlenght(valormaximo: number, mensagem: string): (control: AbstractControl) => ValidationErrors | null;
|
24
|
+
validateFileName(control: AbstractControl): ValidationErrors | null;
|
24
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<ValidatorsService, never>;
|
25
26
|
static ɵprov: i0.ɵɵInjectableDeclaration<ValidatorsService>;
|
26
27
|
}
|
package/package.json
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
{
|
2
2
|
"name": "keevo-api-services-hcm",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.23",
|
4
4
|
"peerDependencies": {
|
5
5
|
"@angular/common": "^17.3.8",
|
6
6
|
"@angular/core": "^17.3.8",
|
7
|
-
"keevo-api-services": "0.0.
|
7
|
+
"keevo-api-services": "0.0.23"
|
8
8
|
},
|
9
9
|
"dependencies": {
|
10
10
|
"tslib": "^2.3.0"
|