new lib version [CI SKIP]

This commit is contained in:
2020-12-13 18:26:22 +00:00
parent e1b745952f
commit 6dd83aab19
168 changed files with 788 additions and 1359 deletions

13
dist/core/ApiError.js vendored Normal file
View File

@@ -0,0 +1,13 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ApiError = void 0;
class ApiError extends Error {
constructor(response, message) {
super(message);
this.url = response.url;
this.status = response.status;
this.statusText = response.statusText;
this.body = response.body;
}
}
exports.ApiError = ApiError;