n8n-nodes-feedjolt 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/LICENSE.md +19 -0
- package/README.md +46 -0
- package/dist/credentials/FeedjoltApi.credentials.d.ts +10 -0
- package/dist/credentials/FeedjoltApi.credentials.js +39 -0
- package/dist/credentials/FeedjoltApi.credentials.js.map +1 -0
- package/dist/icons/feedjolt.dark.svg +4 -0
- package/dist/icons/feedjolt.svg +4 -0
- package/dist/nodes/Feedjolt/Feedjolt.node.d.ts +4 -0
- package/dist/nodes/Feedjolt/Feedjolt.node.js +395 -0
- package/dist/nodes/Feedjolt/Feedjolt.node.js.map +1 -0
- package/dist/nodes/Feedjolt/Feedjolt.node.json +10 -0
- package/dist/nodes/FeedjoltTrigger/FeedjoltTrigger.node.d.ts +5 -0
- package/dist/nodes/FeedjoltTrigger/FeedjoltTrigger.node.js +103 -0
- package/dist/nodes/FeedjoltTrigger/FeedjoltTrigger.node.js.map +1 -0
- package/dist/nodes/FeedjoltTrigger/FeedjoltTrigger.node.json +10 -0
- package/dist/package.json +59 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +59 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Luodaint LLC
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/LICENSE.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Copyright 2022 n8n
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
4
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
5
|
+
the Software without restriction, including without limitation the rights to
|
|
6
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
7
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
8
|
+
so, subject to the following conditions:
|
|
9
|
+
|
|
10
|
+
The above copyright notice and this permission notice shall be included in all
|
|
11
|
+
copies or substantial portions of the Software.
|
|
12
|
+
|
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
19
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# n8n-nodes-feedjolt
|
|
2
|
+
|
|
3
|
+
Community node for [Feedjolt](https://www.feedjolt.com) — customer feedback boards, posts, roadmap, and changelog.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
**Not on npm yet.** Self-hosted n8n can install straight from GitHub:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
mkdir -p ~/.n8n/nodes && cd ~/.n8n/nodes
|
|
11
|
+
npm install github:luodaint/n8n-nodes-feedjolt
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
Then restart n8n. Enable community packages (`N8N_COMMUNITY_PACKAGES_ENABLED=true`). On n8n 2.x you may also need `N8N_UNVERIFIED_PACKAGES_ENABLED=true` until the package is verified.
|
|
15
|
+
|
|
16
|
+
Settings → Community nodes by package name only works after an npm publish (with GitHub Actions provenance for Creator Portal verification). Do not publish until the maintainer says go.
|
|
17
|
+
|
|
18
|
+
Local development:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
npm install
|
|
22
|
+
npm run build
|
|
23
|
+
npm run dev
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Credentials
|
|
27
|
+
|
|
28
|
+
Create a workspace API key in Feedjolt (starts with `fjk_`). The node sends `Authorization: Bearer fjk_…`.
|
|
29
|
+
|
|
30
|
+
The workspace slug you pass must match the key’s workspace.
|
|
31
|
+
|
|
32
|
+
> Cursor / agent MCP uses OAuth 2.1 on `/mcp/reader/` and `/mcp/writer/`. This n8n package talks to the REST API with API keys.
|
|
33
|
+
|
|
34
|
+
## Nodes
|
|
35
|
+
|
|
36
|
+
- **Feedjolt** — workspace, boards, posts (list / get / search / create / update status), roadmap, changelog, statuses, tags
|
|
37
|
+
- **Feedjolt Trigger** — poll for new posts (optional board filter)
|
|
38
|
+
|
|
39
|
+
## Docs
|
|
40
|
+
|
|
41
|
+
- Developers: https://www.feedjolt.com/en/docs/developers
|
|
42
|
+
- OpenAPI: https://api.feedjolt.com/openapi.json
|
|
43
|
+
|
|
44
|
+
## License
|
|
45
|
+
|
|
46
|
+
MIT
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { IAuthenticateGeneric, Icon, ICredentialTestRequest, ICredentialType, INodeProperties } from 'n8n-workflow';
|
|
2
|
+
export declare class FeedjoltApi implements ICredentialType {
|
|
3
|
+
name: string;
|
|
4
|
+
displayName: string;
|
|
5
|
+
icon: Icon;
|
|
6
|
+
documentationUrl: string;
|
|
7
|
+
properties: INodeProperties[];
|
|
8
|
+
authenticate: IAuthenticateGeneric;
|
|
9
|
+
test: ICredentialTestRequest;
|
|
10
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FeedjoltApi = void 0;
|
|
4
|
+
class FeedjoltApi {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.name = 'feedjoltApi';
|
|
7
|
+
this.displayName = 'Feedjolt API';
|
|
8
|
+
this.icon = { light: 'file:../icons/feedjolt.svg', dark: 'file:../icons/feedjolt.dark.svg' };
|
|
9
|
+
this.documentationUrl = 'https://www.feedjolt.com/en/docs/developers';
|
|
10
|
+
this.properties = [
|
|
11
|
+
{
|
|
12
|
+
displayName: 'API Key',
|
|
13
|
+
name: 'apiKey',
|
|
14
|
+
type: 'string',
|
|
15
|
+
typeOptions: { password: true },
|
|
16
|
+
default: '',
|
|
17
|
+
required: true,
|
|
18
|
+
description: 'Workspace API key (starts with fjk_). Create it in Feedjolt workspace settings.',
|
|
19
|
+
},
|
|
20
|
+
];
|
|
21
|
+
this.authenticate = {
|
|
22
|
+
type: 'generic',
|
|
23
|
+
properties: {
|
|
24
|
+
headers: {
|
|
25
|
+
Authorization: '=Bearer {{$credentials.apiKey}}',
|
|
26
|
+
},
|
|
27
|
+
},
|
|
28
|
+
};
|
|
29
|
+
this.test = {
|
|
30
|
+
request: {
|
|
31
|
+
baseURL: 'https://api.feedjolt.com/api/v1',
|
|
32
|
+
url: '/workspaces',
|
|
33
|
+
method: 'GET',
|
|
34
|
+
},
|
|
35
|
+
};
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
exports.FeedjoltApi = FeedjoltApi;
|
|
39
|
+
//# sourceMappingURL=FeedjoltApi.credentials.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FeedjoltApi.credentials.js","sourceRoot":"","sources":["../../credentials/FeedjoltApi.credentials.ts"],"names":[],"mappings":";;;AAQA,MAAa,WAAW;IAAxB;QACC,SAAI,GAAG,aAAa,CAAC;QAErB,gBAAW,GAAG,cAAc,CAAC;QAE7B,SAAI,GAAS,EAAE,KAAK,EAAE,4BAA4B,EAAE,IAAI,EAAE,iCAAiC,EAAE,CAAC;QAE9F,qBAAgB,GAAG,6CAA6C,CAAC;QAEjE,eAAU,GAAsB;YAC/B;gBACC,WAAW,EAAE,SAAS;gBACtB,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE;gBAC/B,OAAO,EAAE,EAAE;gBACX,QAAQ,EAAE,IAAI;gBACd,WAAW,EAAE,iFAAiF;aAC9F;SACD,CAAC;QAEF,iBAAY,GAAyB;YACpC,IAAI,EAAE,SAAS;YACf,UAAU,EAAE;gBACX,OAAO,EAAE;oBACR,aAAa,EAAE,iCAAiC;iBAChD;aACD;SACD,CAAC;QAEF,SAAI,GAA2B;YAC9B,OAAO,EAAE;gBACR,OAAO,EAAE,iCAAiC;gBAC1C,GAAG,EAAE,aAAa;gBAClB,MAAM,EAAE,KAAK;aACb;SACD,CAAC;IACH,CAAC;CAAA;AArCD,kCAqCC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 62" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="feedjolt">
|
|
2
|
+
<path d="M14 6 h36 a8 8 0 0 1 8 8 v26 a8 8 0 0 1 -8 8 h-14 l-11 10 v-10 h-11 a8 8 0 0 1 -8 -8 v-26 a8 8 0 0 1 8 -8 z" fill="#4B1FAB"/>
|
|
3
|
+
<path d="M36 12 L20 34 h8 l-4 14 L44 26 h-8 l4 -14 z" fill="#FFD91A" stroke="#3A1588" stroke-width="1.3" stroke-linejoin="round"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 62" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="feedjolt">
|
|
2
|
+
<path d="M14 6 h36 a8 8 0 0 1 8 8 v26 a8 8 0 0 1 -8 8 h-14 l-11 10 v-10 h-11 a8 8 0 0 1 -8 -8 v-26 a8 8 0 0 1 8 -8 z" fill="#4B1FAB"/>
|
|
3
|
+
<path d="M36 12 L20 34 h8 l-4 14 L44 26 h-8 l4 -14 z" fill="#FFD91A" stroke="#3A1588" stroke-width="1.3" stroke-linejoin="round"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,395 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Feedjolt = void 0;
|
|
4
|
+
const n8n_workflow_1 = require("n8n-workflow");
|
|
5
|
+
class Feedjolt {
|
|
6
|
+
constructor() {
|
|
7
|
+
this.description = {
|
|
8
|
+
displayName: 'Feedjolt',
|
|
9
|
+
name: 'feedjolt',
|
|
10
|
+
icon: { light: 'file:../../icons/feedjolt.svg', dark: 'file:../../icons/feedjolt.dark.svg' },
|
|
11
|
+
group: ['transform'],
|
|
12
|
+
version: 1,
|
|
13
|
+
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
14
|
+
description: 'Customer feedback boards and posts via the Feedjolt API',
|
|
15
|
+
defaults: {
|
|
16
|
+
name: 'Feedjolt',
|
|
17
|
+
},
|
|
18
|
+
usableAsTool: true,
|
|
19
|
+
inputs: [n8n_workflow_1.NodeConnectionTypes.Main],
|
|
20
|
+
outputs: [n8n_workflow_1.NodeConnectionTypes.Main],
|
|
21
|
+
credentials: [
|
|
22
|
+
{
|
|
23
|
+
name: 'feedjoltApi',
|
|
24
|
+
required: true,
|
|
25
|
+
},
|
|
26
|
+
],
|
|
27
|
+
requestDefaults: {
|
|
28
|
+
baseURL: 'https://api.feedjolt.com/api/v1',
|
|
29
|
+
headers: {
|
|
30
|
+
Accept: 'application/json',
|
|
31
|
+
'Content-Type': 'application/json',
|
|
32
|
+
},
|
|
33
|
+
},
|
|
34
|
+
properties: [
|
|
35
|
+
{
|
|
36
|
+
displayName: 'Resource',
|
|
37
|
+
name: 'resource',
|
|
38
|
+
type: 'options',
|
|
39
|
+
noDataExpression: true,
|
|
40
|
+
options: [
|
|
41
|
+
{ name: 'Board', value: 'board' },
|
|
42
|
+
{ name: 'Changelog', value: 'changelog' },
|
|
43
|
+
{ name: 'Post', value: 'post' },
|
|
44
|
+
{ name: 'Roadmap', value: 'roadmap' },
|
|
45
|
+
{ name: 'Status', value: 'status' },
|
|
46
|
+
{ name: 'Tag', value: 'tag' },
|
|
47
|
+
{ name: 'Workspace', value: 'workspace' },
|
|
48
|
+
],
|
|
49
|
+
default: 'post',
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
displayName: 'Operation',
|
|
53
|
+
name: 'operation',
|
|
54
|
+
type: 'options',
|
|
55
|
+
noDataExpression: true,
|
|
56
|
+
displayOptions: { show: { resource: ['workspace'] } },
|
|
57
|
+
options: [
|
|
58
|
+
{
|
|
59
|
+
name: 'Get Many',
|
|
60
|
+
value: 'getAll',
|
|
61
|
+
action: 'List workspaces',
|
|
62
|
+
description: 'List workspaces for this API key',
|
|
63
|
+
routing: {
|
|
64
|
+
request: { method: 'GET', url: '/workspaces' },
|
|
65
|
+
},
|
|
66
|
+
},
|
|
67
|
+
],
|
|
68
|
+
default: 'getAll',
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
displayName: 'Operation',
|
|
72
|
+
name: 'operation',
|
|
73
|
+
type: 'options',
|
|
74
|
+
noDataExpression: true,
|
|
75
|
+
displayOptions: { show: { resource: ['board'] } },
|
|
76
|
+
options: [
|
|
77
|
+
{
|
|
78
|
+
name: 'Get Many',
|
|
79
|
+
value: 'getAll',
|
|
80
|
+
action: 'List boards',
|
|
81
|
+
routing: {
|
|
82
|
+
request: {
|
|
83
|
+
method: 'GET',
|
|
84
|
+
url: '=/workspaces/{{$parameter.workspaceSlug}}/boards',
|
|
85
|
+
},
|
|
86
|
+
},
|
|
87
|
+
},
|
|
88
|
+
],
|
|
89
|
+
default: 'getAll',
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
displayName: 'Operation',
|
|
93
|
+
name: 'operation',
|
|
94
|
+
type: 'options',
|
|
95
|
+
noDataExpression: true,
|
|
96
|
+
displayOptions: { show: { resource: ['post'] } },
|
|
97
|
+
options: [
|
|
98
|
+
{
|
|
99
|
+
name: 'Create',
|
|
100
|
+
value: 'create',
|
|
101
|
+
action: 'Create a post',
|
|
102
|
+
routing: {
|
|
103
|
+
request: {
|
|
104
|
+
method: 'POST',
|
|
105
|
+
url: '=/workspaces/{{$parameter.workspaceSlug}}/boards/{{$parameter.boardSlug}}/posts',
|
|
106
|
+
},
|
|
107
|
+
},
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
name: 'Get',
|
|
111
|
+
value: 'get',
|
|
112
|
+
action: 'Get a post',
|
|
113
|
+
routing: {
|
|
114
|
+
request: {
|
|
115
|
+
method: 'GET',
|
|
116
|
+
url: '=/workspaces/{{$parameter.workspaceSlug}}/posts/{{$parameter.postId}}',
|
|
117
|
+
},
|
|
118
|
+
},
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
name: 'Get Many',
|
|
122
|
+
value: 'getAll',
|
|
123
|
+
action: 'List posts',
|
|
124
|
+
routing: {
|
|
125
|
+
request: {
|
|
126
|
+
method: 'GET',
|
|
127
|
+
url: '=/workspaces/{{$parameter.workspaceSlug}}/posts',
|
|
128
|
+
},
|
|
129
|
+
},
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
name: 'Search',
|
|
133
|
+
value: 'search',
|
|
134
|
+
action: 'Search posts',
|
|
135
|
+
routing: {
|
|
136
|
+
request: {
|
|
137
|
+
method: 'GET',
|
|
138
|
+
url: '=/workspaces/{{$parameter.workspaceSlug}}/posts/search',
|
|
139
|
+
},
|
|
140
|
+
},
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
name: 'Update Status',
|
|
144
|
+
value: 'updateStatus',
|
|
145
|
+
action: 'Change post status',
|
|
146
|
+
routing: {
|
|
147
|
+
request: {
|
|
148
|
+
method: 'PUT',
|
|
149
|
+
url: '=/workspaces/{{$parameter.workspaceSlug}}/posts/{{$parameter.postId}}/status',
|
|
150
|
+
},
|
|
151
|
+
},
|
|
152
|
+
},
|
|
153
|
+
],
|
|
154
|
+
default: 'getAll',
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
displayName: 'Operation',
|
|
158
|
+
name: 'operation',
|
|
159
|
+
type: 'options',
|
|
160
|
+
noDataExpression: true,
|
|
161
|
+
displayOptions: { show: { resource: ['roadmap'] } },
|
|
162
|
+
options: [
|
|
163
|
+
{
|
|
164
|
+
name: 'Get',
|
|
165
|
+
value: 'get',
|
|
166
|
+
action: 'Get roadmap',
|
|
167
|
+
routing: {
|
|
168
|
+
request: {
|
|
169
|
+
method: 'GET',
|
|
170
|
+
url: '=/workspaces/{{$parameter.workspaceSlug}}/roadmap',
|
|
171
|
+
},
|
|
172
|
+
},
|
|
173
|
+
},
|
|
174
|
+
],
|
|
175
|
+
default: 'get',
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
displayName: 'Operation',
|
|
179
|
+
name: 'operation',
|
|
180
|
+
type: 'options',
|
|
181
|
+
noDataExpression: true,
|
|
182
|
+
displayOptions: { show: { resource: ['changelog'] } },
|
|
183
|
+
options: [
|
|
184
|
+
{
|
|
185
|
+
name: 'Get Many',
|
|
186
|
+
value: 'getAll',
|
|
187
|
+
action: 'List changelog',
|
|
188
|
+
routing: {
|
|
189
|
+
request: {
|
|
190
|
+
method: 'GET',
|
|
191
|
+
url: '=/workspaces/{{$parameter.workspaceSlug}}/changelog',
|
|
192
|
+
},
|
|
193
|
+
},
|
|
194
|
+
},
|
|
195
|
+
],
|
|
196
|
+
default: 'getAll',
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
displayName: 'Operation',
|
|
200
|
+
name: 'operation',
|
|
201
|
+
type: 'options',
|
|
202
|
+
noDataExpression: true,
|
|
203
|
+
displayOptions: { show: { resource: ['status'] } },
|
|
204
|
+
options: [
|
|
205
|
+
{
|
|
206
|
+
name: 'Get Many',
|
|
207
|
+
value: 'getAll',
|
|
208
|
+
action: 'List statuses',
|
|
209
|
+
routing: {
|
|
210
|
+
request: {
|
|
211
|
+
method: 'GET',
|
|
212
|
+
url: '=/workspaces/{{$parameter.workspaceSlug}}/statuses',
|
|
213
|
+
},
|
|
214
|
+
},
|
|
215
|
+
},
|
|
216
|
+
],
|
|
217
|
+
default: 'getAll',
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
displayName: 'Operation',
|
|
221
|
+
name: 'operation',
|
|
222
|
+
type: 'options',
|
|
223
|
+
noDataExpression: true,
|
|
224
|
+
displayOptions: { show: { resource: ['tag'] } },
|
|
225
|
+
options: [
|
|
226
|
+
{
|
|
227
|
+
name: 'Get Many',
|
|
228
|
+
value: 'getAll',
|
|
229
|
+
action: 'List tags',
|
|
230
|
+
routing: {
|
|
231
|
+
request: {
|
|
232
|
+
method: 'GET',
|
|
233
|
+
url: '=/workspaces/{{$parameter.workspaceSlug}}/tags',
|
|
234
|
+
},
|
|
235
|
+
},
|
|
236
|
+
},
|
|
237
|
+
],
|
|
238
|
+
default: 'getAll',
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
displayName: 'Workspace Slug',
|
|
242
|
+
name: 'workspaceSlug',
|
|
243
|
+
type: 'string',
|
|
244
|
+
required: true,
|
|
245
|
+
default: '',
|
|
246
|
+
placeholder: 'luodaint',
|
|
247
|
+
description: 'Must match the workspace the API key belongs to',
|
|
248
|
+
displayOptions: {
|
|
249
|
+
show: {
|
|
250
|
+
resource: ['board', 'post', 'roadmap', 'changelog', 'status', 'tag'],
|
|
251
|
+
},
|
|
252
|
+
},
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
displayName: 'Board Slug',
|
|
256
|
+
name: 'boardSlug',
|
|
257
|
+
type: 'string',
|
|
258
|
+
required: true,
|
|
259
|
+
default: '',
|
|
260
|
+
displayOptions: {
|
|
261
|
+
show: { resource: ['post'], operation: ['create'] },
|
|
262
|
+
},
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
displayName: 'Title',
|
|
266
|
+
name: 'title',
|
|
267
|
+
type: 'string',
|
|
268
|
+
required: true,
|
|
269
|
+
default: '',
|
|
270
|
+
displayOptions: {
|
|
271
|
+
show: { resource: ['post'], operation: ['create'] },
|
|
272
|
+
},
|
|
273
|
+
routing: {
|
|
274
|
+
send: { type: 'body', property: 'title' },
|
|
275
|
+
},
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
displayName: 'Body',
|
|
279
|
+
name: 'body',
|
|
280
|
+
type: 'string',
|
|
281
|
+
typeOptions: { rows: 4 },
|
|
282
|
+
default: '',
|
|
283
|
+
displayOptions: {
|
|
284
|
+
show: { resource: ['post'], operation: ['create'] },
|
|
285
|
+
},
|
|
286
|
+
routing: {
|
|
287
|
+
send: { type: 'body', property: 'body' },
|
|
288
|
+
},
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
displayName: 'Is Internal',
|
|
292
|
+
name: 'isInternal',
|
|
293
|
+
type: 'boolean',
|
|
294
|
+
default: false,
|
|
295
|
+
displayOptions: {
|
|
296
|
+
show: { resource: ['post'], operation: ['create'] },
|
|
297
|
+
},
|
|
298
|
+
routing: {
|
|
299
|
+
send: { type: 'body', property: 'is_internal' },
|
|
300
|
+
},
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
displayName: 'Post ID',
|
|
304
|
+
name: 'postId',
|
|
305
|
+
type: 'string',
|
|
306
|
+
required: true,
|
|
307
|
+
default: '',
|
|
308
|
+
displayOptions: {
|
|
309
|
+
show: { resource: ['post'], operation: ['get', 'updateStatus'] },
|
|
310
|
+
},
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
displayName: 'Status ID',
|
|
314
|
+
name: 'statusId',
|
|
315
|
+
type: 'string',
|
|
316
|
+
required: true,
|
|
317
|
+
default: '',
|
|
318
|
+
displayOptions: {
|
|
319
|
+
show: { resource: ['post'], operation: ['updateStatus'] },
|
|
320
|
+
},
|
|
321
|
+
routing: {
|
|
322
|
+
send: { type: 'body', property: 'status_id' },
|
|
323
|
+
},
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
displayName: 'Search Query',
|
|
327
|
+
name: 'q',
|
|
328
|
+
type: 'string',
|
|
329
|
+
required: true,
|
|
330
|
+
default: '',
|
|
331
|
+
description: 'Min 2 characters',
|
|
332
|
+
displayOptions: {
|
|
333
|
+
show: { resource: ['post'], operation: ['search'] },
|
|
334
|
+
},
|
|
335
|
+
routing: {
|
|
336
|
+
send: { type: 'query', property: 'q' },
|
|
337
|
+
},
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
displayName: 'Limit',
|
|
341
|
+
name: 'limit',
|
|
342
|
+
type: 'number',
|
|
343
|
+
typeOptions: { minValue: 1, maxValue: 100 },
|
|
344
|
+
default: 50,
|
|
345
|
+
description: 'Max number of results to return',
|
|
346
|
+
displayOptions: {
|
|
347
|
+
show: { resource: ['post'], operation: ['getAll'] },
|
|
348
|
+
},
|
|
349
|
+
routing: {
|
|
350
|
+
send: { type: 'query', property: 'page_size' },
|
|
351
|
+
},
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
displayName: 'Board ID',
|
|
355
|
+
name: 'boardId',
|
|
356
|
+
type: 'string',
|
|
357
|
+
default: '',
|
|
358
|
+
displayOptions: {
|
|
359
|
+
show: { resource: ['post'], operation: ['getAll'] },
|
|
360
|
+
},
|
|
361
|
+
routing: {
|
|
362
|
+
send: { type: 'query', property: 'board_id' },
|
|
363
|
+
},
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
displayName: 'Sort By',
|
|
367
|
+
name: 'sortBy',
|
|
368
|
+
type: 'string',
|
|
369
|
+
default: 'newest',
|
|
370
|
+
displayOptions: {
|
|
371
|
+
show: { resource: ['post'], operation: ['getAll'] },
|
|
372
|
+
},
|
|
373
|
+
routing: {
|
|
374
|
+
send: { type: 'query', property: 'sort_by' },
|
|
375
|
+
},
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
displayName: 'Limit',
|
|
379
|
+
name: 'changelogLimit',
|
|
380
|
+
type: 'number',
|
|
381
|
+
typeOptions: { minValue: 1, maxValue: 100 },
|
|
382
|
+
default: 20,
|
|
383
|
+
displayOptions: {
|
|
384
|
+
show: { resource: ['changelog'], operation: ['getAll'] },
|
|
385
|
+
},
|
|
386
|
+
routing: {
|
|
387
|
+
send: { type: 'query', property: 'page_size' },
|
|
388
|
+
},
|
|
389
|
+
},
|
|
390
|
+
],
|
|
391
|
+
};
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
exports.Feedjolt = Feedjolt;
|
|
395
|
+
//# sourceMappingURL=Feedjolt.node.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Feedjolt.node.js","sourceRoot":"","sources":["../../../nodes/Feedjolt/Feedjolt.node.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"node": "n8n-nodes-feedjolt.feedjolt",
|
|
3
|
+
"nodeVersion": "1.0",
|
|
4
|
+
"codexVersion": "1.0",
|
|
5
|
+
"categories": ["Productivity"],
|
|
6
|
+
"resources": {
|
|
7
|
+
"credentialDocumentation": [{ "url": "https://www.feedjolt.com/en/docs/developers" }],
|
|
8
|
+
"primaryDocumentation": [{ "url": "https://www.feedjolt.com/en/docs/developers" }]
|
|
9
|
+
}
|
|
10
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { type INodeExecutionData, type INodeType, type INodeTypeDescription, type IPollFunctions } from 'n8n-workflow';
|
|
2
|
+
export declare class FeedjoltTrigger implements INodeType {
|
|
3
|
+
description: INodeTypeDescription;
|
|
4
|
+
poll(this: IPollFunctions): Promise<INodeExecutionData[][] | null>;
|
|
5
|
+
}
|