Skip to content

Commit abd3fe2

Browse files
committed
Initial commit: n8n-nodes-hedy v1.0.0
0 parents  commit abd3fe2

14 files changed

Lines changed: 1821 additions & 0 deletions

.gitignore

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# Dependencies
2+
node_modules/
3+
package-lock.json
4+
yarn.lock
5+
pnpm-lock.yaml
6+
7+
# Build output
8+
dist/
9+
*.js
10+
*.js.map
11+
*.d.ts
12+
!*.config.js
13+
14+
# IDE
15+
.vscode/
16+
.idea/
17+
*.swp
18+
*.swo
19+
*~
20+
.DS_Store
21+
22+
# Environment
23+
.env
24+
.env.local
25+
.env.*.local
26+
27+
# Logs
28+
*.log
29+
npm-debug.log*
30+
yarn-debug.log*
31+
yarn-error.log*
32+
lerna-debug.log*
33+
34+
# Testing
35+
coverage/
36+
.nyc_output/
37+
38+
# Temporary files
39+
tmp/
40+
temp/
41+
*.tmp
42+
43+
# OS files
44+
Thumbs.db
45+
Desktop.ini
46+
47+
# n8n specific
48+
*.node.js
49+
*.credentials.js
50+
!gulpfile.js

.npmignore

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# Source files (only distribute built files)
2+
credentials/**/*.ts
3+
nodes/**/*.ts
4+
!dist/**/*
5+
6+
# Development files
7+
.github/
8+
.vscode/
9+
.idea/
10+
*.swp
11+
*.swo
12+
*~
13+
.DS_Store
14+
15+
# Configuration files
16+
.editorconfig
17+
.eslintrc*
18+
.prettierrc*
19+
.gitignore
20+
.nvmrc
21+
tsconfig.json
22+
tslint.json
23+
24+
# Documentation source
25+
docs/
26+
examples/
27+
*.md
28+
!README.md
29+
!LICENSE
30+
!CHANGELOG.md
31+
32+
# Testing
33+
test/
34+
tests/
35+
coverage/
36+
.nyc_output/
37+
*.test.ts
38+
*.spec.ts
39+
40+
# Build artifacts
41+
*.log
42+
npm-debug.log*
43+
yarn-debug.log*
44+
yarn-error.log*
45+
.npm
46+
.yarn-integrity
47+
48+
# Environment
49+
.env
50+
.env.*
51+
52+
# Package manager files
53+
package-lock.json
54+
yarn.lock
55+
pnpm-lock.yaml
56+
57+
# Temporary files
58+
tmp/
59+
temp/
60+
*.tmp
61+
62+
# Git
63+
.git/
64+
.gitattributes

CHANGELOG.md

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [1.0.0] - 2025-01-09
11+
12+
### Added
13+
- Initial release of n8n-nodes-hedy
14+
- Hedy Trigger node with webhook support for:
15+
- Session Created events
16+
- Session Ended events
17+
- Highlight Created events
18+
- Todo Exported events
19+
- Hedy action node with operations for:
20+
- Get Session / Get Many Sessions
21+
- Get Highlight / Get Many Highlights
22+
- Get Many Todos / Get Todos by Session
23+
- API key authentication
24+
- Webhook signature verification for security
25+
- Pagination support for list operations
26+
- Zapier format compatibility option
27+
- Comprehensive error handling
28+
- Example workflows for common use cases
29+
- Full TypeScript support
30+
- Icon and branding
31+
32+
### Security
33+
- HMAC SHA-256 webhook signature verification
34+
- HTTPS-only webhook URLs required
35+
- Secure credential storage using n8n's encryption
36+
37+
### Documentation
38+
- Complete README with installation and usage instructions
39+
- API data structure documentation
40+
- Troubleshooting guide
41+
- Example workflow templates
42+
43+
## [0.1.0] - 2025-01-08 (Pre-release)
44+
45+
### Added
46+
- Project structure and configuration
47+
- Basic node scaffolding
48+
- TypeScript setup
49+
- Development environment configuration
50+
51+
---
52+
53+
## Version Guidelines
54+
55+
### Version Numbering
56+
- **Major (X.0.0)**: Breaking changes to node interface or API
57+
- **Minor (0.X.0)**: New features, operations, or non-breaking enhancements
58+
- **Patch (0.0.X)**: Bug fixes, documentation updates, dependency updates
59+
60+
### Upgrade Notes
61+
When upgrading between major versions, please review the migration guide in the documentation.
62+
63+
[Unreleased]: https://github.com/HedyAI/n8n-nodes-hedy/compare/v1.0.0...HEAD
64+
[1.0.0]: https://github.com/HedyAI/n8n-nodes-hedy/releases/tag/v1.0.0
65+
[0.1.0]: https://github.com/HedyAI/n8n-nodes-hedy/releases/tag/v0.1.0

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 Hedy
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)