Socket
Socket
Sign inDemoInstall

openweather-api-node

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

openweather-api-node - npm Package Compare versions

Comparing version 1.3.1 to 1.3.2

12

index.js

@@ -104,4 +104,4 @@ /**

* @typedef {Object} Coordinates
* @property {Number} lat
* @property {Number} lon
* @property {Number} [lat]
* @property {Number} [lon]
*/

@@ -535,5 +535,5 @@

* current: currentParser.CurrentWeather,
* minutely: minutelyParser.MinutelyWeather,
* hourly: hourlyParser.HourlyWeather,
* daily: dailyParser.DailyWeather,
* minutely: minutelyParser.MinutelyWeather[],
* hourly: hourlyParser.HourlyWeather[],
* daily: dailyParser.DailyWeather[],
* alerts: Alert[]

@@ -577,3 +577,3 @@ * }>} object that contains everything

* current: currentParser.CurrentWeather,
* hourly: hourlyParser.HourlyWeather
* hourly: hourlyParser.HourlyWeather[]
* }>}

@@ -580,0 +580,0 @@ */

{
"name": "openweather-api-node",
"version": "1.3.1",
"version": "1.3.2",
"description": "Simple Node.js package that makes it easy to work with OpenWeather API",

@@ -5,0 +5,0 @@ "main": "index.js",

export = OpenWeatherAPI;
/**
* @typedef {Object} Coordinates
* @property {Number} lat
* @property {Number} lon
* @property {Number} [lat]
* @property {Number} [lon]
*/

@@ -203,5 +203,5 @@ /**

* current: currentParser.CurrentWeather,
* minutely: minutelyParser.MinutelyWeather,
* hourly: hourlyParser.HourlyWeather,
* daily: dailyParser.DailyWeather,
* minutely: minutelyParser.MinutelyWeather[],
* hourly: hourlyParser.HourlyWeather[],
* daily: dailyParser.DailyWeather[],
* alerts: Alert[]

@@ -216,5 +216,5 @@ * }>} object that contains everything

current: currentParser.CurrentWeather;
minutely: minutelyParser.MinutelyWeather;
hourly: hourlyParser.HourlyWeather;
daily: dailyParser.DailyWeather;
minutely: minutelyParser.MinutelyWeather[];
hourly: hourlyParser.HourlyWeather[];
daily: dailyParser.DailyWeather[];
alerts: Alert[];

@@ -233,3 +233,3 @@ }>;

* current: currentParser.CurrentWeather,
* hourly: hourlyParser.HourlyWeather
* hourly: hourlyParser.HourlyWeather[]
* }>}

@@ -243,3 +243,3 @@ */

current: currentParser.CurrentWeather;
hourly: hourlyParser.HourlyWeather;
hourly: hourlyParser.HourlyWeather[];
}>;

@@ -356,4 +356,4 @@ /**

type Coordinates = {
lat: number;
lon: number;
lat?: number;
lon?: number;
};

@@ -360,0 +360,0 @@ type Astronomical = Partial<import("./models/weather-model").Astronomical>;

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc