n8n-nodes-redlib 0.1.1

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.
Files changed (59) hide show
  1. package/LICENSE.md +19 -0
  2. package/README.md +247 -0
  3. package/dist/credentials/GithubIssuesApi.credentials.d.ts +10 -0
  4. package/dist/credentials/GithubIssuesApi.credentials.js +37 -0
  5. package/dist/credentials/GithubIssuesApi.credentials.js.map +1 -0
  6. package/dist/credentials/GithubIssuesOAuth2Api.credentials.d.ts +9 -0
  7. package/dist/credentials/GithubIssuesOAuth2Api.credentials.js +54 -0
  8. package/dist/credentials/GithubIssuesOAuth2Api.credentials.js.map +1 -0
  9. package/dist/icons/github.dark.svg +3 -0
  10. package/dist/icons/github.svg +3 -0
  11. package/dist/nodes/Example/Example.node.d.ts +5 -0
  12. package/dist/nodes/Example/Example.node.js +61 -0
  13. package/dist/nodes/Example/Example.node.js.map +1 -0
  14. package/dist/nodes/Example/Example.node.json +18 -0
  15. package/dist/nodes/Example/example.dark.svg +13 -0
  16. package/dist/nodes/Example/example.svg +13 -0
  17. package/dist/nodes/GithubIssues/GithubIssues.node.d.ts +14 -0
  18. package/dist/nodes/GithubIssues/GithubIssues.node.js +101 -0
  19. package/dist/nodes/GithubIssues/GithubIssues.node.js.map +1 -0
  20. package/dist/nodes/GithubIssues/GithubIssues.node.json +18 -0
  21. package/dist/nodes/GithubIssues/listSearch/getIssues.d.ts +2 -0
  22. package/dist/nodes/GithubIssues/listSearch/getIssues.js +28 -0
  23. package/dist/nodes/GithubIssues/listSearch/getIssues.js.map +1 -0
  24. package/dist/nodes/GithubIssues/listSearch/getRepositories.d.ts +2 -0
  25. package/dist/nodes/GithubIssues/listSearch/getRepositories.js +31 -0
  26. package/dist/nodes/GithubIssues/listSearch/getRepositories.js.map +1 -0
  27. package/dist/nodes/GithubIssues/listSearch/getUsers.d.ts +2 -0
  28. package/dist/nodes/GithubIssues/listSearch/getUsers.js +29 -0
  29. package/dist/nodes/GithubIssues/listSearch/getUsers.js.map +1 -0
  30. package/dist/nodes/GithubIssues/resources/issue/create.d.ts +2 -0
  31. package/dist/nodes/GithubIssues/resources/issue/create.js +75 -0
  32. package/dist/nodes/GithubIssues/resources/issue/create.js.map +1 -0
  33. package/dist/nodes/GithubIssues/resources/issue/get.d.ts +2 -0
  34. package/dist/nodes/GithubIssues/resources/issue/get.js +15 -0
  35. package/dist/nodes/GithubIssues/resources/issue/get.js.map +1 -0
  36. package/dist/nodes/GithubIssues/resources/issue/getAll.d.ts +2 -0
  37. package/dist/nodes/GithubIssues/resources/issue/getAll.js +125 -0
  38. package/dist/nodes/GithubIssues/resources/issue/getAll.js.map +1 -0
  39. package/dist/nodes/GithubIssues/resources/issue/index.d.ts +2 -0
  40. package/dist/nodes/GithubIssues/resources/issue/index.js +76 -0
  41. package/dist/nodes/GithubIssues/resources/issue/index.js.map +1 -0
  42. package/dist/nodes/GithubIssues/resources/issueComment/getAll.d.ts +2 -0
  43. package/dist/nodes/GithubIssues/resources/issueComment/getAll.js +66 -0
  44. package/dist/nodes/GithubIssues/resources/issueComment/getAll.js.map +1 -0
  45. package/dist/nodes/GithubIssues/resources/issueComment/index.d.ts +2 -0
  46. package/dist/nodes/GithubIssues/resources/issueComment/index.js +48 -0
  47. package/dist/nodes/GithubIssues/resources/issueComment/index.js.map +1 -0
  48. package/dist/nodes/GithubIssues/shared/descriptions.d.ts +4 -0
  49. package/dist/nodes/GithubIssues/shared/descriptions.js +151 -0
  50. package/dist/nodes/GithubIssues/shared/descriptions.js.map +1 -0
  51. package/dist/nodes/GithubIssues/shared/transport.d.ts +2 -0
  52. package/dist/nodes/GithubIssues/shared/transport.js +16 -0
  53. package/dist/nodes/GithubIssues/shared/transport.js.map +1 -0
  54. package/dist/nodes/GithubIssues/shared/utils.d.ts +3 -0
  55. package/dist/nodes/GithubIssues/shared/utils.js +17 -0
  56. package/dist/nodes/GithubIssues/shared/utils.js.map +1 -0
  57. package/dist/package.json +51 -0
  58. package/dist/tsconfig.tsbuildinfo +1 -0
  59. package/package.json +51 -0
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,247 @@
1
+ ![Banner image](https://user-images.githubusercontent.com/10284570/173569848-c624317f-42b1-45a6-ab09-f0ea3c247648.png)
2
+
3
+ # n8n-nodes-redlib
4
+
5
+ This starter repository helps you build custom integrations for [n8n](https://n8n.io). It includes example nodes, credentials, the node linter, and all the tooling you need to get started.
6
+
7
+ ## Quick Start
8
+
9
+ > [!TIP]
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:**
19
+
20
+ ```bash
21
+ npm run dev
22
+ ```
23
+
24
+ This starts n8n with your nodes loaded and hot reload enabled.
25
+
26
+ ## What's Included
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.
42
+
43
+ Browse these examples to understand both approaches, then modify them or create your own.
44
+
45
+ ## Finding Inspiration
46
+
47
+ Looking for more examples? Check out these resources:
48
+
49
+ - **[npm Community Nodes](https://www.npmjs.com/search?q=keywords:n8n-community-node-package)** - Browse thousands of community-built nodes on npm using the `n8n-community-node-package` tag
50
+ - **[n8n Built-in Nodes](https://github.com/n8n-io/n8n/tree/master/packages/nodes-base/nodes)** - Study the source code of n8n's official nodes for production-ready patterns and best practices
51
+ - **[n8n Credentials](https://github.com/n8n-io/n8n/tree/master/packages/nodes-base/credentials)** - See how authentication is implemented for various services
52
+
53
+ These are excellent resources to understand how to structure your nodes, handle different API patterns, and implement advanced features.
54
+
55
+ ## Prerequisites
56
+
57
+ Before you begin, install the following on your development machine:
58
+
59
+ ### Required
60
+
61
+ - **[Node.js](https://nodejs.org/)** (v22 or higher) and npm
62
+ - Linux/Mac/WSL: Install via [nvm](https://github.com/nvm-sh/nvm)
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)**
65
+
66
+ ### Recommended
67
+
68
+ - Follow n8n's [development environment setup guide](https://docs.n8n.io/integrations/creating-nodes/build/node-development-environment/)
69
+
70
+ > [!NOTE]
71
+ > The `@n8n/node-cli` is included as a dev dependency and will be installed automatically when you run `npm install`. The CLI includes n8n for local development, so you don't need to install n8n globally.
72
+
73
+ ## Getting Started with this Starter
74
+
75
+ Follow these steps to create your own n8n community node package:
76
+
77
+ ### 1. Create Your Repository
78
+
79
+ [Generate a new repository](https://github.com/n8n-io/n8n-nodes-starter/generate) from this template, then clone it:
80
+
81
+ ```bash
82
+ git clone https://github.com/<your-organization>/<your-repo-name>.git
83
+ cd <your-repo-name>
84
+ ```
85
+
86
+ ### 2. Install Dependencies
87
+
88
+ ```bash
89
+ npm install
90
+ ```
91
+
92
+ This installs all required dependencies including the `@n8n/node-cli`.
93
+
94
+ ### 3. Explore the Examples
95
+
96
+ Browse the example nodes in [nodes/](nodes/) and [credentials/](credentials/) to understand the structure:
97
+
98
+ - Start with [nodes/Example/](nodes/Example/) for a basic node
99
+ - Study [nodes/GithubIssues/](nodes/GithubIssues/) for a real-world implementation
100
+
101
+ ### 4. Build Your Node
102
+
103
+ Edit the example nodes to fit your use case, or create new node files by copying the structure from [nodes/Example/](nodes/Example/).
104
+
105
+ > [!TIP]
106
+ > 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
+
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
+
247
+ [MIT](https://github.com/n8n-io/n8n-nodes-starter/blob/master/LICENSE.md)
@@ -0,0 +1,10 @@
1
+ import type { IAuthenticateGeneric, Icon, ICredentialTestRequest, ICredentialType, INodeProperties } from 'n8n-workflow';
2
+ export declare class GithubIssuesApi 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,37 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GithubIssuesApi = void 0;
4
+ class GithubIssuesApi {
5
+ constructor() {
6
+ this.name = 'githubIssuesApi';
7
+ this.displayName = 'GitHub Issues API';
8
+ this.icon = { light: 'file:../icons/github.svg', dark: 'file:../icons/github.dark.svg' };
9
+ this.documentationUrl = 'https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens#deleting-a-personal-access-token';
10
+ this.properties = [
11
+ {
12
+ displayName: 'Access Token',
13
+ name: 'accessToken',
14
+ type: 'string',
15
+ typeOptions: { password: true },
16
+ default: '',
17
+ },
18
+ ];
19
+ this.authenticate = {
20
+ type: 'generic',
21
+ properties: {
22
+ headers: {
23
+ Authorization: '=token {{$credentials?.accessToken}}',
24
+ },
25
+ },
26
+ };
27
+ this.test = {
28
+ request: {
29
+ baseURL: 'https://api.github.com',
30
+ url: '/user',
31
+ method: 'GET',
32
+ },
33
+ };
34
+ }
35
+ }
36
+ exports.GithubIssuesApi = GithubIssuesApi;
37
+ //# sourceMappingURL=GithubIssuesApi.credentials.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GithubIssuesApi.credentials.js","sourceRoot":"","sources":["../../credentials/GithubIssuesApi.credentials.ts"],"names":[],"mappings":";;;AAQA,MAAa,eAAe;IAA5B;QACC,SAAI,GAAG,iBAAiB,CAAC;QAEzB,gBAAW,GAAG,mBAAmB,CAAC;QAElC,SAAI,GAAS,EAAE,KAAK,EAAE,0BAA0B,EAAE,IAAI,EAAE,+BAA+B,EAAE,CAAC;QAE1F,qBAAgB,GACf,sJAAsJ,CAAC;QAExJ,eAAU,GAAsB;YAC/B;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;aACX;SACD,CAAC;QAEF,iBAAY,GAAyB;YACpC,IAAI,EAAE,SAAS;YACf,UAAU,EAAE;gBACX,OAAO,EAAE;oBACR,aAAa,EAAE,sCAAsC;iBACrD;aACD;SACD,CAAC;QAEF,SAAI,GAA2B;YAC9B,OAAO,EAAE;gBACR,OAAO,EAAE,wBAAwB;gBACjC,GAAG,EAAE,OAAO;gBACZ,MAAM,EAAE,KAAK;aACb;SACD,CAAC;IACH,CAAC;CAAA;AApCD,0CAoCC"}
@@ -0,0 +1,9 @@
1
+ import type { Icon, ICredentialType, INodeProperties } from 'n8n-workflow';
2
+ export declare class GithubIssuesOAuth2Api implements ICredentialType {
3
+ name: string;
4
+ extends: string[];
5
+ displayName: string;
6
+ icon: Icon;
7
+ documentationUrl: string;
8
+ properties: INodeProperties[];
9
+ }
@@ -0,0 +1,54 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GithubIssuesOAuth2Api = void 0;
4
+ class GithubIssuesOAuth2Api {
5
+ constructor() {
6
+ this.name = 'githubIssuesOAuth2Api';
7
+ this.extends = ['oAuth2Api'];
8
+ this.displayName = 'GitHub Issues OAuth2 API';
9
+ this.icon = { light: 'file:../icons/github.svg', dark: 'file:../icons/github.dark.svg' };
10
+ this.documentationUrl = 'https://docs.github.com/en/apps/oauth-apps';
11
+ this.properties = [
12
+ {
13
+ displayName: 'Grant Type',
14
+ name: 'grantType',
15
+ type: 'hidden',
16
+ default: 'authorizationCode',
17
+ },
18
+ {
19
+ displayName: 'Authorization URL',
20
+ name: 'authUrl',
21
+ type: 'hidden',
22
+ default: 'https://github.com/login/oauth/authorize',
23
+ required: true,
24
+ },
25
+ {
26
+ displayName: 'Access Token URL',
27
+ name: 'accessTokenUrl',
28
+ type: 'hidden',
29
+ default: 'https://github.com/login/oauth/access_token',
30
+ required: true,
31
+ },
32
+ {
33
+ displayName: 'Scope',
34
+ name: 'scope',
35
+ type: 'hidden',
36
+ default: 'repo',
37
+ },
38
+ {
39
+ displayName: 'Auth URI Query Parameters',
40
+ name: 'authQueryParameters',
41
+ type: 'hidden',
42
+ default: '',
43
+ },
44
+ {
45
+ displayName: 'Authentication',
46
+ name: 'authentication',
47
+ type: 'hidden',
48
+ default: 'header',
49
+ },
50
+ ];
51
+ }
52
+ }
53
+ exports.GithubIssuesOAuth2Api = GithubIssuesOAuth2Api;
54
+ //# sourceMappingURL=GithubIssuesOAuth2Api.credentials.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GithubIssuesOAuth2Api.credentials.js","sourceRoot":"","sources":["../../credentials/GithubIssuesOAuth2Api.credentials.ts"],"names":[],"mappings":";;;AAEA,MAAa,qBAAqB;IAAlC;QACC,SAAI,GAAG,uBAAuB,CAAC;QAE/B,YAAO,GAAG,CAAC,WAAW,CAAC,CAAC;QAExB,gBAAW,GAAG,0BAA0B,CAAC;QAEzC,SAAI,GAAS,EAAE,KAAK,EAAE,0BAA0B,EAAE,IAAI,EAAE,+BAA+B,EAAE,CAAC;QAE1F,qBAAgB,GAAG,4CAA4C,CAAC;QAEhE,eAAU,GAAsB;YAC/B;gBACC,WAAW,EAAE,YAAY;gBACzB,IAAI,EAAE,WAAW;gBACjB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,mBAAmB;aAC5B;YACD;gBACC,WAAW,EAAE,mBAAmB;gBAChC,IAAI,EAAE,SAAS;gBACf,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,0CAA0C;gBACnD,QAAQ,EAAE,IAAI;aACd;YACD;gBACC,WAAW,EAAE,kBAAkB;gBAC/B,IAAI,EAAE,gBAAgB;gBACtB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,6CAA6C;gBACtD,QAAQ,EAAE,IAAI;aACd;YACD;gBACC,WAAW,EAAE,OAAO;gBACpB,IAAI,EAAE,OAAO;gBACb,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,MAAM;aACf;YACD;gBACC,WAAW,EAAE,2BAA2B;gBACxC,IAAI,EAAE,qBAAqB;gBAC3B,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;aACX;YACD;gBACC,WAAW,EAAE,gBAAgB;gBAC7B,IAAI,EAAE,gBAAgB;gBACtB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,QAAQ;aACjB;SACD,CAAC;IACH,CAAC;CAAA;AAnDD,sDAmDC"}
@@ -0,0 +1,3 @@
1
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M20.0165 0C8.94791 0 0 9.01388 0 20.1653C0 29.0792 5.73324 36.6246 13.6868 39.2952C14.6812 39.496 15.0454 38.8613 15.0454 38.3274C15.0454 37.8599 15.0126 36.2575 15.0126 34.5879C9.4445 35.79 8.28498 32.1841 8.28498 32.1841C7.39015 29.847 6.06429 29.2463 6.06429 29.2463C4.24185 28.011 6.19704 28.011 6.19704 28.011C8.21861 28.1446 9.27938 30.081 9.27938 30.081C11.0686 33.1522 13.9518 32.2844 15.1118 31.7502C15.2773 30.4481 15.8079 29.5467 16.3713 29.046C11.9303 28.5785 7.25781 26.8425 7.25781 19.0967C7.25781 16.8932 8.05267 15.0905 9.31216 13.6884C9.11344 13.1877 8.41732 11.1174 9.51128 8.34644C9.51128 8.34644 11.2014 7.81217 15.0122 10.4164C16.6438 9.97495 18.3263 9.7504 20.0165 9.74851C21.7067 9.74851 23.4295 9.98246 25.0205 10.4164C28.8317 7.81217 30.5218 8.34644 30.5218 8.34644C31.6158 11.1174 30.9192 13.1877 30.7205 13.6884C32.0132 15.0905 32.7753 16.8932 32.7753 19.0967C32.7753 26.8425 28.1028 28.5449 23.6287 29.046C24.358 29.6802 24.9873 30.882 24.9873 32.7851C24.9873 35.4893 24.9545 37.6596 24.9545 38.327C24.9545 38.8613 25.3192 39.496 26.3132 39.2956C34.2667 36.6242 39.9999 29.0792 39.9999 20.1653C40.0327 9.01388 31.052 0 20.0165 0Z" fill="white"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M20.0165 0C8.94791 0 0 9.01388 0 20.1653C0 29.0792 5.73324 36.6246 13.6868 39.2952C14.6812 39.496 15.0454 38.8613 15.0454 38.3274C15.0454 37.8599 15.0126 36.2575 15.0126 34.5879C9.4445 35.79 8.28498 32.1841 8.28498 32.1841C7.39015 29.847 6.06429 29.2463 6.06429 29.2463C4.24185 28.011 6.19704 28.011 6.19704 28.011C8.21861 28.1446 9.27938 30.081 9.27938 30.081C11.0686 33.1522 13.9518 32.2844 15.1118 31.7502C15.2773 30.4481 15.8079 29.5467 16.3713 29.046C11.9303 28.5785 7.25781 26.8425 7.25781 19.0967C7.25781 16.8932 8.05267 15.0905 9.31216 13.6884C9.11344 13.1877 8.41732 11.1174 9.51128 8.34644C9.51128 8.34644 11.2014 7.81217 15.0122 10.4164C16.6438 9.97495 18.3263 9.7504 20.0165 9.74851C21.7067 9.74851 23.4295 9.98246 25.0205 10.4164C28.8317 7.81217 30.5218 8.34644 30.5218 8.34644C31.6158 11.1174 30.9192 13.1877 30.7205 13.6884C32.0132 15.0905 32.7753 16.8932 32.7753 19.0967C32.7753 26.8425 28.1028 28.5449 23.6287 29.046C24.358 29.6802 24.9873 30.882 24.9873 32.7851C24.9873 35.4893 24.9545 37.6596 24.9545 38.327C24.9545 38.8613 25.3192 39.496 26.3132 39.2956C34.2667 36.6242 39.9999 29.0792 39.9999 20.1653C40.0327 9.01388 31.052 0 20.0165 0Z" fill="#24292F"/>
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
2
+ export declare class Example implements INodeType {
3
+ description: INodeTypeDescription;
4
+ execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
5
+ }
@@ -0,0 +1,61 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Example = void 0;
4
+ const n8n_workflow_1 = require("n8n-workflow");
5
+ class Example {
6
+ constructor() {
7
+ this.description = {
8
+ displayName: 'Example',
9
+ name: 'example',
10
+ icon: { light: 'file:example.svg', dark: 'file:example.dark.svg' },
11
+ group: ['input'],
12
+ version: 1,
13
+ description: 'Basic Example Node',
14
+ defaults: {
15
+ name: 'Example',
16
+ },
17
+ inputs: [n8n_workflow_1.NodeConnectionTypes.Main],
18
+ outputs: [n8n_workflow_1.NodeConnectionTypes.Main],
19
+ usableAsTool: true,
20
+ properties: [
21
+ {
22
+ displayName: 'My String',
23
+ name: 'myString',
24
+ type: 'string',
25
+ default: '',
26
+ placeholder: 'Placeholder value',
27
+ description: 'The description text',
28
+ },
29
+ ],
30
+ };
31
+ }
32
+ async execute() {
33
+ const items = this.getInputData();
34
+ let item;
35
+ let myString;
36
+ for (let itemIndex = 0; itemIndex < items.length; itemIndex++) {
37
+ try {
38
+ myString = this.getNodeParameter('myString', itemIndex, '');
39
+ item = items[itemIndex];
40
+ item.json.myString = myString;
41
+ }
42
+ catch (error) {
43
+ if (this.continueOnFail()) {
44
+ items.push({ json: this.getInputData(itemIndex)[0].json, error, pairedItem: itemIndex });
45
+ }
46
+ else {
47
+ if (error.context) {
48
+ error.context.itemIndex = itemIndex;
49
+ throw error;
50
+ }
51
+ throw new n8n_workflow_1.NodeOperationError(this.getNode(), error, {
52
+ itemIndex,
53
+ });
54
+ }
55
+ }
56
+ }
57
+ return [items];
58
+ }
59
+ }
60
+ exports.Example = Example;
61
+ //# sourceMappingURL=Example.node.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Example.node.js","sourceRoot":"","sources":["../../../nodes/Example/Example.node.ts"],"names":[],"mappings":";;;AAMA,+CAAuE;AAEvE,MAAa,OAAO;IAApB;QACC,gBAAW,GAAyB;YACnC,WAAW,EAAE,SAAS;YACtB,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,EAAE,KAAK,EAAE,kBAAkB,EAAE,IAAI,EAAE,uBAAuB,EAAE;YAClE,KAAK,EAAE,CAAC,OAAO,CAAC;YAChB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,oBAAoB;YACjC,QAAQ,EAAE;gBACT,IAAI,EAAE,SAAS;aACf;YACD,MAAM,EAAE,CAAC,kCAAmB,CAAC,IAAI,CAAC;YAClC,OAAO,EAAE,CAAC,kCAAmB,CAAC,IAAI,CAAC;YACnC,YAAY,EAAE,IAAI;YAClB,UAAU,EAAE;gBAGX;oBACC,WAAW,EAAE,WAAW;oBACxB,IAAI,EAAE,UAAU;oBAChB,IAAI,EAAE,QAAQ;oBACd,OAAO,EAAE,EAAE;oBACX,WAAW,EAAE,mBAAmB;oBAChC,WAAW,EAAE,sBAAsB;iBACnC;aACD;SACD,CAAC;IA2CH,CAAC;IArCA,KAAK,CAAC,OAAO;QACZ,MAAM,KAAK,GAAG,IAAI,CAAC,YAAY,EAAE,CAAC;QAElC,IAAI,IAAwB,CAAC;QAC7B,IAAI,QAAgB,CAAC;QAKrB,KAAK,IAAI,SAAS,GAAG,CAAC,EAAE,SAAS,GAAG,KAAK,CAAC,MAAM,EAAE,SAAS,EAAE,EAAE,CAAC;YAC/D,IAAI,CAAC;gBACJ,QAAQ,GAAG,IAAI,CAAC,gBAAgB,CAAC,UAAU,EAAE,SAAS,EAAE,EAAE,CAAW,CAAC;gBACtE,IAAI,GAAG,KAAK,CAAC,SAAS,CAAC,CAAC;gBAExB,IAAI,CAAC,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;YAC/B,CAAC;YAAC,OAAO,KAAK,EAAE,CAAC;gBAGhB,IAAI,IAAI,CAAC,cAAc,EAAE,EAAE,CAAC;oBAC3B,KAAK,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,IAAI,CAAC,YAAY,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,EAAE,KAAK,EAAE,UAAU,EAAE,SAAS,EAAE,CAAC,CAAC;gBAC1F,CAAC;qBAAM,CAAC;oBAEP,IAAI,KAAK,CAAC,OAAO,EAAE,CAAC;wBAGnB,KAAK,CAAC,OAAO,CAAC,SAAS,GAAG,SAAS,CAAC;wBACpC,MAAM,KAAK,CAAC;oBACb,CAAC;oBACD,MAAM,IAAI,iCAAkB,CAAC,IAAI,CAAC,OAAO,EAAE,EAAE,KAAK,EAAE;wBACnD,SAAS;qBACT,CAAC,CAAC;gBACJ,CAAC;YACF,CAAC;QACF,CAAC;QAED,OAAO,CAAC,KAAK,CAAC,CAAC;IAChB,CAAC;CACD;AArED,0BAqEC"}
@@ -0,0 +1,18 @@
1
+ {
2
+ "node": "n8n-nodes-example",
3
+ "nodeVersion": "1.0",
4
+ "codexVersion": "1.0",
5
+ "categories": ["Development", "Developer Tools"],
6
+ "resources": {
7
+ "credentialDocumentation": [
8
+ {
9
+ "url": "https://github.com/org/repo?tab=readme-ov-file#credentials"
10
+ }
11
+ ],
12
+ "primaryDocumentation": [
13
+ {
14
+ "url": "https://github.com/org/repo?tab=readme-ov-file"
15
+ }
16
+ ]
17
+ }
18
+ }
@@ -0,0 +1,13 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="aquamarine"
2
+ stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-cpu">
3
+ <rect x="4" y="4" width="16" height="16" rx="2" ry="2"></rect>
4
+ <rect x="9" y="9" width="6" height="6"></rect>
5
+ <line x1="9" y1="1" x2="9" y2="4"></line>
6
+ <line x1="15" y1="1" x2="15" y2="4"></line>
7
+ <line x1="9" y1="20" x2="9" y2="23"></line>
8
+ <line x1="15" y1="20" x2="15" y2="23"></line>
9
+ <line x1="20" y1="9" x2="23" y2="9"></line>
10
+ <line x1="20" y1="14" x2="23" y2="14"></line>
11
+ <line x1="1" y1="9" x2="4" y2="9"></line>
12
+ <line x1="1" y1="14" x2="4" y2="14"></line>
13
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="darkblue"
2
+ stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-cpu">
3
+ <rect x="4" y="4" width="16" height="16" rx="2" ry="2"></rect>
4
+ <rect x="9" y="9" width="6" height="6"></rect>
5
+ <line x1="9" y1="1" x2="9" y2="4"></line>
6
+ <line x1="15" y1="1" x2="15" y2="4"></line>
7
+ <line x1="9" y1="20" x2="9" y2="23"></line>
8
+ <line x1="15" y1="20" x2="15" y2="23"></line>
9
+ <line x1="20" y1="9" x2="23" y2="9"></line>
10
+ <line x1="20" y1="14" x2="23" y2="14"></line>
11
+ <line x1="1" y1="9" x2="4" y2="9"></line>
12
+ <line x1="1" y1="14" x2="4" y2="14"></line>
13
+ </svg>
@@ -0,0 +1,14 @@
1
+ import { type INodeType, type INodeTypeDescription } from 'n8n-workflow';
2
+ import { getRepositories } from './listSearch/getRepositories';
3
+ import { getUsers } from './listSearch/getUsers';
4
+ import { getIssues } from './listSearch/getIssues';
5
+ export declare class GithubIssues implements INodeType {
6
+ description: INodeTypeDescription;
7
+ methods: {
8
+ listSearch: {
9
+ getRepositories: typeof getRepositories;
10
+ getUsers: typeof getUsers;
11
+ getIssues: typeof getIssues;
12
+ };
13
+ };
14
+ }
@@ -0,0 +1,101 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GithubIssues = void 0;
4
+ const n8n_workflow_1 = require("n8n-workflow");
5
+ const issue_1 = require("./resources/issue");
6
+ const issueComment_1 = require("./resources/issueComment");
7
+ const getRepositories_1 = require("./listSearch/getRepositories");
8
+ const getUsers_1 = require("./listSearch/getUsers");
9
+ const getIssues_1 = require("./listSearch/getIssues");
10
+ class GithubIssues {
11
+ constructor() {
12
+ this.description = {
13
+ displayName: 'GitHub Issues',
14
+ name: 'githubIssues',
15
+ icon: { light: 'file:../../icons/github.svg', dark: 'file:../../icons/github.dark.svg' },
16
+ group: ['input'],
17
+ version: 1,
18
+ subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
19
+ description: 'Consume issues from the GitHub API',
20
+ defaults: {
21
+ name: 'GitHub Issues',
22
+ },
23
+ usableAsTool: true,
24
+ inputs: [n8n_workflow_1.NodeConnectionTypes.Main],
25
+ outputs: [n8n_workflow_1.NodeConnectionTypes.Main],
26
+ credentials: [
27
+ {
28
+ name: 'githubIssuesApi',
29
+ required: true,
30
+ displayOptions: {
31
+ show: {
32
+ authentication: ['accessToken'],
33
+ },
34
+ },
35
+ },
36
+ {
37
+ name: 'githubIssuesOAuth2Api',
38
+ required: true,
39
+ displayOptions: {
40
+ show: {
41
+ authentication: ['oAuth2'],
42
+ },
43
+ },
44
+ },
45
+ ],
46
+ requestDefaults: {
47
+ baseURL: 'https://api.github.com',
48
+ headers: {
49
+ Accept: 'application/json',
50
+ 'Content-Type': 'application/json',
51
+ },
52
+ },
53
+ properties: [
54
+ {
55
+ displayName: 'Authentication',
56
+ name: 'authentication',
57
+ type: 'options',
58
+ options: [
59
+ {
60
+ name: 'Access Token',
61
+ value: 'accessToken',
62
+ },
63
+ {
64
+ name: 'OAuth2',
65
+ value: 'oAuth2',
66
+ },
67
+ ],
68
+ default: 'accessToken',
69
+ },
70
+ {
71
+ displayName: 'Resource',
72
+ name: 'resource',
73
+ type: 'options',
74
+ noDataExpression: true,
75
+ options: [
76
+ {
77
+ name: 'Issue',
78
+ value: 'issue',
79
+ },
80
+ {
81
+ name: 'Issue Comment',
82
+ value: 'issueComment',
83
+ },
84
+ ],
85
+ default: 'issue',
86
+ },
87
+ ...issue_1.issueDescription,
88
+ ...issueComment_1.issueCommentDescription,
89
+ ],
90
+ };
91
+ this.methods = {
92
+ listSearch: {
93
+ getRepositories: getRepositories_1.getRepositories,
94
+ getUsers: getUsers_1.getUsers,
95
+ getIssues: getIssues_1.getIssues,
96
+ },
97
+ };
98
+ }
99
+ }
100
+ exports.GithubIssues = GithubIssues;
101
+ //# sourceMappingURL=GithubIssues.node.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GithubIssues.node.js","sourceRoot":"","sources":["../../../nodes/GithubIssues/GithubIssues.node.ts"],"names":[],"mappings":";;;AAAA,+CAA8F;AAC9F,6CAAqD;AACrD,2DAAmE;AACnE,kEAA+D;AAC/D,oDAAiD;AACjD,sDAAmD;AAEnD,MAAa,YAAY;IAAzB;QACC,gBAAW,GAAyB;YACnC,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,cAAc;YACpB,IAAI,EAAE,EAAE,KAAK,EAAE,6BAA6B,EAAE,IAAI,EAAE,kCAAkC,EAAE;YACxF,KAAK,EAAE,CAAC,OAAO,CAAC;YAChB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,8DAA8D;YACxE,WAAW,EAAE,oCAAoC;YACjD,QAAQ,EAAE;gBACT,IAAI,EAAE,eAAe;aACrB;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,iBAAiB;oBACvB,QAAQ,EAAE,IAAI;oBACd,cAAc,EAAE;wBACf,IAAI,EAAE;4BACL,cAAc,EAAE,CAAC,aAAa,CAAC;yBAC/B;qBACD;iBACD;gBACD;oBACC,IAAI,EAAE,uBAAuB;oBAC7B,QAAQ,EAAE,IAAI;oBACd,cAAc,EAAE;wBACf,IAAI,EAAE;4BACL,cAAc,EAAE,CAAC,QAAQ,CAAC;yBAC1B;qBACD;iBACD;aACD;YACD,eAAe,EAAE;gBAChB,OAAO,EAAE,wBAAwB;gBACjC,OAAO,EAAE;oBACR,MAAM,EAAE,kBAAkB;oBAC1B,cAAc,EAAE,kBAAkB;iBAClC;aACD;YACD,UAAU,EAAE;gBACX;oBACC,WAAW,EAAE,gBAAgB;oBAC7B,IAAI,EAAE,gBAAgB;oBACtB,IAAI,EAAE,SAAS;oBACf,OAAO,EAAE;wBACR;4BACC,IAAI,EAAE,cAAc;4BACpB,KAAK,EAAE,aAAa;yBACpB;wBACD;4BACC,IAAI,EAAE,QAAQ;4BACd,KAAK,EAAE,QAAQ;yBACf;qBACD;oBACD,OAAO,EAAE,aAAa;iBACtB;gBACD;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,eAAe;4BACrB,KAAK,EAAE,cAAc;yBACrB;qBACD;oBACD,OAAO,EAAE,OAAO;iBAChB;gBACD,GAAG,wBAAgB;gBACnB,GAAG,sCAAuB;aAC1B;SACD,CAAC;QAEF,YAAO,GAAG;YACT,UAAU,EAAE;gBACX,eAAe,EAAf,iCAAe;gBACf,QAAQ,EAAR,mBAAQ;gBACR,SAAS,EAAT,qBAAS;aACT;SACD,CAAC;IACH,CAAC;CAAA;AAxFD,oCAwFC"}