Skip to content

Commit fbf580e

Browse files
authored
feat: release v1.0.13 with domain operations and updates (#28)
1 parent 0350eca commit fbf580e

File tree

13 files changed

+4520
-1588
lines changed

13 files changed

+4520
-1588
lines changed

.editorconfig

Lines changed: 0 additions & 20 deletions
This file was deleted.

.eslintrc.js

Lines changed: 0 additions & 61 deletions
This file was deleted.

.eslintrc.prepublish.js

Lines changed: 0 additions & 16 deletions
This file was deleted.

README.md

Lines changed: 26 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -98,46 +98,53 @@ Helpful link for beginners: [Try it out](https://docs.n8n.io/try-it-out/)
9898

9999
## Version history
100100

101+
- **v1.0.13**:
102+
- Added fields for Domain Purchase, Check Domain Availability and Update Domain Nameservers operations
103+
- Refactored scripts for building, linting, and releasing using n8n-node CLI
104+
- Added strict mode in n8n configuration
105+
- Updated devDependencies to use latest versions and added release-it for version management
106+
- Simplified tsconfig.json include paths
107+
101108
- **v1.0.12**:
102-
- Refactored the node to use Resources and Operations
109+
- Refactored the node to use Resources and Operations
103110

104111
- **v1.0.11**:
105-
- Updated dependencies
112+
- Updated dependencies
106113

107114
- **v1.0.10**:
108-
- Updated dependencies
115+
- Updated dependencies
109116

110117
- **v1.0.9**:
111-
- Updated dependencies
118+
- Updated dependencies
112119

113120
- **v1.0.8**:
114-
- Added VPS Docker Manager endpoints
121+
- Added VPS Docker Manager endpoints
115122

116123
- **v1.0.7**:
117-
- Added n8n credentials test
124+
- Added n8n credentials test
118125

119126
- **v1.0.6**:
120-
- Updated dependencies
127+
- Updated dependencies
121128

122129
- **v1.0.5**:
123-
- Added Email Marketing (Reach) endpoints
130+
- Added Email Marketing (Reach) endpoints
124131

125132
- **v1.0.4**:
126-
- Added Purchase VM Method
127-
- Added Billing methods
128-
- Added Domain Portfolio methods
129-
- Added Domain WHOIS methods
130-
- Added Domain Forwarding methods
131-
133+
- Added Purchase VM Method
134+
- Added Billing methods
135+
- Added Domain Portfolio methods
136+
- Added Domain WHOIS methods
137+
- Added Domain Forwarding methods
138+
132139
- **v1.0.3**:
133-
- No significant changes
140+
- No significant changes
134141

135142
- **v1.0.2**:
136-
- Fixed inputs on category selection
143+
- Fixed inputs on category selection
137144

138145
- **v1.0.1**:
139-
- Added `User-Agent` header
146+
- Added `User-Agent` header
140147

141148
- **v1.0.0**:
142-
- Initial release
143-
- Supports full suite of VPS operations including server management, monitoring, and networking.
149+
- Initial release
150+
- Supports full suite of VPS operations including server management, monitoring, and networking.

credentials/HostingerApi.credentials.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import {
22
IAuthenticateGeneric,
3+
Icon,
34
ICredentialTestRequest,
45
ICredentialType,
56
INodeProperties,
@@ -8,6 +9,7 @@ import {
89
export class HostingerApi implements ICredentialType {
910
name = 'hostingerApi';
1011
displayName = 'Hostinger API';
12+
icon: Icon = { light: 'file:../nodes/hostingerApi/hostingerLogo.svg', dark: 'file:../nodes/hostingerApi/hostingerLogo.dark.svg' };
1113
documentationUrl = 'https://developers.hostinger.com/';
1214

1315
properties: INodeProperties[] = [

eslint.config.mjs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { config } from '@n8n/node-cli/eslint';
2+
3+
export default config;

index.js

Whitespace-only changes.

0 commit comments

Comments
 (0)