n8n-nodes-rooyai 1.0.6 → 1.0.7

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.
@@ -4,34 +4,19 @@ exports.RooyaiOpenRouter = void 0;
4
4
  class RooyaiOpenRouter {
5
5
  constructor() {
6
6
  this.name = 'rooyaiOpenRouter';
7
- this.displayName = 'Rooyai OpenRouter account';
8
- this.documentationUrl = 'https://openrouter.ai/docs';
7
+ this.displayName = 'Rooyai OpenRouter API';
8
+ this.documentationUrl = 'https://openrouter.ai/keys';
9
9
  this.properties = [
10
- {
11
- displayName: 'Provider Type',
12
- name: 'providerType',
13
- type: 'options',
14
- options: [
15
- {
16
- name: 'OpenRouter',
17
- value: 'openrouter',
18
- },
19
- {
20
- name: 'OpenAI',
21
- value: 'openai',
22
- },
23
- ],
24
- default: 'openrouter',
25
- description: 'Select AI provider',
26
- },
27
10
  {
28
11
  displayName: 'API Key',
29
12
  name: 'apiKey',
30
13
  type: 'string',
31
- typeOptions: { password: true },
14
+ typeOptions: {
15
+ password: true,
16
+ },
32
17
  default: '',
33
18
  required: true,
34
- description: 'Your API Key',
19
+ description: 'The API Key from OpenRouter',
35
20
  },
36
21
  ];
37
22
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-rooyai",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "Rooyai AI Agent for n8n",
5
5
  "keywords": [
6
6
  "n8n-community-node-package"
@@ -16,6 +16,9 @@
16
16
  "main": "index.js",
17
17
  "n8n": {
18
18
  "n8nNodesApiVersion": 1,
19
+ "credentials": [
20
+ "dist/RooyaiOpenRouter.credentials.js"
21
+ ],
19
22
  "nodes": [
20
23
  "dist/RooyaiAgent.node.js"
21
24
  ]