@pax2pay/model-banking 0.0.1 → 0.0.3
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/Account/Creatable.ts +9 -0
- package/Account/index.ts +43 -0
- package/Balances/index.ts +25 -0
- package/Event/index.ts +66 -0
- package/Operation/Creatable.ts +81 -0
- package/Operation/index.ts +69 -0
- package/Organization/Creatable.ts +9 -0
- package/Organization/index.ts +23 -0
- package/README.md +2 -2
- package/Rail/Iban.ts +11 -0
- package/Rail/PaxGiro.ts +12 -0
- package/Rail/Type.ts +1 -0
- package/Rail/index.ts +57 -0
- package/Rail/internal.ts +12 -0
- package/Transaction/Creatable.ts +28 -0
- package/Transaction/index.ts +50 -0
- package/dist/Account/Creatable.d.ts +6 -0
- package/dist/Account/Creatable.js +8 -0
- package/dist/Account/Creatable.js.map +1 -0
- package/dist/Account/index.d.ts +23 -0
- package/dist/Account/index.js +37 -0
- package/dist/Account/index.js.map +1 -0
- package/dist/Balances/index.d.ts +9 -0
- package/dist/Balances/index.js +19 -0
- package/dist/Balances/index.js.map +1 -0
- package/dist/Event/index.d.ts +33 -0
- package/dist/Event/index.js +65 -0
- package/dist/Event/index.js.map +1 -0
- package/dist/Operation/Creatable.d.ts +48 -0
- package/dist/Operation/Creatable.js +61 -0
- package/dist/Operation/Creatable.js.map +1 -0
- package/dist/Operation/index.d.ts +16 -0
- package/dist/Operation/index.js +56 -0
- package/dist/Operation/index.js.map +1 -0
- package/dist/Organization/Creatable.d.ts +6 -0
- package/dist/Organization/Creatable.js +8 -0
- package/dist/Organization/Creatable.js.map +1 -0
- package/dist/Organization/index.d.ts +11 -0
- package/dist/Organization/index.js +19 -0
- package/dist/Organization/index.js.map +1 -0
- package/dist/Rail/Iban.d.ts +8 -0
- package/dist/Rail/Iban.js +9 -0
- package/dist/Rail/Iban.js.map +1 -0
- package/dist/Rail/PaxGiro.d.ts +9 -0
- package/dist/Rail/PaxGiro.js +10 -0
- package/dist/Rail/PaxGiro.js.map +1 -0
- package/dist/Rail/Type.d.ts +1 -0
- package/dist/Rail/Type.js +2 -0
- package/dist/Rail/Type.js.map +1 -0
- package/dist/Rail/index.d.ts +17 -0
- package/dist/Rail/index.js +41 -0
- package/dist/Rail/index.js.map +1 -0
- package/dist/Rail/internal.d.ts +9 -0
- package/dist/Rail/internal.js +10 -0
- package/dist/Rail/internal.js.map +1 -0
- package/dist/Transaction/Creatable.d.ts +14 -0
- package/dist/Transaction/Creatable.js +19 -0
- package/dist/Transaction/Creatable.js.map +1 -0
- package/dist/Transaction/index.d.ts +20 -0
- package/dist/Transaction/index.js +37 -0
- package/dist/Transaction/index.js.map +1 -0
- package/dist/index.d.ts +7 -1
- package/dist/index.js +7 -1
- package/dist/index.js.map +1 -1
- package/index.ts +7 -1
- package/package.json +15 -10
package/dist/index.js
CHANGED
|
@@ -1,2 +1,8 @@
|
|
|
1
|
-
export
|
|
1
|
+
export { Account } from "./Account";
|
|
2
|
+
export { Balances } from "./Balances";
|
|
3
|
+
export { Event } from "./Event";
|
|
4
|
+
export { Operation } from "./Operation";
|
|
5
|
+
export { Organization } from "./Organization";
|
|
6
|
+
export { Rail } from "./Rail";
|
|
7
|
+
export { Transaction } from "./Transaction";
|
|
2
8
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["index.ts"],"names":[],"mappings":"AAAA,MAAM,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AACnC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AACrC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAC/B,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AACvC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAC7C,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAA;AAC7B,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA"}
|
package/index.ts
CHANGED
|
@@ -1 +1,7 @@
|
|
|
1
|
-
export
|
|
1
|
+
export { Account } from "./Account"
|
|
2
|
+
export { Balances } from "./Balances"
|
|
3
|
+
export { Event } from "./Event"
|
|
4
|
+
export { Operation } from "./Operation"
|
|
5
|
+
export { Organization } from "./Organization"
|
|
6
|
+
export { Rail } from "./Rail"
|
|
7
|
+
export { Transaction } from "./Transaction"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pax2pay/model-banking",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "Library containing data model types and functions for the Pax2Pay Banking API.",
|
|
5
5
|
"author": "Pax2Pay Ltd",
|
|
6
6
|
"license": "MIT",
|
|
@@ -54,16 +54,21 @@
|
|
|
54
54
|
"clean": "rimraf dist node_modules coverage"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@types/jest": "^29.
|
|
58
|
-
"@typescript-eslint/eslint-plugin": "5.
|
|
59
|
-
"@typescript-eslint/parser": "5.
|
|
60
|
-
"eslint": "^8.
|
|
61
|
-
"eslint-plugin-prettierx": "github:utily/eslint-plugin-prettierx#utily-
|
|
57
|
+
"@types/jest": "^29.2.4",
|
|
58
|
+
"@typescript-eslint/eslint-plugin": "5.46.1",
|
|
59
|
+
"@typescript-eslint/parser": "5.46.1",
|
|
60
|
+
"eslint": "^8.30.0",
|
|
61
|
+
"eslint-plugin-prettierx": "github:utily/eslint-plugin-prettierx#utily-20221021",
|
|
62
62
|
"eslint-plugin-simple-import-sort": "^8.0.0",
|
|
63
|
-
"jest": "^29.
|
|
64
|
-
"prettierx": "github:utily/prettierx#utily-
|
|
63
|
+
"jest": "^29.3.1",
|
|
64
|
+
"prettierx": "github:utily/prettierx#utily-20221021",
|
|
65
65
|
"rimraf": "^3.0.2",
|
|
66
|
-
"ts-jest": "^29.0.
|
|
67
|
-
"typescript": "^4.
|
|
66
|
+
"ts-jest": "^29.0.3",
|
|
67
|
+
"typescript": "^4.9.4"
|
|
68
|
+
},
|
|
69
|
+
"dependencies": {
|
|
70
|
+
"cryptly": "^3.0.2",
|
|
71
|
+
"gracely": "^2.0.3",
|
|
72
|
+
"isoly": "^2.0.14"
|
|
68
73
|
}
|
|
69
74
|
}
|