n8n-nodes-github-copilot 3.13.2 → 3.14.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.
@@ -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 OAuth2 API';
7
+ this.displayName = 'GitHub Copilot API (Device Flow)';
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 = [
@@ -14,6 +14,18 @@ class GitHubCopilotApi {
14
14
  type: 'hidden',
15
15
  default: 'deviceCode',
16
16
  },
17
+ {
18
+ displayName: 'Client ID',
19
+ name: 'clientId',
20
+ type: 'hidden',
21
+ default: '178c6fc778ccc68e1d6a',
22
+ },
23
+ {
24
+ displayName: 'Client Secret',
25
+ name: 'clientSecret',
26
+ type: 'hidden',
27
+ default: '34ddeff2b558a23d38fba8a6de74f086ede1cc0b',
28
+ },
17
29
  {
18
30
  displayName: 'Device Code URL',
19
31
  name: 'deviceCodeUrl',
@@ -30,7 +42,7 @@ class GitHubCopilotApi {
30
42
  displayName: 'Scope',
31
43
  name: 'scope',
32
44
  type: 'hidden',
33
- default: 'repo read:org admin:public_key gist',
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.13.2",
3
+ "version": "3.14.0",
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",