@pax2pay/model-banking 0.1.625 → 0.1.628

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.
@@ -19,7 +19,7 @@ jobs:
19
19
  - name: "Setup Node"
20
20
  uses: "actions/setup-node@v3"
21
21
  with:
22
- node-version: 20
22
+ node-version: 24
23
23
  cache: 'npm'
24
24
  - name: "Version Bump"
25
25
  id: version-bump
@@ -11,7 +11,7 @@ jobs:
11
11
  - uses: actions/checkout@v3
12
12
  - uses: actions/setup-node@v3
13
13
  with:
14
- node-version: 20
14
+ node-version: 24
15
15
  cache: 'npm'
16
16
  - uses: actions/cache@v3
17
17
  with:
@@ -26,7 +26,7 @@ jobs:
26
26
  - uses: actions/checkout@v3
27
27
  - uses: actions/setup-node@v3
28
28
  with:
29
- node-version: 20
29
+ node-version: 24
30
30
  cache: 'npm'
31
31
  - uses: actions/cache@v3
32
32
  with:
@@ -41,7 +41,7 @@ jobs:
41
41
  - uses: actions/checkout@v3
42
42
  - uses: actions/setup-node@v3
43
43
  with:
44
- node-version: 20
44
+ node-version: 24
45
45
  cache: 'npm'
46
46
  - uses: actions/cache@v3
47
47
  with:
@@ -56,6 +56,6 @@ jobs:
56
56
  - uses: actions/checkout@v3
57
57
  - uses: actions/setup-node@v3
58
58
  with:
59
- node-version: 20
59
+ node-version: 24
60
60
  cache: 'npm'
61
61
  - run: npm audit --omit=dev
@@ -15,7 +15,7 @@ jobs:
15
15
  - name: "Setup Node"
16
16
  uses: "actions/setup-node@v3"
17
17
  with:
18
- node-version: 18.20.4
18
+ node-version: 24
19
19
  cache: 'npm'
20
20
  - uses: actions/cache@v3
21
21
  with:
package/.ncurc.json ADDED
@@ -0,0 +1,7 @@
1
+ {
2
+ "cooldown": "7d",
3
+ "format": [
4
+ "time",
5
+ "cooldown"
6
+ ]
7
+ }
@@ -6,6 +6,7 @@ export interface Emoney {
6
6
  organization: string
7
7
  account: string
8
8
  supplier?: Supplier
9
+ currencies?: isoly.Currency[]
9
10
  timestamp: isoly.DateTime
10
11
  balances: Balances
11
12
  }
@@ -5,6 +5,7 @@ export interface Emoney {
5
5
  organization: string;
6
6
  account: string;
7
7
  supplier?: Supplier;
8
+ currencies?: isoly.Currency[];
8
9
  timestamp: isoly.DateTime;
9
10
  balances: Balances;
10
11
  }
@@ -5,6 +5,7 @@ export interface Emoney {
5
5
  organization: string;
6
6
  account: string;
7
7
  supplier?: Supplier;
8
+ currencies?: isoly.Currency[];
8
9
  timestamp: isoly.DateTime;
9
10
  balances: Balances;
10
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pax2pay/model-banking",
3
- "version": "0.1.625",
3
+ "version": "0.1.628",
4
4
  "description": "Library containing data model types and functions for the Pax2Pay Banking API.",
5
5
  "author": "Pax2Pay Ltd",
6
6
  "license": "MIT",
@@ -40,6 +40,10 @@
40
40
  "prepare": "npm run build",
41
41
  "clean": "rimraf dist node_modules coverage"
42
42
  },
43
+ "engines": {
44
+ "node": ">=24.0.0",
45
+ "npm": ">=11.10.0"
46
+ },
43
47
  "devDependencies": {
44
48
  "@cloudflare/workers-types": "^4.20260405.1",
45
49
  "@typescript-eslint/eslint-plugin": "8.44.1",