2023-01-27 03:22:44 -08:00
|
|
|
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
|
2020-12-10 02:30:13 -08:00
|
|
|
|
|
|
|
export class NasaApi implements ICredentialType {
|
|
|
|
name = 'nasaApi';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2020-12-10 02:30:13 -08:00
|
|
|
displayName = 'NASA API';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2021-06-18 14:46:21 -07:00
|
|
|
documentationUrl = 'nasa';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2021-06-12 09:39:55 -07:00
|
|
|
properties: INodeProperties[] = [
|
2020-12-10 02:30:13 -08:00
|
|
|
{
|
|
|
|
displayName: 'API Key',
|
|
|
|
name: 'api_key',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'string',
|
2020-12-10 02:30:13 -08:00
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|