mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
✨ Add NASA Node (#1232)
* ✨ NASA node * Test up to asteroidNeoLookup * Add earth imagery * ⚡ Small improvement * ⚡ Improvements to NASA node * ⚡ Small Improvements * ⚡ Some minor fixes for NASA Node Co-authored-by: Iván Ovejero <ivov.src@gmail.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
This commit is contained in:
17
packages/nodes-base/credentials/NasaApi.credentials.ts
Normal file
17
packages/nodes-base/credentials/NasaApi.credentials.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
import {
|
||||
ICredentialType,
|
||||
NodePropertyTypes,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
export class NasaApi implements ICredentialType {
|
||||
name = 'nasaApi';
|
||||
displayName = 'NASA API';
|
||||
properties = [
|
||||
{
|
||||
displayName: 'API Key',
|
||||
name: 'api_key',
|
||||
type: 'string' as NodePropertyTypes,
|
||||
default: '',
|
||||
},
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user