flit-modulo-exportacoes 2.0.54 → 2.0.55
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.
|
@@ -158,8 +158,41 @@ export interface ValoresEventosExportacao {
|
|
|
158
158
|
ValorExtraNoturnoFeriado: ValorEventoExportacao;
|
|
159
159
|
ValorExtraIntrajornadaComReducao: ValorEventoExportacao;
|
|
160
160
|
}
|
|
161
|
+
/**
|
|
162
|
+
* Interface com o modelo padrão dos dados de integração dos documentos integrados com o eContador.
|
|
163
|
+
*
|
|
164
|
+
* @interface DadosIntegracao
|
|
165
|
+
*/
|
|
161
166
|
export interface DadosIntegracao {
|
|
162
167
|
id: string;
|
|
163
168
|
tipo: string;
|
|
164
169
|
id_externo?: string;
|
|
165
170
|
}
|
|
171
|
+
/**
|
|
172
|
+
* Interface com o modelo dos movimentos a serem enviados para a API do eContador.
|
|
173
|
+
*
|
|
174
|
+
* @interface MovimentoEnvioEContador
|
|
175
|
+
*/
|
|
176
|
+
export interface MovimentoEnvioEContador {
|
|
177
|
+
fim: string;
|
|
178
|
+
valor: number;
|
|
179
|
+
inicio: string;
|
|
180
|
+
created: string;
|
|
181
|
+
eventoId: string;
|
|
182
|
+
comentario: string;
|
|
183
|
+
complemento: string;
|
|
184
|
+
faltas: Array<string>;
|
|
185
|
+
funcionarioId: string;
|
|
186
|
+
departamentoId: string;
|
|
187
|
+
tipomovimentoId: string;
|
|
188
|
+
id: string | number | null;
|
|
189
|
+
}
|
|
190
|
+
/**
|
|
191
|
+
* Interface com o modelo dos dados a serem enviados para a API do eContador.
|
|
192
|
+
*
|
|
193
|
+
* @interface DadosEnvioEContador
|
|
194
|
+
*/
|
|
195
|
+
export interface DadosEnvioEContador {
|
|
196
|
+
empresaId: string;
|
|
197
|
+
movimentacoes: Array<MovimentoEnvioEContador>;
|
|
198
|
+
}
|