n8n-nodes-github-copilot 3.12.9 → 3.13.2

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.
@@ -12,13 +12,13 @@ class GitHubCopilotApi {
12
12
  displayName: 'Grant Type',
13
13
  name: 'grantType',
14
14
  type: 'hidden',
15
- default: 'authorizationCode',
15
+ default: 'deviceCode',
16
16
  },
17
17
  {
18
- displayName: 'Authorization URL',
19
- name: 'authUrl',
18
+ displayName: 'Device Code URL',
19
+ name: 'deviceCodeUrl',
20
20
  type: 'hidden',
21
- default: 'https://github.com/login/oauth/authorize',
21
+ default: 'https://github.com/login/device/code',
22
22
  },
23
23
  {
24
24
  displayName: 'Access Token URL',
@@ -30,7 +30,7 @@ class GitHubCopilotApi {
30
30
  displayName: 'Scope',
31
31
  name: 'scope',
32
32
  type: 'hidden',
33
- default: 'repo read:org',
33
+ default: 'repo read:org admin:public_key gist',
34
34
  },
35
35
  {
36
36
  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.12.9",
3
+ "version": "3.13.2",
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",