/** * NASA Node - Version 1 * Discriminator: resource=earthAssets, operation=get */ interface Credentials { nasaApi: CredentialReference; } /** Get the Astronomy Picture of the Day */ export type NasaV1EarthAssetsGetParams = { resource: 'earthAssets'; operation: 'get'; /** * Latitude for the location of the image */ lat?: number | Expression; /** * Longitude for the location of the image */ lon?: number | Expression; /** * Additional Fields * @default {} */ additionalFields?: { /** Date of the image */ date?: string | Expression; /** Width and height of the image in degrees */ dim?: number | Expression; }; }; export type NasaV1EarthAssetsGetNode = { type: 'n8n-nodes-base.nasa'; version: 1; credentials?: Credentials; config: NodeConfig; };