flit-models 3.4.7 → 3.4.10
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/lib/models/api/index.d.ts +1 -0
- package/lib/models/api/index.js +1 -0
- package/lib/models/api/oncall_buscar_usuarios/index.d.ts +40 -0
- package/lib/models/api/oncall_buscar_usuarios/index.js +25 -0
- package/lib/models/contas/auditoria/modificador/index.d.ts +2 -1
- package/lib/models/contas/auditoria/modificador/index.js +1 -0
- package/package.json +1 -1
|
@@ -10,3 +10,4 @@ export * from './task-integracao-control-id';
|
|
|
10
10
|
export * from './task-processar-relatorio-multiplos-arquivos';
|
|
11
11
|
export * from './oncall-consultar-empresas-control-id';
|
|
12
12
|
export * from './oncall-contador-marcacoes-pendentes-processamento';
|
|
13
|
+
export * from './oncall_buscar_usuarios';
|
package/lib/models/api/index.js
CHANGED
|
@@ -26,3 +26,4 @@ __exportStar(require("./task-integracao-control-id"), exports);
|
|
|
26
26
|
__exportStar(require("./task-processar-relatorio-multiplos-arquivos"), exports);
|
|
27
27
|
__exportStar(require("./oncall-consultar-empresas-control-id"), exports);
|
|
28
28
|
__exportStar(require("./oncall-contador-marcacoes-pendentes-processamento"), exports);
|
|
29
|
+
__exportStar(require("./oncall_buscar_usuarios"), exports);
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { UsuarioElasticSource } from '../../contas/usuario';
|
|
2
|
+
export declare const USUARIO_FILTER_DEFAULT_VALUE: OncallBuscarUsuarioRequest;
|
|
3
|
+
export declare enum OncallBuscarUsuarioRequestRetornoTipoChave {
|
|
4
|
+
PADRAO = "PADRAO",
|
|
5
|
+
CONTADOR_SEM_PERFIL_ACESSSO = "CONTADOR_SEM_PERFIL_ACESSSO"
|
|
6
|
+
}
|
|
7
|
+
export interface OncallBuscarUsuarioRequest {
|
|
8
|
+
cargos_ids?: string[];
|
|
9
|
+
desligamento_maior_igual?: string;
|
|
10
|
+
departamentos_ids?: string[];
|
|
11
|
+
empresas_ids?: string[];
|
|
12
|
+
paginacao_buscar_depois?: any;
|
|
13
|
+
paginacao_tamanho?: number;
|
|
14
|
+
usuarios_ids?: string[];
|
|
15
|
+
deve_ter?: {
|
|
16
|
+
[key: string]: any | any[];
|
|
17
|
+
}[];
|
|
18
|
+
nao_deve_ter?: {
|
|
19
|
+
[key: string]: any | any[];
|
|
20
|
+
}[];
|
|
21
|
+
nome?: string | null;
|
|
22
|
+
ordenacao_colunas?: {
|
|
23
|
+
[key: string]: {
|
|
24
|
+
order: 'asc' | 'desc';
|
|
25
|
+
};
|
|
26
|
+
}[];
|
|
27
|
+
retornar_fields?: string[];
|
|
28
|
+
filtro_rapido?: string | null;
|
|
29
|
+
retorno_tipo?: {
|
|
30
|
+
chave: OncallBuscarUsuarioRequestRetornoTipoChave;
|
|
31
|
+
};
|
|
32
|
+
}
|
|
33
|
+
export interface OncallBuscarUsuarioResponse {
|
|
34
|
+
paginacao_data_primeira_request: number;
|
|
35
|
+
primeiro_valor_ordenacao: [string, string];
|
|
36
|
+
ultimo_valor_ordenacao: [string, string];
|
|
37
|
+
total: number;
|
|
38
|
+
tamanho: number;
|
|
39
|
+
docs: UsuarioElasticSource[];
|
|
40
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.OncallBuscarUsuarioRequestRetornoTipoChave = exports.USUARIO_FILTER_DEFAULT_VALUE = void 0;
|
|
4
|
+
exports.USUARIO_FILTER_DEFAULT_VALUE = {
|
|
5
|
+
cargos_ids: [],
|
|
6
|
+
departamentos_ids: [],
|
|
7
|
+
desligamento_maior_igual: null,
|
|
8
|
+
empresas_ids: [],
|
|
9
|
+
nome: null,
|
|
10
|
+
ordenacao_colunas: [
|
|
11
|
+
{
|
|
12
|
+
'nomeCompleto.simple_sort': {
|
|
13
|
+
order: 'asc',
|
|
14
|
+
},
|
|
15
|
+
},
|
|
16
|
+
],
|
|
17
|
+
paginacao_buscar_depois: null,
|
|
18
|
+
paginacao_tamanho: 20,
|
|
19
|
+
usuarios_ids: [],
|
|
20
|
+
};
|
|
21
|
+
var OncallBuscarUsuarioRequestRetornoTipoChave;
|
|
22
|
+
(function (OncallBuscarUsuarioRequestRetornoTipoChave) {
|
|
23
|
+
OncallBuscarUsuarioRequestRetornoTipoChave["PADRAO"] = "PADRAO";
|
|
24
|
+
OncallBuscarUsuarioRequestRetornoTipoChave["CONTADOR_SEM_PERFIL_ACESSSO"] = "CONTADOR_SEM_PERFIL_ACESSSO";
|
|
25
|
+
})(OncallBuscarUsuarioRequestRetornoTipoChave = exports.OncallBuscarUsuarioRequestRetornoTipoChave || (exports.OncallBuscarUsuarioRequestRetornoTipoChave = {}));
|
|
@@ -3,7 +3,8 @@ export declare enum EnumAuditoriaModificadorTipo {
|
|
|
3
3
|
USUARIO = "USUARIO",
|
|
4
4
|
API_ECONTADOR = "API_ECONTADOR",
|
|
5
5
|
API_DOMINIO = "API_DOMINIO",
|
|
6
|
-
INTERNO = "INTERNO"
|
|
6
|
+
INTERNO = "INTERNO",
|
|
7
|
+
IMPORTACAO_PLANILHA = "IMPORTACAO_PLANILHA"
|
|
7
8
|
}
|
|
8
9
|
export interface AuditoriaModificadorBase {
|
|
9
10
|
id: string;
|
|
@@ -22,6 +22,7 @@ var EnumAuditoriaModificadorTipo;
|
|
|
22
22
|
EnumAuditoriaModificadorTipo["API_ECONTADOR"] = "API_ECONTADOR";
|
|
23
23
|
EnumAuditoriaModificadorTipo["API_DOMINIO"] = "API_DOMINIO";
|
|
24
24
|
EnumAuditoriaModificadorTipo["INTERNO"] = "INTERNO";
|
|
25
|
+
EnumAuditoriaModificadorTipo["IMPORTACAO_PLANILHA"] = "IMPORTACAO_PLANILHA";
|
|
25
26
|
})(EnumAuditoriaModificadorTipo = exports.EnumAuditoriaModificadorTipo || (exports.EnumAuditoriaModificadorTipo = {}));
|
|
26
27
|
/**
|
|
27
28
|
* Internal class auditoria doc.
|