mirror of
				https://github.com/n8n-io/n8n-nodes-starter.git
				synced 2025-11-03 15:42:26 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			No EOL
		
	
	
		
			489 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			No EOL
		
	
	
		
			489 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import {
 | 
						|
	ICredentialType,
 | 
						|
	NodePropertyTypes,
 | 
						|
} from 'n8n-workflow';
 | 
						|
 | 
						|
export class FriendGridApi implements ICredentialType {
 | 
						|
	name = 'friendGridApi';
 | 
						|
	displayName = 'FriendGrid API';
 | 
						|
	documentationUrl = 'friendGrid';
 | 
						|
	properties = [
 | 
						|
		// The credentials to get from user and save encrypted.
 | 
						|
		// Properties can be defined exactly in the same way
 | 
						|
		// as node properties.
 | 
						|
		{
 | 
						|
			displayName: 'API Key',
 | 
						|
			name: 'apiKey',
 | 
						|
			type: 'string' as NodePropertyTypes,
 | 
						|
			default: '',
 | 
						|
		},
 | 
						|
	];
 | 
						|
} |