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