mirror of
https://github.com/n8n-io/n8n-nodes-starter.git
synced 2025-10-29 06:22:24 -05:00
22 lines
No EOL
566 B
TypeScript
22 lines
No EOL
566 B
TypeScript
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
|
|
} |