Comparing version 1.2.3 to 1.3.0
'use strict'; | ||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { | ||
return new (P || (P = Promise))(function (resolve, reject) { | ||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } | ||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } | ||
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); } | ||
step((generator = generator.apply(thisArg, _arguments || [])).next()); | ||
}); | ||
}; | ||
var __generator = (this && this.__generator) || function (thisArg, body) { | ||
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; | ||
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; | ||
function verb(n) { return function (v) { return step([n, v]); }; } | ||
function step(op) { | ||
if (f) throw new TypeError("Generator is already executing."); | ||
while (_) try { | ||
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; | ||
if (y = 0, t) op = [op[0] & 2, t.value]; | ||
switch (op[0]) { | ||
case 0: case 1: t = op; break; | ||
case 4: _.label++; return { value: op[1], done: false }; | ||
case 5: _.label++; y = op[1]; op = [0]; continue; | ||
case 7: op = _.ops.pop(); _.trys.pop(); continue; | ||
default: | ||
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } | ||
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } | ||
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } | ||
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } | ||
if (t[2]) _.ops.pop(); | ||
_.trys.pop(); continue; | ||
} | ||
op = body.call(thisArg, _); | ||
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } | ||
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; | ||
} | ||
}; | ||
var __importDefault = (this && this.__importDefault) || function (mod) { | ||
@@ -6,5 +41,5 @@ return (mod && mod.__esModule) ? mod : { "default": mod }; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const got_1 = __importDefault(require("got")); | ||
class Airly { | ||
constructor(key, language) { | ||
var got_1 = __importDefault(require("got")); | ||
var Airly = /** @class */ (function () { | ||
function Airly(key, language) { | ||
this.key = key; | ||
@@ -25,6 +60,15 @@ this.language = language; | ||
*/ | ||
async idData(id) { | ||
const response = await got_1.default(`${this.baseUrl}/measurements/installation?installationId=${id}`, this.config); | ||
return response.body; | ||
} | ||
Airly.prototype.idData = function (id) { | ||
return __awaiter(this, void 0, void 0, function () { | ||
var response; | ||
return __generator(this, function (_a) { | ||
switch (_a.label) { | ||
case 0: return [4 /*yield*/, got_1.default(this.baseUrl + "/measurements/installation?installationId=" + id, this.config)]; | ||
case 1: | ||
response = _a.sent(); | ||
return [2 /*return*/, response.body]; | ||
} | ||
}); | ||
}); | ||
}; | ||
/** | ||
@@ -34,6 +78,15 @@ * @param {number} id Installation ID - Unique number of the installation | ||
*/ | ||
async idInfo(id) { | ||
const response = await got_1.default(`${this.baseUrl}/installations/${id}`, this.config); | ||
return response.body; | ||
} | ||
Airly.prototype.idInfo = function (id) { | ||
return __awaiter(this, void 0, void 0, function () { | ||
var response; | ||
return __generator(this, function (_a) { | ||
switch (_a.label) { | ||
case 0: return [4 /*yield*/, got_1.default(this.baseUrl + "/installations/" + id, this.config)]; | ||
case 1: | ||
response = _a.sent(); | ||
return [2 /*return*/, response.body]; | ||
} | ||
}); | ||
}); | ||
}; | ||
/** | ||
@@ -46,6 +99,15 @@ * @param {number} lat Latitude - Geographical coordinate | ||
*/ | ||
async nearestInstallations(lat, lng, maxDistanceKM, maxResults) { | ||
const response = await got_1.default(`${this.baseUrl}/installations/nearest?lat=${lat}&lng=${lng}&maxDistanceKM=${maxDistanceKM || 3}&maxResults=${maxResults || -1}`, this.config); | ||
return response.body; | ||
} | ||
Airly.prototype.nearestInstallations = function (lat, lng, maxDistanceKM, maxResults) { | ||
return __awaiter(this, void 0, void 0, function () { | ||
var response; | ||
return __generator(this, function (_a) { | ||
switch (_a.label) { | ||
case 0: return [4 /*yield*/, got_1.default(this.baseUrl + "/installations/nearest?lat=" + lat + "&lng=" + lng + "&maxDistanceKM=" + (maxDistanceKM || 3) + "&maxResults=" + (maxResults || -1), this.config)]; | ||
case 1: | ||
response = _a.sent(); | ||
return [2 /*return*/, response.body]; | ||
} | ||
}); | ||
}); | ||
}; | ||
/** | ||
@@ -57,6 +119,15 @@ * @param {number} lat Latitude - Geographical coordinate | ||
*/ | ||
async nearestIdMeasurements(lat, lng, maxDistanceKM) { | ||
const response = await got_1.default(`${this.baseUrl}/measurements/nearest?lat=${lat}&lng=${lng}&maxDistanceKM=${maxDistanceKM || 3}`, this.config); | ||
return response.body; | ||
} | ||
Airly.prototype.nearestIdMeasurements = function (lat, lng, maxDistanceKM) { | ||
return __awaiter(this, void 0, void 0, function () { | ||
var response; | ||
return __generator(this, function (_a) { | ||
switch (_a.label) { | ||
case 0: return [4 /*yield*/, got_1.default(this.baseUrl + "/measurements/nearest?lat=" + lat + "&lng=" + lng + "&maxDistanceKM=" + (maxDistanceKM || 3), this.config)]; | ||
case 1: | ||
response = _a.sent(); | ||
return [2 /*return*/, response.body]; | ||
} | ||
}); | ||
}); | ||
}; | ||
/** | ||
@@ -67,9 +138,18 @@ * @param {number} lat Latitude - Geographical coordinate | ||
*/ | ||
async nearestAverageMeasurements(lat, lng) { | ||
const response = await got_1.default(`${this.baseUrl}/measurements/point?lat=${lat}&lng=${lng}`, this.config); | ||
return response.body; | ||
} | ||
} | ||
Airly.prototype.nearestAverageMeasurements = function (lat, lng) { | ||
return __awaiter(this, void 0, void 0, function () { | ||
var response; | ||
return __generator(this, function (_a) { | ||
switch (_a.label) { | ||
case 0: return [4 /*yield*/, got_1.default(this.baseUrl + "/measurements/point?lat=" + lat + "&lng=" + lng, this.config)]; | ||
case 1: | ||
response = _a.sent(); | ||
return [2 /*return*/, response.body]; | ||
} | ||
}); | ||
}); | ||
}; | ||
return Airly; | ||
}()); | ||
module.exports = Airly; | ||
exports.default = Airly; | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "airly", | ||
"version": "1.2.3", | ||
"version": "1.3.0", | ||
"description": "Simple wrapper for Airly API", | ||
"main": "dist/index.js", | ||
"module": "dist/index.esm.js", | ||
"types": "dist/index.d.ts", | ||
"files": [ | ||
"dist/index.js", | ||
"dist/index.esm.js", | ||
"dist/index.d.ts" | ||
], | ||
"license": "MIT", | ||
@@ -13,7 +21,9 @@ "repository": "xxczaki/airly", | ||
"scripts": { | ||
"build": "del dist && tsc", | ||
"test": "xo && ava", | ||
"prebuild": "del-cli dist", | ||
"esm": "tsc --module esnext && cpy dist/index.js dist --rename index.esm.js", | ||
"cjs": "tsc --module commonjs", | ||
"build": "npm run esm && npm run cjs", | ||
"test": "npm run build && xo && ava", | ||
"prepublishOnly": "npm run build" | ||
}, | ||
"main": "dist", | ||
"engines": { | ||
@@ -46,12 +56,13 @@ "node": ">=8" | ||
"@akepinski/tsconfig": "0.0.2", | ||
"@types/got": "^9.4.4", | ||
"@typescript-eslint/eslint-plugin": "^1.9.0", | ||
"@types/got": "^9.6.5", | ||
"@typescript-eslint/eslint-plugin": "^1.13.0", | ||
"@typescript-eslint/parser": "^1.13.0", | ||
"ava": "*", | ||
"del-cli": "^1.1.0", | ||
"eslint-config-xo-typescript": "^0.12.0", | ||
"ts-node": "^8.1.0", | ||
"typescript": "^3.4.5", | ||
"cpy-cli": "^2.0.0", | ||
"del-cli": "^2.0.0", | ||
"eslint-config-xo-typescript": "^0.15.0", | ||
"ts-node": "^8.3.0", | ||
"typescript": "^3.5.3", | ||
"xo": "*" | ||
}, | ||
"types": "dist", | ||
"sideEffects": false, | ||
@@ -58,0 +69,0 @@ "ava": { |
@@ -67,2 +67,3 @@ # Airly :cloud: | ||
Type: `string` | ||
Default: `en` | ||
@@ -111,2 +112,3 @@ | ||
Type: `number` | ||
Default: 3 | ||
@@ -119,2 +121,3 @@ | ||
Type: `number` | ||
Default: -1 | ||
@@ -143,2 +146,3 @@ | ||
Type: `number` | ||
Default: 3 | ||
@@ -145,0 +149,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
344
167
23315
11
6
1