| 
									
										
										
										
											2022-06-30 17:09:31 +02:00
										 |  |  | import { | 
					
						
							|  |  |  | 	IAuthenticateGeneric, | 
					
						
							|  |  |  | 	ICredentialTestRequest, | 
					
						
							|  |  |  | 	ICredentialType, | 
					
						
							|  |  |  | 	INodeProperties, | 
					
						
							|  |  |  | } from 'n8n-workflow'; | 
					
						
							| 
									
										
										
										
											2019-10-03 08:53:03 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | export class ExampleCredentials implements ICredentialType { | 
					
						
							|  |  |  | 	name = 'exampleCredentials'; | 
					
						
							|  |  |  | 	displayName = 'Example Credentials'; | 
					
						
							| 
									
										
										
										
											2022-06-28 15:27:25 +02:00
										 |  |  | 	properties: INodeProperties[] = [ | 
					
						
							| 
									
										
										
										
											2019-10-03 08:53:03 +02:00
										 |  |  | 		// The credentials to get from user and save encrypted.
 | 
					
						
							|  |  |  | 		// Properties can be defined exactly in the same way
 | 
					
						
							|  |  |  | 		// as node properties.
 | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2022-06-29 17:25:14 +02:00
										 |  |  | 			displayName: 'User Name', | 
					
						
							|  |  |  | 			name: 'username', | 
					
						
							| 
									
										
										
										
											2022-06-28 15:27:25 +02:00
										 |  |  | 			type: 'string', | 
					
						
							| 
									
										
										
										
											2019-10-03 08:53:03 +02:00
										 |  |  | 			default: '', | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2022-06-29 17:25:14 +02:00
										 |  |  | 			displayName: 'Password', | 
					
						
							|  |  |  | 			name: 'password', | 
					
						
							| 
									
										
										
										
											2022-06-28 15:27:25 +02:00
										 |  |  | 			type: 'string', | 
					
						
							| 
									
										
										
										
											2022-06-29 17:25:14 +02:00
										 |  |  | 			typeOptions: { | 
					
						
							|  |  |  | 				password: true, | 
					
						
							|  |  |  | 			}, | 
					
						
							| 
									
										
										
										
											2019-10-03 08:53:03 +02:00
										 |  |  | 			default: '', | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	]; | 
					
						
							| 
									
										
										
										
											2022-06-29 17:25:14 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// This credential is currently not used by any node directly
 | 
					
						
							|  |  |  | 	// but the HTTP Request node can use it to make requests.
 | 
					
						
							|  |  |  | 	// The credential is also testable due to the `test` property below
 | 
					
						
							| 
									
										
										
										
											2022-06-30 17:09:31 +02:00
										 |  |  | 	authenticate: IAuthenticateGeneric = { | 
					
						
							| 
									
										
										
										
											2022-06-29 17:25:14 +02:00
										 |  |  | 		type: 'generic', | 
					
						
							|  |  |  | 		properties: { | 
					
						
							|  |  |  | 			auth: { | 
					
						
							|  |  |  | 				username: '={{ $credentials.username }}', | 
					
						
							|  |  |  | 				password: '={{ $credentials.password }}', | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 			qs: { | 
					
						
							|  |  |  | 				// Send this as part of the query string
 | 
					
						
							|  |  |  | 				n8n: 'rocks', | 
					
						
							| 
									
										
										
										
											2022-06-30 17:09:31 +02:00
										 |  |  | 			}, | 
					
						
							| 
									
										
										
										
											2022-06-29 17:25:14 +02:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-06-30 17:09:31 +02:00
										 |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2022-06-29 17:25:14 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// The block below tells how this credential can be tested
 | 
					
						
							|  |  |  | 	test: ICredentialTestRequest = { | 
					
						
							|  |  |  | 		request: { | 
					
						
							|  |  |  | 			baseURL: 'https://example.com/', | 
					
						
							|  |  |  | 			url: '', | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2019-10-03 08:53:03 +02:00
										 |  |  | } |