/** * NASA Node - Version 1 * Discriminator: resource=earthImagery, operation=get */ interface Credentials { nasaApi: CredentialReference; } /** Get the Astronomy Picture of the Day */ export type NasaV1EarthImageryGetParams = { resource: 'earthImagery'; operation: 'get'; /** * Latitude for the location of the image */ lat?: number | Expression; /** * Longitude for the location of the image */ lon?: number | Expression; /** * Put Output File in Field * @hint The name of the output binary field to put the file in * @default data */ binaryPropertyName?: string | Expression | PlaceholderValue; /** * Additional Fields * @default {} */ additionalFields?: { /** Date of the image */ date?: string | Expression; /** Width and height of the image in degrees */ dim?: number | Expression; }; }; export type NasaV1EarthImageryGetNode = { type: 'n8n-nodes-base.nasa'; version: 1; credentials?: Credentials; config: NodeConfig; };