n8n-nodes-github-copilot 3.28.3 → 3.29.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.
@@ -49,11 +49,11 @@ class GitHubCopilot {
49
49
  this.description = {
50
50
  displayName: "GitHub Copilot",
51
51
  name: "gitHubCopilot",
52
- icon: "file:../../shared/icons/copilot.svg",
52
+ icon: "file:githubCopilot.svg",
53
53
  group: ["transform"],
54
54
  version: 1,
55
- subtitle: "={{$parameter[\"operation\"]}}",
56
- description: "Use GitHub Copilot CLI for AI-powered code suggestions and explanations",
55
+ subtitle: "",
56
+ description: "Interact with GitHub Copilot API for code completions",
57
57
  defaults: {
58
58
  name: "GitHub Copilot",
59
59
  },
@@ -12,7 +12,7 @@ class GitHubCopilotChatAPI {
12
12
  displayName: "GitHub Copilot Chat API",
13
13
  name: "gitHubCopilotChatAPI",
14
14
  icon: "file:../../shared/icons/copilot.svg",
15
- group: ["AI"],
15
+ group: ["transform"],
16
16
  version: 1,
17
17
  subtitle: "={{$parameter[\"operation\"] + \": \" + $parameter[\"model\"]}}",
18
18
  description: "Use official GitHub Copilot Chat API with your subscription - access GPT-5, Claude, Gemini and more",
@@ -8,7 +8,7 @@ class GitHubCopilotOpenAI {
8
8
  displayName: "GitHub Copilot OpenAI",
9
9
  name: "gitHubCopilotOpenAI",
10
10
  icon: "file:../../shared/icons/copilot.svg",
11
- group: ["AI"],
11
+ group: ["transform"],
12
12
  version: 1,
13
13
  subtitle: "={{$parameter[\"operation\"] + \": \" + $parameter[\"model\"]}}",
14
14
  description: "OpenAI-compatible GitHub Copilot Chat API with full support for messages, tools, and all OpenAI parameters",
@@ -314,7 +314,7 @@ class GitHubCopilotTest {
314
314
  displayName: "GitHub Copilot Test",
315
315
  name: "gitHubCopilotTest",
316
316
  icon: "file:../../shared/icons/copilot.svg",
317
- group: ["AI"],
317
+ group: ["transform"],
318
318
  version: 1,
319
319
  subtitle: "={{$parameter[\"testFunction\"]}}",
320
320
  description: "Test GitHub Copilot API credentials with predefined functions",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-github-copilot",
3
- "version": "3.28.3",
3
+ "version": "3.29.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",
@@ -19,7 +19,7 @@
19
19
  "format": "prettier nodes credentials --write",
20
20
  "lint": "eslint nodes credentials package.json",
21
21
  "lintfix": "eslint nodes credentials package.json --fix",
22
- "prepublishOnly": "npm run build && npm run lint -s"
22
+ "prepublishOnly": "npm run build"
23
23
  },
24
24
  "files": [
25
25
  "dist"
@@ -60,7 +60,8 @@
60
60
  },
61
61
  "packageManager": "pnpm@7.1.0",
62
62
  "dependencies": {
63
- "@langchain/openai": "^0.6.12"
63
+ "@langchain/openai": "^0.6.14",
64
+ "n8n-workflow": "^1.111.0"
64
65
  },
65
66
  "devDependencies": {
66
67
  "@types/node": "^18.16.16",
@@ -68,8 +69,7 @@
68
69
  "@typescript-eslint/parser": "^5.45.0",
69
70
  "eslint": "^8.28.0",
70
71
  "gulp": "^4.0.2",
71
- "n8n-core": "^0.125.0",
72
- "n8n-workflow": "^0.107.0",
72
+ "n8n-core": "^1.113.0",
73
73
  "prettier": "^2.7.1",
74
74
  "typescript": "^5.9.2"
75
75
  }