mirror of
				https://github.com/n8n-io/n8n-nodes-starter.git
				synced 2025-10-30 14:52:27 -05:00 
			
		
		
		
	Adding FriendGrid example node (updated version of the one in the n8n docs)
This commit is contained in:
		
					parent
					
						
							
								1e43acf743
							
						
					
				
			
			
				commit
				
					
						a7dffc4df0
					
				
			
		
					 8 changed files with 263 additions and 72 deletions
				
			
		
							
								
								
									
										82
									
								
								nodes/FriendGrid/ContactDescription.ts
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										82
									
								
								nodes/FriendGrid/ContactDescription.ts
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,82 @@ | |||
| import { | ||||
| 	INodeProperties, | ||||
| } from 'n8n-workflow'; | ||||
| 
 | ||||
| export const contactOperations = [ | ||||
| 	{ | ||||
| 		displayName: 'Operation', | ||||
| 		name: 'operation', | ||||
| 		type: 'options', | ||||
| 		displayOptions: { | ||||
| 			show: { | ||||
| 				resource: [ | ||||
| 					'contact', | ||||
| 				], | ||||
| 			}, | ||||
| 		}, | ||||
| 		options: [ | ||||
| 			{ | ||||
| 				name: 'Create', | ||||
| 				value: 'create', | ||||
| 				description: 'Create a contact', | ||||
| 			}, | ||||
| 		], | ||||
| 		default: 'create', | ||||
| 		description: 'The operation to perform.', | ||||
| 	}, | ||||
| ] as INodeProperties[]; | ||||
| 
 | ||||
| export const contactFields = [ | ||||
| 	/*-------------------------------------------------------------------------- */ | ||||
| 	/*                                contact:create                             */ | ||||
| 	/* ------------------------------------------------------------------------- */ | ||||
| 	{ | ||||
| 		displayName: 'Email', | ||||
| 		name: 'email', | ||||
| 		type: 'string', | ||||
| 		required: true, | ||||
| 		displayOptions: { | ||||
| 			show: { | ||||
| 				operation: [ | ||||
| 					'create', | ||||
| 				], | ||||
| 				resource: [ | ||||
| 					'contact', | ||||
| 				], | ||||
| 			}, | ||||
| 		}, | ||||
| 		default:'', | ||||
| 		description:'Primary email for the contact', | ||||
| 	}, | ||||
| 	{ | ||||
| 		displayName: 'Additional Fields', | ||||
| 		name: 'additionalFields', | ||||
| 		type: 'collection', | ||||
| 		placeholder: 'Add Field', | ||||
| 		default: {}, | ||||
| 		displayOptions: { | ||||
| 			show: { | ||||
| 				resource: [ | ||||
| 					'contact', | ||||
| 				], | ||||
| 				operation: [ | ||||
| 					'create', | ||||
| 				], | ||||
| 			}, | ||||
| 		}, | ||||
| 		options: [ | ||||
| 			{ | ||||
| 				displayName: 'First Name', | ||||
| 				name: 'firstName', | ||||
| 				type: 'string', | ||||
| 				default: '', | ||||
| 			}, | ||||
| 			{ | ||||
| 				displayName: 'Last Name', | ||||
| 				name: 'lastName', | ||||
| 				type: 'string', | ||||
| 				default: '', | ||||
| 			}, | ||||
| 		], | ||||
| 	}, | ||||
| ] as INodeProperties[]; | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue