n8n-nodes-github-copilot 1.1.3 → 1.1.4
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.
|
@@ -287,6 +287,9 @@ class GitHubCopilot {
|
|
|
287
287
|
default:
|
|
288
288
|
throw new n8n_workflow_1.NodeOperationError(this.getNode(), `Unknown operation: ${operation}`);
|
|
289
289
|
}
|
|
290
|
+
console.log('Executing command:', command);
|
|
291
|
+
console.log('Token prefix:', accessToken ? accessToken.substring(0, 8) + '...' : 'none');
|
|
292
|
+
console.log('Token type:', accessToken ? (accessToken.startsWith('gho_') ? 'OAuth' : accessToken.startsWith('ghp_') ? 'Classic' : 'Unknown') : 'none');
|
|
290
293
|
let stdout = '';
|
|
291
294
|
let stderr = '';
|
|
292
295
|
try {
|
package/package.json
CHANGED