@seidor-cloud-produtos/tax-core 0.0.9-beta3 → 0.0.9-beta5

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/index.ts ADDED
@@ -0,0 +1,29 @@
1
+ import Block from "./taxReport/Block";
2
+ import * as Decorators from "./taxReport/Decorators";
3
+ import { Register } from "./taxReport/Register";
4
+ import * as ReportGenerator from "./taxReport/ReportGenerator";
5
+ import TaxReport from "./taxReport/TaxReport";
6
+ import ConsoleOutput from "./taxReport/implementations/ConsoleOutput";
7
+ import MemoryPersist from "./taxReport/implementations/MemoryPersist";
8
+ import TaxRegisterGenerator from "./taxReport/implementations/TaxRegisterGenerator";
9
+ import { OutputWriter } from "./taxReport/interfaces/OutputWriter";
10
+ import RegisterEventNotifier from "./taxReport/interfaces/RegisterEventNotifier";
11
+ import RegisterGenerator from "./taxReport/interfaces/RegisterGenerator";
12
+ import RegisterPersist from "./taxReport/interfaces/RegisterPersist";
13
+ import RegisterSubscriber from "./taxReport/interfaces/RegisterSubscriber";
14
+
15
+ export {
16
+ Block,
17
+ Decorators,
18
+ Register,
19
+ ReportGenerator,
20
+ TaxReport,
21
+ ConsoleOutput,
22
+ MemoryPersist,
23
+ TaxRegisterGenerator,
24
+ OutputWriter,
25
+ RegisterEventNotifier,
26
+ RegisterGenerator,
27
+ RegisterPersist,
28
+ RegisterSubscriber,
29
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seidor-cloud-produtos/tax-core",
3
- "version": "0.0.9-beta3",
3
+ "version": "0.0.9-beta5",
4
4
  "description": "Biblioteca para acelerar a geração de arquivos fiscais",
5
5
  "files": ["lib/**/*"],
6
6
  "main": "./dist/index.js",
@@ -1,29 +0,0 @@
1
- import Block from "./Block";
2
- import * as Decorators from "./Decorators";
3
- import { Register } from "./Register";
4
- import ReportGenerator from "./ReportGenerator";
5
- import TaxReport from "./TaxReport";
6
- import ConsoleOutput from "./implementations/ConsoleOutput";
7
- import MemoryPersist from "./implementations/MemoryPersist";
8
- import TaxRegisterGenerator from "./implementations/TaxRegisterGenerator";
9
- import { OutputWriter } from "./interfaces/OutputWriter";
10
- import RegisterEventNotifier from "./interfaces/RegisterEventNotifier";
11
- import RegisterGenerator from "./interfaces/RegisterGenerator";
12
- import RegisterPersist from "./interfaces/RegisterPersist";
13
- import RegisterSubscriber from "./interfaces/RegisterSubscriber";
14
-
15
- export {
16
- Block,
17
- Decorators,
18
- Register,
19
- ReportGenerator,
20
- TaxReport,
21
- ConsoleOutput,
22
- MemoryPersist,
23
- TaxRegisterGenerator,
24
- OutputWriter,
25
- RegisterEventNotifier,
26
- RegisterGenerator,
27
- RegisterPersist,
28
- RegisterSubscriber,
29
- };