Skip to content

Commit

Permalink
fix: export investment occurrence codes
Browse files Browse the repository at this point in the history
  • Loading branch information
Andre Braghini committed Nov 15, 2023
1 parent 26b814f commit 6b96268
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@r4digital/occurrence-codes",
"version": "1.2.0",
"version": "1.2.1",
"description": "Occurrence enum codes",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
Expand Down
4 changes: 3 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
import transfer from './transfer';
import billPayment from './bill-payment';
import pix from './pix';
import investment from './investment';

const occurrence = Object.freeze({
transfer,
billPayment,
pix
pix,
investment,
});

export default occurrence;
Expand Down

0 comments on commit 6b96268

Please sign in to comment.