Outgrow Trigger V1

This commit is contained in:
Gagandeep singh 2025-06-09 13:11:49 +05:30
commit 24f7ae4a19
14 changed files with 564 additions and 585 deletions

View file

@ -0,0 +1,22 @@
import {
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
export class outgrowApi implements ICredentialType {
name = 'outgrowApi'; // 👈 Must match what you use in the node
displayName = 'Outgrow API';
documentationUrl = 'https://docs.n8n.io/integrations/creating-nodes/build/credentials/';
properties: INodeProperties[] = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
default: '',
required: true,
description: 'Your Outgrow API key',
},
];
// No built-in auth here since we inject key manually in node code
}