n8n-nodes-github-copilot 3.13.2 → 3.14.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
|
|
7
|
+
this.displayName = 'GitHub Copilot API (Official CLI App)';
|
|
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 = [
|
|
@@ -12,13 +12,25 @@ class GitHubCopilotApi {
|
|
|
12
12
|
displayName: 'Grant Type',
|
|
13
13
|
name: 'grantType',
|
|
14
14
|
type: 'hidden',
|
|
15
|
-
default: '
|
|
15
|
+
default: 'authorizationCode',
|
|
16
16
|
},
|
|
17
17
|
{
|
|
18
|
-
displayName: '
|
|
19
|
-
name: '
|
|
18
|
+
displayName: 'Client ID',
|
|
19
|
+
name: 'clientId',
|
|
20
20
|
type: 'hidden',
|
|
21
|
-
default: '
|
|
21
|
+
default: '178c6fc778ccc68e1d6a',
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
displayName: 'Client Secret',
|
|
25
|
+
name: 'clientSecret',
|
|
26
|
+
type: 'hidden',
|
|
27
|
+
default: '34ddeff2b558a23d38fba8a6de74f086ede1cc0b',
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
displayName: 'Authorization URL',
|
|
31
|
+
name: 'authUrl',
|
|
32
|
+
type: 'hidden',
|
|
33
|
+
default: 'https://github.com/login/oauth/authorize',
|
|
22
34
|
},
|
|
23
35
|
{
|
|
24
36
|
displayName: 'Access Token URL',
|
|
@@ -30,7 +42,7 @@ class GitHubCopilotApi {
|
|
|
30
42
|
displayName: 'Scope',
|
|
31
43
|
name: 'scope',
|
|
32
44
|
type: 'hidden',
|
|
33
|
-
default: 'repo read:org
|
|
45
|
+
default: 'repo read:org gist',
|
|
34
46
|
},
|
|
35
47
|
{
|
|
36
48
|
displayName: 'Auth URI Query Parameters',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-github-copilot",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.14.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",
|