flit-modulo-exportacoes 2.0.59 → 2.0.61
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ElasticBase } from './elastic-base';
|
|
2
2
|
import { SourceEventoEContador } from './model/evento-econtador-model';
|
|
3
3
|
import { SearchHit } from '@elastic/elasticsearch/lib/api/types';
|
|
4
|
-
export declare class
|
|
4
|
+
export declare class EventosEContadorElastic extends ElasticBase<SourceEventoEContador> {
|
|
5
5
|
private internalGetEventosEContadorElastic;
|
|
6
6
|
getEventosEContadorElastic(contaId: string): Promise<Array<SearchHit<SourceEventoEContador>>>;
|
|
7
7
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.EventosEContadorElastic = void 0;
|
|
4
4
|
const elastic_base_1 = require("./elastic-base");
|
|
5
5
|
const evento_econtador_model_1 = require("./model/evento-econtador-model");
|
|
6
|
-
class
|
|
6
|
+
class EventosEContadorElastic extends elastic_base_1.ElasticBase {
|
|
7
7
|
async internalGetEventosEContadorElastic(contaId) {
|
|
8
8
|
return await this.elasticClient.search({
|
|
9
9
|
scroll: '1m',
|
|
@@ -36,4 +36,4 @@ class EventosExportacoesElastic extends elastic_base_1.ElasticBase {
|
|
|
36
36
|
return await this.retornaTodosDadosPaginacaoElastic(await this.internalGetEventosEContadorElastic(contaId));
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
|
-
exports.
|
|
39
|
+
exports.EventosEContadorElastic = EventosEContadorElastic;
|
package/dist/utils.d.ts
CHANGED