/** * NASA Node - Version 1 * Discriminator: resource=asteroidNeoLookup, operation=get */ interface Credentials { nasaApi: CredentialReference; } /** Get the Astronomy Picture of the Day */ export type NasaV1AsteroidNeoLookupGetParams = { resource: 'asteroidNeoLookup'; operation: 'get'; /** * The ID of the asteroid to be returned */ asteroidId?: string | Expression | PlaceholderValue; /** * Additional Fields * @default {} */ additionalFields?: { /** Whether to include all the close approach data in the asteroid lookup * @default false */ includeCloseApproachData?: boolean | Expression; }; }; export type NasaV1AsteroidNeoLookupGetNode = { type: 'n8n-nodes-base.nasa'; version: 1; credentials?: Credentials; config: NodeConfig; };