n8n-nodes-rooyai-model 1.0.9 → 1.0.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-rooyai-model",
3
- "version": "1.0.9",
3
+ "version": "1.0.11",
4
4
  "description": "Rooyai AI Model Integration for n8n",
5
5
  "keywords": [
6
6
  "n8n-community-node-package"
@@ -29,7 +29,11 @@
29
29
  "typescript": "^5.0.0"
30
30
  },
31
31
  "dependencies": {
32
- "@langchain/core": "^0.1.0",
33
- "@langchain/openai": "^0.0.14"
32
+ "@langchain/core": "0.1.5",
33
+ "@langchain/openai": "0.0.12",
34
+ "openai": "^4.24.0"
35
+ },
36
+ "overrides": {
37
+ "openai": "^4.24.0"
34
38
  }
35
39
  }
@@ -1,6 +0,0 @@
1
- import { ICredentialType, INodeProperties } from 'n8n-workflow';
2
- export declare class RooyaiAccount implements ICredentialType {
3
- name: string;
4
- displayName: string;
5
- properties: INodeProperties[];
6
- }
@@ -1,20 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.RooyaiAccount = void 0;
4
- class RooyaiAccount {
5
- constructor() {
6
- this.name = 'rooyaiAccount';
7
- this.displayName = 'Rooyai Account';
8
- this.properties = [
9
- {
10
- displayName: 'Account Token',
11
- name: 'token',
12
- type: 'string',
13
- typeOptions: { password: true },
14
- default: '',
15
- required: true,
16
- },
17
- ];
18
- }
19
- }
20
- exports.RooyaiAccount = RooyaiAccount;
@@ -1,6 +0,0 @@
1
- import { ICredentialType, INodeProperties } from 'n8n-workflow';
2
- export declare class RooyaiOpenAI implements ICredentialType {
3
- name: string;
4
- displayName: string;
5
- properties: INodeProperties[];
6
- }
@@ -1,20 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.RooyaiOpenAI = void 0;
4
- class RooyaiOpenAI {
5
- constructor() {
6
- this.name = 'rooyaiOpenAI';
7
- this.displayName = 'Rooyai OpenAI';
8
- this.properties = [
9
- {
10
- displayName: 'API Key',
11
- name: 'apiKey',
12
- type: 'string',
13
- typeOptions: { password: true },
14
- default: '',
15
- required: true,
16
- },
17
- ];
18
- }
19
- }
20
- exports.RooyaiOpenAI = RooyaiOpenAI;
@@ -1,6 +0,0 @@
1
- import { ICredentialType, INodeProperties } from 'n8n-workflow';
2
- export declare class RooyaiOpenRouter implements ICredentialType {
3
- name: string;
4
- displayName: string;
5
- properties: INodeProperties[];
6
- }
@@ -1,20 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.RooyaiOpenRouter = void 0;
4
- class RooyaiOpenRouter {
5
- constructor() {
6
- this.name = 'rooyaiOpenRouter';
7
- this.displayName = 'Rooyai OpenRouter';
8
- this.properties = [
9
- {
10
- displayName: 'API Key',
11
- name: 'apiKey',
12
- type: 'string',
13
- typeOptions: { password: true },
14
- default: '',
15
- required: true,
16
- },
17
- ];
18
- }
19
- }
20
- exports.RooyaiOpenRouter = RooyaiOpenRouter;