Skip to content

Commit 58c6f18

Browse files
chore: standardize IONOS branding in customer-facing UI fields (#5)
- Update displayName to 'IONOS Cloud' (uppercase) across all nodes - Update descriptions to use 'IONOS Cloud' consistently - Update default node names for better brand consistency - Add 'Official' to package description Affected nodes: - CDN - DNS (Cloud DNS) - Infrastructure (Cloud API) - AI Model Hub - Certificate Manager
1 parent 3b48262 commit 58c6f18

6 files changed

Lines changed: 13 additions & 13 deletions

File tree

nodes/IonosCloudAiModelHub/IonosCloudAiModelHub.node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export class IonosCloudAiModelHub implements INodeType {
1313
usableAsTool = true;
1414

1515
description: INodeTypeDescription = {
16-
displayName: 'Ionos Cloud (AI Model Hub)',
16+
displayName: 'IONOS Cloud (AI Model Hub)',
1717
name: 'ionosCloudAiModelHub',
1818
icon: { light: 'file:ionos.svg', dark: 'file:ionos.dark.svg' },
1919
group: ['transform'],

nodes/IonosCloudCdn/IonosCloudCdn.node.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ export class IonosCloudCdn implements INodeType {
1111
usableAsTool = true;
1212

1313
description: INodeTypeDescription = {
14-
displayName: 'Ionos Cloud (CDN)',
14+
displayName: 'IONOS Cloud (CDN)',
1515
name: 'ionosCloudCdn',
1616
icon: { light: 'file:ionos.svg', dark: 'file:ionos.dark.svg' },
1717
group: ['transform'],
1818
version: 1,
1919
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
20-
description: 'Interact with Ionos Cloud CDN API',
20+
description: 'Interact with IONOS Cloud CDN API',
2121
defaults: {
22-
name: 'Ionos Cloud CDN',
22+
name: 'IONOS Cloud CDN',
2323
},
2424
inputs: ['main'],
2525
outputs: ['main'],

nodes/IonosCloudCertificateManager/IonosCloudCertificateManager.node.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ import { providerDescriptions } from './resources/provider/provider';
99

1010
export class IonosCloudCertificateManager implements INodeType {
1111
description: INodeTypeDescription = {
12-
displayName: 'Ionos Cloud (Certificate Manager)',
12+
displayName: 'IONOS Cloud (Certificate Manager)',
1313
name: 'ionosCloudCertificateManager',
1414
icon: { light: 'file:ionos.svg', dark: 'file:ionos.dark.svg' },
1515
group: ['transform'],
1616
version: 1,
1717
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
18-
description: 'Interact with Ionos Cloud Certificate Manager API v2',
18+
description: 'Interact with IONOS Cloud Certificate Manager API v2',
1919
defaults: {
20-
name: 'Ionos Cloud (Certificate Manager)',
20+
name: 'IONOS Cloud (Certificate Manager)',
2121
},
2222
usableAsTool: true,
2323
inputs: [NodeConnectionTypes.Main],

nodes/IonosCloudCloudApi/IonosCloudCloudApi.node.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ import { targetGroupDescription } from './resources/targetGroup';
2323

2424
export class IonosCloudCloudApi implements INodeType {
2525
description: INodeTypeDescription = {
26-
displayName: 'Ionos Cloud (Infrastructure)',
26+
displayName: 'IONOS Cloud (Infrastructure)',
2727
name: 'ionosCloudCloudApi',
2828
icon: { light: 'file:ionos.svg', dark: 'file:ionos.dark.svg' },
2929
group: ['transform'],
3030
version: 1,
3131
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
3232
description: 'Manage IONOS Cloud infrastructure resources',
3333
defaults: {
34-
name: 'Ionos Cloud (Infrastructure)',
34+
name: 'IONOS Cloud (Infrastructure)',
3535
},
3636
usableAsTool: true,
3737
inputs: [NodeConnectionTypes.Main],

nodes/IonosCloudDns/IonosCloudDns.node.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ import { reverseRecordDescriptions } from './resources/reverseRecord/reverseReco
1717

1818
export class IonosCloudDns implements INodeType {
1919
description: INodeTypeDescription = {
20-
displayName: 'Ionos Cloud (Cloud DNS)',
20+
displayName: 'IONOS Cloud (Cloud DNS)',
2121
name: 'ionosCloudDns',
2222
icon: { light: 'file:ionos.svg', dark: 'file:ionos.dark.svg' },
2323
group: ['transform'],
2424
version: 1,
2525
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
26-
description: 'Interact with Ionos Cloud DNS API v1',
26+
description: 'Interact with IONOS Cloud DNS API v1',
2727
defaults: {
28-
name: 'Ionos Cloud (Cloud DNS)',
28+
name: 'IONOS Cloud (Cloud DNS)',
2929
},
3030
usableAsTool: true,
3131
inputs: [NodeConnectionTypes.Main],

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ionos-cloud/n8n-nodes-ionos-cloud",
33
"version": "1.0.0",
4-
"description": "n8n community nodes for IONOS Cloud services (Infrastructure, Certificate Manager, DNS, CDN, AI Model Hub)",
4+
"description": "Official n8n community nodes for IONOS Cloud services (Infrastructure, Certificate Manager, DNS, CDN, AI Model Hub)",
55
"license": "MIT",
66
"homepage": "https://www.ionos.com/cloud",
77
"keywords": [

0 commit comments

Comments
 (0)