n8n-nodes-github-copilot 3.14.1 → 3.15.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.
|
@@ -4,7 +4,7 @@ exports.GitHubCopilotApi = void 0;
|
|
|
4
4
|
class GitHubCopilotApi {
|
|
5
5
|
constructor() {
|
|
6
6
|
this.name = 'githubCopilotApi';
|
|
7
|
-
this.displayName = 'GitHub Copilot API (
|
|
7
|
+
this.displayName = 'GitHub Copilot API (OAuth)';
|
|
8
8
|
this.extends = ['oAuth2Api'];
|
|
9
9
|
this.documentationUrl = 'https://docs.github.com/en/copilot/github-copilot-chat/copilot-chat-in-ides/using-github-copilot-chat-in-your-ide';
|
|
10
10
|
this.properties = [
|
|
@@ -17,14 +17,21 @@ class GitHubCopilotApi {
|
|
|
17
17
|
{
|
|
18
18
|
displayName: 'Client ID',
|
|
19
19
|
name: 'clientId',
|
|
20
|
-
type: '
|
|
21
|
-
default: '
|
|
20
|
+
type: 'string',
|
|
21
|
+
default: '',
|
|
22
|
+
required: true,
|
|
23
|
+
description: 'The Client ID of your GitHub OAuth App configured for GitHub Copilot API access',
|
|
24
|
+
placeholder: 'e.g., Iv1.a1b2c3d4e5f6g7h8',
|
|
22
25
|
},
|
|
23
26
|
{
|
|
24
27
|
displayName: 'Client Secret',
|
|
25
28
|
name: 'clientSecret',
|
|
26
|
-
type: '
|
|
27
|
-
|
|
29
|
+
type: 'string',
|
|
30
|
+
typeOptions: { password: true },
|
|
31
|
+
default: '',
|
|
32
|
+
required: true,
|
|
33
|
+
description: 'The Client Secret of your GitHub OAuth App',
|
|
34
|
+
placeholder: 'Your OAuth App Client Secret',
|
|
28
35
|
},
|
|
29
36
|
{
|
|
30
37
|
displayName: 'Authorization URL',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-github-copilot",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.15.1",
|
|
4
4
|
"description": "n8n community node for GitHub Copilot with CLI integration, Chat API access, and AI Chat Model for workflows - access GPT-5, Claude, Gemini and more using your Copilot subscription",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/sufficit/n8n-nodes-github-copilot",
|