n8n-nodes-fingrid 0.1.0
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/README.md +56 -0
- package/package.json +58 -0
package/README.md
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# n8n-nodes-fingrid
|
|
2
|
+
|
|
3
|
+
n8n community node for [Fingrid Open Data](https://data.fingrid.fi/en) — real-time and historical
|
|
4
|
+
Finnish power grid and electricity market data (frequency, power system state, electricity shortage
|
|
5
|
+
status, production/consumption, cross-border transmission, balancing and reserve markets).
|
|
6
|
+
|
|
7
|
+
**Not affiliated with, endorsed by, or sponsored by Fingrid Oyj.**
|
|
8
|
+
|
|
9
|
+
## Data license
|
|
10
|
+
|
|
11
|
+
Fingrid's data is published under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/).
|
|
12
|
+
Attribution required when displaying or republishing the data:
|
|
13
|
+
|
|
14
|
+
> Source Fingrid / data.fingrid.fi, license CC 4.0 BY
|
|
15
|
+
|
|
16
|
+
## Prerequisites
|
|
17
|
+
|
|
18
|
+
You need a free Fingrid Open Data API key:
|
|
19
|
+
|
|
20
|
+
1. Go to https://data.fingrid.fi/en and sign up (email only, no company/business account required)
|
|
21
|
+
2. Approve the license and terms of use
|
|
22
|
+
3. You'll receive a personal API key by email immediately
|
|
23
|
+
4. Rate limits: 10 requests/minute, 10,000/day
|
|
24
|
+
|
|
25
|
+
## Resources & operations
|
|
26
|
+
|
|
27
|
+
- **Dataset**
|
|
28
|
+
- Get — metadata for a single dataset by ID
|
|
29
|
+
- Search — search/list all public datasets
|
|
30
|
+
- Get Data — time series data for a dataset within a time range
|
|
31
|
+
- Get Latest Data — most recent data point for a dataset
|
|
32
|
+
- Get File — a single dataset file
|
|
33
|
+
- Get File Data — file-based data within a time range
|
|
34
|
+
- **Data (multiple datasets)**
|
|
35
|
+
- Get Multiple — time series data for several datasets in one call
|
|
36
|
+
- Get Updated — data for datasets changed within a recent period
|
|
37
|
+
- **System**
|
|
38
|
+
- Get Active Notifications
|
|
39
|
+
- Get Health Status
|
|
40
|
+
|
|
41
|
+
## Finding dataset IDs
|
|
42
|
+
|
|
43
|
+
Use the **Dataset → Search** operation (with or without search text) to browse available datasets
|
|
44
|
+
and find their numeric IDs, or browse https://data.fingrid.fi/en/datasets in a browser.
|
|
45
|
+
|
|
46
|
+
## Development
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
npm install
|
|
50
|
+
npm run build
|
|
51
|
+
npm run lint
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
## License
|
|
55
|
+
|
|
56
|
+
MIT
|
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "n8n-nodes-fingrid",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "n8n community node for Fingrid Open Data — Finnish power grid and electricity market data",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"n8n-community-node-package",
|
|
7
|
+
"fingrid",
|
|
8
|
+
"electricity",
|
|
9
|
+
"power-grid",
|
|
10
|
+
"finland",
|
|
11
|
+
"energy"
|
|
12
|
+
],
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"homepage": "https://github.com/MychelGarzon/n8n-nodes-fingrid",
|
|
15
|
+
"author": {
|
|
16
|
+
"name": "Mychel Garzon"
|
|
17
|
+
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/MychelGarzon/n8n-nodes-fingrid.git"
|
|
21
|
+
},
|
|
22
|
+
"main": "index.js",
|
|
23
|
+
"scripts": {
|
|
24
|
+
"build": "npx rimraf dist && tsc && npx gulp build:icons",
|
|
25
|
+
"dev": "tsc --watch",
|
|
26
|
+
"format": "prettier nodes credentials --write",
|
|
27
|
+
"lint": "eslint nodes credentials package.json",
|
|
28
|
+
"lintfix": "eslint nodes credentials package.json --fix",
|
|
29
|
+
"prepublishOnly": "echo skip"
|
|
30
|
+
},
|
|
31
|
+
"files": [
|
|
32
|
+
"dist"
|
|
33
|
+
],
|
|
34
|
+
"n8n": {
|
|
35
|
+
"n8nNodesApiVersion": 1,
|
|
36
|
+
"credentials": [
|
|
37
|
+
"dist/credentials/FingridApi.credentials.js"
|
|
38
|
+
],
|
|
39
|
+
"nodes": [
|
|
40
|
+
"dist/nodes/Fingrid/Fingrid.node.js"
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@typescript-eslint/parser": "~8.32.0",
|
|
45
|
+
"eslint-plugin-n8n-nodes-base": "^1.16.3",
|
|
46
|
+
"gulp": "^5.0.0",
|
|
47
|
+
"n8n-core": "^1.14.1",
|
|
48
|
+
"n8n-workflow": "^1.82.0",
|
|
49
|
+
"prettier": "^3.5.3",
|
|
50
|
+
"typescript": "^5.8.2"
|
|
51
|
+
},
|
|
52
|
+
"peerDependencies": {
|
|
53
|
+
"n8n-workflow": "*"
|
|
54
|
+
},
|
|
55
|
+
"engines": {
|
|
56
|
+
"node": ">=20.15"
|
|
57
|
+
}
|
|
58
|
+
}
|