n8n-nodes-basevn-request 0.1.1 → 0.1.5
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/README.md +60 -207
- package/dist/credentials/RequestManagementApi.credentials.js +1 -1
- package/dist/credentials/RequestManagementApi.credentials.js.map +1 -1
- package/dist/icons/request.svg +3 -6
- package/dist/nodes/RequestManagement/RequestManagement.node.js +25 -33
- package/dist/nodes/RequestManagement/RequestManagement.node.js.map +1 -1
- package/dist/nodes/RequestManagement/resources/comment/getComments.js +0 -2
- package/dist/nodes/RequestManagement/resources/comment/getComments.js.map +1 -1
- package/dist/nodes/RequestManagement/resources/group/get.js +0 -20
- package/dist/nodes/RequestManagement/resources/group/get.js.map +1 -1
- package/dist/nodes/RequestManagement/resources/group/getAll.js +0 -20
- package/dist/nodes/RequestManagement/resources/group/getAll.js.map +1 -1
- package/dist/nodes/RequestManagement/resources/group/index.js +1 -14
- package/dist/nodes/RequestManagement/resources/group/index.js.map +1 -1
- package/dist/nodes/RequestManagement/resources/post/getPosts.js +0 -2
- package/dist/nodes/RequestManagement/resources/post/getPosts.js.map +1 -1
- package/dist/nodes/RequestManagement/resources/request/addFollower.js +0 -2
- package/dist/nodes/RequestManagement/resources/request/addFollower.js.map +1 -1
- package/dist/nodes/RequestManagement/resources/request/createCustom.js +0 -3
- package/dist/nodes/RequestManagement/resources/request/createCustom.js.map +1 -1
- package/dist/nodes/RequestManagement/resources/request/createDirect.js +0 -3
- package/dist/nodes/RequestManagement/resources/request/createDirect.js.map +1 -1
- package/dist/nodes/RequestManagement/resources/request/get.js +0 -1
- package/dist/nodes/RequestManagement/resources/request/get.js.map +1 -1
- package/dist/nodes/RequestManagement/resources/request/getAll.js +0 -1
- package/dist/nodes/RequestManagement/resources/request/getAll.js.map +1 -1
- package/dist/nodes/RequestManagement/resources/request/getWithCustomTable.js +0 -1
- package/dist/nodes/RequestManagement/resources/request/getWithCustomTable.js.map +1 -1
- package/dist/nodes/RequestManagement/resources/request/index.js +19 -95
- package/dist/nodes/RequestManagement/resources/request/index.js.map +1 -1
- package/dist/package.json +2 -2
- package/dist/request.svg +4 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,102 +1,94 @@
|
|
|
1
|
-
|
|
1
|
+
# n8n-nodes-basevn-request
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
n8n community node for [BaseVN Request Public API](https://base.vn) integration.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
[](https://www.npmjs.com/package/n8n-nodes-basevn-request)
|
|
6
6
|
|
|
7
|
-
##
|
|
7
|
+
## Installation
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
> **New to building n8n nodes?** The fastest way to get started is with `npm create @n8n/node`. This command scaffolds a complete node package for you using the [@n8n/node-cli](https://www.npmjs.com/package/@n8n/node-cli).
|
|
11
|
-
|
|
12
|
-
**To create a new node package from scratch:**
|
|
13
|
-
|
|
14
|
-
```bash
|
|
15
|
-
npm create @n8n/node
|
|
16
|
-
```
|
|
17
|
-
|
|
18
|
-
**Already using this starter? Start developing with:**
|
|
9
|
+
Install from npm in your n8n root directory:
|
|
19
10
|
|
|
20
11
|
```bash
|
|
21
|
-
npm
|
|
12
|
+
npm install n8n-nodes-basevn-request
|
|
22
13
|
```
|
|
23
14
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
This starter repository includes two example nodes to learn from:
|
|
29
|
-
|
|
30
|
-
- **[Example Node](nodes/Example/)** - A simple starter node that shows the basic structure with a custom `execute` method
|
|
31
|
-
- **[GitHub Issues Node](nodes/GithubIssues/)** - A complete, production-ready example built using the **declarative style**:
|
|
32
|
-
- **Low-code approach** - Define operations declaratively without writing request logic
|
|
33
|
-
- Multiple resources (Issues, Comments)
|
|
34
|
-
- Multiple operations (Get, Get All, Create)
|
|
35
|
-
- Two authentication methods (OAuth2 and Personal Access Token)
|
|
36
|
-
- List search functionality for dynamic dropdowns
|
|
37
|
-
- Proper error handling and typing
|
|
38
|
-
- Ideal for HTTP API-based integrations
|
|
39
|
-
|
|
40
|
-
> [!TIP]
|
|
41
|
-
> The declarative/low-code style (used in GitHub Issues) is the recommended approach for building nodes that interact with HTTP APIs. It significantly reduces boilerplate code and handles requests automatically.
|
|
15
|
+
Or install via n8n Community Nodes:
|
|
16
|
+
1. Go to **Settings → Community Nodes**
|
|
17
|
+
2. Click **Install**
|
|
18
|
+
3. Enter `n8n-nodes-basevn-request`
|
|
42
19
|
|
|
43
|
-
|
|
20
|
+
## Prerequisites
|
|
44
21
|
|
|
45
|
-
|
|
22
|
+
- n8n instance (self-hosted or cloud)
|
|
23
|
+
- Base.vn account with BaseVN Request Public API access
|
|
24
|
+
- API access token (`access_token_v2`)
|
|
46
25
|
|
|
47
|
-
|
|
26
|
+
## Configuration
|
|
48
27
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
28
|
+
1. Add new credentials: **BaseVN Request Public API**
|
|
29
|
+
2. Enter your Base.vn domain (e.g., `example.base.vn`)
|
|
30
|
+
3. Provide your `access_token_v2`
|
|
52
31
|
|
|
53
|
-
|
|
32
|
+
## Features
|
|
54
33
|
|
|
55
|
-
|
|
34
|
+
### Resources
|
|
56
35
|
|
|
57
|
-
|
|
36
|
+
#### Group
|
|
37
|
+
- **Get**: Retrieve group by ID
|
|
38
|
+
- **Get Many**: List all groups with pagination
|
|
58
39
|
|
|
59
|
-
|
|
40
|
+
#### Request
|
|
41
|
+
- **Get**: Get request details by ID
|
|
42
|
+
- **Get Many**: List requests with filters
|
|
43
|
+
- **Get with Custom Table**: Retrieve requests with custom table data
|
|
44
|
+
- **Add Follower**: Add follower to request
|
|
60
45
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
- Windows: Follow [Microsoft's NodeJS guide](https://learn.microsoft.com/en-us/windows/dev-environment/javascript/nodejs-on-windows)
|
|
64
|
-
- **[git](https://git-scm.com/downloads)**
|
|
46
|
+
##### Direct (Sub-resource)
|
|
47
|
+
- **Create via Direct Group**: Create request through direct group
|
|
65
48
|
|
|
66
|
-
|
|
49
|
+
##### Custom (Sub-resource)
|
|
50
|
+
- **Create via Custom Group**: Create request through custom group
|
|
67
51
|
|
|
68
|
-
|
|
52
|
+
##### Post (Sub-resource)
|
|
53
|
+
- **Get Posts**: Load posts from request with pagination
|
|
69
54
|
|
|
70
|
-
|
|
71
|
-
|
|
55
|
+
##### Comment (Sub-resource)
|
|
56
|
+
- **Get Comments**: Load comments from post with pagination
|
|
72
57
|
|
|
73
|
-
##
|
|
58
|
+
## API Documentation
|
|
74
59
|
|
|
75
|
-
|
|
60
|
+
For complete API reference and detailed documentation, see:
|
|
61
|
+
📘 [Base.vn Request API - Postman Documentation](https://documenter.getpostman.com/view/1345096/SzzheyWQ?version=latest)
|
|
76
62
|
|
|
77
|
-
|
|
63
|
+
## Operations Examples
|
|
78
64
|
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
65
|
+
**Create Request via Direct Group:**
|
|
66
|
+
```json
|
|
67
|
+
{
|
|
68
|
+
"group_id": 123,
|
|
69
|
+
"title": "New Request",
|
|
70
|
+
"content": "Request description",
|
|
71
|
+
"priority": "high"
|
|
72
|
+
}
|
|
84
73
|
```
|
|
85
74
|
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
75
|
+
**Get Posts with Pagination:**
|
|
76
|
+
```json
|
|
77
|
+
{
|
|
78
|
+
"request_id": 456,
|
|
79
|
+
"last_id": 0,
|
|
80
|
+
"returnAll": false
|
|
81
|
+
}
|
|
90
82
|
```
|
|
91
83
|
|
|
92
|
-
|
|
84
|
+
## Support
|
|
93
85
|
|
|
94
|
-
|
|
86
|
+
- Issues: [GitHub Issues](https://github.com/QuangChinhDE/n8n-nodes-basevn-request/issues)
|
|
87
|
+
- Documentation: [Base.vn API Docs](https://documenter.getpostman.com/view/1345096/SzzheyWQ?version=latest)
|
|
95
88
|
|
|
96
|
-
|
|
89
|
+
## License
|
|
97
90
|
|
|
98
|
-
|
|
99
|
-
- Study [nodes/GithubIssues/](nodes/GithubIssues/) for a real-world implementation
|
|
91
|
+
MIT
|
|
100
92
|
|
|
101
93
|
### 4. Build Your Node
|
|
102
94
|
|
|
@@ -105,143 +97,4 @@ Edit the example nodes to fit your use case, or create new node files by copying
|
|
|
105
97
|
> [!TIP]
|
|
106
98
|
> If you want to scaffold a completely new node package, use `npm create @n8n/node` to start fresh with the CLI's interactive generator.
|
|
107
99
|
|
|
108
|
-
### 5. Configure Your Package
|
|
109
|
-
|
|
110
|
-
Update `package.json` with your details:
|
|
111
|
-
|
|
112
|
-
- `name` - Your package name (must start with `n8n-nodes-`)
|
|
113
|
-
- `author` - Your name and email
|
|
114
|
-
- `repository` - Your repository URL
|
|
115
|
-
- `description` - What your node does
|
|
116
|
-
|
|
117
|
-
Make sure your node is registered in the `n8n.nodes` array.
|
|
118
|
-
|
|
119
|
-
### 6. Develop and Test Locally
|
|
120
|
-
|
|
121
|
-
Start n8n with your node loaded:
|
|
122
|
-
|
|
123
|
-
```bash
|
|
124
|
-
npm run dev
|
|
125
|
-
```
|
|
126
|
-
|
|
127
|
-
This command runs `n8n-node dev` which:
|
|
128
|
-
|
|
129
|
-
- Builds your node with watch mode
|
|
130
|
-
- Starts n8n with your node available
|
|
131
|
-
- Automatically rebuilds when you make changes
|
|
132
|
-
- Opens n8n in your browser (usually http://localhost:5678)
|
|
133
|
-
|
|
134
|
-
You can now test your node in n8n workflows!
|
|
135
|
-
|
|
136
|
-
> [!NOTE]
|
|
137
|
-
> Learn more about CLI commands in the [@n8n/node-cli documentation](https://www.npmjs.com/package/@n8n/node-cli).
|
|
138
|
-
|
|
139
|
-
### 7. Lint Your Code
|
|
140
|
-
|
|
141
|
-
Check for errors:
|
|
142
|
-
|
|
143
|
-
```bash
|
|
144
|
-
npm run lint
|
|
145
|
-
```
|
|
146
|
-
|
|
147
|
-
Auto-fix issues when possible:
|
|
148
|
-
|
|
149
|
-
```bash
|
|
150
|
-
npm run lint:fix
|
|
151
|
-
```
|
|
152
|
-
|
|
153
|
-
### 8. Build for Production
|
|
154
|
-
|
|
155
|
-
When ready to publish:
|
|
156
|
-
|
|
157
|
-
```bash
|
|
158
|
-
npm run build
|
|
159
|
-
```
|
|
160
|
-
|
|
161
|
-
This compiles your TypeScript code to the `dist/` folder.
|
|
162
|
-
|
|
163
|
-
### 9. Prepare for Publishing
|
|
164
|
-
|
|
165
|
-
Before publishing:
|
|
166
|
-
|
|
167
|
-
1. **Update documentation**: Replace this README with your node's documentation. Use [README_TEMPLATE.md](README_TEMPLATE.md) as a starting point.
|
|
168
|
-
2. **Update the LICENSE**: Add your details to the [LICENSE](LICENSE.md) file.
|
|
169
|
-
3. **Test thoroughly**: Ensure your node works in different scenarios.
|
|
170
|
-
|
|
171
|
-
### 10. Publish to npm
|
|
172
|
-
|
|
173
|
-
Publish your package to make it available to the n8n community:
|
|
174
|
-
|
|
175
|
-
```bash
|
|
176
|
-
npm publish
|
|
177
|
-
```
|
|
178
|
-
|
|
179
|
-
Learn more about [publishing to npm](https://docs.npmjs.com/packages-and-modules/contributing-packages-to-the-registry).
|
|
180
|
-
|
|
181
|
-
### 11. Submit for Verification (Optional)
|
|
182
|
-
|
|
183
|
-
Get your node verified for n8n Cloud:
|
|
184
|
-
|
|
185
|
-
1. Ensure your node meets the [requirements](https://docs.n8n.io/integrations/creating-nodes/deploy/submit-community-nodes/):
|
|
186
|
-
- Uses MIT license ✅ (included in this starter)
|
|
187
|
-
- No external package dependencies
|
|
188
|
-
- Follows n8n's design guidelines
|
|
189
|
-
- Passes quality and security review
|
|
190
|
-
|
|
191
|
-
2. Submit through the [n8n Creator Portal](https://creators.n8n.io/nodes)
|
|
192
|
-
|
|
193
|
-
**Benefits of verification:**
|
|
194
|
-
|
|
195
|
-
- Available directly in n8n Cloud
|
|
196
|
-
- Discoverable in the n8n nodes panel
|
|
197
|
-
- Verified badge for quality assurance
|
|
198
|
-
- Increased visibility in the n8n community
|
|
199
|
-
|
|
200
|
-
## Available Scripts
|
|
201
|
-
|
|
202
|
-
This starter includes several npm scripts to streamline development:
|
|
203
|
-
|
|
204
|
-
| Script | Description |
|
|
205
|
-
| --------------------- | ---------------------------------------------------------------- |
|
|
206
|
-
| `npm run dev` | Start n8n with your node and watch for changes (runs `n8n-node dev`) |
|
|
207
|
-
| `npm run build` | Compile TypeScript to JavaScript for production (runs `n8n-node build`) |
|
|
208
|
-
| `npm run build:watch` | Build in watch mode (auto-rebuild on changes) |
|
|
209
|
-
| `npm run lint` | Check your code for errors and style issues (runs `n8n-node lint`) |
|
|
210
|
-
| `npm run lint:fix` | Automatically fix linting issues when possible (runs `n8n-node lint --fix`) |
|
|
211
|
-
| `npm run release` | Create a new release (runs `n8n-node release`) |
|
|
212
|
-
|
|
213
|
-
> [!TIP]
|
|
214
|
-
> These scripts use the [@n8n/node-cli](https://www.npmjs.com/package/@n8n/node-cli) under the hood. You can also run CLI commands directly, e.g., `npx n8n-node dev`.
|
|
215
|
-
|
|
216
|
-
## Troubleshooting
|
|
217
|
-
|
|
218
|
-
### My node doesn't appear in n8n
|
|
219
|
-
|
|
220
|
-
1. Make sure you ran `npm install` to install dependencies
|
|
221
|
-
2. Check that your node is listed in `package.json` under `n8n.nodes`
|
|
222
|
-
3. Restart the dev server with `npm run dev`
|
|
223
|
-
4. Check the console for any error messages
|
|
224
|
-
|
|
225
|
-
### Linting errors
|
|
226
|
-
|
|
227
|
-
Run `npm run lint:fix` to automatically fix most common issues. For remaining errors, check the [n8n node development guidelines](https://docs.n8n.io/integrations/creating-nodes/).
|
|
228
|
-
|
|
229
|
-
### TypeScript errors
|
|
230
|
-
|
|
231
|
-
Make sure you're using Node.js v22 or higher and have run `npm install` to get all type definitions.
|
|
232
|
-
|
|
233
|
-
## Resources
|
|
234
|
-
|
|
235
|
-
- **[n8n Node Documentation](https://docs.n8n.io/integrations/creating-nodes/)** - Complete guide to building nodes
|
|
236
|
-
- **[n8n Community Forum](https://community.n8n.io/)** - Get help and share your nodes
|
|
237
|
-
- **[@n8n/node-cli Documentation](https://www.npmjs.com/package/@n8n/node-cli)** - CLI tool reference
|
|
238
|
-
- **[n8n Creator Portal](https://creators.n8n.io/nodes)** - Submit your node for verification
|
|
239
|
-
- **[Submit Community Nodes Guide](https://docs.n8n.io/integrations/creating-nodes/deploy/submit-community-nodes/)** - Verification requirements and process
|
|
240
|
-
|
|
241
|
-
## Contributing
|
|
242
|
-
|
|
243
|
-
Have suggestions for improving this starter? [Open an issue](https://github.com/n8n-io/n8n-nodes-starter/issues) or submit a pull request!
|
|
244
|
-
|
|
245
|
-
## License
|
|
246
100
|
|
|
247
|
-
[MIT](https://github.com/n8n-io/n8n-nodes-starter/blob/master/LICENSE.md)
|
|
@@ -4,7 +4,7 @@ exports.RequestManagementApi = void 0;
|
|
|
4
4
|
class RequestManagementApi {
|
|
5
5
|
constructor() {
|
|
6
6
|
this.name = 'requestManagementApi';
|
|
7
|
-
this.displayName = 'Request
|
|
7
|
+
this.displayName = 'BaseVN Request Public API';
|
|
8
8
|
this.icon = 'file:../icons/request.svg';
|
|
9
9
|
this.documentationUrl = 'https://request.{domain}/extapi/v1';
|
|
10
10
|
this.properties = [
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RequestManagementApi.credentials.js","sourceRoot":"","sources":["../../credentials/RequestManagementApi.credentials.ts"],"names":[],"mappings":";;;AAQA,MAAa,oBAAoB;IAAjC;QACC,SAAI,GAAG,sBAAsB,CAAC;QAE9B,gBAAW,GAAG,
|
|
1
|
+
{"version":3,"file":"RequestManagementApi.credentials.js","sourceRoot":"","sources":["../../credentials/RequestManagementApi.credentials.ts"],"names":[],"mappings":";;;AAQA,MAAa,oBAAoB;IAAjC;QACC,SAAI,GAAG,sBAAsB,CAAC;QAE9B,gBAAW,GAAG,2BAA2B,CAAC;QAE1C,SAAI,GAAS,2BAA2B,CAAC;QAEzC,qBAAgB,GAAG,oCAAoC,CAAC;QAExD,eAAU,GAAsB;YAC/B;gBACC,WAAW,EAAE,QAAQ;gBACrB,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;gBACX,WAAW,EAAE,aAAa;gBAC1B,WAAW,EAAE,iCAAiC;gBAC9C,QAAQ,EAAE,IAAI;aACd;YACD;gBACC,WAAW,EAAE,cAAc;gBAC3B,IAAI,EAAE,aAAa;gBACnB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE;gBAC/B,OAAO,EAAE,EAAE;gBACX,WAAW,EAAE,qCAAqC;gBAClD,QAAQ,EAAE,IAAI;aACd;SACD,CAAC;QAEF,iBAAY,GAAyB;YACpC,IAAI,EAAE,SAAS;YACf,UAAU,EAAE;gBACX,IAAI,EAAE;oBACL,eAAe,EAAE,+BAA+B;iBAChD;aACD;SACD,CAAC;QAEF,SAAI,GAA2B;YAC9B,OAAO,EAAE;gBACR,OAAO,EAAE,oDAAoD;gBAC7D,GAAG,EAAE,aAAa;gBAClB,MAAM,EAAE,MAAM;aACd;SACD,CAAC;IACH,CAAC;CAAA;AA9CD,oDA8CC"}
|
package/dist/icons/request.svg
CHANGED
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
<line x1="16" y1="13" x2="8" y2="13"></line>
|
|
5
|
-
<line x1="16" y1="17" x2="8" y2="17"></line>
|
|
6
|
-
<polyline points="10 9 9 9 8 9"></polyline>
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="64" height="64">
|
|
3
|
+
<path d="M0 0 C8.04071716 5.46768767 14.35713546 11.78672485 16.953125 21.328125 C17.74189221 30.17882685 17.91316889 38.6261935 12.953125 46.328125 C12.51742187 47.03453125 12.08171875 47.7409375 11.6328125 48.46875 C8.21184824 53.51607431 4.31633937 56.4967834 -1.046875 59.328125 C-6.31689708 54.93643993 -11.39989551 50.3854871 -16.046875 45.328125 C-16.046875 44.998125 -16.046875 44.668125 -16.046875 44.328125 C-15.45519531 44.16957031 -14.86351562 44.01101562 -14.25390625 43.84765625 C-8.96938843 42.28730107 -5.59600651 40.76453939 -2.046875 36.328125 C-0.58822388 31.95217163 -0.21208008 27.73710462 -1.73046875 23.35546875 C-3.99870127 18.922533 -6.36372119 16.85915605 -11.046875 15.328125 C-17.44190444 14.61756617 -20.87464943 15.47430987 -26.046875 19.328125 C-28.90804146 23.91755499 -29.45135699 27.5522246 -29.55859375 32.9140625 C-29.57654495 33.61584625 -29.59449615 34.31763 -29.61299133 35.04067993 C-29.66676547 37.26143553 -29.70088193 39.4819804 -29.734375 41.703125 C-29.76757737 43.21747704 -29.80206971 44.73180138 -29.83789062 46.24609375 C-29.92247081 49.93990174 -29.9894385 53.63378379 -30.046875 57.328125 C-35.11398889 56.29290818 -38.41951254 53.49496926 -41.47265625 49.4296875 C-47.32021109 40.42548801 -47.8694285 31.77143089 -47.046875 21.328125 C-44.93491153 12.38705811 -38.21535454 5.54055679 -30.91796875 0.3359375 C-22.19133749 -4.36441921 -8.79370572 -4.76605425 0 0 Z " fill="#20BF6B" transform="translate(47.046875,2.671875)"/>
|
|
7
4
|
</svg>
|
|
@@ -40,15 +40,15 @@ const request = __importStar(require("./resources/request"));
|
|
|
40
40
|
class RequestManagement {
|
|
41
41
|
constructor() {
|
|
42
42
|
this.description = {
|
|
43
|
-
displayName: 'Request
|
|
43
|
+
displayName: 'BaseVN Request Public API',
|
|
44
44
|
name: 'requestManagement',
|
|
45
45
|
icon: 'file:../../icons/request.svg',
|
|
46
46
|
group: ['transform'],
|
|
47
47
|
version: 1,
|
|
48
48
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
49
|
-
description: 'Interact with Request
|
|
49
|
+
description: 'Interact with BaseVN Request Public API',
|
|
50
50
|
defaults: {
|
|
51
|
-
name: 'Request
|
|
51
|
+
name: 'BaseVN Request Public API',
|
|
52
52
|
},
|
|
53
53
|
usableAsTool: true,
|
|
54
54
|
inputs: [n8n_workflow_1.NodeConnectionTypes.Main],
|
|
@@ -86,11 +86,11 @@ class RequestManagement {
|
|
|
86
86
|
const items = this.getInputData();
|
|
87
87
|
const returnData = [];
|
|
88
88
|
const resource = this.getNodeParameter('resource', 0);
|
|
89
|
-
const operation = this.getNodeParameter('operation', 0);
|
|
90
89
|
for (let i = 0; i < items.length; i++) {
|
|
91
90
|
try {
|
|
92
91
|
let responseData = [];
|
|
93
92
|
if (resource === 'group') {
|
|
93
|
+
const operation = this.getNodeParameter('operation', i);
|
|
94
94
|
if (operation === 'get') {
|
|
95
95
|
responseData = await group.get.execute.call(this, i);
|
|
96
96
|
}
|
|
@@ -99,38 +99,30 @@ class RequestManagement {
|
|
|
99
99
|
}
|
|
100
100
|
}
|
|
101
101
|
else if (resource === 'request') {
|
|
102
|
-
const
|
|
103
|
-
if (
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
102
|
+
const operation = this.getNodeParameter('operation', i);
|
|
103
|
+
if (operation === 'get') {
|
|
104
|
+
responseData = await request.get.execute.call(this, i);
|
|
105
|
+
}
|
|
106
|
+
else if (operation === 'getAll') {
|
|
107
|
+
responseData = await request.getAll.execute.call(this, i);
|
|
108
|
+
}
|
|
109
|
+
else if (operation === 'createCustom') {
|
|
110
|
+
responseData = await request.createCustom.execute.call(this, i);
|
|
111
|
+
}
|
|
112
|
+
else if (operation === 'createDirect') {
|
|
113
|
+
responseData = await request.createDirect.execute.call(this, i);
|
|
114
|
+
}
|
|
115
|
+
else if (operation === 'getWithCustomTable') {
|
|
116
|
+
responseData = await request.getWithCustomTable.execute.call(this, i);
|
|
107
117
|
}
|
|
108
|
-
else if (
|
|
109
|
-
|
|
110
|
-
responseData = await request.getPosts.execute.call(this, i);
|
|
111
|
-
}
|
|
118
|
+
else if (operation === 'addFollower') {
|
|
119
|
+
responseData = await request.addFollower.execute.call(this, i);
|
|
112
120
|
}
|
|
113
|
-
else if (
|
|
114
|
-
|
|
115
|
-
responseData = await request.getComments.execute.call(this, i);
|
|
116
|
-
}
|
|
121
|
+
else if (operation === 'getPosts') {
|
|
122
|
+
responseData = await request.getPosts.execute.call(this, i);
|
|
117
123
|
}
|
|
118
|
-
else if (
|
|
119
|
-
|
|
120
|
-
responseData = await request.get.execute.call(this, i);
|
|
121
|
-
}
|
|
122
|
-
else if (operation === 'getAll') {
|
|
123
|
-
responseData = await request.getAll.execute.call(this, i);
|
|
124
|
-
}
|
|
125
|
-
else if (operation === 'createCustom') {
|
|
126
|
-
responseData = await request.createCustom.execute.call(this, i);
|
|
127
|
-
}
|
|
128
|
-
else if (operation === 'getWithCustomTable') {
|
|
129
|
-
responseData = await request.getWithCustomTable.execute.call(this, i);
|
|
130
|
-
}
|
|
131
|
-
else if (operation === 'addFollower') {
|
|
132
|
-
responseData = await request.addFollower.execute.call(this, i);
|
|
133
|
-
}
|
|
124
|
+
else if (operation === 'getComments') {
|
|
125
|
+
responseData = await request.getComments.execute.call(this, i);
|
|
134
126
|
}
|
|
135
127
|
}
|
|
136
128
|
returnData.push(...responseData);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RequestManagement.node.js","sourceRoot":"","sources":["../../../nodes/RequestManagement/RequestManagement.node.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+CAMsB;AAEtB,yDAA2C;AAC3C,6DAA+C;AAE/C,MAAa,iBAAiB;IAA9B;QACC,gBAAW,GAAyB;YACnC,WAAW,EAAE,
|
|
1
|
+
{"version":3,"file":"RequestManagement.node.js","sourceRoot":"","sources":["../../../nodes/RequestManagement/RequestManagement.node.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+CAMsB;AAEtB,yDAA2C;AAC3C,6DAA+C;AAE/C,MAAa,iBAAiB;IAA9B;QACC,gBAAW,GAAyB;YACnC,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,mBAAmB;YACzB,IAAI,EAAE,8BAA8B;YACpC,KAAK,EAAE,CAAC,WAAW,CAAC;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,8DAA8D;YACxE,WAAW,EAAE,yCAAyC;YACtD,QAAQ,EAAE;gBACT,IAAI,EAAE,2BAA2B;aACjC;YACD,YAAY,EAAE,IAAI;YAClB,MAAM,EAAE,CAAC,kCAAmB,CAAC,IAAI,CAAC;YAClC,OAAO,EAAE,CAAC,kCAAmB,CAAC,IAAI,CAAC;YACnC,WAAW,EAAE;gBACZ;oBACC,IAAI,EAAE,sBAAsB;oBAC5B,QAAQ,EAAE,IAAI;iBACd;aACD;YACD,UAAU,EAAE;gBACX;oBACC,WAAW,EAAE,UAAU;oBACvB,IAAI,EAAE,UAAU;oBAChB,IAAI,EAAE,SAAS;oBACf,gBAAgB,EAAE,IAAI;oBACtB,OAAO,EAAE;wBACR;4BACC,IAAI,EAAE,OAAO;4BACb,KAAK,EAAE,OAAO;yBACd;wBACD;4BACC,IAAI,EAAE,SAAS;4BACf,KAAK,EAAE,SAAS;yBAChB;qBACD;oBACD,OAAO,EAAE,OAAO;iBAChB;gBACD,GAAG,KAAK,CAAC,WAAW;gBACpB,GAAG,OAAO,CAAC,WAAW;aACtB;SACD,CAAC;IAwDH,CAAC;IAtDA,KAAK,CAAC,OAAO;QACZ,MAAM,KAAK,GAAG,IAAI,CAAC,YAAY,EAAE,CAAC;QAClC,MAAM,UAAU,GAAyB,EAAE,CAAC;QAC5C,MAAM,QAAQ,GAAG,IAAI,CAAC,gBAAgB,CAAC,UAAU,EAAE,CAAC,CAAW,CAAC;QAEhE,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;YACvC,IAAI,CAAC;gBACJ,IAAI,YAAY,GAAyB,EAAE,CAAC;gBAE5C,IAAI,QAAQ,KAAK,OAAO,EAAE,CAAC;oBAC1B,MAAM,SAAS,GAAG,IAAI,CAAC,gBAAgB,CAAC,WAAW,EAAE,CAAC,CAAW,CAAC;oBAElE,IAAI,SAAS,KAAK,KAAK,EAAE,CAAC;wBACzB,YAAY,GAAG,MAAM,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;oBACtD,CAAC;yBAAM,IAAI,SAAS,KAAK,QAAQ,EAAE,CAAC;wBACnC,YAAY,GAAG,MAAM,KAAK,CAAC,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;oBACzD,CAAC;gBACF,CAAC;qBAAM,IAAI,QAAQ,KAAK,SAAS,EAAE,CAAC;oBACnC,MAAM,SAAS,GAAG,IAAI,CAAC,gBAAgB,CAAC,WAAW,EAAE,CAAC,CAAW,CAAC;oBAElE,IAAI,SAAS,KAAK,KAAK,EAAE,CAAC;wBACzB,YAAY,GAAG,MAAM,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;oBACxD,CAAC;yBAAM,IAAI,SAAS,KAAK,QAAQ,EAAE,CAAC;wBACnC,YAAY,GAAG,MAAM,OAAO,CAAC,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;oBAC3D,CAAC;yBAAM,IAAI,SAAS,KAAK,cAAc,EAAE,CAAC;wBACzC,YAAY,GAAG,MAAM,OAAO,CAAC,YAAY,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;oBACjE,CAAC;yBAAM,IAAI,SAAS,KAAK,cAAc,EAAE,CAAC;wBACzC,YAAY,GAAG,MAAM,OAAO,CAAC,YAAY,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;oBACjE,CAAC;yBAAM,IAAI,SAAS,KAAK,oBAAoB,EAAE,CAAC;wBAC/C,YAAY,GAAG,MAAM,OAAO,CAAC,kBAAkB,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;oBACvE,CAAC;yBAAM,IAAI,SAAS,KAAK,aAAa,EAAE,CAAC;wBACxC,YAAY,GAAG,MAAM,OAAO,CAAC,WAAW,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;oBAChE,CAAC;yBAAM,IAAI,SAAS,KAAK,UAAU,EAAE,CAAC;wBACrC,YAAY,GAAG,MAAM,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;oBAC7D,CAAC;yBAAM,IAAI,SAAS,KAAK,aAAa,EAAE,CAAC;wBACxC,YAAY,GAAG,MAAM,OAAO,CAAC,WAAW,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;oBAChE,CAAC;gBACF,CAAC;gBAED,UAAU,CAAC,IAAI,CAAC,GAAG,YAAY,CAAC,CAAC;YAClC,CAAC;YAAC,OAAO,KAAK,EAAE,CAAC;gBAChB,IAAI,IAAI,CAAC,cAAc,EAAE,EAAE,CAAC;oBAC3B,UAAU,CAAC,IAAI,CAAC;wBACf,IAAI,EAAE,EAAE,KAAK,EAAE,KAAK,CAAC,OAAO,EAAE;wBAC9B,UAAU,EAAE,CAAC;qBACb,CAAC,CAAC;oBACH,SAAS;gBACV,CAAC;gBACD,MAAM,KAAK,CAAC;YACb,CAAC;QACF,CAAC;QAED,OAAO,CAAC,UAAU,CAAC,CAAC;IACrB,CAAC;CACD;AAlGD,8CAkGC"}
|
|
@@ -11,7 +11,6 @@ exports.getCommentsDescription = [
|
|
|
11
11
|
displayOptions: {
|
|
12
12
|
show: {
|
|
13
13
|
resource: ['request'],
|
|
14
|
-
subResource: ['comment'],
|
|
15
14
|
operation: ['getComments'],
|
|
16
15
|
},
|
|
17
16
|
},
|
|
@@ -25,7 +24,6 @@ exports.getCommentsDescription = [
|
|
|
25
24
|
displayOptions: {
|
|
26
25
|
show: {
|
|
27
26
|
resource: ['request'],
|
|
28
|
-
subResource: ['comment'],
|
|
29
27
|
operation: ['getComments'],
|
|
30
28
|
},
|
|
31
29
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getComments.js","sourceRoot":"","sources":["../../../../../nodes/RequestManagement/resources/comment/getComments.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"getComments.js","sourceRoot":"","sources":["../../../../../nodes/RequestManagement/resources/comment/getComments.ts"],"names":[],"mappings":";;;AA6DA,0BAqCC;AA5FD,sDAAqE;AACrE,8CAA+C;AAC/C,4DAA8D;AAEjD,QAAA,sBAAsB,GAAsB;IACxD;QACC,GAAG,gCAAiB;QACpB,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,SAAS,CAAC;gBACrB,SAAS,EAAE,CAAC,aAAa,CAAC;aAC1B;SACD;KACD;IACD;QACC,WAAW,EAAE,mBAAmB;QAChC,IAAI,EAAE,kBAAkB;QACxB,IAAI,EAAE,YAAY;QAClB,WAAW,EAAE,WAAW;QACxB,OAAO,EAAE,EAAE;QACX,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,SAAS,CAAC;gBACrB,SAAS,EAAE,CAAC,aAAa,CAAC;aAC1B;SACD;QACD,OAAO,EAAE;YACR;gBACC,WAAW,EAAE,QAAQ;gBACrB,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,SAAS;gBACf,OAAO,EAAE;oBACR;wBACC,IAAI,EAAE,MAAM;wBACZ,KAAK,EAAE,MAAM;qBACb;oBACD;wBACC,IAAI,EAAE,UAAU;wBAChB,KAAK,EAAE,MAAM;qBACb;iBACD;gBACD,OAAO,EAAE,MAAM;gBACf,WAAW,EAAE,mBAAmB;aAChC;YACD;gBACC,WAAW,EAAE,UAAU;gBACvB,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;gBACX,WAAW,EAAE,yBAAyB;aACtC;SACD;KACD;CACD,CAAC;AAEK,KAAK,UAAU,OAAO,CAE5B,KAAa;IAEb,MAAM,UAAU,GAAyB,EAAE,CAAC;IAE5C,MAAM,MAAM,GAAG,IAAI,CAAC,gBAAgB,CAAC,QAAQ,EAAE,KAAK,CAAW,CAAC;IAChE,MAAM,gBAAgB,GAAG,IAAI,CAAC,gBAAgB,CAAC,kBAAkB,EAAE,KAAK,EAAE,EAAE,CAAgB,CAAC;IAE7F,MAAM,IAAI,GAAgB,IAAA,iBAAS,EAAC;QACnC,OAAO,EAAE,MAAM;QACf,GAAG,gBAAgB;KACnB,CAAC,CAAC;IAEH,MAAM,YAAY,GAAG,MAAM,uCAA2B,CAAC,IAAI,CAC1D,IAAI,EACJ,MAAM,EACN,uBAAuB,EACvB,IAAI,CACJ,CAAC;IAGF,IAAI,YAAY,CAAC,QAAQ,IAAI,KAAK,CAAC,OAAO,CAAC,YAAY,CAAC,QAAQ,CAAC,EAAE,CAAC;QACnE,YAAY,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,OAAoB,EAAE,EAAE;YACtD,UAAU,CAAC,IAAI,CAAC;gBACf,IAAI,EAAE,OAAO;gBACb,UAAU,EAAE,KAAK;aACjB,CAAC,CAAC;QACJ,CAAC,CAAC,CAAC;IACJ,CAAC;SAAM,CAAC;QACP,UAAU,CAAC,IAAI,CAAC;YACf,IAAI,EAAE,YAAY;YAClB,UAAU,EAAE,KAAK;SACjB,CAAC,CAAC;IACJ,CAAC;IAED,OAAO,UAAU,CAAC;AACnB,CAAC"}
|
|
@@ -6,26 +6,6 @@ const transport_1 = require("../../shared/transport");
|
|
|
6
6
|
const utils_1 = require("../../shared/utils");
|
|
7
7
|
const descriptions_1 = require("../../shared/descriptions");
|
|
8
8
|
exports.getDescription = [
|
|
9
|
-
{
|
|
10
|
-
displayName: 'Operation',
|
|
11
|
-
name: 'operation',
|
|
12
|
-
type: 'options',
|
|
13
|
-
noDataExpression: true,
|
|
14
|
-
displayOptions: {
|
|
15
|
-
show: {
|
|
16
|
-
resource: ['group'],
|
|
17
|
-
},
|
|
18
|
-
},
|
|
19
|
-
options: [
|
|
20
|
-
{
|
|
21
|
-
name: 'Get',
|
|
22
|
-
value: 'get',
|
|
23
|
-
description: 'Get a group by ID',
|
|
24
|
-
action: 'Get a group',
|
|
25
|
-
},
|
|
26
|
-
],
|
|
27
|
-
default: 'get',
|
|
28
|
-
},
|
|
29
9
|
{
|
|
30
10
|
...descriptions_1.groupIdDescription,
|
|
31
11
|
displayOptions: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get.js","sourceRoot":"","sources":["../../../../../nodes/RequestManagement/resources/group/get.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"get.js","sourceRoot":"","sources":["../../../../../nodes/RequestManagement/resources/group/get.ts"],"names":[],"mappings":";;;AAsBA,0BAoBC;AApCD,sDAAqE;AACrE,8CAA+C;AAC/C,4DAA+D;AAElD,QAAA,cAAc,GAAsB;IAChD;QACC,GAAG,iCAAkB;QACrB,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,OAAO,CAAC;gBACnB,SAAS,EAAE,CAAC,KAAK,CAAC;aAClB;SACD;KACD;CACD,CAAC;AAEK,KAAK,UAAU,OAAO,CAE5B,KAAa;IAEb,MAAM,UAAU,GAAyB,EAAE,CAAC;IAE5C,MAAM,OAAO,GAAG,IAAI,CAAC,gBAAgB,CAAC,SAAS,EAAE,KAAK,CAAW,CAAC;IAElE,MAAM,IAAI,GAAgB,IAAA,iBAAS,EAAC;QACnC,EAAE,EAAE,OAAO;KACX,CAAC,CAAC;IAEH,MAAM,YAAY,GAAG,MAAM,uCAA2B,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,YAAY,EAAE,IAAI,CAAC,CAAC;IAE9F,UAAU,CAAC,IAAI,CAAC;QACf,IAAI,EAAE,YAAY;QAClB,UAAU,EAAE,KAAK;KACjB,CAAC,CAAC;IAEH,OAAO,UAAU,CAAC;AACnB,CAAC"}
|
|
@@ -6,26 +6,6 @@ const transport_1 = require("../../shared/transport");
|
|
|
6
6
|
const descriptions_1 = require("../../shared/descriptions");
|
|
7
7
|
const utils_1 = require("../../shared/utils");
|
|
8
8
|
exports.getAllDescription = [
|
|
9
|
-
{
|
|
10
|
-
displayName: 'Operation',
|
|
11
|
-
name: 'operation',
|
|
12
|
-
type: 'options',
|
|
13
|
-
noDataExpression: true,
|
|
14
|
-
displayOptions: {
|
|
15
|
-
show: {
|
|
16
|
-
resource: ['group'],
|
|
17
|
-
},
|
|
18
|
-
},
|
|
19
|
-
options: [
|
|
20
|
-
{
|
|
21
|
-
name: 'Get Many',
|
|
22
|
-
value: 'getAll',
|
|
23
|
-
description: 'Get many groups',
|
|
24
|
-
action: 'Get many groups',
|
|
25
|
-
},
|
|
26
|
-
],
|
|
27
|
-
default: 'getAll',
|
|
28
|
-
},
|
|
29
9
|
{
|
|
30
10
|
...descriptions_1.returnAllDescription,
|
|
31
11
|
displayOptions: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getAll.js","sourceRoot":"","sources":["../../../../../nodes/RequestManagement/resources/group/getAll.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"getAll.js","sourceRoot":"","sources":["../../../../../nodes/RequestManagement/resources/group/getAll.ts"],"names":[],"mappings":";;;AAmCA,0BAoCC;AAjED,sDAGgC;AAChC,4DAAkF;AAClF,8CAA+C;AAElC,QAAA,iBAAiB,GAAsB;IACnD;QACC,GAAG,mCAAoB;QACvB,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,OAAO,CAAC;gBACnB,SAAS,EAAE,CAAC,QAAQ,CAAC;aACrB;SACD;KACD;IACD;QACC,GAAG,8BAAe;QAClB,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,OAAO,CAAC;gBACnB,SAAS,EAAE,CAAC,QAAQ,CAAC;gBACrB,SAAS,EAAE,CAAC,KAAK,CAAC;aAClB;SACD;KACD;CACD,CAAC;AAEK,KAAK,UAAU,OAAO,CAE5B,KAAa;IAEb,MAAM,UAAU,GAAyB,EAAE,CAAC;IAC5C,MAAM,SAAS,GAAG,IAAI,CAAC,gBAAgB,CAAC,WAAW,EAAE,KAAK,EAAE,KAAK,CAAY,CAAC;IAE9E,IAAI,YAAY,CAAC;IAEjB,IAAI,SAAS,EAAE,CAAC;QAEf,YAAY,GAAG,MAAM,qDAAyC,CAAC,IAAI,CAClE,IAAI,EACJ,aAAa,EACb,EAAE,EACF,MAAM,CACN,CAAC;IACH,CAAC;SAAM,CAAC;QAEP,MAAM,IAAI,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAAE,KAAK,EAAE,CAAC,CAAW,CAAC;QAC/D,MAAM,IAAI,GAAgB,IAAA,iBAAS,EAAC,EAAE,IAAI,EAAE,CAAC,CAAC;QAC9C,MAAM,QAAQ,GAAG,MAAM,uCAA2B,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,aAAa,EAAE,IAAI,CAAC,CAAC;QAC3F,YAAY,GAAG,QAAQ,CAAC,IAAI,IAAI,EAAE,CAAC;IACpC,CAAC;IAGD,IAAI,KAAK,CAAC,OAAO,CAAC,YAAY,CAAC,EAAE,CAAC;QACjC,YAAY,CAAC,OAAO,CAAC,CAAC,IAAI,EAAE,EAAE;YAC7B,UAAU,CAAC,IAAI,CAAC;gBACf,IAAI,EAAE,IAAI;gBACV,UAAU,EAAE,KAAK;aACjB,CAAC,CAAC;QACJ,CAAC,CAAC,CAAC;IACJ,CAAC;IAED,OAAO,UAAU,CAAC;AACnB,CAAC"}
|
|
@@ -39,19 +39,6 @@ exports.get = get;
|
|
|
39
39
|
const getAll = __importStar(require("./getAll"));
|
|
40
40
|
exports.getAll = getAll;
|
|
41
41
|
exports.description = [
|
|
42
|
-
{
|
|
43
|
-
displayName: 'Resource',
|
|
44
|
-
name: 'resource',
|
|
45
|
-
type: 'options',
|
|
46
|
-
noDataExpression: true,
|
|
47
|
-
options: [
|
|
48
|
-
{
|
|
49
|
-
name: 'Group',
|
|
50
|
-
value: 'group',
|
|
51
|
-
},
|
|
52
|
-
],
|
|
53
|
-
default: 'group',
|
|
54
|
-
},
|
|
55
42
|
{
|
|
56
43
|
displayName: 'Operation',
|
|
57
44
|
name: 'operation',
|
|
@@ -64,7 +51,7 @@ exports.description = [
|
|
|
64
51
|
},
|
|
65
52
|
options: [
|
|
66
53
|
{
|
|
67
|
-
name: 'Get
|
|
54
|
+
name: 'Get',
|
|
68
55
|
value: 'get',
|
|
69
56
|
action: 'Get detail of group request by ID',
|
|
70
57
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/RequestManagement/resources/group/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AACA,2CAA6B;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/RequestManagement/resources/group/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AACA,2CAA6B;AAgCpB,kBAAG;AA/BZ,iDAAmC;AA+BrB,wBAAM;AA7BP,QAAA,WAAW,GAAsB;IAC7C;QACC,WAAW,EAAE,WAAW;QACxB,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,SAAS;QACf,gBAAgB,EAAE,IAAI;QACtB,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,OAAO,CAAC;aACnB;SACD;QACD,OAAO,EAAE;YACR;gBACC,IAAI,EAAE,KAAK;gBACX,KAAK,EAAE,KAAK;gBACZ,MAAM,EAAE,mCAAmC;aAC3C;YACD;gBACC,IAAI,EAAE,UAAU;gBAChB,KAAK,EAAE,QAAQ;gBACf,MAAM,EAAE,iBAAiB;aACzB;SACD;QACD,OAAO,EAAE,KAAK;KACd;IACD,GAAG,GAAG,CAAC,cAAc;IACrB,GAAG,MAAM,CAAC,iBAAiB;CAC3B,CAAC"}
|
|
@@ -11,7 +11,6 @@ exports.getPostsDescription = [
|
|
|
11
11
|
displayOptions: {
|
|
12
12
|
show: {
|
|
13
13
|
resource: ['request'],
|
|
14
|
-
subResource: ['post'],
|
|
15
14
|
operation: ['getPosts'],
|
|
16
15
|
},
|
|
17
16
|
},
|
|
@@ -25,7 +24,6 @@ exports.getPostsDescription = [
|
|
|
25
24
|
displayOptions: {
|
|
26
25
|
show: {
|
|
27
26
|
resource: ['request'],
|
|
28
|
-
subResource: ['post'],
|
|
29
27
|
operation: ['getPosts'],
|
|
30
28
|
},
|
|
31
29
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getPosts.js","sourceRoot":"","sources":["../../../../../nodes/RequestManagement/resources/post/getPosts.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"getPosts.js","sourceRoot":"","sources":["../../../../../nodes/RequestManagement/resources/post/getPosts.ts"],"names":[],"mappings":";;;AA4CA,0BAqCC;AA3ED,sDAAqE;AACrE,8CAA+C;AAC/C,4DAAiE;AAEpD,QAAA,mBAAmB,GAAsB;IACrD;QACC,GAAG,mCAAoB;QACvB,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,SAAS,CAAC;gBACrB,SAAS,EAAE,CAAC,UAAU,CAAC;aACvB;SACD;KACD;IACD;QACC,WAAW,EAAE,mBAAmB;QAChC,IAAI,EAAE,kBAAkB;QACxB,IAAI,EAAE,YAAY;QAClB,WAAW,EAAE,WAAW;QACxB,OAAO,EAAE,EAAE;QACX,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,SAAS,CAAC;gBACrB,SAAS,EAAE,CAAC,UAAU,CAAC;aACvB;SACD;QACD,OAAO,EAAE;YACR;gBACC,WAAW,EAAE,SAAS;gBACtB,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;gBACX,WAAW,EAAE,gDAAgD;aAC7D;SACD;KACD;CACD,CAAC;AAEK,KAAK,UAAU,OAAO,CAE5B,KAAa;IAEb,MAAM,UAAU,GAAyB,EAAE,CAAC;IAE5C,MAAM,SAAS,GAAG,IAAI,CAAC,gBAAgB,CAAC,WAAW,EAAE,KAAK,CAAW,CAAC;IACtE,MAAM,gBAAgB,GAAG,IAAI,CAAC,gBAAgB,CAAC,kBAAkB,EAAE,KAAK,EAAE,EAAE,CAAgB,CAAC;IAE7F,MAAM,IAAI,GAAgB,IAAA,iBAAS,EAAC;QACnC,UAAU,EAAE,SAAS;QACrB,GAAG,gBAAgB;KACnB,CAAC,CAAC;IAEH,MAAM,YAAY,GAAG,MAAM,uCAA2B,CAAC,IAAI,CAC1D,IAAI,EACJ,MAAM,EACN,oBAAoB,EACpB,IAAI,CACJ,CAAC;IAGF,IAAI,YAAY,CAAC,KAAK,IAAI,KAAK,CAAC,OAAO,CAAC,YAAY,CAAC,KAAK,CAAC,EAAE,CAAC;QAC7D,YAAY,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,IAAiB,EAAE,EAAE;YAChD,UAAU,CAAC,IAAI,CAAC;gBACf,IAAI,EAAE,IAAI;gBACV,UAAU,EAAE,KAAK;aACjB,CAAC,CAAC;QACJ,CAAC,CAAC,CAAC;IACJ,CAAC;SAAM,CAAC;QACP,UAAU,CAAC,IAAI,CAAC;YACf,IAAI,EAAE,YAAY;YAClB,UAAU,EAAE,KAAK;SACjB,CAAC,CAAC;IACJ,CAAC;IAED,OAAO,UAAU,CAAC;AACnB,CAAC"}
|
|
@@ -11,7 +11,6 @@ exports.addFollowerDescription = [
|
|
|
11
11
|
displayOptions: {
|
|
12
12
|
show: {
|
|
13
13
|
resource: ['request'],
|
|
14
|
-
subResource: ['request'],
|
|
15
14
|
operation: ['addFollower'],
|
|
16
15
|
},
|
|
17
16
|
},
|
|
@@ -25,7 +24,6 @@ exports.addFollowerDescription = [
|
|
|
25
24
|
displayOptions: {
|
|
26
25
|
show: {
|
|
27
26
|
resource: ['request'],
|
|
28
|
-
subResource: ['request'],
|
|
29
27
|
operation: ['addFollower'],
|
|
30
28
|
},
|
|
31
29
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"addFollower.js","sourceRoot":"","sources":["../../../../../nodes/RequestManagement/resources/request/addFollower.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"addFollower.js","sourceRoot":"","sources":["../../../../../nodes/RequestManagement/resources/request/addFollower.ts"],"names":[],"mappings":";;;AAoCA,0BA2BC;AAzDD,sDAAqE;AACrE,8CAA+C;AAC/C,4DAAiE;AAEpD,QAAA,sBAAsB,GAAsB;IACxD;QACC,GAAG,mCAAoB;QACvB,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,SAAS,CAAC;gBACrB,SAAS,EAAE,CAAC,aAAa,CAAC;aAC1B;SACD;KACD;IACD;QACC,WAAW,EAAE,aAAa;QAC1B,IAAI,EAAE,YAAY;QAClB,IAAI,EAAE,QAAQ;QACd,OAAO,EAAE,EAAE;QACX,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,SAAS,CAAC;gBACrB,SAAS,EAAE,CAAC,aAAa,CAAC;aAC1B;SACD;QACD,WAAW,EAAE,uCAAuC;KACpD;CACD,CAAC;AAEK,KAAK,UAAU,OAAO,CAE5B,KAAa;IAEb,MAAM,UAAU,GAAyB,EAAE,CAAC;IAE5C,MAAM,SAAS,GAAG,IAAI,CAAC,gBAAgB,CAAC,WAAW,EAAE,KAAK,CAAW,CAAC;IACtE,MAAM,UAAU,GAAG,IAAI,CAAC,gBAAgB,CAAC,YAAY,EAAE,KAAK,CAAW,CAAC;IAExE,MAAM,IAAI,GAAgB,IAAA,iBAAS,EAAC;QACnC,UAAU,EAAE,SAAS;QACrB,WAAW,EAAE,UAAU;KACvB,CAAC,CAAC;IAEH,MAAM,YAAY,GAAG,MAAM,uCAA2B,CAAC,IAAI,CAC1D,IAAI,EACJ,MAAM,EACN,uBAAuB,EACvB,IAAI,CACJ,CAAC;IAEF,UAAU,CAAC,IAAI,CAAC;QACf,IAAI,EAAE,YAAY,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE;QACvC,UAAU,EAAE,KAAK;KACjB,CAAC,CAAC;IAEH,OAAO,UAAU,CAAC;AACnB,CAAC"}
|
|
@@ -11,7 +11,6 @@ exports.createCustomDescription = [
|
|
|
11
11
|
displayOptions: {
|
|
12
12
|
show: {
|
|
13
13
|
resource: ['request'],
|
|
14
|
-
subResource: ['request'],
|
|
15
14
|
operation: ['createCustom'],
|
|
16
15
|
},
|
|
17
16
|
},
|
|
@@ -25,7 +24,6 @@ exports.createCustomDescription = [
|
|
|
25
24
|
displayOptions: {
|
|
26
25
|
show: {
|
|
27
26
|
resource: ['request'],
|
|
28
|
-
subResource: ['request'],
|
|
29
27
|
operation: ['createCustom'],
|
|
30
28
|
},
|
|
31
29
|
},
|
|
@@ -40,7 +38,6 @@ exports.createCustomDescription = [
|
|
|
40
38
|
displayOptions: {
|
|
41
39
|
show: {
|
|
42
40
|
resource: ['request'],
|
|
43
|
-
subResource: ['request'],
|
|
44
41
|
operation: ['createCustom'],
|
|
45
42
|
},
|
|
46
43
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createCustom.js","sourceRoot":"","sources":["../../../../../nodes/RequestManagement/resources/request/createCustom.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"createCustom.js","sourceRoot":"","sources":["../../../../../nodes/RequestManagement/resources/request/createCustom.ts"],"names":[],"mappings":";;;AAoEA,0BA6BC;AA3FD,sDAAqE;AACrE,8CAA+C;AAC/C,4DAA+D;AAElD,QAAA,uBAAuB,GAAsB;IACzD;QACC,GAAG,iCAAkB;QACrB,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,SAAS,CAAC;gBACrB,SAAS,EAAE,CAAC,cAAc,CAAC;aAC3B;SACD;KACD;IACD;QACC,WAAW,EAAE,OAAO;QACpB,IAAI,EAAE,OAAO;QACb,IAAI,EAAE,QAAQ;QACd,OAAO,EAAE,EAAE;QACX,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,SAAS,CAAC;gBACrB,SAAS,EAAE,CAAC,cAAc,CAAC;aAC3B;SACD;QACD,WAAW,EAAE,0BAA0B;KACvC;IACD;QACC,WAAW,EAAE,mBAAmB;QAChC,IAAI,EAAE,kBAAkB;QACxB,IAAI,EAAE,YAAY;QAClB,WAAW,EAAE,WAAW;QACxB,OAAO,EAAE,EAAE;QACX,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,SAAS,CAAC;gBACrB,SAAS,EAAE,CAAC,cAAc,CAAC;aAC3B;SACD;QACD,OAAO,EAAE;YACR;gBACC,WAAW,EAAE,aAAa;gBAC1B,IAAI,EAAE,aAAa;gBACnB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE;oBACZ,IAAI,EAAE,CAAC;iBACP;gBACD,OAAO,EAAE,EAAE;gBACX,WAAW,EAAE,gCAAgC;aAC7C;YACD;gBACC,WAAW,EAAE,eAAe;gBAC5B,IAAI,EAAE,cAAc;gBACpB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;gBACX,WAAW,EAAE,8BAA8B;aAC3C;SACD;KACD;CACD,CAAC;AAEK,KAAK,UAAU,OAAO,CAE5B,KAAa;IAEb,MAAM,UAAU,GAAyB,EAAE,CAAC;IAE5C,MAAM,OAAO,GAAG,IAAI,CAAC,gBAAgB,CAAC,SAAS,EAAE,KAAK,CAAW,CAAC;IAClE,MAAM,KAAK,GAAG,IAAI,CAAC,gBAAgB,CAAC,OAAO,EAAE,KAAK,CAAW,CAAC;IAC9D,MAAM,gBAAgB,GAAG,IAAI,CAAC,gBAAgB,CAAC,kBAAkB,EAAE,KAAK,EAAE,EAAE,CAAgB,CAAC;IAE7F,MAAM,IAAI,GAAgB,IAAA,iBAAS,EAAC;QACnC,QAAQ,EAAE,OAAO;QACjB,KAAK;QACL,GAAG,gBAAgB;KACnB,CAAC,CAAC;IAEH,MAAM,YAAY,GAAG,MAAM,uCAA2B,CAAC,IAAI,CAC1D,IAAI,EACJ,MAAM,EACN,iBAAiB,EACjB,IAAI,CACJ,CAAC;IAEF,UAAU,CAAC,IAAI,CAAC;QACf,IAAI,EAAE,YAAY,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE;QACvC,UAAU,EAAE,KAAK;KACjB,CAAC,CAAC;IAEH,OAAO,UAAU,CAAC;AACnB,CAAC"}
|
|
@@ -11,7 +11,6 @@ exports.createDirectDescription = [
|
|
|
11
11
|
displayOptions: {
|
|
12
12
|
show: {
|
|
13
13
|
resource: ['request'],
|
|
14
|
-
subResource: ['direct'],
|
|
15
14
|
operation: ['createDirect'],
|
|
16
15
|
},
|
|
17
16
|
},
|
|
@@ -25,7 +24,6 @@ exports.createDirectDescription = [
|
|
|
25
24
|
displayOptions: {
|
|
26
25
|
show: {
|
|
27
26
|
resource: ['request'],
|
|
28
|
-
subResource: ['direct'],
|
|
29
27
|
operation: ['createDirect'],
|
|
30
28
|
},
|
|
31
29
|
},
|
|
@@ -40,7 +38,6 @@ exports.createDirectDescription = [
|
|
|
40
38
|
displayOptions: {
|
|
41
39
|
show: {
|
|
42
40
|
resource: ['request'],
|
|
43
|
-
subResource: ['direct'],
|
|
44
41
|
operation: ['createDirect'],
|
|
45
42
|
},
|
|
46
43
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createDirect.js","sourceRoot":"","sources":["../../../../../nodes/RequestManagement/resources/request/createDirect.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"createDirect.js","sourceRoot":"","sources":["../../../../../nodes/RequestManagement/resources/request/createDirect.ts"],"names":[],"mappings":";;;AAsFA,0BA6BC;AA7GD,sDAAqE;AACrE,8CAA+C;AAC/C,4DAA+D;AAElD,QAAA,uBAAuB,GAAsB;IACzD;QACC,GAAG,iCAAkB;QACrB,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,SAAS,CAAC;gBACrB,SAAS,EAAE,CAAC,cAAc,CAAC;aAC3B;SACD;KACD;IACD;QACC,WAAW,EAAE,OAAO;QACpB,IAAI,EAAE,OAAO;QACb,IAAI,EAAE,QAAQ;QACd,OAAO,EAAE,EAAE;QACX,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,SAAS,CAAC;gBACrB,SAAS,EAAE,CAAC,cAAc,CAAC;aAC3B;SACD;QACD,WAAW,EAAE,0BAA0B;KACvC;IACD;QACC,WAAW,EAAE,mBAAmB;QAChC,IAAI,EAAE,kBAAkB;QACxB,IAAI,EAAE,YAAY;QAClB,WAAW,EAAE,WAAW;QACxB,OAAO,EAAE,EAAE;QACX,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,SAAS,CAAC;gBACrB,SAAS,EAAE,CAAC,cAAc,CAAC;aAC3B;SACD;QACD,OAAO,EAAE;YACR;gBACC,WAAW,EAAE,aAAa;gBAC1B,IAAI,EAAE,aAAa;gBACnB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE;oBACZ,IAAI,EAAE,CAAC;iBACP;gBACD,OAAO,EAAE,EAAE;gBACX,WAAW,EAAE,gCAAgC;aAC7C;YACD;gBACC,WAAW,EAAE,UAAU;gBACvB,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,SAAS;gBACf,OAAO,EAAE;oBACR;wBACC,IAAI,EAAE,KAAK;wBACX,KAAK,EAAE,KAAK;qBACZ;oBACD;wBACC,IAAI,EAAE,QAAQ;wBACd,KAAK,EAAE,QAAQ;qBACf;oBACD;wBACC,IAAI,EAAE,MAAM;wBACZ,KAAK,EAAE,MAAM;qBACb;oBACD;wBACC,IAAI,EAAE,QAAQ;wBACd,KAAK,EAAE,QAAQ;qBACf;iBACD;gBACD,OAAO,EAAE,QAAQ;gBACjB,WAAW,EAAE,6BAA6B;aAC1C;SACD;KACD;CACD,CAAC;AAEK,KAAK,UAAU,OAAO,CAE5B,KAAa;IAEb,MAAM,UAAU,GAAyB,EAAE,CAAC;IAE5C,MAAM,OAAO,GAAG,IAAI,CAAC,gBAAgB,CAAC,SAAS,EAAE,KAAK,CAAW,CAAC;IAClE,MAAM,KAAK,GAAG,IAAI,CAAC,gBAAgB,CAAC,OAAO,EAAE,KAAK,CAAW,CAAC;IAC9D,MAAM,gBAAgB,GAAG,IAAI,CAAC,gBAAgB,CAAC,kBAAkB,EAAE,KAAK,EAAE,EAAE,CAAgB,CAAC;IAE7F,MAAM,IAAI,GAAgB,IAAA,iBAAS,EAAC;QACnC,QAAQ,EAAE,OAAO;QACjB,KAAK;QACL,GAAG,gBAAgB;KACnB,CAAC,CAAC;IAEH,MAAM,YAAY,GAAG,MAAM,uCAA2B,CAAC,IAAI,CAC1D,IAAI,EACJ,MAAM,EACN,wBAAwB,EACxB,IAAI,CACJ,CAAC;IAEF,UAAU,CAAC,IAAI,CAAC;QACf,IAAI,EAAE,YAAY,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE;QACvC,UAAU,EAAE,KAAK;KACjB,CAAC,CAAC;IAEH,OAAO,UAAU,CAAC;AACnB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get.js","sourceRoot":"","sources":["../../../../../nodes/RequestManagement/resources/request/get.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"get.js","sourceRoot":"","sources":["../../../../../nodes/RequestManagement/resources/request/get.ts"],"names":[],"mappings":";;;AAsBA,0BAoBC;AApCD,sDAAqE;AACrE,8CAA+C;AAC/C,4DAAiE;AAEpD,QAAA,cAAc,GAAsB;IAChD;QACC,GAAG,mCAAoB;QACvB,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,SAAS,CAAC;gBACrB,SAAS,EAAE,CAAC,KAAK,CAAC;aAClB;SACD;KACD;CACD,CAAC;AAEK,KAAK,UAAU,OAAO,CAE5B,KAAa;IAEb,MAAM,UAAU,GAAyB,EAAE,CAAC;IAE5C,MAAM,SAAS,GAAG,IAAI,CAAC,gBAAgB,CAAC,WAAW,EAAE,KAAK,CAAW,CAAC;IAEtE,MAAM,IAAI,GAAgB,IAAA,iBAAS,EAAC;QACnC,EAAE,EAAE,SAAS;KACb,CAAC,CAAC;IAEH,MAAM,YAAY,GAAG,MAAM,uCAA2B,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAEhG,UAAU,CAAC,IAAI,CAAC;QACf,IAAI,EAAE,YAAY;QAClB,UAAU,EAAE,KAAK;KACjB,CAAC,CAAC;IAEH,OAAO,UAAU,CAAC;AACnB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getAll.js","sourceRoot":"","sources":["../../../../../nodes/RequestManagement/resources/request/getAll.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"getAll.js","sourceRoot":"","sources":["../../../../../nodes/RequestManagement/resources/request/getAll.ts"],"names":[],"mappings":";;;AAgEA,0BAyCC;AAnGD,sDAGgC;AAChC,4DAAkF;AAClF,8CAA+C;AAElC,QAAA,iBAAiB,GAAsB;IACnD;QACC,GAAG,mCAAoB;QACvB,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,SAAS,CAAC;gBACrB,SAAS,EAAE,CAAC,QAAQ,CAAC;aACrB;SACD;KACD;IACD;QACC,GAAG,8BAAe;QAClB,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,SAAS,CAAC;gBACrB,SAAS,EAAE,CAAC,QAAQ,CAAC;gBACrB,SAAS,EAAE,CAAC,KAAK,CAAC;aAClB;SACD;KACD;IACD;QACC,WAAW,EAAE,mBAAmB;QAChC,IAAI,EAAE,kBAAkB;QACxB,IAAI,EAAE,YAAY;QAClB,WAAW,EAAE,WAAW;QACxB,OAAO,EAAE,EAAE;QACX,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,SAAS,CAAC;gBACrB,SAAS,EAAE,CAAC,QAAQ,CAAC;aACrB;SACD;QACD,OAAO,EAAE;YACR;gBACC,WAAW,EAAE,QAAQ;gBACrB,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;gBACX,WAAW,EAAE,+BAA+B;aAC5C;YACD;gBACC,WAAW,EAAE,QAAQ;gBACrB,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;gBACX,WAAW,EAAE,0BAA0B;aACvC;SACD;KACD;CACD,CAAC;AAEK,KAAK,UAAU,OAAO,CAE5B,KAAa;IAEb,MAAM,UAAU,GAAyB,EAAE,CAAC;IAC5C,MAAM,SAAS,GAAG,IAAI,CAAC,gBAAgB,CAAC,WAAW,EAAE,KAAK,EAAE,KAAK,CAAY,CAAC;IAC9E,MAAM,gBAAgB,GAAG,IAAI,CAAC,gBAAgB,CAAC,kBAAkB,EAAE,KAAK,EAAE,EAAE,CAAgB,CAAC;IAE7F,IAAI,YAAY,CAAC;IAEjB,MAAM,QAAQ,GAAgB;QAC7B,GAAG,gBAAgB;KACnB,CAAC;IAEF,IAAI,SAAS,EAAE,CAAC;QAEf,YAAY,GAAG,MAAM,qDAAyC,CAAC,IAAI,CAClE,IAAI,EACJ,eAAe,EACf,QAAQ,EACR,MAAM,CACN,CAAC;IACH,CAAC;SAAM,CAAC;QAEP,MAAM,IAAI,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAAE,KAAK,EAAE,CAAC,CAAW,CAAC;QAC/D,MAAM,IAAI,GAAgB,IAAA,iBAAS,EAAC,EAAE,GAAG,QAAQ,EAAE,IAAI,EAAE,CAAC,CAAC;QAC3D,MAAM,QAAQ,GAAG,MAAM,uCAA2B,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,eAAe,EAAE,IAAI,CAAC,CAAC;QAC7F,YAAY,GAAG,QAAQ,CAAC,IAAI,IAAI,EAAE,CAAC;IACpC,CAAC;IAGD,IAAI,KAAK,CAAC,OAAO,CAAC,YAAY,CAAC,EAAE,CAAC;QACjC,YAAY,CAAC,OAAO,CAAC,CAAC,IAAI,EAAE,EAAE;YAC7B,UAAU,CAAC,IAAI,CAAC;gBACf,IAAI,EAAE,IAAI;gBACV,UAAU,EAAE,KAAK;aACjB,CAAC,CAAC;QACJ,CAAC,CAAC,CAAC;IACJ,CAAC;IAED,OAAO,UAAU,CAAC;AACnB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getWithCustomTable.js","sourceRoot":"","sources":["../../../../../nodes/RequestManagement/resources/request/getWithCustomTable.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"getWithCustomTable.js","sourceRoot":"","sources":["../../../../../nodes/RequestManagement/resources/request/getWithCustomTable.ts"],"names":[],"mappings":";;;AAsBA,0BAyBC;AAzCD,sDAAqE;AACrE,8CAA+C;AAC/C,4DAAiE;AAEpD,QAAA,6BAA6B,GAAsB;IAC/D;QACC,GAAG,mCAAoB;QACvB,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,SAAS,CAAC;gBACrB,SAAS,EAAE,CAAC,oBAAoB,CAAC;aACjC;SACD;KACD;CACD,CAAC;AAEK,KAAK,UAAU,OAAO,CAE5B,KAAa;IAEb,MAAM,UAAU,GAAyB,EAAE,CAAC;IAE5C,MAAM,SAAS,GAAG,IAAI,CAAC,gBAAgB,CAAC,WAAW,EAAE,KAAK,CAAW,CAAC;IAEtE,MAAM,IAAI,GAAgB,IAAA,iBAAS,EAAC;QACnC,EAAE,EAAE,SAAS;KACb,CAAC,CAAC;IAEH,MAAM,YAAY,GAAG,MAAM,uCAA2B,CAAC,IAAI,CAC1D,IAAI,EACJ,MAAM,EACN,uBAAuB,EACvB,IAAI,CACJ,CAAC;IAEF,UAAU,CAAC,IAAI,CAAC;QACf,IAAI,EAAE,YAAY;QAClB,UAAU,EAAE,KAAK;KACjB,CAAC,CAAC;IAEH,OAAO,UAAU,CAAC;AACnB,CAAC"}
|
|
@@ -52,8 +52,8 @@ const getComments = __importStar(require("../comment/getComments"));
|
|
|
52
52
|
exports.getComments = getComments;
|
|
53
53
|
exports.description = [
|
|
54
54
|
{
|
|
55
|
-
displayName: '
|
|
56
|
-
name: '
|
|
55
|
+
displayName: 'Operation',
|
|
56
|
+
name: 'operation',
|
|
57
57
|
type: 'options',
|
|
58
58
|
noDataExpression: true,
|
|
59
59
|
displayOptions: {
|
|
@@ -63,121 +63,45 @@ exports.description = [
|
|
|
63
63
|
},
|
|
64
64
|
options: [
|
|
65
65
|
{
|
|
66
|
-
name: '
|
|
67
|
-
value: '
|
|
68
|
-
|
|
69
|
-
{
|
|
70
|
-
name: 'Post',
|
|
71
|
-
value: 'post',
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
name: 'Comment',
|
|
75
|
-
value: 'comment',
|
|
66
|
+
name: 'Add Follower to Request',
|
|
67
|
+
value: 'addFollower',
|
|
68
|
+
action: 'Add follower to request',
|
|
76
69
|
},
|
|
77
70
|
{
|
|
78
|
-
name: '
|
|
79
|
-
value: '
|
|
80
|
-
|
|
81
|
-
],
|
|
82
|
-
default: 'request',
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
displayName: 'Operation',
|
|
86
|
-
name: 'operation',
|
|
87
|
-
type: 'options',
|
|
88
|
-
noDataExpression: true,
|
|
89
|
-
displayOptions: {
|
|
90
|
-
show: {
|
|
91
|
-
resource: ['request'],
|
|
92
|
-
subResource: ['direct'],
|
|
71
|
+
name: 'Create via Custom Group',
|
|
72
|
+
value: 'createCustom',
|
|
73
|
+
action: 'Create a new request by custom group',
|
|
93
74
|
},
|
|
94
|
-
},
|
|
95
|
-
options: [
|
|
96
75
|
{
|
|
97
|
-
name: 'Create
|
|
76
|
+
name: 'Create via Direct Group',
|
|
98
77
|
value: 'createDirect',
|
|
99
78
|
action: 'Create a new request by direct group',
|
|
100
79
|
},
|
|
101
|
-
],
|
|
102
|
-
default: 'createDirect',
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
displayName: 'Operation',
|
|
106
|
-
name: 'operation',
|
|
107
|
-
type: 'options',
|
|
108
|
-
noDataExpression: true,
|
|
109
|
-
displayOptions: {
|
|
110
|
-
show: {
|
|
111
|
-
resource: ['request'],
|
|
112
|
-
subResource: ['post'],
|
|
113
|
-
},
|
|
114
|
-
},
|
|
115
|
-
options: [
|
|
116
80
|
{
|
|
117
|
-
name: 'Get
|
|
118
|
-
value: '
|
|
119
|
-
action: 'Get
|
|
120
|
-
},
|
|
121
|
-
],
|
|
122
|
-
default: 'getPosts',
|
|
123
|
-
},
|
|
124
|
-
{
|
|
125
|
-
displayName: 'Operation',
|
|
126
|
-
name: 'operation',
|
|
127
|
-
type: 'options',
|
|
128
|
-
noDataExpression: true,
|
|
129
|
-
displayOptions: {
|
|
130
|
-
show: {
|
|
131
|
-
resource: ['request'],
|
|
132
|
-
subResource: ['comment'],
|
|
81
|
+
name: 'Get',
|
|
82
|
+
value: 'get',
|
|
83
|
+
action: 'Get detail of request by ID',
|
|
133
84
|
},
|
|
134
|
-
},
|
|
135
|
-
options: [
|
|
136
85
|
{
|
|
137
86
|
name: 'Get Comments of Post',
|
|
138
87
|
value: 'getComments',
|
|
139
88
|
action: 'Get comments of post',
|
|
140
89
|
},
|
|
141
|
-
],
|
|
142
|
-
default: 'getComments',
|
|
143
|
-
},
|
|
144
|
-
{
|
|
145
|
-
displayName: 'Operation',
|
|
146
|
-
name: 'operation',
|
|
147
|
-
type: 'options',
|
|
148
|
-
noDataExpression: true,
|
|
149
|
-
displayOptions: {
|
|
150
|
-
show: {
|
|
151
|
-
resource: ['request'],
|
|
152
|
-
subResource: ['request'],
|
|
153
|
-
},
|
|
154
|
-
},
|
|
155
|
-
options: [
|
|
156
90
|
{
|
|
157
|
-
name: '
|
|
158
|
-
value: '
|
|
159
|
-
action: '
|
|
160
|
-
},
|
|
161
|
-
{
|
|
162
|
-
name: 'Create a New Request by Custom Group',
|
|
163
|
-
value: 'createCustom',
|
|
164
|
-
action: 'Create a new request by custom group',
|
|
91
|
+
name: 'Get Many',
|
|
92
|
+
value: 'getAll',
|
|
93
|
+
action: 'List all requests in system',
|
|
165
94
|
},
|
|
166
95
|
{
|
|
167
|
-
name: 'Get
|
|
168
|
-
value: '
|
|
169
|
-
action: 'Get
|
|
96
|
+
name: 'Get Posts of Request',
|
|
97
|
+
value: 'getPosts',
|
|
98
|
+
action: 'Get posts of request',
|
|
170
99
|
},
|
|
171
100
|
{
|
|
172
|
-
name: 'Get
|
|
101
|
+
name: 'Get with Custom Table',
|
|
173
102
|
value: 'getWithCustomTable',
|
|
174
103
|
action: 'Get detail request with custom table',
|
|
175
104
|
},
|
|
176
|
-
{
|
|
177
|
-
name: 'Get Many',
|
|
178
|
-
value: 'getAll',
|
|
179
|
-
action: 'List all requests in system',
|
|
180
|
-
},
|
|
181
105
|
],
|
|
182
106
|
default: 'get',
|
|
183
107
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/RequestManagement/resources/request/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AACA,2CAA6B;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/RequestManagement/resources/request/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AACA,2CAA6B;AA0EpB,kBAAG;AAzEZ,iDAAmC;AAyErB,wBAAM;AAxEpB,6DAA+C;AAwEzB,oCAAY;AAvElC,6DAA+C;AAuEX,oCAAY;AAtEhD,yEAA2D;AAsET,gDAAkB;AArEpE,2DAA6C;AAqEyB,kCAAW;AApEjF,2DAA6C;AAoEsC,4BAAQ;AAnE3F,oEAAsD;AAmEuC,kCAAW;AAjE3F,QAAA,WAAW,GAAsB;IAC7C;QACC,WAAW,EAAE,WAAW;QACxB,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,SAAS;QACf,gBAAgB,EAAE,IAAI;QACtB,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,SAAS,CAAC;aACrB;SACD;QACD,OAAO,EAAE;YACR;gBACC,IAAI,EAAE,yBAAyB;gBAC/B,KAAK,EAAE,aAAa;gBACpB,MAAM,EAAE,yBAAyB;aACjC;YACD;gBACC,IAAI,EAAE,yBAAyB;gBAC/B,KAAK,EAAE,cAAc;gBACrB,MAAM,EAAE,sCAAsC;aAC9C;YACD;gBACC,IAAI,EAAE,yBAAyB;gBAC/B,KAAK,EAAE,cAAc;gBACrB,MAAM,EAAE,sCAAsC;aAC9C;YACD;gBACC,IAAI,EAAE,KAAK;gBACX,KAAK,EAAE,KAAK;gBACZ,MAAM,EAAE,6BAA6B;aACrC;YACD;gBACC,IAAI,EAAE,sBAAsB;gBAC5B,KAAK,EAAE,aAAa;gBACpB,MAAM,EAAE,sBAAsB;aAC9B;YACD;gBACC,IAAI,EAAE,UAAU;gBAChB,KAAK,EAAE,QAAQ;gBACf,MAAM,EAAE,6BAA6B;aACrC;YACD;gBACC,IAAI,EAAE,sBAAsB;gBAC5B,KAAK,EAAE,UAAU;gBACjB,MAAM,EAAE,sBAAsB;aAC9B;YACD;gBACC,IAAI,EAAE,uBAAuB;gBAC7B,KAAK,EAAE,oBAAoB;gBAC3B,MAAM,EAAE,sCAAsC;aAC9C;SACD;QACD,OAAO,EAAE,KAAK;KACd;IACD,GAAG,GAAG,CAAC,cAAc;IACrB,GAAG,MAAM,CAAC,iBAAiB;IAC3B,GAAG,YAAY,CAAC,uBAAuB;IACvC,GAAG,YAAY,CAAC,uBAAuB;IACvC,GAAG,kBAAkB,CAAC,6BAA6B;IACnD,GAAG,WAAW,CAAC,sBAAsB;IACrC,GAAG,QAAQ,CAAC,mBAAmB;IAC/B,GAAG,WAAW,CAAC,sBAAsB;CACrC,CAAC"}
|
package/dist/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-basevn-request",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "n8n node for BaseVN Request
|
|
3
|
+
"version": "0.1.4",
|
|
4
|
+
"description": "n8n node for BaseVN Request Public API integration",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "",
|
|
7
7
|
"keywords": [
|
package/dist/request.svg
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="64" height="64">
|
|
3
|
+
<path d="M0 0 C8.04071716 5.46768767 14.35713546 11.78672485 16.953125 21.328125 C17.74189221 30.17882685 17.91316889 38.6261935 12.953125 46.328125 C12.51742187 47.03453125 12.08171875 47.7409375 11.6328125 48.46875 C8.21184824 53.51607431 4.31633937 56.4967834 -1.046875 59.328125 C-6.31689708 54.93643993 -11.39989551 50.3854871 -16.046875 45.328125 C-16.046875 44.998125 -16.046875 44.668125 -16.046875 44.328125 C-15.45519531 44.16957031 -14.86351562 44.01101562 -14.25390625 43.84765625 C-8.96938843 42.28730107 -5.59600651 40.76453939 -2.046875 36.328125 C-0.58822388 31.95217163 -0.21208008 27.73710462 -1.73046875 23.35546875 C-3.99870127 18.922533 -6.36372119 16.85915605 -11.046875 15.328125 C-17.44190444 14.61756617 -20.87464943 15.47430987 -26.046875 19.328125 C-28.90804146 23.91755499 -29.45135699 27.5522246 -29.55859375 32.9140625 C-29.57654495 33.61584625 -29.59449615 34.31763 -29.61299133 35.04067993 C-29.66676547 37.26143553 -29.70088193 39.4819804 -29.734375 41.703125 C-29.76757737 43.21747704 -29.80206971 44.73180138 -29.83789062 46.24609375 C-29.92247081 49.93990174 -29.9894385 53.63378379 -30.046875 57.328125 C-35.11398889 56.29290818 -38.41951254 53.49496926 -41.47265625 49.4296875 C-47.32021109 40.42548801 -47.8694285 31.77143089 -47.046875 21.328125 C-44.93491153 12.38705811 -38.21535454 5.54055679 -30.91796875 0.3359375 C-22.19133749 -4.36441921 -8.79370572 -4.76605425 0 0 Z " fill="#20BF6B" transform="translate(47.046875,2.671875)"/>
|
|
4
|
+
</svg>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"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.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.arraybuffer.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.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.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/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/n8n-workflow/dist/esm/execution-status.d.ts","../node_modules/n8n-workflow/dist/esm/result.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/global-state.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/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/index.d.ts","../credentials/RequestManagementApi.credentials.ts","../nodes/RequestManagement/shared/transport.ts","../nodes/RequestManagement/shared/utils.ts","../nodes/RequestManagement/shared/descriptions.ts","../nodes/RequestManagement/resources/group/get.ts","../nodes/RequestManagement/resources/group/getAll.ts","../nodes/RequestManagement/resources/group/index.ts","../nodes/RequestManagement/resources/request/get.ts","../nodes/RequestManagement/resources/request/getAll.ts","../nodes/RequestManagement/resources/request/createDirect.ts","../nodes/RequestManagement/resources/request/createCustom.ts","../nodes/RequestManagement/resources/request/getWithCustomTable.ts","../nodes/RequestManagement/resources/request/addFollower.ts","../nodes/RequestManagement/resources/post/getPosts.ts","../nodes/RequestManagement/resources/comment/getComments.ts","../nodes/RequestManagement/resources/request/index.ts","../nodes/RequestManagement/RequestManagement.node.ts","../nodes/RequestManagement/resources/comment/index.ts","../nodes/RequestManagement/resources/post/index.ts","../nodes/RequestManagement/RequestManagement.node.json","../package.json","../node_modules/@types/estree/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/parse-path/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"],"fileIdsList":[[131],[52],[52,53],[157,195],[157,180,195],[156,195],[195],[157],[157,181,195],[156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194],[181,195],[83],[88,89,90,91,92],[54,83],[59,83],[54],[55],[71],[59],[60],[54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76],[54,62,83],[62,63,83],[70],[67],[54,59,83],[64],[81,83],[122],[122,123],[111],[49,50,51,77,78,79,80,81,82,83,84,85,86,87,93,94,95,96,97,112,113,114,115,116,117,118,119,120,121,124,125,126,127,128,129,130],[48,49,50,51,60,63,64,67,70,77,78,79,81,82],[81,82,83],[80,83],[110],[98,99,110],[100,101],[98,99,100,102,103,108],[99,100],[108],[109],[100],[98,99,100,103,104,105,106,107],[131,138,147],[131,133,134,135],[131,146],[131,136,137],[131,145],[131,139,140,141,142,143,144,145,146]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"0d5f371d676acc073f0166b7fd967adeb6afa5f0967b9821d83c106f66cc458d","impliedFormat":1},{"version":"a588d1f897adf938963ef3d90c8038c3c5cd19ef88fbedda4cb1a77b8b7ba3e6","impliedFormat":1},{"version":"a0981ee0c7ac06bdb575558bd09bac190e1c0c7888ddcb63d8bf648f23a30e8c","impliedFormat":1},{"version":"00f11c3ec667314eaa2adfe253b5ebebbbdbb82510e04460c2f09d1c3b521d31","impliedFormat":1},{"version":"5c7a516e25a2fd1dc5e054c6161fe3c8ba46364f3784ef98f3fca48ab685231c","impliedFormat":1},{"version":"3ff739b7f819cfc12b330f9adcc4c3abbbd5e9f9ca68f53243222a049a8361a2","impliedFormat":1},{"version":"d762b92c1af47b7b3c4eef92fe9a3806194d9edc5dae6901342fc87ef21d7f4a","impliedFormat":1},{"version":"41d14b690d8d8c2a9b7395e8c36de6ca981010736723216ab9f35eb598e09ad9","impliedFormat":1},{"version":"3fdcca6b893ffd38b61b792772f649c82ae28077c360802cec25360eabca24c0","impliedFormat":1},{"version":"299924f7545be254b02278e4dcff7038611f2325d30f0e5ae4bcac906847c164","impliedFormat":1},{"version":"be1d650f04c9f472f0ad0ead3e1b7059dd1e0ff918f7bcb707786d27c3bbeadd","impliedFormat":1},{"version":"1e16c1b1c4d8600a146b15a933f9a880cc275c01f39dc436625f22d3cca46272","impliedFormat":1},{"version":"a631639d7f79f49f68a0ef6553baa1b977e06b230e768511812952709fe5c1f0","impliedFormat":1},{"version":"bf2aefef15e0b4d6bc8f4e19f967494b59b5f90a834de503c373df042513d924","impliedFormat":1},{"version":"4085248a1c89ee865cf9498402c90611d16920a6c9929f701ddc0b963ddad230","impliedFormat":1},{"version":"1a1acd3311ff1794be8401ee394efc3beeb1746068244eb0ee1d51d08e457401","impliedFormat":1},{"version":"ce0b4440a3dd75e14ca94b6d6b27fa26ca89e776d91b8803b3c86c4e8f06ed1a","impliedFormat":1},{"version":"37020cf15e16fa6e1c6e2485cd51d6cbe74adee3b860ab49fb7528ca7e8e518e","impliedFormat":1},{"version":"b6b1a3ff9ba1ddf1a908cfd1bcd471334ecd218a366460fc64c4561d6d0467a4","impliedFormat":1},{"version":"1950d2a49c05c7aa6decfe409b552c4ea5fb156894cf0541b34999819bd778ea","impliedFormat":1},{"version":"32fe829960ff7120843f6dd20197e863aee3e81ecded415641a7500654d1bda7","impliedFormat":1},{"version":"da73778888d41d0abe7d28a24529ba13ff0a9311d55e1902feee7ab97dc6a67d","impliedFormat":1},{"version":"393b1ed0dca4f0aac333e65f2e40dfedfa8b37ac60571e02b152d32d8c84d340","impliedFormat":1},{"version":"f46d50c283425bcc59d68ccf067b3672fb727f802652dc7d60d2e470fb956370","impliedFormat":1},{"version":"0e10fd1d283b4ba7b94f5abb1bc30a2070ccb16c22f86a2780bea8ddc48f3bf7","impliedFormat":1},{"version":"0b4b6ca509cdb152e18ceeed526d17bb416e7e518508d859a0174977195f9a35","impliedFormat":1},{"version":"79b9e661f99d6d01ad0031fbffbb20a8570ca526125a1b01ef5643c00348a8c4","impliedFormat":1},{"version":"deb85dff5a350bd77f24fb5665b7a3c95aa0d4556a0d45ab423ebf3ffcbc70ce","impliedFormat":1},{"version":"f3e1a9f8c28c949f8432b0ef8f0d2686ccc3e38dcc338bbc8a02f956bc7a0725","impliedFormat":1},{"version":"3226c2a2af36d14aa551babd4154ad18042c0deb1509a61058c6b066cfddc30a","impliedFormat":1},{"version":"64c9811ebae7d6bdd3749155911ca473017944d6e9787cec3d11549b05b19de9","impliedFormat":1},{"version":"9de23b9733565858ecfb3971e409970aaf7ec3bd2567aea9373c3b7cfd62f053","impliedFormat":1},{"version":"18c4c5d4069ae6ddce9443a6057fcf333688556b0d644813a78e604812f82bb3","impliedFormat":1},{"version":"6481b29f54e19becbeb7236c60043e2daa47b45cb4fd7e88f287df09250f2405","impliedFormat":1},{"version":"9c65acc70d6beb5cc45fcc39d211a34f686d39aaf3e33a10d28a3df9e6267ec7","impliedFormat":1},{"version":"01658146c02cba2e49ee7beaa0b90864e7a17c3d02cc39cd8b643b5be3a1a438","impliedFormat":1},{"version":"fcbfe8a05b4b1d990aaf289b951ca3fb16bd5aa18004f576283576069be59939","impliedFormat":1},{"version":"db18ec88a0f1512b153a28a0ed1e19f34530885bca1d00e5f17a6e9b3184697f","impliedFormat":1},{"version":"21f166065c0725ca16281aa2f05f5ee9fb556795c8426049bf44ee36bdca9afd","impliedFormat":1},{"version":"36cd04c9f4116122a3545fcc6da5e522861d739718ab3a3cb7ff2268612531aa","impliedFormat":1},{"version":"9ae86dde42766df895cde73c60dc13347cc30829c6696de3cc54036b3120a5ba","impliedFormat":1},{"version":"6823cce79c10482d0860d40ebbfc29f00ddf7f99bca0aa23330599ddd8baead4","impliedFormat":1},{"version":"30ed6587fb249cc1b0585bab7ce2ca81ef193bfe2934241b6f06ffefdaaf4bf9","impliedFormat":1},{"version":"aa18fcf8ad877a9eb0c357c247708f019e25c4d906e3025d73604b66de8d7f11","impliedFormat":1},{"version":"cfc5482e113e44dae9712ae0a4e412788622221ae5eb1327fb69a13a0f5af662","impliedFormat":1},{"version":"5e620d0ed3eeb9a9a767355547123c85aea7e8f26d90e94d0cc3fa457f1c2035","impliedFormat":1},{"version":"304b0d21771513c0a36ed7179a9d1069bfa776e95f50b789ce898f3ef2b71514","impliedFormat":1},{"version":"4904d7124f9731d2368b613523070ca594cbc82f172023b4b5678018be7b6022","impliedFormat":1},{"version":"18c078c2b34901a328c1fc3e5a2f5bd51aa0fef06a548418198955e0af5eaf39","impliedFormat":1},{"version":"d3cfde44f8089768ebb08098c96d01ca260b88bccf238d55eee93f1c620ff5a5","impliedFormat":1},{"version":"293eadad9dead44c6fd1db6de552663c33f215c55a1bfa2802a1bceed88ff0ec","impliedFormat":1},{"version":"54f6ec6ea75acea6eb23635617252d249145edbc7bcd9d53f2d70280d2aef953","impliedFormat":1},{"version":"c25ce98cca43a3bfa885862044be0d59557be4ecd06989b2001a83dcf69620fd","impliedFormat":1},{"version":"8e71e53b02c152a38af6aec45e288cc65bede077b92b9b43b3cb54a37978bb33","impliedFormat":1},{"version":"754a9396b14ca3a4241591afb4edc644b293ccc8a3397f49be4dfd520c08acb3","impliedFormat":1},{"version":"f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","impliedFormat":1},{"version":"e4b03ddcf8563b1c0aee782a185286ed85a255ce8a30df8453aade2188bbc904","impliedFormat":1},{"version":"de2316e90fc6d379d83002f04ad9698bc1e5285b4d52779778f454dd12ce9f44","impliedFormat":1},{"version":"25b3f581e12ede11e5739f57a86e8668fbc0124f6649506def306cad2c59d262","impliedFormat":1},{"version":"2da997a01a6aa5c5c09de5d28f0f4407b597c5e1aecfd32f1815809c532650a2","impliedFormat":1},{"version":"5d26d2e47e2352def36f89a3e8bf8581da22b7f857e07ef3114cd52cf4813445","impliedFormat":1},{"version":"3db2efd285e7328d8014b54a7fce3f4861ebcdc655df40517092ed0050983617","impliedFormat":1},{"version":"d5d39a24c759df40480a4bfc0daffd364489702fdbcbdfc1711cde34f8739995","impliedFormat":1},{"version":"581b97f369056070fafbe168120a192e918e67763116dfbbb2782bbca5f32111","impliedFormat":1},{"version":"74f9797560463a8c9070dd72c04b38cc17b79759b841e2a4175a11742f2ecd11","impliedFormat":1},{"version":"ce22b96ece23ecc9bc1f2a445afefa0a487f299986a1584887e4e4217e196963","impliedFormat":1},{"version":"4788f58342a67af140858e23a24cdf62457ec1ff79af68ac71b9d3c0c89bb53b","impliedFormat":1},{"version":"be19e5bce1b45d5c0ef87d46c3a95a991a3cd8b6c7cb4d756791756e69cc3568","impliedFormat":1},{"version":"e9634e0306920990ddca8f667e3cb624597ea7a4cd25d557a599c0e175419879","impliedFormat":1},{"version":"d4866c666180e89bdc142940cb2986a8fa9f3d2a363cc757bb61cef698b6e976","impliedFormat":1},{"version":"e73799489c16d7281d0466925ba620e9f804bb78400e0dbe04997b98407b1ab5","impliedFormat":1},{"version":"cb279466d8f2d95f3ee0a24637506b18d18d9b1cb869b4dbb534b7597b06daec","impliedFormat":1},{"version":"b33057a3c7ea75948a207a5b784726118ec60f882eeb875bd64e932b4cd41041","impliedFormat":1},{"version":"b773bcdaeda86c0f58910cecd6c77a0bd60be763127c42cad5a64fe66799b1f6","impliedFormat":1},{"version":"9e2e0b4711f1efef5c3c488616334ba2e5b911648a8784fd77fc8beb1e5047c9","impliedFormat":1},{"version":"ca1c4f7d0c786d90ab15a363d59d0e18269b393191ed7b2841547c0e187a8d35","impliedFormat":1},{"version":"0494f89b64c5e8906ce5284194e09bad42b56837757d79cb9e62ce16aae88ab4","impliedFormat":1},{"version":"28f1497962f8853339b46d766384abe7a907900998f551cf43cd793cdcb98e3d","impliedFormat":1},{"version":"e4cce0b510957aab4b12a0dc21a3b4857b8f8a85bbded2b8b81f836ca3c83dbc","impliedFormat":1},{"version":"79a0953f85a27dcaab70dd0e3791a3564631dfd5d85c637513027747c6844357","impliedFormat":1},{"version":"678c7436b7aa03dad934a96850ea395c018637013aa0b52a65898f502b4d6e2a","impliedFormat":1},{"version":"1c18a09d1deaf0e9906100ab54592f256f87fc94c67cce61bfc1c2ea44ac3d13","impliedFormat":1},{"version":"8a4470294a22dd13943cf7b946548fc302b79a10c618abae42a1bd6b2836df2d","impliedFormat":1},{"version":"10d51f5c352db78918460d965b225eeafb77f88931b0242bb03c88dabe8bc44a","signature":"e7a7349eb81b790a48f5be260f264a567004c7a1186d2fe044b4ea3db408ab40"},{"version":"2aa5be942cf4f2c39e153bfacec268645ca9de98b0d94c7e3f9eae2d9378cae0","signature":"747410d3c63a61f0eec8d8b239e053a847002b2bf19a2447fc24154f115eb8a1"},{"version":"dc23d5a782464f0fb4bd6f42548b9f70c201c1865bafec83c0639d8fb4154bc0","signature":"2d7ee25ae74c25a861c55d7807a93961eba98ca7f59a83bb013420ad6054952d"},{"version":"c04d952652ff311401be00ca6f77bfc1a1c0dff2309af4e3faaa4a3e3199a2e2","signature":"549b26263f8159ffd2097d0c8edb2ec6a7468a9bc25da472443d63bb1093e47e"},{"version":"80be4281e6b669992e04293edb830c85368ac6e544421e373f50b4e157704782","signature":"621623be056b21cf1c67d4f87f61c846b24a962deddca56af0a58ea2269c236c"},{"version":"ebc7f7ad3eeb3165b4da8ff0a98591f99675746df3829ac27a5d6786308dc3f3","signature":"b324c761386116ce06927bdcb17c997157b605b2e163f09db1994c1a99188675"},{"version":"7f6a58e734ff73ec8593ced3e53d389ab60f1181c881c6b6e7d17af95f474ade","signature":"ea27c960439c7a3841808a21156cf63a8f5975bab22bc6746c68a26231c1e191"},{"version":"180144b3b633b5f96927e01e04744dfa7460d449dde9687e38b5eacea8aef27c","signature":"621623be056b21cf1c67d4f87f61c846b24a962deddca56af0a58ea2269c236c"},{"version":"23fb09a70b885f690b5a56706dcd917894c63d28b688d04564b4f8ef729954ee","signature":"b324c761386116ce06927bdcb17c997157b605b2e163f09db1994c1a99188675"},{"version":"abe27982afc7a0e4a134339939eeb626158aba12f3cc9a028806f55b2336a975","signature":"78dcee2e29e989c9b731ec1091bf60c348069a2a78491e4cfdcde40066a01360"},{"version":"22813bbd659390233b2f6cb4915a0866be52942ccfe2a4fc7432280f5af3e18e","signature":"13b73cce787195e99908afa3b03cb3877d5b496f90764342246c47b171b594c3"},{"version":"0d385f47d6ceb6fdac7c373858874cc01f1bb76d5b938c1f382d6dbb92022d2a","signature":"a570ae95273a832825c2653d498b56e868a152b85f5daabb4f585a8fb17986ba"},{"version":"ad22351ad0657366dd1cd53d1adedec2835b4b4a1a700eecf8199fafe01647bf","signature":"f8dc00733826a6dc0709c7e258f8cbe4bbcdc0092a51ba8f61869f2b8cb8f3b6"},{"version":"cb88a80e5cf0aedf02ad084906050f990f652a7e8914f744b9604b420d731795","signature":"f06fabd86339878a4a0a0e36f6818456a52036344cf9d00ca7dbc0461ef21dcd"},{"version":"1de438e2f45a4ce3b1a4d0502905a8b95b5fe190285f83222754c35abf76a636","signature":"b3c490da6e87c7b3e6558c785477f2ef074de270a0d25d5742de42750ad76431"},{"version":"f3d9b4840fc68ea06dcfa1bf8d90377743c06252eb2d26683567b51761ed1af9","signature":"b3c9955e4d64e069d1b05d721b2ed52d22913d4f48128b641ee489416de62c77"},{"version":"eea0777fbde6f3805ef283e3aeecffd176df950d38f34e83f49343f500680248","signature":"6ba1d904efeb4594404366b4500e35dbe43e188c3220d5e211466daac9708119"},{"version":"013885c33d955155f3d41c91064d3701a0914ac48b74664fb2a55d16e8b026cf","signature":"3288a80e0de95aff58b1ffb316644c94d72165127dd6f14d80658636d1d7a146"},{"version":"681bb8f438a6aa4763fc289e1f027efd8e98d64e9dd49dc1537d303715592701","signature":"9d32a5536c6564a74340c053bbbee8a6c280096485fad71a24546d045f1c649a"},"331e9f7978c92f11c0b69983097b89c8912921eb5104454d0934657a5ce70334","958cd2e96bd7aa17cae4daea2be4ba142331cae4d38bcc7719cc9f34842bb714",{"version":"151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"e72bcd16c134dae5a840b1d5d0e8b87e1d07fbbff01d66e9a7b913da3cd39b8e","impliedFormat":1},{"version":"ce6a3f09b8db73a7e9701aca91a04b4fabaf77436dd35b24482f9ee816016b17","impliedFormat":1},{"version":"20e086e5b64fdd52396de67761cc0e94693494deadb731264aac122adf08de3f","impliedFormat":1},{"version":"6e78f75403b3ec65efb41c70d392aeda94360f11cedc9fb2c039c9ea23b30962","impliedFormat":1},{"version":"c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","impliedFormat":1},{"version":"8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","impliedFormat":1},{"version":"42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","impliedFormat":1},{"version":"ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","impliedFormat":1},{"version":"83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","impliedFormat":1},{"version":"1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","impliedFormat":1},{"version":"0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","impliedFormat":1},{"version":"cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","impliedFormat":1},{"version":"c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","impliedFormat":1},{"version":"eefd2bbc8edb14c3bd1246794e5c070a80f9b8f3730bd42efb80df3cc50b9039","impliedFormat":1},{"version":"0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","impliedFormat":1},{"version":"7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","impliedFormat":1},{"version":"bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","impliedFormat":1},{"version":"52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","impliedFormat":1},{"version":"770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","impliedFormat":1},{"version":"d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","impliedFormat":1},{"version":"799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","impliedFormat":1},{"version":"2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","impliedFormat":1},{"version":"9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","impliedFormat":1},{"version":"397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","impliedFormat":1},{"version":"a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","impliedFormat":1},{"version":"a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","impliedFormat":1},{"version":"c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","impliedFormat":1},{"version":"4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","impliedFormat":1},{"version":"f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","impliedFormat":1},{"version":"cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","impliedFormat":1},{"version":"b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","impliedFormat":1},{"version":"c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","impliedFormat":1},{"version":"14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","impliedFormat":1},{"version":"a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","impliedFormat":1},{"version":"f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","impliedFormat":1},{"version":"3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","impliedFormat":1},{"version":"662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","impliedFormat":1},{"version":"c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","impliedFormat":1},{"version":"2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"a56fe175741cc8841835eb72e61fa5a34adcbc249ede0e3494c229f0750f6b85","impliedFormat":1}],"root":[[132,152]],"options":{"declaration":true,"esModuleInterop":true,"module":1,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"outDir":"./","preserveConstEnums":true,"removeComments":true,"skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"target":6,"useUnknownInCatchVariables":false},"referencedMap":[[132,1],[53,2],[54,3],[180,4],[181,5],[157,6],[160,7],[178,4],[179,4],[169,4],[168,8],[166,4],[161,4],[174,4],[172,4],[176,4],[156,4],[173,4],[177,4],[162,4],[163,4],[175,4],[158,4],[164,4],[165,4],[167,4],[171,4],[182,9],[170,4],[159,4],[195,10],[189,9],[191,11],[190,9],[183,9],[184,9],[186,9],[188,9],[192,11],[193,11],[185,11],[187,11],[88,12],[89,12],[90,12],[91,12],[93,13],[92,12],[94,12],[59,14],[62,15],[55,16],[56,17],[57,17],[58,17],[72,18],[75,16],[61,19],[74,20],[60,19],[77,21],[63,22],[64,23],[66,19],[71,24],[73,14],[68,25],[67,26],[65,27],[69,25],[70,15],[80,28],[123,29],[124,30],[112,31],[121,12],[131,32],[83,33],[84,12],[96,12],[115,1],[126,29],[85,28],[127,14],[128,12],[114,12],[86,12],[87,12],[113,12],[120,12],[118,12],[119,12],[117,12],[116,34],[81,35],[111,36],[100,37],[102,38],[109,39],[103,40],[106,41],[110,42],[101,43],[108,44],[148,45],[146,46],[149,47],[136,46],[137,46],[138,48],[145,46],[150,49],[144,46],[142,46],[141,46],[139,46],[140,46],[143,46],[147,50],[135,1],[133,1],[134,1]],"version":"5.9.2"}
|
|
1
|
+
{"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.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.arraybuffer.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.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.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/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/n8n-workflow/dist/esm/execution-status.d.ts","../node_modules/n8n-workflow/dist/esm/result.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/global-state.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/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/index.d.ts","../credentials/RequestManagementApi.credentials.ts","../nodes/RequestManagement/shared/transport.ts","../nodes/RequestManagement/shared/utils.ts","../nodes/RequestManagement/shared/descriptions.ts","../nodes/RequestManagement/resources/group/get.ts","../nodes/RequestManagement/resources/group/getAll.ts","../nodes/RequestManagement/resources/group/index.ts","../nodes/RequestManagement/resources/request/get.ts","../nodes/RequestManagement/resources/request/getAll.ts","../nodes/RequestManagement/resources/request/createDirect.ts","../nodes/RequestManagement/resources/request/createCustom.ts","../nodes/RequestManagement/resources/request/getWithCustomTable.ts","../nodes/RequestManagement/resources/request/addFollower.ts","../nodes/RequestManagement/resources/post/getPosts.ts","../nodes/RequestManagement/resources/comment/getComments.ts","../nodes/RequestManagement/resources/request/index.ts","../nodes/RequestManagement/RequestManagement.node.ts","../nodes/RequestManagement/resources/comment/index.ts","../nodes/RequestManagement/resources/post/index.ts","../nodes/RequestManagement/RequestManagement.node.json","../package.json","../node_modules/@types/estree/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/parse-path/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"],"fileIdsList":[[131],[52],[52,53],[157,195],[157,180,195],[156,195],[195],[157],[157,181,195],[156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194],[181,195],[83],[88,89,90,91,92],[54,83],[59,83],[54],[55],[71],[59],[60],[54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76],[54,62,83],[62,63,83],[70],[67],[54,59,83],[64],[81,83],[122],[122,123],[111],[49,50,51,77,78,79,80,81,82,83,84,85,86,87,93,94,95,96,97,112,113,114,115,116,117,118,119,120,121,124,125,126,127,128,129,130],[48,49,50,51,60,63,64,67,70,77,78,79,81,82],[81,82,83],[80,83],[110],[98,99,110],[100,101],[98,99,100,102,103,108],[99,100],[108],[109],[100],[98,99,100,103,104,105,106,107],[131,138,147],[131,133,134,135],[131,146],[131,136,137],[131,145],[131,139,140,141,142,143,144,145,146]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"0d5f371d676acc073f0166b7fd967adeb6afa5f0967b9821d83c106f66cc458d","impliedFormat":1},{"version":"a588d1f897adf938963ef3d90c8038c3c5cd19ef88fbedda4cb1a77b8b7ba3e6","impliedFormat":1},{"version":"a0981ee0c7ac06bdb575558bd09bac190e1c0c7888ddcb63d8bf648f23a30e8c","impliedFormat":1},{"version":"00f11c3ec667314eaa2adfe253b5ebebbbdbb82510e04460c2f09d1c3b521d31","impliedFormat":1},{"version":"5c7a516e25a2fd1dc5e054c6161fe3c8ba46364f3784ef98f3fca48ab685231c","impliedFormat":1},{"version":"3ff739b7f819cfc12b330f9adcc4c3abbbd5e9f9ca68f53243222a049a8361a2","impliedFormat":1},{"version":"d762b92c1af47b7b3c4eef92fe9a3806194d9edc5dae6901342fc87ef21d7f4a","impliedFormat":1},{"version":"41d14b690d8d8c2a9b7395e8c36de6ca981010736723216ab9f35eb598e09ad9","impliedFormat":1},{"version":"3fdcca6b893ffd38b61b792772f649c82ae28077c360802cec25360eabca24c0","impliedFormat":1},{"version":"299924f7545be254b02278e4dcff7038611f2325d30f0e5ae4bcac906847c164","impliedFormat":1},{"version":"be1d650f04c9f472f0ad0ead3e1b7059dd1e0ff918f7bcb707786d27c3bbeadd","impliedFormat":1},{"version":"1e16c1b1c4d8600a146b15a933f9a880cc275c01f39dc436625f22d3cca46272","impliedFormat":1},{"version":"a631639d7f79f49f68a0ef6553baa1b977e06b230e768511812952709fe5c1f0","impliedFormat":1},{"version":"bf2aefef15e0b4d6bc8f4e19f967494b59b5f90a834de503c373df042513d924","impliedFormat":1},{"version":"4085248a1c89ee865cf9498402c90611d16920a6c9929f701ddc0b963ddad230","impliedFormat":1},{"version":"1a1acd3311ff1794be8401ee394efc3beeb1746068244eb0ee1d51d08e457401","impliedFormat":1},{"version":"ce0b4440a3dd75e14ca94b6d6b27fa26ca89e776d91b8803b3c86c4e8f06ed1a","impliedFormat":1},{"version":"37020cf15e16fa6e1c6e2485cd51d6cbe74adee3b860ab49fb7528ca7e8e518e","impliedFormat":1},{"version":"b6b1a3ff9ba1ddf1a908cfd1bcd471334ecd218a366460fc64c4561d6d0467a4","impliedFormat":1},{"version":"1950d2a49c05c7aa6decfe409b552c4ea5fb156894cf0541b34999819bd778ea","impliedFormat":1},{"version":"32fe829960ff7120843f6dd20197e863aee3e81ecded415641a7500654d1bda7","impliedFormat":1},{"version":"da73778888d41d0abe7d28a24529ba13ff0a9311d55e1902feee7ab97dc6a67d","impliedFormat":1},{"version":"393b1ed0dca4f0aac333e65f2e40dfedfa8b37ac60571e02b152d32d8c84d340","impliedFormat":1},{"version":"f46d50c283425bcc59d68ccf067b3672fb727f802652dc7d60d2e470fb956370","impliedFormat":1},{"version":"0e10fd1d283b4ba7b94f5abb1bc30a2070ccb16c22f86a2780bea8ddc48f3bf7","impliedFormat":1},{"version":"0b4b6ca509cdb152e18ceeed526d17bb416e7e518508d859a0174977195f9a35","impliedFormat":1},{"version":"79b9e661f99d6d01ad0031fbffbb20a8570ca526125a1b01ef5643c00348a8c4","impliedFormat":1},{"version":"deb85dff5a350bd77f24fb5665b7a3c95aa0d4556a0d45ab423ebf3ffcbc70ce","impliedFormat":1},{"version":"f3e1a9f8c28c949f8432b0ef8f0d2686ccc3e38dcc338bbc8a02f956bc7a0725","impliedFormat":1},{"version":"3226c2a2af36d14aa551babd4154ad18042c0deb1509a61058c6b066cfddc30a","impliedFormat":1},{"version":"64c9811ebae7d6bdd3749155911ca473017944d6e9787cec3d11549b05b19de9","impliedFormat":1},{"version":"9de23b9733565858ecfb3971e409970aaf7ec3bd2567aea9373c3b7cfd62f053","impliedFormat":1},{"version":"18c4c5d4069ae6ddce9443a6057fcf333688556b0d644813a78e604812f82bb3","impliedFormat":1},{"version":"6481b29f54e19becbeb7236c60043e2daa47b45cb4fd7e88f287df09250f2405","impliedFormat":1},{"version":"9c65acc70d6beb5cc45fcc39d211a34f686d39aaf3e33a10d28a3df9e6267ec7","impliedFormat":1},{"version":"01658146c02cba2e49ee7beaa0b90864e7a17c3d02cc39cd8b643b5be3a1a438","impliedFormat":1},{"version":"fcbfe8a05b4b1d990aaf289b951ca3fb16bd5aa18004f576283576069be59939","impliedFormat":1},{"version":"db18ec88a0f1512b153a28a0ed1e19f34530885bca1d00e5f17a6e9b3184697f","impliedFormat":1},{"version":"21f166065c0725ca16281aa2f05f5ee9fb556795c8426049bf44ee36bdca9afd","impliedFormat":1},{"version":"36cd04c9f4116122a3545fcc6da5e522861d739718ab3a3cb7ff2268612531aa","impliedFormat":1},{"version":"9ae86dde42766df895cde73c60dc13347cc30829c6696de3cc54036b3120a5ba","impliedFormat":1},{"version":"6823cce79c10482d0860d40ebbfc29f00ddf7f99bca0aa23330599ddd8baead4","impliedFormat":1},{"version":"30ed6587fb249cc1b0585bab7ce2ca81ef193bfe2934241b6f06ffefdaaf4bf9","impliedFormat":1},{"version":"aa18fcf8ad877a9eb0c357c247708f019e25c4d906e3025d73604b66de8d7f11","impliedFormat":1},{"version":"cfc5482e113e44dae9712ae0a4e412788622221ae5eb1327fb69a13a0f5af662","impliedFormat":1},{"version":"5e620d0ed3eeb9a9a767355547123c85aea7e8f26d90e94d0cc3fa457f1c2035","impliedFormat":1},{"version":"304b0d21771513c0a36ed7179a9d1069bfa776e95f50b789ce898f3ef2b71514","impliedFormat":1},{"version":"4904d7124f9731d2368b613523070ca594cbc82f172023b4b5678018be7b6022","impliedFormat":1},{"version":"18c078c2b34901a328c1fc3e5a2f5bd51aa0fef06a548418198955e0af5eaf39","impliedFormat":1},{"version":"d3cfde44f8089768ebb08098c96d01ca260b88bccf238d55eee93f1c620ff5a5","impliedFormat":1},{"version":"293eadad9dead44c6fd1db6de552663c33f215c55a1bfa2802a1bceed88ff0ec","impliedFormat":1},{"version":"54f6ec6ea75acea6eb23635617252d249145edbc7bcd9d53f2d70280d2aef953","impliedFormat":1},{"version":"c25ce98cca43a3bfa885862044be0d59557be4ecd06989b2001a83dcf69620fd","impliedFormat":1},{"version":"8e71e53b02c152a38af6aec45e288cc65bede077b92b9b43b3cb54a37978bb33","impliedFormat":1},{"version":"754a9396b14ca3a4241591afb4edc644b293ccc8a3397f49be4dfd520c08acb3","impliedFormat":1},{"version":"f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","impliedFormat":1},{"version":"e4b03ddcf8563b1c0aee782a185286ed85a255ce8a30df8453aade2188bbc904","impliedFormat":1},{"version":"de2316e90fc6d379d83002f04ad9698bc1e5285b4d52779778f454dd12ce9f44","impliedFormat":1},{"version":"25b3f581e12ede11e5739f57a86e8668fbc0124f6649506def306cad2c59d262","impliedFormat":1},{"version":"2da997a01a6aa5c5c09de5d28f0f4407b597c5e1aecfd32f1815809c532650a2","impliedFormat":1},{"version":"5d26d2e47e2352def36f89a3e8bf8581da22b7f857e07ef3114cd52cf4813445","impliedFormat":1},{"version":"3db2efd285e7328d8014b54a7fce3f4861ebcdc655df40517092ed0050983617","impliedFormat":1},{"version":"d5d39a24c759df40480a4bfc0daffd364489702fdbcbdfc1711cde34f8739995","impliedFormat":1},{"version":"581b97f369056070fafbe168120a192e918e67763116dfbbb2782bbca5f32111","impliedFormat":1},{"version":"74f9797560463a8c9070dd72c04b38cc17b79759b841e2a4175a11742f2ecd11","impliedFormat":1},{"version":"ce22b96ece23ecc9bc1f2a445afefa0a487f299986a1584887e4e4217e196963","impliedFormat":1},{"version":"4788f58342a67af140858e23a24cdf62457ec1ff79af68ac71b9d3c0c89bb53b","impliedFormat":1},{"version":"be19e5bce1b45d5c0ef87d46c3a95a991a3cd8b6c7cb4d756791756e69cc3568","impliedFormat":1},{"version":"e9634e0306920990ddca8f667e3cb624597ea7a4cd25d557a599c0e175419879","impliedFormat":1},{"version":"d4866c666180e89bdc142940cb2986a8fa9f3d2a363cc757bb61cef698b6e976","impliedFormat":1},{"version":"e73799489c16d7281d0466925ba620e9f804bb78400e0dbe04997b98407b1ab5","impliedFormat":1},{"version":"cb279466d8f2d95f3ee0a24637506b18d18d9b1cb869b4dbb534b7597b06daec","impliedFormat":1},{"version":"b33057a3c7ea75948a207a5b784726118ec60f882eeb875bd64e932b4cd41041","impliedFormat":1},{"version":"b773bcdaeda86c0f58910cecd6c77a0bd60be763127c42cad5a64fe66799b1f6","impliedFormat":1},{"version":"9e2e0b4711f1efef5c3c488616334ba2e5b911648a8784fd77fc8beb1e5047c9","impliedFormat":1},{"version":"ca1c4f7d0c786d90ab15a363d59d0e18269b393191ed7b2841547c0e187a8d35","impliedFormat":1},{"version":"0494f89b64c5e8906ce5284194e09bad42b56837757d79cb9e62ce16aae88ab4","impliedFormat":1},{"version":"28f1497962f8853339b46d766384abe7a907900998f551cf43cd793cdcb98e3d","impliedFormat":1},{"version":"e4cce0b510957aab4b12a0dc21a3b4857b8f8a85bbded2b8b81f836ca3c83dbc","impliedFormat":1},{"version":"79a0953f85a27dcaab70dd0e3791a3564631dfd5d85c637513027747c6844357","impliedFormat":1},{"version":"678c7436b7aa03dad934a96850ea395c018637013aa0b52a65898f502b4d6e2a","impliedFormat":1},{"version":"1c18a09d1deaf0e9906100ab54592f256f87fc94c67cce61bfc1c2ea44ac3d13","impliedFormat":1},{"version":"8a4470294a22dd13943cf7b946548fc302b79a10c618abae42a1bd6b2836df2d","impliedFormat":1},{"version":"61c4563a09da03bd0583ece729010f97d515f7aac7198ba7ce73f60054fd9957","signature":"e7a7349eb81b790a48f5be260f264a567004c7a1186d2fe044b4ea3db408ab40"},{"version":"8355172955dad8117cd94668ab09605cce35bd33c62aaadb3a8d01590a5c149b","signature":"747410d3c63a61f0eec8d8b239e053a847002b2bf19a2447fc24154f115eb8a1"},{"version":"dc23d5a782464f0fb4bd6f42548b9f70c201c1865bafec83c0639d8fb4154bc0","signature":"2d7ee25ae74c25a861c55d7807a93961eba98ca7f59a83bb013420ad6054952d"},{"version":"c04d952652ff311401be00ca6f77bfc1a1c0dff2309af4e3faaa4a3e3199a2e2","signature":"549b26263f8159ffd2097d0c8edb2ec6a7468a9bc25da472443d63bb1093e47e"},{"version":"2ed0eb26e9925118550b0ba0b8103409247b8662c5d40305a354cf7cf7a1db76","signature":"621623be056b21cf1c67d4f87f61c846b24a962deddca56af0a58ea2269c236c"},{"version":"3bb6ba91238065f02ccc41d46839c7d25e1e0b6db31d820c5c373364c3a2b9e0","signature":"b324c761386116ce06927bdcb17c997157b605b2e163f09db1994c1a99188675"},{"version":"c986770d40362ea098d8c6b333d4d64480af71f4f2a639f4e3d5602ff898728a","signature":"ea27c960439c7a3841808a21156cf63a8f5975bab22bc6746c68a26231c1e191"},{"version":"6521a3edbcfe2f896a0c53f9f27321d71617cc6c7246f4ac12bfc3cca77903ad","signature":"621623be056b21cf1c67d4f87f61c846b24a962deddca56af0a58ea2269c236c"},{"version":"8bf75595cc67ad828e99ad421c00b6c5741010e71d045e82413d1b54b4df39c2","signature":"b324c761386116ce06927bdcb17c997157b605b2e163f09db1994c1a99188675"},{"version":"5300bd7944d04004e69b82aba77eb07bd65d8a3ade6bb1ce10f90a1f0ad191b1","signature":"78dcee2e29e989c9b731ec1091bf60c348069a2a78491e4cfdcde40066a01360"},{"version":"14426dede3c44c44a9641d88b6b6ecba9f6552cf02df1c9a8745c8d3abfae6e6","signature":"13b73cce787195e99908afa3b03cb3877d5b496f90764342246c47b171b594c3"},{"version":"b97ca4e411f37ba30412bf39ff3636e142d0cc9cf6dc629699e2800231d1e9a1","signature":"a570ae95273a832825c2653d498b56e868a152b85f5daabb4f585a8fb17986ba"},{"version":"3d0b8af6578bbd3497b5b34f8748f373d485d410b9464d94e48cdca8ad01ca1a","signature":"f8dc00733826a6dc0709c7e258f8cbe4bbcdc0092a51ba8f61869f2b8cb8f3b6"},{"version":"282f4a6e01fb2b4f5911d63f319b5ea5b3663201b7856d405f44885fa9b177ab","signature":"f06fabd86339878a4a0a0e36f6818456a52036344cf9d00ca7dbc0461ef21dcd"},{"version":"e03fdbb86601d66c315072c40f9033ac3bd326d3b52267e658a9ae208b69f483","signature":"b3c490da6e87c7b3e6558c785477f2ef074de270a0d25d5742de42750ad76431"},{"version":"f524ffad02ffe40c7dcba9508c453b23b0647d813008c7548d24fc21a0ae48b5","signature":"b3c9955e4d64e069d1b05d721b2ed52d22913d4f48128b641ee489416de62c77"},{"version":"17356cc14dadcd15cc3504e4c4850b5b9c01c989b852f3ea8a90e78d0698a0f2","signature":"6ba1d904efeb4594404366b4500e35dbe43e188c3220d5e211466daac9708119"},{"version":"013885c33d955155f3d41c91064d3701a0914ac48b74664fb2a55d16e8b026cf","signature":"3288a80e0de95aff58b1ffb316644c94d72165127dd6f14d80658636d1d7a146"},{"version":"681bb8f438a6aa4763fc289e1f027efd8e98d64e9dd49dc1537d303715592701","signature":"9d32a5536c6564a74340c053bbbee8a6c280096485fad71a24546d045f1c649a"},"331e9f7978c92f11c0b69983097b89c8912921eb5104454d0934657a5ce70334","dd0e12a557f02e34b51fb2e5b7b227e8d4767f7794d9a54426b6a4c56edd1397",{"version":"151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"e72bcd16c134dae5a840b1d5d0e8b87e1d07fbbff01d66e9a7b913da3cd39b8e","impliedFormat":1},{"version":"ce6a3f09b8db73a7e9701aca91a04b4fabaf77436dd35b24482f9ee816016b17","impliedFormat":1},{"version":"20e086e5b64fdd52396de67761cc0e94693494deadb731264aac122adf08de3f","impliedFormat":1},{"version":"6e78f75403b3ec65efb41c70d392aeda94360f11cedc9fb2c039c9ea23b30962","impliedFormat":1},{"version":"c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","impliedFormat":1},{"version":"8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","impliedFormat":1},{"version":"42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","impliedFormat":1},{"version":"ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","impliedFormat":1},{"version":"83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","impliedFormat":1},{"version":"1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","impliedFormat":1},{"version":"0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","impliedFormat":1},{"version":"cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","impliedFormat":1},{"version":"c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","impliedFormat":1},{"version":"eefd2bbc8edb14c3bd1246794e5c070a80f9b8f3730bd42efb80df3cc50b9039","impliedFormat":1},{"version":"0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","impliedFormat":1},{"version":"7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","impliedFormat":1},{"version":"bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","impliedFormat":1},{"version":"52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","impliedFormat":1},{"version":"770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","impliedFormat":1},{"version":"d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","impliedFormat":1},{"version":"799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","impliedFormat":1},{"version":"2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","impliedFormat":1},{"version":"9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","impliedFormat":1},{"version":"397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","impliedFormat":1},{"version":"a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","impliedFormat":1},{"version":"a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","impliedFormat":1},{"version":"c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","impliedFormat":1},{"version":"4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","impliedFormat":1},{"version":"f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","impliedFormat":1},{"version":"cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","impliedFormat":1},{"version":"b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","impliedFormat":1},{"version":"c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","impliedFormat":1},{"version":"14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","impliedFormat":1},{"version":"a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","impliedFormat":1},{"version":"f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","impliedFormat":1},{"version":"3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","impliedFormat":1},{"version":"662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","impliedFormat":1},{"version":"c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","impliedFormat":1},{"version":"2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"a56fe175741cc8841835eb72e61fa5a34adcbc249ede0e3494c229f0750f6b85","impliedFormat":1}],"root":[[132,152]],"options":{"declaration":true,"esModuleInterop":true,"module":1,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"outDir":"./","preserveConstEnums":true,"removeComments":true,"skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"target":6,"useUnknownInCatchVariables":false},"referencedMap":[[132,1],[53,2],[54,3],[180,4],[181,5],[157,6],[160,7],[178,4],[179,4],[169,4],[168,8],[166,4],[161,4],[174,4],[172,4],[176,4],[156,4],[173,4],[177,4],[162,4],[163,4],[175,4],[158,4],[164,4],[165,4],[167,4],[171,4],[182,9],[170,4],[159,4],[195,10],[189,9],[191,11],[190,9],[183,9],[184,9],[186,9],[188,9],[192,11],[193,11],[185,11],[187,11],[88,12],[89,12],[90,12],[91,12],[93,13],[92,12],[94,12],[59,14],[62,15],[55,16],[56,17],[57,17],[58,17],[72,18],[75,16],[61,19],[74,20],[60,19],[77,21],[63,22],[64,23],[66,19],[71,24],[73,14],[68,25],[67,26],[65,27],[69,25],[70,15],[80,28],[123,29],[124,30],[112,31],[121,12],[131,32],[83,33],[84,12],[96,12],[115,1],[126,29],[85,28],[127,14],[128,12],[114,12],[86,12],[87,12],[113,12],[120,12],[118,12],[119,12],[117,12],[116,34],[81,35],[111,36],[100,37],[102,38],[109,39],[103,40],[106,41],[110,42],[101,43],[108,44],[148,45],[146,46],[149,47],[136,46],[137,46],[138,48],[145,46],[150,49],[144,46],[142,46],[141,46],[139,46],[140,46],[143,46],[147,50],[135,1],[133,1],[134,1]],"version":"5.9.2"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-basevn-request",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "n8n node for BaseVN Request
|
|
3
|
+
"version": "0.1.5",
|
|
4
|
+
"description": "n8n node for BaseVN Request Public API integration",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "",
|
|
7
7
|
"keywords": [
|