n8n-nodes-rooyai-message 0.1.0
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/LICENSE +21 -0
- package/README.md +312 -0
- package/dist/credentials/RooyaiApi.credentials.d.ts +10 -0
- package/dist/credentials/RooyaiApi.credentials.d.ts.map +1 -0
- package/dist/credentials/RooyaiApi.credentials.js +60 -0
- package/dist/credentials/RooyaiApi.credentials.js.map +1 -0
- package/dist/nodes/RooyaiMessage/ChatDescription.d.ts +4 -0
- package/dist/nodes/RooyaiMessage/ChatDescription.d.ts.map +1 -0
- package/dist/nodes/RooyaiMessage/ChatDescription.js +336 -0
- package/dist/nodes/RooyaiMessage/ChatDescription.js.map +1 -0
- package/dist/nodes/RooyaiMessage/GenericFunctions.d.ts +4 -0
- package/dist/nodes/RooyaiMessage/GenericFunctions.d.ts.map +1 -0
- package/dist/nodes/RooyaiMessage/GenericFunctions.js +46 -0
- package/dist/nodes/RooyaiMessage/GenericFunctions.js.map +1 -0
- package/dist/nodes/RooyaiMessage/RooyaiMessage.node.d.ts +5 -0
- package/dist/nodes/RooyaiMessage/RooyaiMessage.node.d.ts.map +1 -0
- package/dist/nodes/RooyaiMessage/RooyaiMessage.node.js +51 -0
- package/dist/nodes/RooyaiMessage/RooyaiMessage.node.js.map +1 -0
- package/dist/nodes/RooyaiMessage/rooyai.svg +7 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +60 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Rooyai
|
|
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.
|
package/README.md
ADDED
|
@@ -0,0 +1,312 @@
|
|
|
1
|
+
# n8n-nodes-rooyai-message
|
|
2
|
+
|
|
3
|
+
A production-ready **Rooyai Message / Chat Model** node for n8n, providing first-class LLM provider integration equivalent to OpenAI, Gemini, or DeepSeek.
|
|
4
|
+
|
|
5
|
+
## 🎯 Overview
|
|
6
|
+
|
|
7
|
+
This custom n8n community node enables you to use **Rooyai's LLM API** as a message/chat model provider in your n8n workflows. It appears under **AI → Language Models → Rooyai Message Model** and works seamlessly with:
|
|
8
|
+
|
|
9
|
+
- ✅ AI Agent
|
|
10
|
+
- ✅ Better AI Agent
|
|
11
|
+
- ✅ Basic LLM Chain
|
|
12
|
+
- ✅ Tools
|
|
13
|
+
- ✅ Memory
|
|
14
|
+
|
|
15
|
+
## 📦 Installation
|
|
16
|
+
|
|
17
|
+
### Option 1: Install in n8n Custom Directory (Recommended for Testing)
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
# Create custom nodes directory if it doesn't exist
|
|
21
|
+
mkdir -p ~/.n8n/custom
|
|
22
|
+
|
|
23
|
+
# Copy the entire dist folder to the custom directory
|
|
24
|
+
cp -r ./dist ~/.n8n/custom/n8n-nodes-rooyai-message
|
|
25
|
+
|
|
26
|
+
# Restart n8n
|
|
27
|
+
n8n restart
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
### Option 2: Install via npm (Production)
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
# In your n8n installation directory
|
|
34
|
+
npm install n8n-nodes-rooyai-message
|
|
35
|
+
|
|
36
|
+
# Restart n8n
|
|
37
|
+
n8n restart
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
### Option 3: Development Link
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
# In this project directory
|
|
44
|
+
npm run build
|
|
45
|
+
npm link
|
|
46
|
+
|
|
47
|
+
# In your n8n directory
|
|
48
|
+
npm link n8n-nodes-rooyai-message
|
|
49
|
+
n8n restart
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## 🔑 Credentials Setup
|
|
53
|
+
|
|
54
|
+
1. In n8n, navigate to **Credentials → Create New Credential**
|
|
55
|
+
2. Search for "Rooyai API"
|
|
56
|
+
3. Configure the following fields:
|
|
57
|
+
|
|
58
|
+
| Field | Type | Required | Description |
|
|
59
|
+
|-------|------|----------|-------------|
|
|
60
|
+
| **API Key** | Password | ✅ Yes | Your Rooyai API authentication key |
|
|
61
|
+
| **Base URL** | String | ✅ Yes | API endpoint (default: `https://rooyai.com/api/v1/chat`) |
|
|
62
|
+
| **Optional Headers** | JSON String | ❌ No | Additional headers in JSON format: `{"X-Custom": "value"}` |
|
|
63
|
+
|
|
64
|
+
4. Click **Save** to store your credentials
|
|
65
|
+
|
|
66
|
+
## 🚀 Usage
|
|
67
|
+
|
|
68
|
+
### Basic Chat Completion
|
|
69
|
+
|
|
70
|
+
1. Add **Rooyai Message Model** node to your workflow
|
|
71
|
+
2. Select your Rooyai API credentials
|
|
72
|
+
3. Configure the node:
|
|
73
|
+
- **Model**: Select from dropdown (15 models available)
|
|
74
|
+
- **Messages**: Add user/system/assistant messages
|
|
75
|
+
- **Temperature**: `0.7` (0-2 range)
|
|
76
|
+
- **Max Tokens**: `1024` (optional)
|
|
77
|
+
|
|
78
|
+
### Example Workflow
|
|
79
|
+
|
|
80
|
+
```
|
|
81
|
+
Start Node → Rooyai Message Model → Output Node
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
**Configuration:**
|
|
85
|
+
- **Model**: `LLaMa 3.3 70B` (from dropdown)
|
|
86
|
+
- **Messages**:
|
|
87
|
+
- Role: `system`, Content: `You are a helpful assistant`
|
|
88
|
+
- Role: `user`, Content: `Explain quantum computing in simple terms`
|
|
89
|
+
- **Temperature**: `0.7`
|
|
90
|
+
|
|
91
|
+
### With AI Agent
|
|
92
|
+
|
|
93
|
+
```
|
|
94
|
+
Manual Chat Trigger → AI Agent → Rooyai Message Model
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
The Rooyai Message Model node integrates directly as a language model provider in AI Agent workflows.
|
|
98
|
+
|
|
99
|
+
### With Basic LLM Chain
|
|
100
|
+
|
|
101
|
+
```
|
|
102
|
+
Start → Basic LLM Chain → Rooyai Message Model → Output
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
Configure the chain with your prompt template, and it will automatically use Rooyai for text generation.
|
|
106
|
+
|
|
107
|
+
## ⚙️ Configuration Options
|
|
108
|
+
|
|
109
|
+
### Model Selection
|
|
110
|
+
|
|
111
|
+
Select from 15 available Rooyai models via dropdown:
|
|
112
|
+
|
|
113
|
+
| Model | Description | Best For |
|
|
114
|
+
|-------|-------------|----------|
|
|
115
|
+
| **LLaMa 3.3 70B** | Meta's flagship model with 70B parameters | Complex reasoning, detailed analysis |
|
|
116
|
+
| **DeepSeek R1** | Reasoning-optimized model | Logical tasks, problem-solving |
|
|
117
|
+
| **DeepSeek v3.1 Nex** | Latest DeepSeek with enhancements | General purpose, advanced tasks |
|
|
118
|
+
| **Qwen3 Coder** | Code generation specialist | Programming, technical documentation |
|
|
119
|
+
| **GPT OSS 120B** | Large open-source GPT | Complex tasks, high accuracy |
|
|
120
|
+
| **GPT OSS 20B** | Efficient open-source GPT | Fast responses, good balance |
|
|
121
|
+
| **TNG R1T Chimera** | TNG reasoning architecture | Analytical tasks |
|
|
122
|
+
| **TNG DeepSeek Chimera** | Hybrid TNG-DeepSeek model | Multi-domain tasks |
|
|
123
|
+
| **Kimi K2** | Moonshot AI's multilingual model | Chinese language, translations |
|
|
124
|
+
| **GLM 4.5 Air** | Lightweight ChatGLM | Fast interactions, efficiency |
|
|
125
|
+
| **Devstral** | Developer-focused model | Coding, debugging, tech docs |
|
|
126
|
+
| **Mimo v2 Flash** | High-speed model | Quick responses, real-time chat |
|
|
127
|
+
| **Gemma 3 27B** | Google Gemma large variant | General purpose, quality |
|
|
128
|
+
| **Gemma 3 12B** | Google Gemma balanced | Good performance/speed ratio |
|
|
129
|
+
| **Gemma 3 4B** | Google Gemma compact | Fastest responses, simple tasks |
|
|
130
|
+
|
|
131
|
+
### Message Roles
|
|
132
|
+
- **system**: Defines AI behavior and context
|
|
133
|
+
- **user**: Human input/questions
|
|
134
|
+
- **assistant**: AI responses (for conversation history)
|
|
135
|
+
|
|
136
|
+
### Advanced Options
|
|
137
|
+
|
|
138
|
+
| Option | Type | Range | Description |
|
|
139
|
+
|--------|------|-------|-------------|
|
|
140
|
+
| **Temperature** | Number | 0-2 | Controls randomness (0=deterministic, 2=very creative) |
|
|
141
|
+
| **Max Tokens** | Number | 1-32768 | Maximum response length |
|
|
142
|
+
| **Frequency Penalty** | Number | -2 to 2 | Reduces word repetition |
|
|
143
|
+
| **Presence Penalty** | Number | -2 to 2 | Encourages new topics |
|
|
144
|
+
| **Top P** | Number | 0-1 | Nucleus sampling (alternative to temperature) |
|
|
145
|
+
|
|
146
|
+
### Simplify Output
|
|
147
|
+
|
|
148
|
+
- **Enabled** (default): Returns only the assistant's message content as a clean string
|
|
149
|
+
- **Disabled**: Returns full API response including usage metadata (`cost_usd`)
|
|
150
|
+
|
|
151
|
+
## 🔧 API Integration Details
|
|
152
|
+
|
|
153
|
+
### Request Format
|
|
154
|
+
|
|
155
|
+
The node sends POST requests to your configured Base URL with:
|
|
156
|
+
|
|
157
|
+
```json
|
|
158
|
+
{
|
|
159
|
+
"model": "gemini-2.0-flash",
|
|
160
|
+
"messages": [
|
|
161
|
+
{ "role": "system", "content": "You are helpful" },
|
|
162
|
+
{ "role": "user", "content": "Hello!" }
|
|
163
|
+
],
|
|
164
|
+
"temperature": 0.7,
|
|
165
|
+
"max_tokens": 1024
|
|
166
|
+
}
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
**Headers:**
|
|
170
|
+
```
|
|
171
|
+
Authorization: Bearer {YOUR_API_KEY}
|
|
172
|
+
Content-Type: application/json
|
|
173
|
+
{...optional custom headers}
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
### Response Parsing
|
|
177
|
+
|
|
178
|
+
Rooyai returns responses in this format:
|
|
179
|
+
|
|
180
|
+
```json
|
|
181
|
+
{
|
|
182
|
+
"choices": [
|
|
183
|
+
{
|
|
184
|
+
"message": {
|
|
185
|
+
"content": "Hello! How can I assist you today?"
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
],
|
|
189
|
+
"usage": {
|
|
190
|
+
"cost_usd": 0.000123
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
The node automatically extracts `choices[0].message.content` for the final output.
|
|
196
|
+
|
|
197
|
+
## 📁 Project Structure
|
|
198
|
+
|
|
199
|
+
```
|
|
200
|
+
n8n-nodes-rooyai-message/
|
|
201
|
+
├── credentials/
|
|
202
|
+
│ └── RooyaiApi.credentials.ts # API credentials definition
|
|
203
|
+
├── nodes/
|
|
204
|
+
│ └── RooyaiMessage/
|
|
205
|
+
│ ├── RooyaiMessage.node.ts # Main node implementation
|
|
206
|
+
│ ├── ChatDescription.ts # Message/chat operations
|
|
207
|
+
│ ├── GenericFunctions.ts # Error handling & utilities
|
|
208
|
+
│ ├── RooyaiMessage.node.json # Node metadata
|
|
209
|
+
│ └── rooyai.svg # Node icon
|
|
210
|
+
├── dist/ # Compiled JavaScript output
|
|
211
|
+
├── package.json # Package metadata & dependencies
|
|
212
|
+
├── tsconfig.json # TypeScript configuration
|
|
213
|
+
├── gulpfile.js # Build tasks (icon copying)
|
|
214
|
+
└── README.md # This file
|
|
215
|
+
```
|
|
216
|
+
|
|
217
|
+
## 🛠️ Development
|
|
218
|
+
|
|
219
|
+
### Prerequisites
|
|
220
|
+
- Node.js 18+
|
|
221
|
+
- npm 8+
|
|
222
|
+
- TypeScript 5.3+
|
|
223
|
+
|
|
224
|
+
### Build from Source
|
|
225
|
+
|
|
226
|
+
```bash
|
|
227
|
+
# Install dependencies
|
|
228
|
+
npm install
|
|
229
|
+
|
|
230
|
+
# Build the project (compiles TypeScript + copies icons)
|
|
231
|
+
npm run build
|
|
232
|
+
|
|
233
|
+
# Watch mode for development
|
|
234
|
+
npm run dev
|
|
235
|
+
```
|
|
236
|
+
|
|
237
|
+
### Modifying the API Integration
|
|
238
|
+
|
|
239
|
+
**⚙️ Change Base URL:**
|
|
240
|
+
Edit `credentials/RooyaiApi.credentials.ts`, line 20:
|
|
241
|
+
```typescript
|
|
242
|
+
default: 'https://your-new-endpoint.com/api/v1/chat'
|
|
243
|
+
```
|
|
244
|
+
|
|
245
|
+
**⚙️ Modify Response Parsing:**
|
|
246
|
+
Edit `nodes/RooyaiMessage/ChatDescription.ts`, lines 140-160 (postReceive function):
|
|
247
|
+
```typescript
|
|
248
|
+
// Update to match your API's response structure
|
|
249
|
+
const assistantText = item.json?.choices?.[0]?.message?.content || '';
|
|
250
|
+
```
|
|
251
|
+
|
|
252
|
+
**⚙️ Add Custom Headers:**
|
|
253
|
+
Users can add custom headers via the "Optional Headers" credential field without code changes.
|
|
254
|
+
|
|
255
|
+
## ✅ Verification
|
|
256
|
+
|
|
257
|
+
After installation, verify the node:
|
|
258
|
+
|
|
259
|
+
1. **Node Appears**: Search for "Rooyai" in n8n's "Add Node" menu
|
|
260
|
+
2. **Credentials Work**: Create credential and test with valid API key
|
|
261
|
+
3. **Chat Works**: Send a test message and receive response
|
|
262
|
+
4. **No Errors**: Check n8n logs for any error messages
|
|
263
|
+
|
|
264
|
+
Expected behavior:
|
|
265
|
+
- Node is categorized under **AI** or **Language Models**
|
|
266
|
+
- Requests sent to configured Base URL
|
|
267
|
+
- Responses parsed correctly as strings
|
|
268
|
+
- Compatible with AI Agent and LLM Chain nodes
|
|
269
|
+
|
|
270
|
+
## 🐛 Troubleshooting
|
|
271
|
+
|
|
272
|
+
### Node doesn't appear in n8n
|
|
273
|
+
|
|
274
|
+
- Ensure `dist/` folder is copied to `~/.n8n/custom/`
|
|
275
|
+
- Restart n8n: `n8n restart` or `service n8n restart`
|
|
276
|
+
- Check n8n logs: `~/.n8n/logs/n8n.log`
|
|
277
|
+
|
|
278
|
+
### "Cannot find credentials" error
|
|
279
|
+
|
|
280
|
+
- Create "Rooyai API" credentials in n8n UI first
|
|
281
|
+
- Ensure API key is valid and not expired
|
|
282
|
+
|
|
283
|
+
### API request fails
|
|
284
|
+
|
|
285
|
+
- Verify Base URL is correct: `https://rooyai.com/api/v1/chat`
|
|
286
|
+
- Check API key has proper permissions
|
|
287
|
+
- Review error message in n8n execution view
|
|
288
|
+
|
|
289
|
+
### Response parsing error
|
|
290
|
+
|
|
291
|
+
- Enable "Simplify Output: false" to see raw API response
|
|
292
|
+
- Verify Rooyai API returns `choices[0].message.content`
|
|
293
|
+
|
|
294
|
+
## 📝 License
|
|
295
|
+
|
|
296
|
+
MIT
|
|
297
|
+
|
|
298
|
+
## 👥 Author
|
|
299
|
+
|
|
300
|
+
**Rooyai**
|
|
301
|
+
Website: https://rooyai.com
|
|
302
|
+
Support: support@rooyai.com
|
|
303
|
+
|
|
304
|
+
## 🔗 Links
|
|
305
|
+
|
|
306
|
+
- [Rooyai API Documentation](https://rooyai.com/docs)
|
|
307
|
+
- [n8n Community Nodes](https://docs.n8n.io/integrations/community-nodes/)
|
|
308
|
+
- [n8n AI Workflows](https://docs.n8n.io/workflows/ai/)
|
|
309
|
+
|
|
310
|
+
---
|
|
311
|
+
|
|
312
|
+
**Built with ❤️ for the n8n community**
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IAuthenticateGeneric, ICredentialTestRequest, ICredentialType, INodeProperties } from 'n8n-workflow';
|
|
2
|
+
export declare class RooyaiApi implements ICredentialType {
|
|
3
|
+
name: string;
|
|
4
|
+
displayName: string;
|
|
5
|
+
documentationUrl: string;
|
|
6
|
+
properties: INodeProperties[];
|
|
7
|
+
authenticate: IAuthenticateGeneric;
|
|
8
|
+
test: ICredentialTestRequest;
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=RooyaiApi.credentials.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RooyaiApi.credentials.d.ts","sourceRoot":"","sources":["../../credentials/RooyaiApi.credentials.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,oBAAoB,EACpB,sBAAsB,EACtB,eAAe,EACf,eAAe,EAClB,MAAM,cAAc,CAAC;AAEtB,qBAAa,SAAU,YAAW,eAAe;IAC7C,IAAI,SAAe;IACnB,WAAW,SAAgB;IAC3B,gBAAgB,SAA6B;IAE7C,UAAU,EAAE,eAAe,EAAE,CA2B3B;IAEF,YAAY,EAAE,oBAAoB,CAOhC;IAEF,IAAI,EAAE,sBAAsB,CAW1B;CACL"}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.RooyaiApi = void 0;
|
|
4
|
+
class RooyaiApi {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.name = 'rooyaiApi';
|
|
7
|
+
this.displayName = 'Rooyai API';
|
|
8
|
+
this.documentationUrl = 'https://rooyai.com/docs';
|
|
9
|
+
this.properties = [
|
|
10
|
+
{
|
|
11
|
+
displayName: 'API Key',
|
|
12
|
+
name: 'apiKey',
|
|
13
|
+
type: 'string',
|
|
14
|
+
typeOptions: { password: true },
|
|
15
|
+
required: true,
|
|
16
|
+
default: '',
|
|
17
|
+
description: 'Your Rooyai API key',
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
displayName: 'Base URL',
|
|
21
|
+
name: 'baseUrl',
|
|
22
|
+
type: 'string',
|
|
23
|
+
required: true,
|
|
24
|
+
default: 'https://rooyai.com/api/v1/chat',
|
|
25
|
+
description: 'The base URL for Rooyai API endpoint',
|
|
26
|
+
placeholder: 'https://rooyai.com/api/v1/chat',
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
displayName: 'Optional Headers',
|
|
30
|
+
name: 'optionalHeaders',
|
|
31
|
+
type: 'string',
|
|
32
|
+
default: '',
|
|
33
|
+
description: 'Additional headers in JSON format (optional)',
|
|
34
|
+
placeholder: '{"X-Custom-Header": "value"}',
|
|
35
|
+
},
|
|
36
|
+
];
|
|
37
|
+
this.authenticate = {
|
|
38
|
+
type: 'generic',
|
|
39
|
+
properties: {
|
|
40
|
+
headers: {
|
|
41
|
+
Authorization: '=Bearer {{$credentials.apiKey}}',
|
|
42
|
+
},
|
|
43
|
+
},
|
|
44
|
+
};
|
|
45
|
+
this.test = {
|
|
46
|
+
request: {
|
|
47
|
+
baseURL: '={{$credentials.baseUrl}}',
|
|
48
|
+
url: '',
|
|
49
|
+
method: 'POST',
|
|
50
|
+
body: {
|
|
51
|
+
model: 'gemini-2.0-flash',
|
|
52
|
+
messages: [{ role: 'user', content: 'test' }],
|
|
53
|
+
max_tokens: 5,
|
|
54
|
+
},
|
|
55
|
+
},
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
exports.RooyaiApi = RooyaiApi;
|
|
60
|
+
//# sourceMappingURL=RooyaiApi.credentials.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RooyaiApi.credentials.js","sourceRoot":"","sources":["../../credentials/RooyaiApi.credentials.ts"],"names":[],"mappings":";;;AAOA,MAAa,SAAS;IAAtB;QACI,SAAI,GAAG,WAAW,CAAC;QACnB,gBAAW,GAAG,YAAY,CAAC;QAC3B,qBAAgB,GAAG,yBAAyB,CAAC;QAE7C,eAAU,GAAsB;YAC5B;gBACI,WAAW,EAAE,SAAS;gBACtB,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE;gBAC/B,QAAQ,EAAE,IAAI;gBACd,OAAO,EAAE,EAAE;gBACX,WAAW,EAAE,qBAAqB;aACrC;YACD;gBACI,WAAW,EAAE,UAAU;gBACvB,IAAI,EAAE,SAAS;gBACf,IAAI,EAAE,QAAQ;gBACd,QAAQ,EAAE,IAAI;gBACd,OAAO,EAAE,gCAAgC;gBACzC,WAAW,EAAE,sCAAsC;gBACnD,WAAW,EAAE,gCAAgC;aAChD;YACD;gBACI,WAAW,EAAE,kBAAkB;gBAC/B,IAAI,EAAE,iBAAiB;gBACvB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;gBACX,WAAW,EAAE,8CAA8C;gBAC3D,WAAW,EAAE,8BAA8B;aAC9C;SACJ,CAAC;QAEF,iBAAY,GAAyB;YACjC,IAAI,EAAE,SAAS;YACf,UAAU,EAAE;gBACR,OAAO,EAAE;oBACL,aAAa,EAAE,iCAAiC;iBACnD;aACJ;SACJ,CAAC;QAEF,SAAI,GAA2B;YAC3B,OAAO,EAAE;gBACL,OAAO,EAAE,2BAA2B;gBACpC,GAAG,EAAE,EAAE;gBACP,MAAM,EAAE,MAAM;gBACd,IAAI,EAAE;oBACF,KAAK,EAAE,kBAAkB;oBACzB,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,CAAC;oBAC7C,UAAU,EAAE,CAAC;iBAChB;aACJ;SACJ,CAAC;IACN,CAAC;CAAA;AAvDD,8BAuDC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ChatDescription.d.ts","sourceRoot":"","sources":["../../../nodes/RooyaiMessage/ChatDescription.ts"],"names":[],"mappings":"AAcA,OAAO,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAO/C,eAAO,MAAM,cAAc,EAAE,eAAe,EA4B3C,CAAC;AAqTF,eAAO,MAAM,UAAU,EAAE,eAAe,EAGvC,CAAC"}
|
|
@@ -0,0 +1,336 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.chatFields = exports.chatOperations = void 0;
|
|
4
|
+
const GenericFunctions_1 = require("./GenericFunctions");
|
|
5
|
+
exports.chatOperations = [
|
|
6
|
+
{
|
|
7
|
+
displayName: 'Operation',
|
|
8
|
+
name: 'operation',
|
|
9
|
+
type: 'options',
|
|
10
|
+
noDataExpression: true,
|
|
11
|
+
displayOptions: {
|
|
12
|
+
show: {
|
|
13
|
+
resource: ['chat'],
|
|
14
|
+
},
|
|
15
|
+
},
|
|
16
|
+
options: [
|
|
17
|
+
{
|
|
18
|
+
name: 'Complete',
|
|
19
|
+
value: 'complete',
|
|
20
|
+
action: 'Create chat completion',
|
|
21
|
+
description: 'Creates a model response for the given chat conversation',
|
|
22
|
+
routing: {
|
|
23
|
+
request: {
|
|
24
|
+
method: 'POST',
|
|
25
|
+
url: '',
|
|
26
|
+
},
|
|
27
|
+
output: { postReceive: [GenericFunctions_1.sendErrorPostReceive] },
|
|
28
|
+
},
|
|
29
|
+
},
|
|
30
|
+
],
|
|
31
|
+
default: 'complete',
|
|
32
|
+
},
|
|
33
|
+
];
|
|
34
|
+
const completeOperations = [
|
|
35
|
+
{
|
|
36
|
+
displayName: 'Model',
|
|
37
|
+
name: 'model',
|
|
38
|
+
type: 'options',
|
|
39
|
+
description: 'The Rooyai model to use for chat completion. Different models have different capabilities and costs.',
|
|
40
|
+
displayOptions: {
|
|
41
|
+
show: {
|
|
42
|
+
resource: ['chat'],
|
|
43
|
+
operation: ['complete'],
|
|
44
|
+
},
|
|
45
|
+
},
|
|
46
|
+
options: [
|
|
47
|
+
{
|
|
48
|
+
name: 'LLaMa 3.3 70B',
|
|
49
|
+
value: 'llama-3.3-70b',
|
|
50
|
+
description: 'Meta\'s LLaMa 3.3 with 70 billion parameters - excellent for complex reasoning',
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
name: 'DeepSeek R1',
|
|
54
|
+
value: 'deepseek-r1',
|
|
55
|
+
description: 'DeepSeek reasoning model - optimized for logical and analytical tasks',
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
name: 'DeepSeek v3.1 Nex',
|
|
59
|
+
value: 'deepseek-v3.1-nex',
|
|
60
|
+
description: 'Latest DeepSeek model with enhanced capabilities',
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
name: 'Qwen3 Coder',
|
|
64
|
+
value: 'qwen3-coder',
|
|
65
|
+
description: 'Qwen code generation model - specialized for programming tasks',
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
name: 'GPT OSS 120B',
|
|
69
|
+
value: 'gpt-oss-120b',
|
|
70
|
+
description: 'Large open-source GPT model with 120 billion parameters',
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
name: 'GPT OSS 20B',
|
|
74
|
+
value: 'gpt-oss-20b',
|
|
75
|
+
description: 'Smaller open-source GPT model - faster and more efficient',
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
name: 'TNG R1T Chimera',
|
|
79
|
+
value: 'tng-r1t-chimera',
|
|
80
|
+
description: 'TNG reasoning model with chimera architecture',
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
name: 'TNG DeepSeek Chimera',
|
|
84
|
+
value: 'tng-deepseek-chimera',
|
|
85
|
+
description: 'TNG model blended with DeepSeek capabilities',
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
name: 'Kimi K2',
|
|
89
|
+
value: 'kimi-k2',
|
|
90
|
+
description: 'Moonshot AI\'s Kimi K2 model with strong Chinese language support',
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
name: 'GLM 4.5 Air',
|
|
94
|
+
value: 'glm-4.5-air',
|
|
95
|
+
description: 'ChatGLM lightweight model - fast and efficient',
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
name: 'Devstral',
|
|
99
|
+
value: 'devstral',
|
|
100
|
+
description: 'Developer-focused model for coding and technical tasks',
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
name: 'Mimo v2 Flash',
|
|
104
|
+
value: 'mimo-v2-flash',
|
|
105
|
+
description: 'Fast and responsive model optimized for quick interactions',
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
name: 'Gemma 3 27B',
|
|
109
|
+
value: 'gemma-3-27b',
|
|
110
|
+
description: 'Google\'s Gemma 3 with 27 billion parameters',
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
name: 'Gemma 3 12B',
|
|
114
|
+
value: 'gemma-3-12b',
|
|
115
|
+
description: 'Google\'s Gemma 3 with 12 billion parameters - balanced performance',
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
name: 'Gemma 3 4B',
|
|
119
|
+
value: 'gemma-3-4b',
|
|
120
|
+
description: 'Google\'s Gemma 3 with 4 billion parameters - fastest option',
|
|
121
|
+
},
|
|
122
|
+
],
|
|
123
|
+
default: 'llama-3.3-70b',
|
|
124
|
+
required: true,
|
|
125
|
+
routing: {
|
|
126
|
+
send: {
|
|
127
|
+
type: 'body',
|
|
128
|
+
property: 'model',
|
|
129
|
+
},
|
|
130
|
+
},
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
displayName: 'Prompt',
|
|
134
|
+
name: 'prompt',
|
|
135
|
+
type: 'fixedCollection',
|
|
136
|
+
typeOptions: {
|
|
137
|
+
sortable: true,
|
|
138
|
+
multipleValues: true,
|
|
139
|
+
},
|
|
140
|
+
displayOptions: {
|
|
141
|
+
show: {
|
|
142
|
+
resource: ['chat'],
|
|
143
|
+
operation: ['complete'],
|
|
144
|
+
},
|
|
145
|
+
},
|
|
146
|
+
placeholder: 'Add Message',
|
|
147
|
+
default: {},
|
|
148
|
+
options: [
|
|
149
|
+
{
|
|
150
|
+
displayName: 'Messages',
|
|
151
|
+
name: 'messages',
|
|
152
|
+
values: [
|
|
153
|
+
{
|
|
154
|
+
displayName: 'Role',
|
|
155
|
+
name: 'role',
|
|
156
|
+
type: 'options',
|
|
157
|
+
options: [
|
|
158
|
+
{
|
|
159
|
+
name: 'Assistant',
|
|
160
|
+
value: 'assistant',
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
name: 'System',
|
|
164
|
+
value: 'system',
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
name: 'User',
|
|
168
|
+
value: 'user',
|
|
169
|
+
},
|
|
170
|
+
],
|
|
171
|
+
default: 'user',
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
displayName: 'Content',
|
|
175
|
+
name: 'content',
|
|
176
|
+
type: 'string',
|
|
177
|
+
default: '',
|
|
178
|
+
description: 'The content of the message',
|
|
179
|
+
},
|
|
180
|
+
],
|
|
181
|
+
},
|
|
182
|
+
],
|
|
183
|
+
routing: {
|
|
184
|
+
send: {
|
|
185
|
+
type: 'body',
|
|
186
|
+
property: 'messages',
|
|
187
|
+
value: '={{ $value.messages }}',
|
|
188
|
+
},
|
|
189
|
+
},
|
|
190
|
+
},
|
|
191
|
+
];
|
|
192
|
+
const sharedOperations = [
|
|
193
|
+
{
|
|
194
|
+
displayName: 'Simplify',
|
|
195
|
+
name: 'simplifyOutput',
|
|
196
|
+
type: 'boolean',
|
|
197
|
+
default: true,
|
|
198
|
+
displayOptions: {
|
|
199
|
+
show: {
|
|
200
|
+
resource: ['chat'],
|
|
201
|
+
},
|
|
202
|
+
},
|
|
203
|
+
routing: {
|
|
204
|
+
output: {
|
|
205
|
+
postReceive: [
|
|
206
|
+
{
|
|
207
|
+
type: 'set',
|
|
208
|
+
enabled: '={{$value}}',
|
|
209
|
+
properties: {
|
|
210
|
+
value: '={{ { "data": $response.body.choices } }}',
|
|
211
|
+
},
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
type: 'rootProperty',
|
|
215
|
+
enabled: '={{$value}}',
|
|
216
|
+
properties: {
|
|
217
|
+
property: 'data',
|
|
218
|
+
},
|
|
219
|
+
},
|
|
220
|
+
async function (items) {
|
|
221
|
+
if (this.getNode().parameters.simplifyOutput === false) {
|
|
222
|
+
return items;
|
|
223
|
+
}
|
|
224
|
+
return items.map((item) => {
|
|
225
|
+
return {
|
|
226
|
+
json: {
|
|
227
|
+
...item.json,
|
|
228
|
+
message: item.json.message,
|
|
229
|
+
},
|
|
230
|
+
};
|
|
231
|
+
});
|
|
232
|
+
},
|
|
233
|
+
],
|
|
234
|
+
},
|
|
235
|
+
},
|
|
236
|
+
description: 'Whether to return a simplified version of the response instead of the raw data',
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
displayName: 'Options',
|
|
240
|
+
name: 'options',
|
|
241
|
+
placeholder: 'Add Option',
|
|
242
|
+
description: 'Additional options to add',
|
|
243
|
+
type: 'collection',
|
|
244
|
+
default: {},
|
|
245
|
+
displayOptions: {
|
|
246
|
+
show: {
|
|
247
|
+
resource: ['chat'],
|
|
248
|
+
operation: ['complete'],
|
|
249
|
+
},
|
|
250
|
+
},
|
|
251
|
+
options: [
|
|
252
|
+
{
|
|
253
|
+
displayName: 'Frequency Penalty',
|
|
254
|
+
name: 'frequency_penalty',
|
|
255
|
+
default: 0,
|
|
256
|
+
typeOptions: { maxValue: 2, minValue: -2, numberPrecision: 1 },
|
|
257
|
+
description: "Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model's likelihood to repeat the same line verbatim",
|
|
258
|
+
type: 'number',
|
|
259
|
+
routing: {
|
|
260
|
+
send: {
|
|
261
|
+
type: 'body',
|
|
262
|
+
property: 'frequency_penalty',
|
|
263
|
+
},
|
|
264
|
+
},
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
displayName: 'Maximum Number of Tokens',
|
|
268
|
+
name: 'maxTokens',
|
|
269
|
+
default: 1024,
|
|
270
|
+
description: 'The maximum number of tokens to generate in the completion',
|
|
271
|
+
type: 'number',
|
|
272
|
+
displayOptions: {
|
|
273
|
+
show: {
|
|
274
|
+
'/operation': ['complete'],
|
|
275
|
+
},
|
|
276
|
+
},
|
|
277
|
+
typeOptions: {
|
|
278
|
+
maxValue: 32768,
|
|
279
|
+
},
|
|
280
|
+
routing: {
|
|
281
|
+
send: {
|
|
282
|
+
type: 'body',
|
|
283
|
+
property: 'max_tokens',
|
|
284
|
+
},
|
|
285
|
+
},
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
displayName: 'Presence Penalty',
|
|
289
|
+
name: 'presence_penalty',
|
|
290
|
+
default: 0,
|
|
291
|
+
typeOptions: { maxValue: 2, minValue: -2, numberPrecision: 1 },
|
|
292
|
+
description: "Positive values penalize new tokens based on whether they appear in the text so far, increasing the model's likelihood to talk about new topics",
|
|
293
|
+
type: 'number',
|
|
294
|
+
routing: {
|
|
295
|
+
send: {
|
|
296
|
+
type: 'body',
|
|
297
|
+
property: 'presence_penalty',
|
|
298
|
+
},
|
|
299
|
+
},
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
displayName: 'Sampling Temperature',
|
|
303
|
+
name: 'temperature',
|
|
304
|
+
default: 1,
|
|
305
|
+
typeOptions: { maxValue: 2, minValue: 0, numberPrecision: 1 },
|
|
306
|
+
description: 'Controls randomness: Lowering results in less random completions. As the temperature approaches zero, the model will become deterministic and repetitive.',
|
|
307
|
+
type: 'number',
|
|
308
|
+
routing: {
|
|
309
|
+
send: {
|
|
310
|
+
type: 'body',
|
|
311
|
+
property: 'temperature',
|
|
312
|
+
},
|
|
313
|
+
},
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
displayName: 'Top P',
|
|
317
|
+
name: 'topP',
|
|
318
|
+
default: 1,
|
|
319
|
+
typeOptions: { maxValue: 1, minValue: 0, numberPrecision: 1 },
|
|
320
|
+
description: 'Controls diversity via nucleus sampling: 0.5 means half of all likelihood-weighted options are considered',
|
|
321
|
+
type: 'number',
|
|
322
|
+
routing: {
|
|
323
|
+
send: {
|
|
324
|
+
type: 'body',
|
|
325
|
+
property: 'top_p',
|
|
326
|
+
},
|
|
327
|
+
},
|
|
328
|
+
},
|
|
329
|
+
],
|
|
330
|
+
},
|
|
331
|
+
];
|
|
332
|
+
exports.chatFields = [
|
|
333
|
+
...completeOperations,
|
|
334
|
+
...sharedOperations,
|
|
335
|
+
];
|
|
336
|
+
//# sourceMappingURL=ChatDescription.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ChatDescription.js","sourceRoot":"","sources":["../../../nodes/RooyaiMessage/ChatDescription.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { IDataObject, IExecuteSingleFunctions, INodeExecutionData, IN8nHttpFullResponse } from 'n8n-workflow';
|
|
2
|
+
export declare function sendErrorPostReceive(this: IExecuteSingleFunctions, items: INodeExecutionData[], _response: IN8nHttpFullResponse): Promise<INodeExecutionData[]>;
|
|
3
|
+
export declare function prepareHeaders(credentials: IDataObject, existingHeaders?: IDataObject): IDataObject;
|
|
4
|
+
//# sourceMappingURL=GenericFunctions.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GenericFunctions.d.ts","sourceRoot":"","sources":["../../../nodes/RooyaiMessage/GenericFunctions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,oBAAoB,EAAE,MAAM,cAAc,CAAC;AAmB9G,wBAAsB,oBAAoB,CACtC,IAAI,EAAE,uBAAuB,EAC7B,KAAK,EAAE,kBAAkB,EAAE,EAC3B,SAAS,EAAE,oBAAoB,GAChC,OAAO,CAAC,kBAAkB,EAAE,CAAC,CA6B/B;AAgBD,wBAAgB,cAAc,CAC1B,WAAW,EAAE,WAAW,EACxB,eAAe,GAAE,WAAgB,GAClC,WAAW,CA0Bb"}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.prepareHeaders = exports.sendErrorPostReceive = void 0;
|
|
4
|
+
async function sendErrorPostReceive(items, _response) {
|
|
5
|
+
for (const item of items) {
|
|
6
|
+
if (item.json && item.json.error) {
|
|
7
|
+
const error = item.json.error;
|
|
8
|
+
const message = error.message || 'Unknown error from Rooyai API';
|
|
9
|
+
const code = error.code || 'UNKNOWN_ERROR';
|
|
10
|
+
const type = error.type || 'api_error';
|
|
11
|
+
let errorMessage = `Rooyai API Error [${code}]: ${message}`;
|
|
12
|
+
if (type !== 'api_error') {
|
|
13
|
+
errorMessage += ` (Type: ${type})`;
|
|
14
|
+
}
|
|
15
|
+
if (error.param) {
|
|
16
|
+
errorMessage += ` - Parameter: ${error.param}`;
|
|
17
|
+
}
|
|
18
|
+
throw new Error(errorMessage);
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
return items;
|
|
22
|
+
}
|
|
23
|
+
exports.sendErrorPostReceive = sendErrorPostReceive;
|
|
24
|
+
function prepareHeaders(credentials, existingHeaders = {}) {
|
|
25
|
+
const headers = {
|
|
26
|
+
...existingHeaders,
|
|
27
|
+
'Content-Type': 'application/json',
|
|
28
|
+
};
|
|
29
|
+
if (credentials.optionalHeaders && typeof credentials.optionalHeaders === 'string') {
|
|
30
|
+
try {
|
|
31
|
+
const customHeaders = JSON.parse(credentials.optionalHeaders);
|
|
32
|
+
if (typeof customHeaders === 'object' && customHeaders !== null && !Array.isArray(customHeaders)) {
|
|
33
|
+
Object.assign(headers, customHeaders);
|
|
34
|
+
}
|
|
35
|
+
else {
|
|
36
|
+
console.warn('Optional headers must be a JSON object, skipping custom headers');
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
catch (error) {
|
|
40
|
+
console.warn('Invalid JSON in optionalHeaders, skipping custom headers:', error.message);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
return headers;
|
|
44
|
+
}
|
|
45
|
+
exports.prepareHeaders = prepareHeaders;
|
|
46
|
+
//# sourceMappingURL=GenericFunctions.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GenericFunctions.js","sourceRoot":"","sources":["../../../nodes/RooyaiMessage/GenericFunctions.ts"],"names":[],"mappings":";;;AAmBO,KAAK,UAAU,oBAAoB,CAEtC,KAA2B,EAC3B,SAA+B;IAG/B,KAAK,MAAM,IAAI,IAAI,KAAK,EAAE,CAAC;QACvB,IAAI,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC;YAC/B,MAAM,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,KAAoB,CAAC;YAG7C,MAAM,OAAO,GAAI,KAAK,CAAC,OAAkB,IAAI,+BAA+B,CAAC;YAC7E,MAAM,IAAI,GAAI,KAAK,CAAC,IAAe,IAAI,eAAe,CAAC;YACvD,MAAM,IAAI,GAAI,KAAK,CAAC,IAAe,IAAI,WAAW,CAAC;YAGnD,IAAI,YAAY,GAAG,qBAAqB,IAAI,MAAM,OAAO,EAAE,CAAC;YAG5D,IAAI,IAAI,KAAK,WAAW,EAAE,CAAC;gBACvB,YAAY,IAAI,WAAW,IAAI,GAAG,CAAC;YACvC,CAAC;YAGD,IAAI,KAAK,CAAC,KAAK,EAAE,CAAC;gBACd,YAAY,IAAI,iBAAiB,KAAK,CAAC,KAAK,EAAE,CAAC;YACnD,CAAC;YAED,MAAM,IAAI,KAAK,CAAC,YAAY,CAAC,CAAC;QAClC,CAAC;IACL,CAAC;IAED,OAAO,KAAK,CAAC;AACjB,CAAC;AAjCD,oDAiCC;AAgBD,SAAgB,cAAc,CAC1B,WAAwB,EACxB,kBAA+B,EAAE;IAEjC,MAAM,OAAO,GAAgB;QACzB,GAAG,eAAe;QAClB,cAAc,EAAE,kBAAkB;KACrC,CAAC;IAIF,IAAI,WAAW,CAAC,eAAe,IAAI,OAAO,WAAW,CAAC,eAAe,KAAK,QAAQ,EAAE,CAAC;QACjF,IAAI,CAAC;YACD,MAAM,aAAa,GAAG,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC,eAAyB,CAAC,CAAC;YAGxE,IAAI,OAAO,aAAa,KAAK,QAAQ,IAAI,aAAa,KAAK,IAAI,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,aAAa,CAAC,EAAE,CAAC;gBAC/F,MAAM,CAAC,MAAM,CAAC,OAAO,EAAE,aAAa,CAAC,CAAC;YAC1C,CAAC;iBAAM,CAAC;gBACJ,OAAO,CAAC,IAAI,CAAC,iEAAiE,CAAC,CAAC;YACpF,CAAC;QACL,CAAC;QAAC,OAAO,KAAK,EAAE,CAAC;YAGb,OAAO,CAAC,IAAI,CAAC,2DAA2D,EAAG,KAAe,CAAC,OAAO,CAAC,CAAC;QACxG,CAAC;IACL,CAAC;IAED,OAAO,OAAO,CAAC;AACnB,CAAC;AA7BD,wCA6BC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RooyaiMessage.node.d.ts","sourceRoot":"","sources":["../../../nodes/RooyaiMessage/RooyaiMessage.node.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,oBAAoB,EAAE,MAAM,cAAc,CAAC;AAG/D,qBAAa,aAAc,YAAW,SAAS;IAC3C,WAAW,EAAE,oBAAoB,CA0C/B;CACL"}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.RooyaiMessage = void 0;
|
|
4
|
+
const ChatDescription_1 = require("./ChatDescription");
|
|
5
|
+
class RooyaiMessage {
|
|
6
|
+
constructor() {
|
|
7
|
+
this.description = {
|
|
8
|
+
displayName: 'Rooyai Message Model',
|
|
9
|
+
name: 'rooyaiMessage',
|
|
10
|
+
icon: { light: 'file:rooyai.svg', dark: 'file:rooyai.svg' },
|
|
11
|
+
group: ['transform'],
|
|
12
|
+
version: 1,
|
|
13
|
+
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
14
|
+
description: 'Rooyai AI Message / Chat Model - LangChain Compatible',
|
|
15
|
+
defaults: {
|
|
16
|
+
name: 'Rooyai Message Model',
|
|
17
|
+
},
|
|
18
|
+
inputs: ['main'],
|
|
19
|
+
outputs: ['main'],
|
|
20
|
+
credentials: [
|
|
21
|
+
{
|
|
22
|
+
name: 'rooyaiApi',
|
|
23
|
+
required: true,
|
|
24
|
+
},
|
|
25
|
+
],
|
|
26
|
+
requestDefaults: {
|
|
27
|
+
ignoreHttpStatusErrors: true,
|
|
28
|
+
baseURL: '={{$credentials.baseUrl}}',
|
|
29
|
+
},
|
|
30
|
+
properties: [
|
|
31
|
+
{
|
|
32
|
+
displayName: 'Resource',
|
|
33
|
+
name: 'resource',
|
|
34
|
+
type: 'options',
|
|
35
|
+
noDataExpression: true,
|
|
36
|
+
options: [
|
|
37
|
+
{
|
|
38
|
+
name: 'Chat',
|
|
39
|
+
value: 'chat',
|
|
40
|
+
},
|
|
41
|
+
],
|
|
42
|
+
default: 'chat',
|
|
43
|
+
},
|
|
44
|
+
...ChatDescription_1.chatOperations,
|
|
45
|
+
...ChatDescription_1.chatFields,
|
|
46
|
+
],
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
exports.RooyaiMessage = RooyaiMessage;
|
|
51
|
+
//# sourceMappingURL=RooyaiMessage.node.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RooyaiMessage.node.js","sourceRoot":"","sources":["../../../nodes/RooyaiMessage/RooyaiMessage.node.ts"],"names":[],"mappings":";;;AACA,uDAA+D;AAE/D,MAAa,aAAa;IAA1B;QACI,gBAAW,GAAyB;YAChC,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,eAAe;YACrB,IAAI,EAAE,EAAE,KAAK,EAAE,iBAAiB,EAAE,IAAI,EAAE,iBAAiB,EAAE;YAC3D,KAAK,EAAE,CAAC,WAAW,CAAC;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,8DAA8D;YACxE,WAAW,EAAE,uDAAuD;YACpE,QAAQ,EAAE;gBACN,IAAI,EAAE,sBAAsB;aAC/B;YACD,MAAM,EAAE,CAAC,MAAM,CAAC;YAChB,OAAO,EAAE,CAAC,MAAM,CAAC;YACjB,WAAW,EAAE;gBACT;oBACI,IAAI,EAAE,WAAW;oBACjB,QAAQ,EAAE,IAAI;iBACjB;aACJ;YAGD,eAAe,EAAE;gBACb,sBAAsB,EAAE,IAAI;gBAC5B,OAAO,EAAE,2BAA2B;aACvC;YACD,UAAU,EAAE;gBACR;oBACI,WAAW,EAAE,UAAU;oBACvB,IAAI,EAAE,UAAU;oBAChB,IAAI,EAAE,SAAS;oBACf,gBAAgB,EAAE,IAAI;oBACtB,OAAO,EAAE;wBACL;4BACI,IAAI,EAAE,MAAM;4BACZ,KAAK,EAAE,MAAM;yBAChB;qBACJ;oBACD,OAAO,EAAE,MAAM;iBAClB;gBACD,GAAG,gCAAc;gBACjB,GAAG,4BAAU;aAChB;SACJ,CAAC;IACN,CAAC;CAAA;AA5CD,sCA4CC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="60" height="60" viewBox="0 0 60 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="60" height="60" rx="12" fill="#6366F1"/>
|
|
3
|
+
<path d="M20 25C20 22.7909 21.7909 21 24 21H36C38.2091 21 40 22.7909 40 25V35C40 37.2091 38.2091 39 36 39H24C21.7909 39 20 37.2091 20 35V25Z" fill="white"/>
|
|
4
|
+
<circle cx="27" cy="28" r="2" fill="#6366F1"/>
|
|
5
|
+
<circle cx="33" cy="28" r="2" fill="#6366F1"/>
|
|
6
|
+
<path d="M26 33C26 33 27.5 35 30 35C32.5 35 34 33 34 33" stroke="#6366F1" stroke-width="2" stroke-linecap="round"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/@types/node/compatibility/disposable.d.ts","../node_modules/@types/node/compatibility/indexable.d.ts","../node_modules/@types/node/compatibility/iterators.d.ts","../node_modules/@types/node/compatibility/index.d.ts","../node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../node_modules/@types/node/ts5.6/buffer.buffer.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/web-globals/abortcontroller.d.ts","../node_modules/@types/node/web-globals/domexception.d.ts","../node_modules/@types/node/web-globals/events.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/file.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/env-http-proxy-agent.d.ts","../node_modules/undici-types/retry-handler.d.ts","../node_modules/undici-types/retry-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/util.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/eventsource.d.ts","../node_modules/undici-types/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/web-globals/fetch.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.generated.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/sea.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/ts5.6/index.d.ts","../node_modules/form-data/index.d.ts","../node_modules/n8n-workflow/dist/esm/constants.d.ts","../node_modules/n8n-workflow/dist/esm/data-table.types.d.ts","../node_modules/n8n-workflow/dist/esm/deferred-promise.d.ts","../node_modules/@n8n/errors/dist/types.d.ts","../node_modules/@n8n/errors/dist/application.error.d.ts","../node_modules/@n8n/errors/dist/index.d.ts","../node_modules/n8n-workflow/dist/esm/errors/base/base.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/base/operational.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/base/unexpected.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/base/user.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/abstract/execution-base.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/expression.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/execution-cancelled.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/abstract/node.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/node-api.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/node-operation.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/workflow-configuration.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/node-ssl.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/workflow-activation.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/webhook-taken.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/workflow-deactivation.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/workflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/subworkflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/cli-subworkflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/trigger-close.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/expression-extension.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/expression-destructuring.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/db-connection-timeout-error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/ensure-error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/index.d.ts","../node_modules/zod/dist/types/v4/core/standard-schema.d.ts","../node_modules/zod/dist/types/v4/core/util.d.ts","../node_modules/zod/dist/types/v4/core/versions.d.ts","../node_modules/zod/dist/types/v4/core/schemas.d.ts","../node_modules/zod/dist/types/v4/core/checks.d.ts","../node_modules/zod/dist/types/v4/core/errors.d.ts","../node_modules/zod/dist/types/v4/core/core.d.ts","../node_modules/zod/dist/types/v4/core/parse.d.ts","../node_modules/zod/dist/types/v4/core/regexes.d.ts","../node_modules/zod/dist/types/v4/locales/ar.d.ts","../node_modules/zod/dist/types/v4/locales/az.d.ts","../node_modules/zod/dist/types/v4/locales/be.d.ts","../node_modules/zod/dist/types/v4/locales/ca.d.ts","../node_modules/zod/dist/types/v4/locales/cs.d.ts","../node_modules/zod/dist/types/v4/locales/de.d.ts","../node_modules/zod/dist/types/v4/locales/en.d.ts","../node_modules/zod/dist/types/v4/locales/es.d.ts","../node_modules/zod/dist/types/v4/locales/fa.d.ts","../node_modules/zod/dist/types/v4/locales/fi.d.ts","../node_modules/zod/dist/types/v4/locales/fr.d.ts","../node_modules/zod/dist/types/v4/locales/fr-ca.d.ts","../node_modules/zod/dist/types/v4/locales/he.d.ts","../node_modules/zod/dist/types/v4/locales/hu.d.ts","../node_modules/zod/dist/types/v4/locales/id.d.ts","../node_modules/zod/dist/types/v4/locales/it.d.ts","../node_modules/zod/dist/types/v4/locales/ja.d.ts","../node_modules/zod/dist/types/v4/locales/kh.d.ts","../node_modules/zod/dist/types/v4/locales/ko.d.ts","../node_modules/zod/dist/types/v4/locales/mk.d.ts","../node_modules/zod/dist/types/v4/locales/ms.d.ts","../node_modules/zod/dist/types/v4/locales/nl.d.ts","../node_modules/zod/dist/types/v4/locales/no.d.ts","../node_modules/zod/dist/types/v4/locales/ota.d.ts","../node_modules/zod/dist/types/v4/locales/ps.d.ts","../node_modules/zod/dist/types/v4/locales/pl.d.ts","../node_modules/zod/dist/types/v4/locales/pt.d.ts","../node_modules/zod/dist/types/v4/locales/ru.d.ts","../node_modules/zod/dist/types/v4/locales/sl.d.ts","../node_modules/zod/dist/types/v4/locales/sv.d.ts","../node_modules/zod/dist/types/v4/locales/ta.d.ts","../node_modules/zod/dist/types/v4/locales/th.d.ts","../node_modules/zod/dist/types/v4/locales/tr.d.ts","../node_modules/zod/dist/types/v4/locales/ua.d.ts","../node_modules/zod/dist/types/v4/locales/ur.d.ts","../node_modules/zod/dist/types/v4/locales/vi.d.ts","../node_modules/zod/dist/types/v4/locales/zh-cn.d.ts","../node_modules/zod/dist/types/v4/locales/zh-tw.d.ts","../node_modules/zod/dist/types/v4/locales/index.d.ts","../node_modules/zod/dist/types/v4/core/registries.d.ts","../node_modules/zod/dist/types/v4/core/doc.d.ts","../node_modules/zod/dist/types/v4/core/function.d.ts","../node_modules/zod/dist/types/v4/core/api.d.ts","../node_modules/zod/dist/types/v4/core/json-schema.d.ts","../node_modules/zod/dist/types/v4/core/to-json-schema.d.ts","../node_modules/zod/dist/types/v4/core/index.d.ts","../node_modules/zod/v4/core/index.d.ts","../node_modules/zod/dist/types/v4/classic/errors.d.ts","../node_modules/zod/dist/types/v4/classic/parse.d.ts","../node_modules/zod/dist/types/v4/classic/schemas.d.ts","../node_modules/zod/dist/types/v4/classic/checks.d.ts","../node_modules/zod/dist/types/v4/classic/compat.d.ts","../node_modules/zod/dist/types/v4/classic/iso.d.ts","../node_modules/zod/dist/types/v4/classic/coerce.d.ts","../node_modules/zod/dist/types/v4/classic/external.d.ts","../node_modules/zod/dist/types/v4/classic/index.d.ts","../node_modules/zod/dist/types/v4/index.d.ts","../node_modules/zod/v4/index.d.ts","../node_modules/n8n-workflow/dist/esm/execution-context.d.ts","../node_modules/n8n-workflow/dist/esm/execution-status.d.ts","../node_modules/n8n-workflow/dist/esm/result.d.ts","../node_modules/n8n-workflow/dist/esm/run-execution-data/run-execution-data.v0.d.ts","../node_modules/n8n-workflow/dist/esm/run-execution-data/run-execution-data.v1.d.ts","../node_modules/n8n-workflow/dist/esm/run-execution-data/run-execution-data.d.ts","../node_modules/n8n-workflow/dist/esm/expression.d.ts","../node_modules/n8n-workflow/dist/esm/workflow.d.ts","../node_modules/n8n-workflow/dist/esm/workflow-data-proxy-env-provider.d.ts","../node_modules/n8n-workflow/dist/esm/interfaces.d.ts","../node_modules/n8n-workflow/dist/esm/logger-proxy.d.ts","../node_modules/n8n-workflow/dist/esm/node-helpers.d.ts","../node_modules/n8n-workflow/dist/esm/observable-object.d.ts","../node_modules/n8n-workflow/dist/esm/telemetry-helpers.d.ts","../node_modules/n8n-workflow/dist/esm/common/get-child-nodes.d.ts","../node_modules/n8n-workflow/dist/esm/common/get-connected-nodes.d.ts","../node_modules/n8n-workflow/dist/esm/common/get-node-by-name.d.ts","../node_modules/n8n-workflow/dist/esm/common/get-parent-nodes.d.ts","../node_modules/n8n-workflow/dist/esm/common/map-connections-by-destination.d.ts","../node_modules/n8n-workflow/dist/esm/common/index.d.ts","../node_modules/n8n-workflow/dist/esm/cron.d.ts","../node_modules/n8n-workflow/dist/esm/execution-context-establishment-hooks.d.ts","../node_modules/n8n-workflow/dist/esm/global-state.d.ts","../node_modules/n8n-workflow/dist/esm/run-execution-data-factory.d.ts","../node_modules/n8n-workflow/dist/esm/message-event-bus.d.ts","../node_modules/n8n-workflow/dist/esm/expressions/expression-helpers.d.ts","../node_modules/zod/dist/types/v3/helpers/typealiases.d.ts","../node_modules/zod/dist/types/v3/helpers/util.d.ts","../node_modules/zod/dist/types/v3/zoderror.d.ts","../node_modules/zod/dist/types/v3/locales/en.d.ts","../node_modules/zod/dist/types/v3/errors.d.ts","../node_modules/zod/dist/types/v3/helpers/parseutil.d.ts","../node_modules/zod/dist/types/v3/helpers/enumutil.d.ts","../node_modules/zod/dist/types/v3/helpers/errorutil.d.ts","../node_modules/zod/dist/types/v3/helpers/partialutil.d.ts","../node_modules/zod/dist/types/v3/standard-schema.d.ts","../node_modules/zod/dist/types/v3/types.d.ts","../node_modules/zod/dist/types/v3/external.d.ts","../node_modules/zod/dist/types/v3/index.d.ts","../node_modules/zod/dist/types/index.d.ts","../node_modules/n8n-workflow/dist/esm/from-ai-parse-utils.d.ts","../node_modules/n8n-workflow/dist/esm/tool-helpers.d.ts","../node_modules/n8n-workflow/dist/esm/node-reference-parser-utils.d.ts","../node_modules/n8n-workflow/dist/esm/metadata-utils.d.ts","../node_modules/n8n-workflow/dist/esm/workflow-data-proxy.d.ts","../node_modules/n8n-workflow/dist/esm/versioned-node-type.d.ts","../node_modules/n8n-workflow/dist/esm/type-validation.d.ts","../node_modules/n8n-workflow/dist/esm/schemas.d.ts","../node_modules/n8n-workflow/dist/esm/utils.d.ts","../node_modules/n8n-workflow/dist/esm/type-guards.d.ts","../node_modules/n8n-workflow/dist/esm/graph/graph-utils.d.ts","../node_modules/n8n-workflow/dist/esm/extensions/extensions.d.ts","../node_modules/n8n-workflow/dist/esm/extensions/expression-extension.d.ts","../node_modules/n8n-workflow/dist/esm/extensions/index.d.ts","../node_modules/n8n-workflow/dist/esm/extensions/expression-parser.d.ts","../node_modules/n8n-workflow/dist/esm/native-methods/index.d.ts","../node_modules/n8n-workflow/dist/esm/node-parameters/filter-parameter.d.ts","../node_modules/n8n-workflow/dist/esm/node-parameters/parameter-type-validation.d.ts","../node_modules/n8n-workflow/dist/esm/node-parameters/path-utils.d.ts","../node_modules/n8n-workflow/dist/esm/evaluation-helpers.d.ts","../node_modules/n8n-workflow/dist/esm/workflow-diff.d.ts","../node_modules/n8n-workflow/dist/esm/index.d.ts","../credentials/rooyaiapi.credentials.ts","../nodes/rooyaimessage/genericfunctions.ts","../nodes/rooyaimessage/chatdescription.ts","../nodes/rooyaimessage/rooyaimessage.node.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/semver/functions/inc.d.ts","../node_modules/@types/semver/classes/semver.d.ts","../node_modules/@types/semver/functions/parse.d.ts","../node_modules/@types/semver/functions/valid.d.ts","../node_modules/@types/semver/functions/clean.d.ts","../node_modules/@types/semver/functions/diff.d.ts","../node_modules/@types/semver/functions/major.d.ts","../node_modules/@types/semver/functions/minor.d.ts","../node_modules/@types/semver/functions/patch.d.ts","../node_modules/@types/semver/functions/prerelease.d.ts","../node_modules/@types/semver/functions/compare.d.ts","../node_modules/@types/semver/functions/rcompare.d.ts","../node_modules/@types/semver/functions/compare-loose.d.ts","../node_modules/@types/semver/functions/compare-build.d.ts","../node_modules/@types/semver/functions/sort.d.ts","../node_modules/@types/semver/functions/rsort.d.ts","../node_modules/@types/semver/functions/gt.d.ts","../node_modules/@types/semver/functions/lt.d.ts","../node_modules/@types/semver/functions/eq.d.ts","../node_modules/@types/semver/functions/neq.d.ts","../node_modules/@types/semver/functions/gte.d.ts","../node_modules/@types/semver/functions/lte.d.ts","../node_modules/@types/semver/functions/cmp.d.ts","../node_modules/@types/semver/functions/coerce.d.ts","../node_modules/@types/semver/classes/comparator.d.ts","../node_modules/@types/semver/classes/range.d.ts","../node_modules/@types/semver/functions/satisfies.d.ts","../node_modules/@types/semver/ranges/max-satisfying.d.ts","../node_modules/@types/semver/ranges/min-satisfying.d.ts","../node_modules/@types/semver/ranges/to-comparators.d.ts","../node_modules/@types/semver/ranges/min-version.d.ts","../node_modules/@types/semver/ranges/valid.d.ts","../node_modules/@types/semver/ranges/outside.d.ts","../node_modules/@types/semver/ranges/gtr.d.ts","../node_modules/@types/semver/ranges/ltr.d.ts","../node_modules/@types/semver/ranges/intersects.d.ts","../node_modules/@types/semver/ranges/simplify.d.ts","../node_modules/@types/semver/ranges/subset.d.ts","../node_modules/@types/semver/internals/identifiers.d.ts","../node_modules/@types/semver/index.d.ts"],"fileInfos":[{"version":"f33e5332b24c3773e930e212cbb8b6867c8ba3ec4492064ea78e55a524d57450","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","26f2f787e82c4222710f3b676b4d83eb5ad0a72fa7b746f03449e7a026ce5073","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"e0275cd0e42990dc3a16f0b7c8bca3efe87f1c8ad404f80c6db1c7c0b828c59f","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"acae90d417bee324b1372813b5a00829d31c7eb670d299cd7f8f9a648ac05688","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true},"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a",{"version":"1456e80bd8a3870034d89f91bd7df12ac29acfb083e31c0bb1fb38ca7bf5fbc2","affectsGlobalScope":true},{"version":"a98aedd64ad81793f146d36d1611ed9ba61b8b49ff040f0d13a103ed626595d9","affectsGlobalScope":true},{"version":"6d9ef24f9a22a88e3e9b3b3d8c40ab1ddb0853f1bfbd5c843c37800138437b61","affectsGlobalScope":true},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true},"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107",{"version":"2cbe0621042e2a68c7cbce5dfed3906a1862a16a7d496010636cdbdb91341c0f","affectsGlobalScope":true},"e2677634fe27e87348825bb041651e22d50a613e2fdf6a4a3ade971d71bac37e","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f",{"version":"8cd19276b6590b3ebbeeb030ac271871b9ed0afc3074ac88a94ed2449174b776","affectsGlobalScope":true},"696eb8d28f5949b87d894b26dc97318ef944c794a9a4e4f62360cd1d1958014b","3f8fa3061bd7402970b399300880d55257953ee6d3cd408722cb9ac20126460c",{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true},"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a",{"version":"68bd56c92c2bd7d2339457eb84d63e7de3bd56a69b25f3576e1568d21a162398","affectsGlobalScope":true},"3e93b123f7c2944969d291b35fed2af79a6e9e27fdd5faa99748a51c07c02d28","9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","87aad3dd9752067dc875cfaa466fc44246451c0c560b820796bdd528e29bef40","4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45",{"version":"8db0ae9cb14d9955b14c214f34dae1b9ef2baee2fe4ce794a4cd3ac2531e3255","affectsGlobalScope":true},"15fc6f7512c86810273af28f224251a5a879e4261b4d4c7e532abfbfc3983134","58adba1a8ab2d10b54dc1dced4e41f4e7c9772cbbac40939c0dc8ce2cdb1d442","2fd4c143eff88dabb57701e6a40e02a4dbc36d5eb1362e7964d32028056a782b","714435130b9015fae551788df2a88038471a5a11eb471f27c4ede86552842bc9","855cd5f7eb396f5f1ab1bc0f8580339bff77b68a770f84c6b254e319bbfd1ac7","5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86",{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true},"27fdb0da0daf3b337c5530c5f266efe046a6ceb606e395b346974e4360c36419","2d2fcaab481b31a5882065c7951255703ddbe1c0e507af56ea42d79ac3911201","a192fe8ec33f75edbc8d8f3ed79f768dfae11ff5735e7fe52bfa69956e46d78d",{"version":"ca867399f7db82df981d6915bcbb2d81131d7d1ef683bc782b59f71dda59bc85","affectsGlobalScope":true},{"version":"d9e971bba9cf977c7774abbd4d2e3413a231af8a06a2e8b16af2a606bc91ddd0","affectsGlobalScope":true},"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","6e70e9570e98aae2b825b533aa6292b6abd542e8d9f6e9475e88e1d7ba17c866","f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","47ab634529c5955b6ad793474ae188fce3e6163e3a3fb5edd7e0e48f14435333","37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee",{"version":"0225ecb9ed86bdb7a2c7fd01f1556906902929377b44483dc4b83e03b3ef227d","affectsGlobalScope":true},"74cf591a0f63db318651e0e04cb55f8791385f86e987a67fd4d2eaab8191f730","5eab9b3dc9b34f185417342436ec3f106898da5f4801992d8ff38ab3aff346b5",{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true},"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","f9ab232778f2842ffd6955f88b1049982fa2ecb764d129ee4893cbc290f41977","ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9",{"version":"c3b41e74b9a84b88b1dca61ec39eee25c0dbc8e7d519ba11bb070918cfacf656","affectsGlobalScope":true},{"version":"4737a9dc24d0e68b734e6cfbcea0c15a2cfafeb493485e27905f7856988c6b29","affectsGlobalScope":true},"36d8d3e7506b631c9582c251a2c0b8a28855af3f76719b12b534c6edf952748d","1ca69210cc42729e7ca97d3a9ad48f2e9cb0042bada4075b588ae5387debd318","f5ebe66baaf7c552cfa59d75f2bfba679f329204847db3cec385acda245e574e",{"version":"ed59add13139f84da271cafd32e2171876b0a0af2f798d0c663e8eeb867732cf","affectsGlobalScope":true},"05db535df8bdc30d9116fe754a3473d1b6479afbc14ae8eb18b605c62677d518","0ea329e5eab6719ff83bcb97e8bd03f1faab4feb74704010783b881fc9d80f92","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","eb738cd0984cb11c8127144993425e91f46d4219a70748a65e91b29bedb4230c","a588d1f897adf938963ef3d90c8038c3c5cd19ef88fbedda4cb1a77b8b7ba3e6","a0981ee0c7ac06bdb575558bd09bac190e1c0c7888ddcb63d8bf648f23a30e8c","00f11c3ec667314eaa2adfe253b5ebebbbdbb82510e04460c2f09d1c3b521d31","5c7a516e25a2fd1dc5e054c6161fe3c8ba46364f3784ef98f3fca48ab685231c","3ff739b7f819cfc12b330f9adcc4c3abbbd5e9f9ca68f53243222a049a8361a2","d762b92c1af47b7b3c4eef92fe9a3806194d9edc5dae6901342fc87ef21d7f4a","41d14b690d8d8c2a9b7395e8c36de6ca981010736723216ab9f35eb598e09ad9","3fdcca6b893ffd38b61b792772f649c82ae28077c360802cec25360eabca24c0","299924f7545be254b02278e4dcff7038611f2325d30f0e5ae4bcac906847c164","be1d650f04c9f472f0ad0ead3e1b7059dd1e0ff918f7bcb707786d27c3bbeadd","1e16c1b1c4d8600a146b15a933f9a880cc275c01f39dc436625f22d3cca46272","a631639d7f79f49f68a0ef6553baa1b977e06b230e768511812952709fe5c1f0","bf2aefef15e0b4d6bc8f4e19f967494b59b5f90a834de503c373df042513d924","4085248a1c89ee865cf9498402c90611d16920a6c9929f701ddc0b963ddad230","1a1acd3311ff1794be8401ee394efc3beeb1746068244eb0ee1d51d08e457401","ce0b4440a3dd75e14ca94b6d6b27fa26ca89e776d91b8803b3c86c4e8f06ed1a","37020cf15e16fa6e1c6e2485cd51d6cbe74adee3b860ab49fb7528ca7e8e518e","b6b1a3ff9ba1ddf1a908cfd1bcd471334ecd218a366460fc64c4561d6d0467a4","1950d2a49c05c7aa6decfe409b552c4ea5fb156894cf0541b34999819bd778ea","32fe829960ff7120843f6dd20197e863aee3e81ecded415641a7500654d1bda7","da73778888d41d0abe7d28a24529ba13ff0a9311d55e1902feee7ab97dc6a67d","393b1ed0dca4f0aac333e65f2e40dfedfa8b37ac60571e02b152d32d8c84d340","f46d50c283425bcc59d68ccf067b3672fb727f802652dc7d60d2e470fb956370","0e10fd1d283b4ba7b94f5abb1bc30a2070ccb16c22f86a2780bea8ddc48f3bf7","0b4b6ca509cdb152e18ceeed526d17bb416e7e518508d859a0174977195f9a35","6ad6692aba2cad7697d1dbc76c973e7eca5c80aba70396233e4c4ea0e58c536d","79b9e661f99d6d01ad0031fbffbb20a8570ca526125a1b01ef5643c00348a8c4","deb85dff5a350bd77f24fb5665b7a3c95aa0d4556a0d45ab423ebf3ffcbc70ce","1368f42c7a0ae176d6a6d9f346137d84f0796ac32c7819736b91ee4baf0fece7","309ebd217636d68cf8784cbc3272c16fb94fb8e969e18b6fe88c35200340aef1","6e4fde24e4d82d79eaff2daa7f5dffa79ba53de2a6b8aef76c178a5a370764bb","ef9b6279acc69002a779d0172916ef22e8be5de2d2469ff2f4bb019a21e89de2",{"version":"12b8d97a20b0fb267b69c4a6be0dfad7c88851d2dcab6150aa4218f40efa45f4","affectsGlobalScope":true},"0e86102dbab93227b2702cba0ba06cb638961394577dc28cd5b856f0184c3156","6c859096094c744d2dd7b733189293a5b2af535e15f7794e69a3b4288b70dcfc","915d51e1bcd9b06ab8c922360b3f74ffe70c2ab6264f759f2b3e5f4130df0149","716a022c6d311c8367d830d2839fe017699564de2d0f5446b4a6f3f022a5c0c6","c939cb12cb000b4ec9c3eca3fe7dee1fe373ccb801237631d9252bad10206d61","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","3b25e966fd93475d8ca2834194ea78321d741a21ca9d1f606b25ec99c1bbc29a","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","3b25e966fd93475d8ca2834194ea78321d741a21ca9d1f606b25ec99c1bbc29a","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","92d777bf731e4062397081e864fbc384054934ab64af7723dfbf1df21824db31","ee415a173162328db8ab33496db05790b7d6b4a48272ff4a6c35cf9540ac3a60","80e653fbbec818eecfe95d182dc65a1d107b343d970159a71922ac4491caa0af","f978b1b63ad690ff2a8f16d6f784acaa0ba0f4bcfc64211d79a2704de34f5913","00c7c66bbd6675c5bc24b58bac2f9cbdeb9f619b295813cabf780c08034cfaba","9078205849121a5d37a642949d687565498da922508eacb0e5a0c3de427f0ae5","0ce71e5ee7c489209494c14028e351ccb1ffe455187d98a889f8e07ae2458ef7","f5c8f2ef9603893e25ed86c7112cd2cc60d53e5387b9146c904bce3e707c55de","db3ea1212b188ff23aa4f32b63e459c9b55d34b44b57bcbdf401f291352483f0","dc01facbb7d88bc5e2eabb7c6eee80a0241538d50a5c3b210fb745683faa1dab","5c5197a46686814821229b28e4cfd601ef0a32f2d2d29b9a99050bac0ab03c99","2f3a88381874ec5fd76116a07b4ec3ed2eb667d00cff57f4f21e58cc0e970ca8","2c6c3af3957e38e6a5190258a666a06893ba5a11e3501585243129afecefd037","13e5ea921d6f62171aab19f33a6690e3c6658eecd2e5672425e49ac30d4305e6","1e28020a23b28743d5bd708b9e4c7b75fdff606aa080fbaf5b8db3600d5c99cf","49e7f03e7e7288397725e823654fdfe61892bb5082f391057e61b9c4f1b54f16","7b368e9be7bfea145983add6818f4e9ad5d83e5cabc8f771211d77c0feb8db94","d49030b9a324bab9bcf9f663a70298391b0f5a25328409174d86617512bf3037","a4b634bb8c97cc700dbf165f3bb0095ec669042da72eaf28a7c5e2ddd98169ce","a7578eb8461c2d07440749f89aba22881d5fca09a1d1cd46974628869fbadfa1","c027e3d41625cce4397458096e97ab3c5c62dcc3f4b74bb71a5242c3cbdde60c","3226c2a2af36d14aa551babd4154ad18042c0deb1509a61058c6b066cfddc30a","64c9811ebae7d6bdd3749155911ca473017944d6e9787cec3d11549b05b19de9","c875801a2ebbfe47d596ffc79c9ae98a0004caa3156dccd7027e0abced34369a","103c05a4c0773cf2ac87c535a51970dbe084218b1eee8f07bd768259b6f8d6ca","8ce9640581a9f826721db6e15aed360ea47f18357a10f5e23c24f36ac125ec4c","fcc64cf81ce0790cf7a687fe2cc08efb88a111b67534d4f57b5b055276dd3f31","18c4c5d4069ae6ddce9443a6057fcf333688556b0d644813a78e604812f82bb3","6481b29f54e19becbeb7236c60043e2daa47b45cb4fd7e88f287df09250f2405","8beb24bae2fd01881c7c20220ae808cf88583af1f888c3c4c6cd52b8142ed9db","01658146c02cba2e49ee7beaa0b90864e7a17c3d02cc39cd8b643b5be3a1a438","4c92e99c6f3893a7254ff500b2ac11b2bb2ed8777a3dcf2a4a540d561f7b7632","db18ec88a0f1512b153a28a0ed1e19f34530885bca1d00e5f17a6e9b3184697f","21f166065c0725ca16281aa2f05f5ee9fb556795c8426049bf44ee36bdca9afd","36cd04c9f4116122a3545fcc6da5e522861d739718ab3a3cb7ff2268612531aa","9ae86dde42766df895cde73c60dc13347cc30829c6696de3cc54036b3120a5ba","6823cce79c10482d0860d40ebbfc29f00ddf7f99bca0aa23330599ddd8baead4","30ed6587fb249cc1b0585bab7ce2ca81ef193bfe2934241b6f06ffefdaaf4bf9","aa18fcf8ad877a9eb0c357c247708f019e25c4d906e3025d73604b66de8d7f11","cfc5482e113e44dae9712ae0a4e412788622221ae5eb1327fb69a13a0f5af662","5e620d0ed3eeb9a9a767355547123c85aea7e8f26d90e94d0cc3fa457f1c2035","9c471f28dce211a22dcb3a063a5ca0aaacfa311e6ffe859ec2ba39ae91e3cadc","304b0d21771513c0a36ed7179a9d1069bfa776e95f50b789ce898f3ef2b71514","6950710d5c94466e03d24a17dfe4ae0ceed9f1bfea492742597804acb24d5949","890e7c66817a492bf44c807ba0b602f712d62fb5b6970316c2273aa03f19fc5e","18c078c2b34901a328c1fc3e5a2f5bd51aa0fef06a548418198955e0af5eaf39","d3cfde44f8089768ebb08098c96d01ca260b88bccf238d55eee93f1c620ff5a5","293eadad9dead44c6fd1db6de552663c33f215c55a1bfa2802a1bceed88ff0ec","54f6ec6ea75acea6eb23635617252d249145edbc7bcd9d53f2d70280d2aef953","c25ce98cca43a3bfa885862044be0d59557be4ecd06989b2001a83dcf69620fd","8e71e53b02c152a38af6aec45e288cc65bede077b92b9b43b3cb54a37978bb33","754a9396b14ca3a4241591afb4edc644b293ccc8a3397f49be4dfd520c08acb3","f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","e4b03ddcf8563b1c0aee782a185286ed85a255ce8a30df8453aade2188bbc904","de2316e90fc6d379d83002f04ad9698bc1e5285b4d52779778f454dd12ce9f44","25b3f581e12ede11e5739f57a86e8668fbc0124f6649506def306cad2c59d262","2da997a01a6aa5c5c09de5d28f0f4407b597c5e1aecfd32f1815809c532650a2","5d26d2e47e2352def36f89a3e8bf8581da22b7f857e07ef3114cd52cf4813445","3db2efd285e7328d8014b54a7fce3f4861ebcdc655df40517092ed0050983617","d5d39a24c759df40480a4bfc0daffd364489702fdbcbdfc1711cde34f8739995","581b97f369056070fafbe168120a192e918e67763116dfbbb2782bbca5f32111","74f9797560463a8c9070dd72c04b38cc17b79759b841e2a4175a11742f2ecd11","ce22b96ece23ecc9bc1f2a445afefa0a487f299986a1584887e4e4217e196963","4788f58342a67af140858e23a24cdf62457ec1ff79af68ac71b9d3c0c89bb53b","3796c5046a2f6f5927bb181e7a665ac273ef353a8325d849618748498275db22","e9634e0306920990ddca8f667e3cb624597ea7a4cd25d557a599c0e175419879","d4866c666180e89bdc142940cb2986a8fa9f3d2a363cc757bb61cef698b6e976","fa6dd44a52cb2af89ad7d192ea0ca838ed197cd5dadccb4265085ca6e9fe33cf","4215a8fa414b290571160bfb2031d321fb4d6d12451758c739d420f99ae76780","cb279466d8f2d95f3ee0a24637506b18d18d9b1cb869b4dbb534b7597b06daec","b33057a3c7ea75948a207a5b784726118ec60f882eeb875bd64e932b4cd41041","b773bcdaeda86c0f58910cecd6c77a0bd60be763127c42cad5a64fe66799b1f6","9e2e0b4711f1efef5c3c488616334ba2e5b911648a8784fd77fc8beb1e5047c9","ca1c4f7d0c786d90ab15a363d59d0e18269b393191ed7b2841547c0e187a8d35","0494f89b64c5e8906ce5284194e09bad42b56837757d79cb9e62ce16aae88ab4","28f1497962f8853339b46d766384abe7a907900998f551cf43cd793cdcb98e3d","e4cce0b510957aab4b12a0dc21a3b4857b8f8a85bbded2b8b81f836ca3c83dbc","79a0953f85a27dcaab70dd0e3791a3564631dfd5d85c637513027747c6844357","678c7436b7aa03dad934a96850ea395c018637013aa0b52a65898f502b4d6e2a","1c18a09d1deaf0e9906100ab54592f256f87fc94c67cce61bfc1c2ea44ac3d13","7f2b652a22886e16e6d0c37ffac3b69031299f4c53cba41c1f71fd9899a5d209","173ff028153fd9e36b211f9b54d269ca353b343f7ade170c07250132cf981a48",{"version":"91dea0efdb515b609f5892cfa7c3b05f461d3dbd6499f7818987c0b6c0d53d02","signature":"3547a3382faaffe141c86038e373733a56aded0e20b25d93ab0b7f95588ee957"},{"version":"d13581f2c868c2e5c7ec473091073a31df801ed1aaca5d2f7fc1c8e4733936b9","signature":"4875e9d89f99c49d89988616d3b30c0c0e74e6d4d153020418620c5d543166c6"},{"version":"b0e8cf9553a92bc51fc0816c8e124e6fa567762c2bca3f21358d53750be85b1e","signature":"4e2d0540f3e4ef9f505a0b0c3f0389fa7f61bdc84100d3a72c57c9523e8f26d2"},{"version":"db94cf185e8e547c69d3fa18488b808c0c3b8b8742323b055e8df15006784aed","signature":"85cb42bc55dbe7acd32d52358a6f34fdf9c1cb1532dd680e0cc67a347e3877a2"},"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","ce6a3f09b8db73a7e9701aca91a04b4fabaf77436dd35b24482f9ee816016b17","20e086e5b64fdd52396de67761cc0e94693494deadb731264aac122adf08de3f","6e78f75403b3ec65efb41c70d392aeda94360f11cedc9fb2c039c9ea23b30962","c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","eefd2bbc8edb14c3bd1246794e5c070a80f9b8f3730bd42efb80df3cc50b9039","0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","a56fe175741cc8841835eb72e61fa5a34adcbc249ede0e3494c229f0750f6b85"],"root":[[304,307]],"options":{"alwaysStrict":true,"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","removeComments":true,"rootDir":"..","skipLibCheck":true,"sourceMap":true,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":6},"fileIdsList":[[49,95,303],[49,95,148],[49,95,148,149],[49,95],[49,92,95],[49,94,95],[49,95,100,128],[49,95,96,101,106,114,125,136],[49,95,96,97,106,114],[44,45,46,49,95],[49,95,98,137],[49,95,99,100,107,115],[49,95,100,125,133],[49,95,101,103,106,114],[49,94,95,102],[49,95,103,104],[49,95,105,106],[49,94,95,106],[49,95,106,107,108,125,136],[49,95,106,107,108,121,125,128],[49,95,103,106,109,114,125,136,303],[49,95,106,107,109,110,114,125,133,136],[49,95,109,111,125,133,136],[49,95,106,112],[49,95,113,136,141],[49,95,103,106,114,125],[49,95,115],[49,95,116],[49,94,95,117],[49,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,303],[49,95,119],[49,95,120],[49,95,106,121,122],[49,95,121,123,137,139],[49,95,106,125,126,128],[49,95,127,128],[49,95,125,126],[49,95,128],[49,95,129],[49,92,95,125,130],[49,95,106,131,132],[49,95,131,132],[49,95,100,114,125,133],[49,95,134],[95],[47,48,49,50,51,52,53,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142],[49,95,114,135],[49,95,109,120,136],[49,95,100,137],[49,95,125,138],[49,95,113,139],[49,95,140],[49,90,95],[49,90,95,106,108,117,125,128,136,139,141],[49,95,125,142],[49,95,310,348],[49,95,310,333,348],[49,95,309,348],[49,95,348],[49,95,310],[49,95,310,334,348],[49,95,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347],[49,95,334,348],[49,95,109,125,143,303],[49,95,251],[49,95,256,257,258,259,260],[49,95,150,251],[49,95,155,251],[49,95,150],[49,95,151],[49,95,167],[49,95,155],[49,95,156],[49,95,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[49,95,150,158,251],[49,95,158,159,251],[49,95,166],[49,95,163],[49,95,150,155,251],[49,95,160],[49,95,241],[49,95,247,249,251],[49,95,293],[49,95,293,294],[49,95,281],[49,95,109,145,146,147,174,242,243,244,247,248,249,250,251,252,253,254,255,261,262,263,264,265,266,267,282,283,284,285,286,287,288,289,290,291,292,295,296,297,298,299,300,301,302],[49,95,107,109,125,133,136,144,145,146,147,156,159,160,163,166,174,242,243,244,247,249,250,303],[49,95,242,247,251],[49,95,245,246],[49,95,245,303],[49,95,251,281],[49,95,247,249,250,251],[49,95,248,251],[49,62,66,95,136],[49,62,95,125,136],[49,57,95],[49,59,62,95,133,136],[49,95,114,133],[49,95,143],[49,57,95,143],[49,59,62,95,114,136],[49,54,55,58,61,95,106,125,136],[49,62,69,95],[49,54,60,95],[49,62,83,84,95],[49,58,62,95,128,136,143],[49,83,95,143],[49,56,57,95,143],[49,62,95],[49,56,57,58,59,60,61,62,63,64,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,84,85,86,87,88,89,95],[49,62,77,95],[49,62,69,70,95],[49,60,62,70,71,95],[49,61,95],[49,54,57,62,95],[49,62,66,70,71,95],[49,66,95],[49,60,62,65,95,136],[49,54,59,62,69,95],[49,95,125],[49,57,62,83,95,141,143],[49,95,280],[49,95,270,271],[49,95,268,269,270,272,273,278],[49,95,269,270],[49,95,278],[49,95,279],[49,95,270],[49,95,268,269,270,273,274,275,276,277],[49,95,268,269,280],[49,95,230],[49,95,230,233],[49,95,222,230,231,232,233,234,235,236,237],[49,95,238],[49,95,230,231],[49,95,230,232],[49,95,176,178,179,180,181],[49,95,176,178,180,181],[49,95,176,178,180],[49,95,176,178,179,181],[49,95,176,178,181],[49,95,176,177,178,179,180,181,182,183,222,223,224,225,226,227,228],[49,95,178,181],[49,95,175,176,177,179,180,181],[49,95,178,223,227],[49,95,178,179,180,181],[49,95,239],[49,95,180],[49,95,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221],[49,95,229],[49,95,240],[49,95,303,305],[49,95,303,306],[303]],"referencedMap":[[304,1],[149,2],[150,3],[148,4],[308,4],[92,5],[93,5],[94,6],[95,7],[96,8],[97,9],[44,4],[47,10],[45,4],[46,4],[98,11],[99,12],[100,13],[101,14],[102,15],[103,16],[104,16],[105,17],[106,18],[107,19],[108,20],[50,4],[109,21],[110,22],[111,23],[112,24],[113,25],[114,26],[115,27],[116,28],[117,29],[118,30],[119,31],[120,32],[121,33],[122,33],[123,34],[124,4],[125,35],[127,36],[126,37],[128,38],[129,39],[130,40],[131,41],[132,42],[133,43],[134,44],[49,45],[48,4],[143,46],[135,47],[136,48],[137,49],[138,50],[139,51],[140,52],[51,4],[52,4],[53,4],[91,53],[141,54],[142,55],[333,56],[334,57],[310,58],[313,59],[331,56],[332,56],[322,56],[321,60],[319,56],[314,56],[327,56],[325,56],[329,56],[309,56],[326,56],[330,56],[315,56],[316,56],[328,56],[311,56],[317,56],[318,56],[320,56],[324,56],[335,61],[323,56],[312,56],[348,62],[347,4],[342,61],[344,63],[343,61],[336,61],[337,61],[339,61],[341,61],[345,63],[346,63],[338,63],[340,63],[144,64],[256,65],[257,65],[258,65],[259,65],[261,66],[260,65],[145,4],[262,65],[146,4],[147,4],[155,67],[158,68],[151,69],[152,70],[153,70],[154,70],[168,71],[172,69],[173,4],[157,72],[171,73],[170,73],[156,72],[174,74],[159,75],[160,76],[162,72],[167,77],[169,67],[164,78],[163,79],[161,80],[165,78],[166,68],[301,4],[263,81],[242,81],[243,4],[248,82],[267,4],[294,83],[296,4],[293,4],[295,84],[282,85],[264,4],[292,65],[303,86],[251,87],[252,65],[266,65],[285,1],[297,83],[253,82],[298,67],[299,65],[300,4],[284,65],[254,65],[244,4],[265,88],[247,89],[245,1],[246,90],[289,91],[255,65],[283,65],[291,65],[288,65],[290,65],[287,65],[250,4],[286,92],[302,1],[249,93],[42,4],[43,4],[9,4],[8,4],[2,4],[10,4],[11,4],[12,4],[13,4],[14,4],[15,4],[16,4],[17,4],[3,4],[4,4],[18,4],[22,4],[19,4],[20,4],[21,4],[23,4],[24,4],[25,4],[5,4],[26,4],[27,4],[28,4],[29,4],[6,4],[33,4],[30,4],[31,4],[32,4],[34,4],[7,4],[35,4],[40,4],[41,4],[36,4],[37,4],[38,4],[39,4],[1,4],[69,94],[79,95],[68,94],[89,96],[60,97],[59,98],[88,99],[82,100],[87,101],[62,102],[76,103],[61,104],[85,105],[57,106],[56,99],[86,107],[58,108],[63,109],[64,4],[67,109],[54,4],[90,110],[80,111],[71,112],[72,113],[74,114],[70,115],[73,116],[83,99],[65,117],[66,118],[75,119],[55,120],[78,111],[77,109],[81,4],[84,121],[281,122],[272,123],[279,124],[274,4],[275,4],[273,125],[276,126],[268,4],[269,4],[280,127],[271,128],[277,4],[278,129],[270,130],[234,131],[237,132],[235,132],[231,131],[238,133],[239,134],[236,132],[232,135],[233,136],[226,137],[179,138],[181,139],[224,4],[180,140],[225,141],[229,142],[227,4],[182,138],[183,4],[223,143],[178,144],[175,4],[228,145],[176,146],[177,4],[240,147],[184,148],[185,148],[186,148],[187,148],[188,148],[189,148],[190,148],[191,148],[192,148],[193,148],[195,148],[194,148],[196,148],[197,148],[198,148],[222,149],[199,148],[200,148],[201,148],[202,148],[203,148],[204,148],[205,148],[206,148],[207,148],[209,148],[208,148],[210,148],[211,148],[212,148],[213,148],[214,148],[215,148],[216,148],[217,148],[218,148],[219,148],[220,148],[221,148],[230,150],[241,151],[306,152],[305,1],[307,153]],"exportedModulesMap":[[304,154],[149,2],[150,3],[148,4],[308,4],[92,5],[93,5],[94,6],[95,7],[96,8],[97,9],[44,4],[47,10],[45,4],[46,4],[98,11],[99,12],[100,13],[101,14],[102,15],[103,16],[104,16],[105,17],[106,18],[107,19],[108,20],[50,4],[109,21],[110,22],[111,23],[112,24],[113,25],[114,26],[115,27],[116,28],[117,29],[118,30],[119,31],[120,32],[121,33],[122,33],[123,34],[124,4],[125,35],[127,36],[126,37],[128,38],[129,39],[130,40],[131,41],[132,42],[133,43],[134,44],[49,45],[48,4],[143,46],[135,47],[136,48],[137,49],[138,50],[139,51],[140,52],[51,4],[52,4],[53,4],[91,53],[141,54],[142,55],[333,56],[334,57],[310,58],[313,59],[331,56],[332,56],[322,56],[321,60],[319,56],[314,56],[327,56],[325,56],[329,56],[309,56],[326,56],[330,56],[315,56],[316,56],[328,56],[311,56],[317,56],[318,56],[320,56],[324,56],[335,61],[323,56],[312,56],[348,62],[347,4],[342,61],[344,63],[343,61],[336,61],[337,61],[339,61],[341,61],[345,63],[346,63],[338,63],[340,63],[144,64],[256,65],[257,65],[258,65],[259,65],[261,66],[260,65],[145,4],[262,65],[146,4],[147,4],[155,67],[158,68],[151,69],[152,70],[153,70],[154,70],[168,71],[172,69],[173,4],[157,72],[171,73],[170,73],[156,72],[174,74],[159,75],[160,76],[162,72],[167,77],[169,67],[164,78],[163,79],[161,80],[165,78],[166,68],[301,4],[263,81],[242,81],[243,4],[248,82],[267,4],[294,83],[296,4],[293,4],[295,84],[282,85],[264,4],[292,65],[303,86],[251,87],[252,65],[266,65],[285,1],[297,83],[253,82],[298,67],[299,65],[300,4],[284,65],[254,65],[244,4],[265,88],[247,89],[245,1],[246,90],[289,91],[255,65],[283,65],[291,65],[288,65],[290,65],[287,65],[250,4],[286,92],[302,1],[249,93],[42,4],[43,4],[9,4],[8,4],[2,4],[10,4],[11,4],[12,4],[13,4],[14,4],[15,4],[16,4],[17,4],[3,4],[4,4],[18,4],[22,4],[19,4],[20,4],[21,4],[23,4],[24,4],[25,4],[5,4],[26,4],[27,4],[28,4],[29,4],[6,4],[33,4],[30,4],[31,4],[32,4],[34,4],[7,4],[35,4],[40,4],[41,4],[36,4],[37,4],[38,4],[39,4],[1,4],[69,94],[79,95],[68,94],[89,96],[60,97],[59,98],[88,99],[82,100],[87,101],[62,102],[76,103],[61,104],[85,105],[57,106],[56,99],[86,107],[58,108],[63,109],[64,4],[67,109],[54,4],[90,110],[80,111],[71,112],[72,113],[74,114],[70,115],[73,116],[83,99],[65,117],[66,118],[75,119],[55,120],[78,111],[77,109],[81,4],[84,121],[281,122],[272,123],[279,124],[274,4],[275,4],[273,125],[276,126],[268,4],[269,4],[280,127],[271,128],[277,4],[278,129],[270,130],[234,131],[237,132],[235,132],[231,131],[238,133],[239,134],[236,132],[232,135],[233,136],[226,137],[179,138],[181,139],[224,4],[180,140],[225,141],[229,142],[227,4],[182,138],[183,4],[223,143],[178,144],[175,4],[228,145],[176,146],[177,4],[240,147],[184,148],[185,148],[186,148],[187,148],[188,148],[189,148],[190,148],[191,148],[192,148],[193,148],[195,148],[194,148],[196,148],[197,148],[198,148],[222,149],[199,148],[200,148],[201,148],[202,148],[203,148],[204,148],[205,148],[206,148],[207,148],[209,148],[208,148],[210,148],[211,148],[212,148],[213,148],[214,148],[215,148],[216,148],[217,148],[218,148],[219,148],[220,148],[221,148],[230,150],[241,151],[306,154],[305,154],[307,154]],"semanticDiagnosticsPerFile":[304,149,150,148,308,92,93,94,95,96,97,44,47,45,46,98,99,100,101,102,103,104,105,106,107,108,50,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,126,128,129,130,131,132,133,134,49,48,143,135,136,137,138,139,140,51,52,53,91,141,142,333,334,310,313,331,332,322,321,319,314,327,325,329,309,326,330,315,316,328,311,317,318,320,324,335,323,312,348,347,342,344,343,336,337,339,341,345,346,338,340,144,256,257,258,259,261,260,145,262,146,147,155,158,151,152,153,154,168,172,173,157,171,170,156,174,159,160,162,167,169,164,163,161,165,166,301,263,242,243,248,267,294,296,293,295,282,264,292,303,251,252,266,285,297,253,298,299,300,284,254,244,265,247,245,246,289,255,283,291,288,290,287,250,286,302,249,42,43,9,8,2,10,11,12,13,14,15,16,17,3,4,18,22,19,20,21,23,24,25,5,26,27,28,29,6,33,30,31,32,34,7,35,40,41,36,37,38,39,1,69,79,68,89,60,59,88,82,87,62,76,61,85,57,56,86,58,63,64,67,54,90,80,71,72,74,70,73,83,65,66,75,55,78,77,81,84,281,272,279,274,275,273,276,268,269,280,271,277,278,270,234,237,235,231,238,239,236,232,233,226,179,181,224,180,225,229,227,182,183,223,178,175,228,176,177,240,184,185,186,187,188,189,190,191,192,193,195,194,196,197,198,222,199,200,201,202,203,204,205,206,207,209,208,210,211,212,213,214,215,216,217,218,219,220,221,230,241,306,305,307],"latestChangedDtsFile":"./nodes/RooyaiMessage/GenericFunctions.d.ts"},"version":"5.3.3"}
|
package/package.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "n8n-nodes-rooyai-message",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Rooyai Message / Chat Model for n8n - A first-class LLM provider node compatible with AI Agent, Basic LLM Chain, and other n8n AI workflows",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"rooyai",
|
|
7
|
+
"n8n-community-node-package",
|
|
8
|
+
"n8n-nodes-rooyai",
|
|
9
|
+
"n8n-nodes",
|
|
10
|
+
"n8n",
|
|
11
|
+
"n8n.io",
|
|
12
|
+
"n8n.io-nodes",
|
|
13
|
+
"ai",
|
|
14
|
+
"llm",
|
|
15
|
+
"chat-model",
|
|
16
|
+
"language-model"
|
|
17
|
+
],
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"homepage": "https://rooyai.com",
|
|
20
|
+
"author": {
|
|
21
|
+
"name": "Rooyai",
|
|
22
|
+
"email": "support@rooyai.com"
|
|
23
|
+
},
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "https://github.com/rooyai/n8n-nodes-rooyai-message.git"
|
|
27
|
+
},
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "tsc && gulp build:icons",
|
|
30
|
+
"dev": "tsc --watch",
|
|
31
|
+
"format": "prettier nodes credentials --write",
|
|
32
|
+
"lint": "eslint nodes credentials package.json",
|
|
33
|
+
"lintfix": "eslint nodes credentials package.json --fix",
|
|
34
|
+
"prepublishOnly": "npm run build"
|
|
35
|
+
},
|
|
36
|
+
"files": [
|
|
37
|
+
"dist"
|
|
38
|
+
],
|
|
39
|
+
"n8n": {
|
|
40
|
+
"n8nNodesApiVersion": 1,
|
|
41
|
+
"credentials": [
|
|
42
|
+
"dist/credentials/RooyaiApi.credentials.js"
|
|
43
|
+
],
|
|
44
|
+
"nodes": [
|
|
45
|
+
"dist/nodes/RooyaiMessage/RooyaiMessage.node.js"
|
|
46
|
+
]
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@types/node": "^20.14.6",
|
|
50
|
+
"@typescript-eslint/parser": "~5.45",
|
|
51
|
+
"eslint-plugin-n8n-nodes-base": "^1.11.0",
|
|
52
|
+
"gulp": "^4.0.2",
|
|
53
|
+
"n8n-workflow": "*",
|
|
54
|
+
"prettier": "^2.7.1",
|
|
55
|
+
"typescript": "~5.3.0"
|
|
56
|
+
},
|
|
57
|
+
"peerDependencies": {
|
|
58
|
+
"n8n-workflow": "*"
|
|
59
|
+
}
|
|
60
|
+
}
|