@lucianpacurar/iso20022.js 0.2.16 → 0.2.18
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/dist/index.d.ts +1 -1
- package/dist/index.js +2320 -487
- package/dist/index.mjs +2320 -487
- package/dist/src/camt/types.d.ts +1 -1
- package/dist/test/camt/052/cash-management-account-report.test.d.ts +1 -0
- package/package.json +4 -4
package/dist/src/camt/types.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ export interface Statement {
|
|
|
19
19
|
/** Account details for which the statement is generated. */
|
|
20
20
|
account: Account;
|
|
21
21
|
/** Financial institution details. */
|
|
22
|
-
agent
|
|
22
|
+
agent?: Agent;
|
|
23
23
|
/** Total number of entries in the statement. */
|
|
24
24
|
numOfEntries?: number;
|
|
25
25
|
/** Sum of all entries in the statement. */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lucianpacurar/iso20022.js",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.18",
|
|
4
4
|
"readme": "README.md",
|
|
5
5
|
"description": "Library to create payment messages.",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -62,10 +62,10 @@
|
|
|
62
62
|
"@types/uuid": "^10.0.0",
|
|
63
63
|
"husky": "^9.1.4",
|
|
64
64
|
"jest": "^29.7.0",
|
|
65
|
-
"
|
|
65
|
+
"libxmljs2": "^0.37.0",
|
|
66
66
|
"lint-staged": "^15.2.8",
|
|
67
67
|
"prettier": "^3.3.3",
|
|
68
|
-
"rollup": "^4.
|
|
68
|
+
"rollup": "^4.60.1",
|
|
69
69
|
"rollup-plugin-dts": "^6.1.1",
|
|
70
70
|
"ts-jest": "^29.2.3",
|
|
71
71
|
"ts-node": "^10.9.2",
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"dependencies": {
|
|
77
77
|
"decimal.js": "^10.6.0",
|
|
78
78
|
"dinero.js": "^1.9.1",
|
|
79
|
-
"fast-xml-parser": "^5.
|
|
79
|
+
"fast-xml-parser": "^5.5.12",
|
|
80
80
|
"uuid": "^10.0.0"
|
|
81
81
|
}
|
|
82
82
|
}
|