UNPKG

unifi-client

Version:

NodeJs client for Unifi products (https://www.ui.com/)

59 lines (58 loc) 2.44 kB
"use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; return extendStatics(d, b); }; return function (d, b) { if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); var __assign = (this && this.__assign) || function () { __assign = Object.assign || function(t) { for (var s, i = 1, n = arguments.length; i < n; i++) { s = arguments[i]; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; } return t; }; return __assign.apply(this, arguments); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.UnifiError = void 0; var __Error_1 = require("./__Error"); var UnifiError = /** @class */ (function (_super) { __extends(UnifiError, _super); function UnifiError(message, code, pMeta, exception) { if (message === void 0) { message = ''; } if (code === void 0) { code = 0; } if (pMeta === void 0) { pMeta = {}; } var _this = _super.call(this, message, code, exception) || this; _this.name = 'UnifiError'; //clone "meta" object before removing parts var meta = __assign({}, pMeta); //just in case // @ts-ignore delete meta.msg; // @ts-ignore delete meta.rc; _this.meta = meta; //just in case framework try to read message directly var metaString = " ".concat(JSON.stringify(_this.meta)); _this._message = "".concat(_this._message).concat(Object.values(_this.meta).length > 0 ? metaString : ''); _this.message = _this._message; // Set the prototype explicitly. // Object.setPrototypeOf(this, Error.prototype); _this.axiosError = exception; return _this; } return UnifiError; }(__Error_1.__Error)); exports.UnifiError = UnifiError;