/** * NASA Node - Version 1 * Discriminator: resource=asteroidNeoFeed, operation=get */ interface Credentials { nasaApi: CredentialReference; } /** Get the Astronomy Picture of the Day */ export type NasaV1AsteroidNeoFeedGetParams = { resource: 'asteroidNeoFeed'; operation: 'get'; /** * Additional Fields * @default {} */ additionalFields?: { /** Start Date */ startDate?: string | Expression; /** End Date */ endDate?: string | Expression; }; }; export type NasaV1AsteroidNeoFeedGetNode = { type: 'n8n-nodes-base.nasa'; version: 1; credentials?: Credentials; config: NodeConfig; };