@kohost/api-client 3.1.13 → 3.1.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/Errors/AppError.js +1 -0
- package/dist/cjs/Errors/AuthenticationError.js +1 -0
- package/dist/cjs/Errors/AuthorizationError.js +1 -0
- package/dist/cjs/Errors/ConflictError.js +1 -0
- package/dist/cjs/Errors/DeviceCommError.js +1 -0
- package/dist/cjs/Errors/LoginError.js +1 -0
- package/dist/cjs/Errors/NotFoundError.js +1 -0
- package/dist/cjs/Errors/RequestError.js +1 -0
- package/dist/cjs/Errors/SystemCommError.js +1 -0
- package/dist/cjs/Errors/TokenExpiredError.js +1 -0
- package/dist/cjs/Errors/UnprocessableRequestError.js +1 -0
- package/dist/cjs/Errors/ValidationError.js +1 -0
- package/dist/cjs/schemas/AlarmSchema.d.ts +5 -2
- package/dist/cjs/schemas/CameraSchema.d.ts +5 -2
- package/dist/cjs/schemas/CourtesySchema.d.ts +5 -2
- package/dist/cjs/schemas/DimmerSchema.d.ts +5 -2
- package/dist/cjs/schemas/GatewaySchema.d.ts +5 -2
- package/dist/cjs/schemas/LockSchema.d.ts +5 -2
- package/dist/cjs/schemas/MediaSourceSchema.d.ts +5 -2
- package/dist/cjs/schemas/MotionSensorSchema.d.ts +5 -2
- package/dist/cjs/schemas/RoomSchema.d.ts +23 -11
- package/dist/cjs/schemas/SwitchSchema.d.ts +5 -2
- package/dist/cjs/schemas/ThermostatSchema.d.ts +5 -2
- package/dist/cjs/schemas/WindowCoveringSchema.d.ts +5 -2
- package/dist/cjs/schemas/definitions.json +2 -1
- package/dist/esm/Commands.js +12 -0
- package/dist/esm/Commands.js.map +2 -2
- package/dist/esm/Errors.js +12 -0
- package/dist/esm/Errors.js.map +2 -2
- package/dist/esm/Models.js +14 -1
- package/dist/esm/Models.js.map +2 -2
- package/dist/esm/utils.js +14 -1
- package/dist/esm/utils.js.map +2 -2
- package/package.json +1 -1
package/dist/esm/Commands.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/Commands/Command.js", "../../src/Commands/SetSceneCommand.js", "../../src/Commands/SetAlarmCommand.js", "../../src/Commands/SetDimmerCommand.js", "../../src/Commands/SetSwitchCommand.js", "../../src/Commands/SetThermostatCommand.js", "../../src/Commands/SetLockCommand.js", "../../src/Commands/SetWindowCoveringCommand.js", "../../src/Commands/SetCourtesyCommand.js", "../../src/Commands/SetMediaCommand.js", "../../src/Commands/DiscoverUsersCommand.js", "../../src/Errors/AppError.js", "../../src/Errors/RequestError.js", "../../src/Commands/OCRDocumentCommand.js", "../../src/Commands/CheckInReservationCommand.js", "../../src/Commands/CheckOutReservationCommand.js", "../../src/Commands/SendEmailCommand.js", "../../src/Commands/SendSMSCommand.js", "../../src/Errors/AuthenticationError.js", "../../src/Errors/AuthorizationError.js", "../../src/Errors/ConflictError.js", "../../src/Errors/DeviceCommError.js", "../../src/Errors/LoginError.js", "../../src/Errors/NotFoundError.js", "../../src/Errors/SystemCommError.js", "../../src/Errors/TokenExpiredError.js", "../../src/Errors/UnprocessableRequestError.js", "../../src/Errors/ValidationError.js", "../../src/Errors/index.js", "../../src/Commands/DiscoverReservationsCommand.js", "../../src/Commands/DiscoverReservationSpaceCategoryAvailabilitiesCommand.js", "../../src/Commands/DiscoverRoomsCommand.js", "../../src/Commands/DiscoverCategoriesCommand.js", "../../src/Commands/CreateShortLinkCommand.js", "../../src/Commands/UpdateReservationCommand.js", "../../src/Commands/UpdateUserCommand.js", "../../src/Commands/GetMobileKeyCommand.js", "../../src/Commands/CreateImageUploadEndpointCommand.js", "../../src/Commands/UploadImageCommand.js", "../../src/Commands/GetProductsCommand.js", "../../src/Commands/SellProductsCommand.js", "../../src/Commands/index.js"],
|
|
4
|
-
"sourcesContent": ["class Command {\n constructor(data) {\n this.data = {};\n if (!data) throw new Error(\"Command data is required\");\n if (typeof data !== \"object\")\n throw new Error(\"Command data must be an object\");\n\n for (const key in data) {\n this.data[key] = data[key];\n }\n }\n\n get name() {\n throw new Error(\"Command name is required\");\n }\n\n get type() {\n return \"Command\";\n }\n\n get routingKey() {\n return \"\";\n }\n\n get exchange() {\n return \"Commands\";\n }\n\n build() {\n return { data: { ...this.data } };\n }\n}\n\nmodule.exports = Command;\n", "const Command = require(\"./Command\");\n\nclass SetSceneCommand extends Command {\n constructor({ id, devices, ...rest }) {\n super({ id, devices, ...rest });\n }\n\n get name() {\n return \"SetScene\";\n }\n\n get routingKey() {\n return `scene.${this.data.id}.set`;\n }\n}\n\nmodule.exports = SetSceneCommand;\n", "const Command = require(\"./Command\");\n\nclass SetAlarmCommand extends Command {\n constructor({ id, zones, areas, code, ...rest }) {\n super({ id, zones, areas, code, ...rest });\n }\n\n get name() {\n return \"SetAlarm\";\n }\n\n get routingKey() {\n return `alarm.${this.data.id}.set`;\n }\n}\n\nmodule.exports = SetAlarmCommand;\n", "const Command = require(\"./Command\");\n\nclass SetDimmerCommand extends Command {\n constructor({ id, level, ...rest }) {\n super({ id, level, ...rest });\n }\n\n get name() {\n return \"SetDimmer\";\n }\n\n get routingKey() {\n return `dimmer.${this.data.id}.set`;\n }\n}\n\nmodule.exports = SetDimmerCommand;\n", "const Command = require(\"./Command\");\n\nclass SetSwitchCommand extends Command {\n constructor({ id, state, ...rest }) {\n super({ id, state, ...rest });\n }\n\n get name() {\n return \"SetSwitch\";\n }\n\n get routingKey() {\n return `switch.${this.data.id}.set`;\n }\n}\n\nmodule.exports = SetSwitchCommand;\n", "const Command = require(\"./Command\");\n\nclass SetThermostatCommand extends Command {\n constructor({ id, setpoints, hvacMode, fanMode, ...rest }) {\n super({ id, setpoints, hvacMode, fanMode, ...rest });\n }\n\n get name() {\n return \"SetThermostat\";\n }\n\n get routingKey() {\n return `thermostat.${this.data.id}.set`;\n }\n}\n\nmodule.exports = SetThermostatCommand;\n", "const Command = require(\"./Command\");\n\nclass SetLockCommand extends Command {\n constructor({ id, state, ...rest }) {\n super({ id, state, ...rest });\n }\n\n get name() {\n return \"SetLock\";\n }\n\n get routingKey() {\n return `lock.${this.data.id}.set`;\n }\n}\n\nmodule.exports = SetLockCommand;\n", "const Command = require(\"./Command\");\n\nclass SetWindowCoveringCommand extends Command {\n constructor({ id, position, ...rest }) {\n super({ id, position, ...rest });\n }\n\n get name() {\n return \"SetWindowCovering\";\n }\n\n get routingKey() {\n return `windowCovering.${this.data.id}.set`;\n }\n}\n\nmodule.exports = SetWindowCoveringCommand;\n", "const Command = require(\"./Command\");\n\nclass SetCourtesyCommand extends Command {\n constructor({ id, state, ...rest }) {\n super({ id, state, ...rest });\n }\n\n get name() {\n return \"SetCourtesy\";\n }\n\n get routingKey() {\n return `courtesy.${this.data.id}.set`;\n }\n}\n\nmodule.exports = SetCourtesyCommand;\n", "const Command = require(\"./Command\");\n\nclass SetMediaCommand extends Command {\n constructor({ id, command, ...rest }) {\n super({ id, command, ...rest });\n }\n\n get name() {\n return \"SetMedia\";\n }\n\n get routingKey() {\n return `mediaSource.${this.data.id}.set`;\n }\n}\n\nmodule.exports = SetMediaCommand;\n", "const Command = require(\"./Command\");\n\nclass DiscoverUsersCommand extends Command {\n constructor({ id, ...rest }) {\n super({ id, ...rest });\n }\n\n get name() {\n return \"DiscoverUsers\";\n }\n\n get routingKey() {\n if (typeof this.data.id === \"string\") return `users.${this.data.id}.get`;\n if (Array.isArray(this.data.id)) return \"users.batch.get\";\n return \"users.get\";\n }\n}\n\nmodule.exports = DiscoverUsersCommand;\n", "module.exports = class AppError extends Error {\n constructor(message = \"Internal Server Error\", options) {\n super(message, options);\n this.type = this.constructor.name;\n this.statusCode = 500;\n Object.setPrototypeOf(this, AppError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class RequestError extends AppError {\n constructor(message = \"Bad Request\", options = {}) {\n super(message, options);\n this.statusCode = 400;\n Object.setPrototypeOf(this, RequestError.prototype);\n }\n};\n", "const Command = require(\"./Command\");\nconst RequestError = require(\"../Errors/RequestError\");\n\nclass OCRDocumentCommand extends Command {\n constructor({ type, image, ...rest }) {\n if (!image) throw new RequestError(\"document image is required\");\n super({ type, image, ...rest });\n }\n\n get name() {\n return \"OCRDocument\";\n }\n}\n\nmodule.exports = OCRDocumentCommand;\n", "const Command = require(\"./Command\");\nconst RequestError = require(\"../Errors/RequestError\");\n\nclass CheckInReservationCommand extends Command {\n constructor({ id, ...rest }) {\n if (!id) throw new RequestError(\"reservation id is required\");\n super({ id, ...rest });\n }\n\n get name() {\n return \"CheckInReservation\";\n }\n\n get routingKey() {\n return `reservation.${this.data.id}.checkin`;\n }\n}\n\nmodule.exports = CheckInReservationCommand;\n", "const Command = require(\"./Command\");\nconst RequestError = require(\"../Errors/RequestError\");\n\nclass CheckOutReservationCommand extends Command {\n constructor({ reservationId, userId, ...rest }) {\n if (!reservationId) throw new RequestError(\"reservation id is required\");\n if (!userId) throw new RequestError(\"user id is required\");\n super({ reservationId, userId, ...rest });\n }\n\n get name() {\n return \"CheckOutReservation\";\n }\n\n get routingKey() {\n return `reservation.${this.data.id}.checkout`;\n }\n}\n\nmodule.exports = CheckOutReservationCommand;\n", "const Command = require(\"./Command\");\nconst RequestError = require(\"../Errors/RequestError\");\n\nclass SendEmailCommand extends Command {\n constructor({ text, html, to, from, subject, ...rest }) {\n if (!to) throw new RequestError(\"email to is required\");\n if (!from) throw new RequestError(\"email from is required\");\n if (!subject) throw new RequestError(\"email subject is required\");\n if (!text && !html)\n throw new RequestError(\"email text or html is required\");\n\n super({ text, html, to, from, subject, ...rest });\n }\n\n get name() {\n return \"SendEmail\";\n }\n\n get routingKey() {\n return \"comm.email.send\";\n }\n}\n\nmodule.exports = SendEmailCommand;\n", "const Command = require(\"./Command\");\nconst RequestError = require(\"../Errors/RequestError\");\n\nclass SendSMSCommand extends Command {\n constructor({ id, body, to, from, media, ...rest }) {\n if (!body && !media)\n throw new RequestError(\"sms body or media is required\");\n if (!to) throw new RequestError(\"sms to is required\");\n if (!from) throw new RequestError(\"sms from is required\");\n super({ id, body, to, from, media, ...rest });\n }\n\n get name() {\n return \"SendSMS\";\n }\n\n get routingKey() {\n return \"comm.sms.send\";\n }\n}\n\nmodule.exports = SendSMSCommand;\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class AuthenticationError extends AppError {\n constructor(message = \"Authentication Error\", options = {}) {\n super(message, options);\n this.statusCode = 401;\n Object.setPrototypeOf(this, AuthenticationError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class AuthorizationError extends AppError {\n constructor(message = \"Authorization Error\", options = {}) {\n super(message, options);\n this.statusCode = 403;\n Object.setPrototypeOf(this, AuthorizationError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class ConflictError extends AppError {\n constructor(message = \"Bad Request\", options = {}) {\n super(message, options);\n this.statusCode = 409;\n Object.setPrototypeOf(this, ConflictError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class DeviceCommError extends AppError {\n constructor(message = \"Device Communication Error\", options = {}) {\n super(message, options);\n this.statusCode = 503;\n Object.setPrototypeOf(this, DeviceCommError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class LoginError extends AppError {\n constructor(message = \"Invalid Login information provided\", options = {}) {\n super(message, options);\n this.statusCode = 401;\n Object.setPrototypeOf(this, LoginError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class NotFoundError extends AppError {\n constructor(message = \"Resource Not Found\", options = {}) {\n super(message, options);\n this.statusCode = 404;\n Object.setPrototypeOf(this, NotFoundError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class SystemCommError extends AppError {\n constructor(message = \"System Communication Error\", options = {}) {\n super(message, options);\n this.statusCode = 503;\n Object.setPrototypeOf(this, SystemCommError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class TokenExpiredError extends AppError {\n constructor(message = \"Token Expired\", options = {}) {\n super(message, options);\n this.statusCode = 401;\n Object.setPrototypeOf(this, TokenExpiredError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class UnprocessableRequestError extends AppError {\n constructor(message = \"Unprocessable Request Error\", options = {}) {\n super(message, options);\n this.statusCode = 422;\n Object.setPrototypeOf(this, UnprocessableRequestError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class ValidationError extends AppError {\n constructor(message = \"Validation Error\", options = {}) {\n super(message, options);\n this.statusCode = 400;\n Object.setPrototypeOf(this, ValidationError.prototype);\n }\n};\n", "const Errors = {\n AppError: require(\"./AppError\"),\n AuthenticationError: require(\"./AuthenticationError\"),\n AuthorizationError: require(\"./AuthorizationError\"),\n ConflictError: require(\"./ConflictError\"),\n DeviceCommError: require(\"./DeviceCommError\"),\n LoginError: require(\"./LoginError\"),\n NotFoundError: require(\"./NotFoundError\"),\n RequestError: require(\"./RequestError\"),\n SystemCommError: require(\"./SystemCommError\"),\n TokenExpiredError: require(\"./TokenExpiredError\"),\n UnprocessableRequestError: require(\"./UnprocessableRequestError\"),\n ValidationError: require(\"./ValidationError\"),\n};\n\nmodule.exports = Errors;\n", "const { RequestError } = require(\"../Errors\");\nconst Command = require(\"./Command\");\n\nclass DiscoverReservationsCommand extends Command {\n constructor(options) {\n if (!options) throw new RequestError(\"options are required\");\n const { id, startDate, endDate, status, ...rest } = options;\n super({ id, startDate, endDate, status, ...rest });\n }\n\n get name() {\n return \"DiscoverReservations\";\n }\n\n get routingKey() {\n return \"reservation.discover\";\n }\n}\n\nmodule.exports = DiscoverReservationsCommand;\n", "const { RequestError } = require(\"../Errors\");\nconst Command = require(\"./Command\");\n\nclass DiscoverReservationSpaceCategoryAvailabilitiesCommand extends Command {\n constructor(options) {\n if (!options) throw new RequestError(\"options are required\");\n const { id, ...rest } = options;\n super({ id, ...rest });\n }\n\n get name() {\n return \"DiscoverReservationSpaceCategoryAvailabilities\";\n }\n\n get routingKey() {\n return \"reservation.discoverRoomUpsells\";\n }\n}\n\nmodule.exports = DiscoverReservationSpaceCategoryAvailabilitiesCommand;\n", "const Command = require(\"./Command\");\n\nclass DiscoverRoomsCommand extends Command {\n constructor({\n id,\n types,\n categories,\n startDate,\n endDate,\n serviceStatus,\n housekeepingStatus,\n ...rest\n }) {\n super({\n id,\n types,\n categories,\n startDate,\n endDate,\n serviceStatus,\n housekeepingStatus,\n ...rest,\n });\n }\n\n get name() {\n return \"DiscoverRooms\";\n }\n\n get routingKey() {\n if (typeof this.data.id === \"string\") return `rooms.${this.data.id}.get`;\n if (Array.isArray(this.data.id)) return \"rooms.batch.get\";\n return \"rooms.get\";\n }\n}\n\nmodule.exports = DiscoverRoomsCommand;\n", "const Command = require(\"./Command\");\n\nclass DiscoverCategoriesCommand extends Command {\n constructor({ id, ...rest }) {\n super({ id, ...rest });\n }\n\n get name() {\n return \"DiscoverCategories\";\n }\n\n get routingKey() {\n if (typeof this.data.id === \"string\")\n return `categories.${this.data.id}.get`;\n if (Array.isArray(this.data.id)) return \"categories.batch.get\";\n return \"categories.get\";\n }\n}\n\nmodule.exports = DiscoverCategoriesCommand;\n", "const Command = require(\"./Command\");\nconst RequestError = require(\"../Errors/RequestError\");\n\nclass CreateShortLinkCommand extends Command {\n constructor({ title, destination, ...rest }) {\n if (!title) throw new RequestError(\"title is required\");\n if (!destination) throw new RequestError(\"destination to is required\");\n super({ title, destination, ...rest });\n }\n\n get name() {\n return \"CreateShortLink\";\n }\n\n get routingKey() {\n return \"comm.shortlink.create\";\n }\n}\n\nmodule.exports = CreateShortLinkCommand;\n", "const Command = require(\"./Command\");\nconst RequestError = require(\"../Errors/RequestError\");\n\nclass UpdateReservationCommand extends Command {\n constructor({ id, ...rest }) {\n if (!id) throw new RequestError(\"document type is required\");\n super({ id, ...rest });\n }\n\n get name() {\n return \"UpdateReservation\";\n }\n\n get routingKey() {\n return `reservation.${this.data.id}.update`;\n }\n}\n\nmodule.exports = UpdateReservationCommand;\n", "const Command = require(\"./Command\");\nconst RequestError = require(\"../Errors/RequestError\");\n\nclass UpdateUserCommand extends Command {\n constructor({\n id,\n email,\n phone,\n identification,\n address,\n note,\n nationality,\n file,\n payment,\n ...rest\n }) {\n if (!id) throw new RequestError(\"document type is required\");\n super({\n id,\n email,\n phone,\n identification,\n address,\n note,\n nationality,\n file,\n payment,\n ...rest,\n });\n }\n\n get name() {\n return \"UpdateUser\";\n }\n\n get routingKey() {\n return `user.${this.data.id}.update`;\n }\n}\n\nmodule.exports = UpdateUserCommand;\n", "const Command = require(\"./Command\");\n\nclass GetMobileKeyCommand extends Command {\n constructor({\n id,\n phone,\n beginDateTime,\n endDateTime,\n keyToReplace,\n ...rest\n }) {\n super({ id, phone, beginDateTime, endDateTime, keyToReplace, ...rest });\n }\n\n get name() {\n return \"GetMobileKey\";\n }\n\n get routingKey() {\n return `lock.${this.data.id}.set`;\n }\n}\n\nmodule.exports = GetMobileKeyCommand;\n", "const Command = require(\"./Command\");\n\nclass CreateImageUploadEndpointCommand extends Command {\n constructor({ id, expires, ...rest }) {\n super({ id, expires, ...rest });\n }\n\n get name() {\n return \"CreateImageUploadEndpoint\";\n }\n\n get routingKey() {\n return \"image.createUploadEndpoint\";\n }\n}\n\nmodule.exports = CreateImageUploadEndpointCommand;\n", "const Command = require(\"./Command\");\n\nclass UploadImageCommand extends Command {\n constructor({ id, url, file, ...rest }) {\n super({ id, url, file, ...rest });\n }\n\n get name() {\n return \"UploadImage\";\n }\n\n get routingKey() {\n return `image.${this.data.id}.upload`;\n }\n}\n\nmodule.exports = UploadImageCommand;\n", "const Command = require(\"./Command\");\n\nclass GetProductsCommand extends Command {\n constructor({ id, externalSystemId, ...rest }) {\n super({ id, externalSystemId, ...rest });\n }\n\n get name() {\n return \"GetProducts\";\n }\n\n get routingKey() {\n return `product.${this.data.id}.get`;\n }\n}\n\nmodule.exports = GetProductsCommand;\n", "const Command = require(\"./Command\");\n\nclass SellProductsCommand extends Command {\n constructor({ reservationId, userId, products, ...rest }) {\n super({ reservationId, userId, products, ...rest });\n }\n\n get name() {\n return \"SellProducts\";\n }\n\n get routingKey() {\n return `product.${this.data.id}.sell`;\n }\n}\n\nmodule.exports = SellProductsCommand;\n", "const SetSceneCommand = require(\"./SetSceneCommand\");\nconst SetAlarmCommand = require(\"./SetAlarmCommand\");\nconst SetDimmerCommand = require(\"./SetDimmerCommand\");\nconst SetSwitchCommand = require(\"./SetSwitchCommand\");\nconst SetThermostatCommand = require(\"./SetThermostatCommand\");\nconst SetLockCommand = require(\"./SetLockCommand\");\nconst SetWindowCoveringCommand = require(\"./SetWindowCoveringCommand\");\nconst SetCourtesyCommand = require(\"./SetCourtesyCommand\");\nconst SetMediaCommand = require(\"./SetMediaCommand\");\nconst DiscoverUsersCommand = require(\"./DiscoverUsersCommand\");\nconst OCRDocumentCommand = require(\"./OCRDocumentCommand\");\nconst CheckInReservationCommand = require(\"./CheckInReservationCommand\");\nconst CheckOutReservationCommand = require(\"./CheckOutReservationCommand\");\nconst SendEmailCommand = require(\"./SendEmailCommand\");\nconst SendSMSCommand = require(\"./SendSMSCommand\");\nconst DiscoverReservationsCommand = require(\"./DiscoverReservationsCommand\");\nconst DiscoverReservationSpaceCategoryAvailabilitiesCommand = require(\"./DiscoverReservationSpaceCategoryAvailabilitiesCommand\");\nconst DiscoverRoomsCommand = require(\"./DiscoverRoomsCommand\");\nconst DiscoverCategoriesCommand = require(\"./DiscoverCategoriesCommand\");\nconst CreateShortLinkCommand = require(\"./CreateShortLinkCommand\");\nconst UpdateReservationCommand = require(\"./UpdateReservationCommand\");\nconst UpdateUserCommand = require(\"./UpdateUserCommand\");\nconst GetMobileKeyCommand = require(\"./GetMobileKeyCommand\");\nconst CreateImageUploadEndpointCommand = require(\"./CreateImageUploadEndpointCommand\");\nconst UploadImageCommand = require(\"./UploadImageCommand\");\nconst GetProductsCommand = require(\"./GetProductsCommand\");\nconst SellProductsCommand = require(\"./SellProductsCommand\");\n\nmodule.exports = {\n SetSceneCommand,\n SetAlarmCommand,\n SetDimmerCommand,\n SetSwitchCommand,\n SetThermostatCommand,\n SetLockCommand,\n SetWindowCoveringCommand,\n SetCourtesyCommand,\n SetMediaCommand,\n OCRDocumentCommand,\n DiscoverUsersCommand,\n CheckInReservationCommand,\n CheckOutReservationCommand,\n SendSMSCommand,\n SendEmailCommand,\n DiscoverReservationsCommand,\n DiscoverReservationSpaceCategoryAvailabilitiesCommand,\n DiscoverRoomsCommand,\n DiscoverCategoriesCommand,\n CreateShortLinkCommand,\n UpdateReservationCommand,\n UpdateUserCommand,\n GetMobileKeyCommand,\n CreateImageUploadEndpointCommand,\n UploadImageCommand,\n GetProductsCommand,\n SellProductsCommand,\n};\n"],
|
|
5
|
-
"mappings": ";;;;;;;;AAAA;AAAA;AAAA,QAAM,UAAN,MAAc;AAAA,MAAd,OAAc;AAAA;AAAA;AAAA,MACZ,YAAY,MAAM;AAChB,aAAK,OAAO,CAAC;AACb,YAAI,CAAC;AAAM,gBAAM,IAAI,MAAM,0BAA0B;AACrD,YAAI,OAAO,SAAS;AAClB,gBAAM,IAAI,MAAM,gCAAgC;AAElD,mBAAW,OAAO,MAAM;AACtB,eAAK,KAAK,GAAG,IAAI,KAAK,GAAG;AAAA,QAC3B;AAAA,MACF;AAAA,MAEA,IAAI,OAAO;AACT,cAAM,IAAI,MAAM,0BAA0B;AAAA,MAC5C;AAAA,MAEA,IAAI,OAAO;AACT,eAAO;AAAA,MACT;AAAA,MAEA,IAAI,aAAa;AACf,eAAO;AAAA,MACT;AAAA,MAEA,IAAI,WAAW;AACb,eAAO;AAAA,MACT;AAAA,MAEA,QAAQ;AACN,eAAO,EAAE,MAAM,EAAE,GAAG,KAAK,KAAK,EAAE;AAAA,MAClC;AAAA,IACF;AAEA,WAAO,UAAU;AAAA;AAAA;;;ACjCjB;AAAA;AAAA,QAAM,UAAU;AAEhB,QAAM,kBAAN,cAA8B,QAAQ;AAAA,MAFtC,OAEsC;AAAA;AAAA;AAAA,MACpC,YAAY,EAAE,IAAI,SAAS,GAAG,KAAK,GAAG;AACpC,cAAM,EAAE,IAAI,SAAS,GAAG,KAAK,CAAC;AAAA,MAChC;AAAA,MAEA,IAAI,OAAO;AACT,eAAO;AAAA,MACT;AAAA,MAEA,IAAI,aAAa;AACf,eAAO,SAAS,KAAK,KAAK,EAAE;AAAA,MAC9B;AAAA,IACF;AAEA,WAAO,UAAU;AAAA;AAAA;;;AChBjB;AAAA;AAAA,QAAM,UAAU;AAEhB,QAAM,kBAAN,cAA8B,QAAQ;AAAA,MAFtC,OAEsC;AAAA;AAAA;AAAA,MACpC,YAAY,EAAE,IAAI,OAAO,OAAO,MAAM,GAAG,KAAK,GAAG;AAC/C,cAAM,EAAE,IAAI,OAAO,OAAO,MAAM,GAAG,KAAK,CAAC;AAAA,MAC3C;AAAA,MAEA,IAAI,OAAO;AACT,eAAO;AAAA,MACT;AAAA,MAEA,IAAI,aAAa;AACf,eAAO,SAAS,KAAK,KAAK,EAAE;AAAA,MAC9B;AAAA,IACF;AAEA,WAAO,UAAU;AAAA;AAAA;;;AChBjB;AAAA;AAAA,QAAM,UAAU;AAEhB,QAAM,mBAAN,cAA+B,QAAQ;AAAA,MAFvC,OAEuC;AAAA;AAAA;AAAA,MACrC,YAAY,EAAE,IAAI,OAAO,GAAG,KAAK,GAAG;AAClC,cAAM,EAAE,IAAI,OAAO,GAAG,KAAK,CAAC;AAAA,MAC9B;AAAA,MAEA,IAAI,OAAO;AACT,eAAO;AAAA,MACT;AAAA,MAEA,IAAI,aAAa;AACf,eAAO,UAAU,KAAK,KAAK,EAAE;AAAA,MAC/B;AAAA,IACF;AAEA,WAAO,UAAU;AAAA;AAAA;;;AChBjB;AAAA;AAAA,QAAM,UAAU;AAEhB,QAAM,mBAAN,cAA+B,QAAQ;AAAA,MAFvC,OAEuC;AAAA;AAAA;AAAA,MACrC,YAAY,EAAE,IAAI,OAAO,GAAG,KAAK,GAAG;AAClC,cAAM,EAAE,IAAI,OAAO,GAAG,KAAK,CAAC;AAAA,MAC9B;AAAA,MAEA,IAAI,OAAO;AACT,eAAO;AAAA,MACT;AAAA,MAEA,IAAI,aAAa;AACf,eAAO,UAAU,KAAK,KAAK,EAAE;AAAA,MAC/B;AAAA,IACF;AAEA,WAAO,UAAU;AAAA;AAAA;;;AChBjB;AAAA;AAAA,QAAM,UAAU;AAEhB,QAAM,uBAAN,cAAmC,QAAQ;AAAA,MAF3C,OAE2C;AAAA;AAAA;AAAA,MACzC,YAAY,EAAE,IAAI,WAAW,UAAU,SAAS,GAAG,KAAK,GAAG;AACzD,cAAM,EAAE,IAAI,WAAW,UAAU,SAAS,GAAG,KAAK,CAAC;AAAA,MACrD;AAAA,MAEA,IAAI,OAAO;AACT,eAAO;AAAA,MACT;AAAA,MAEA,IAAI,aAAa;AACf,eAAO,cAAc,KAAK,KAAK,EAAE;AAAA,MACnC;AAAA,IACF;AAEA,WAAO,UAAU;AAAA;AAAA;;;AChBjB;AAAA;AAAA,QAAM,UAAU;AAEhB,QAAM,iBAAN,cAA6B,QAAQ;AAAA,MAFrC,OAEqC;AAAA;AAAA;AAAA,MACnC,YAAY,EAAE,IAAI,OAAO,GAAG,KAAK,GAAG;AAClC,cAAM,EAAE,IAAI,OAAO,GAAG,KAAK,CAAC;AAAA,MAC9B;AAAA,MAEA,IAAI,OAAO;AACT,eAAO;AAAA,MACT;AAAA,MAEA,IAAI,aAAa;AACf,eAAO,QAAQ,KAAK,KAAK,EAAE;AAAA,MAC7B;AAAA,IACF;AAEA,WAAO,UAAU;AAAA;AAAA;;;AChBjB;AAAA;AAAA,QAAM,UAAU;AAEhB,QAAM,2BAAN,cAAuC,QAAQ;AAAA,MAF/C,OAE+C;AAAA;AAAA;AAAA,MAC7C,YAAY,EAAE,IAAI,UAAU,GAAG,KAAK,GAAG;AACrC,cAAM,EAAE,IAAI,UAAU,GAAG,KAAK,CAAC;AAAA,MACjC;AAAA,MAEA,IAAI,OAAO;AACT,eAAO;AAAA,MACT;AAAA,MAEA,IAAI,aAAa;AACf,eAAO,kBAAkB,KAAK,KAAK,EAAE;AAAA,MACvC;AAAA,IACF;AAEA,WAAO,UAAU;AAAA;AAAA;;;AChBjB;AAAA;AAAA,QAAM,UAAU;AAEhB,QAAM,qBAAN,cAAiC,QAAQ;AAAA,MAFzC,OAEyC;AAAA;AAAA;AAAA,MACvC,YAAY,EAAE,IAAI,OAAO,GAAG,KAAK,GAAG;AAClC,cAAM,EAAE,IAAI,OAAO,GAAG,KAAK,CAAC;AAAA,MAC9B;AAAA,MAEA,IAAI,OAAO;AACT,eAAO;AAAA,MACT;AAAA,MAEA,IAAI,aAAa;AACf,eAAO,YAAY,KAAK,KAAK,EAAE;AAAA,MACjC;AAAA,IACF;AAEA,WAAO,UAAU;AAAA;AAAA;;;AChBjB;AAAA;AAAA,QAAM,UAAU;AAEhB,QAAM,kBAAN,cAA8B,QAAQ;AAAA,MAFtC,OAEsC;AAAA;AAAA;AAAA,MACpC,YAAY,EAAE,IAAI,SAAS,GAAG,KAAK,GAAG;AACpC,cAAM,EAAE,IAAI,SAAS,GAAG,KAAK,CAAC;AAAA,MAChC;AAAA,MAEA,IAAI,OAAO;AACT,eAAO;AAAA,MACT;AAAA,MAEA,IAAI,aAAa;AACf,eAAO,eAAe,KAAK,KAAK,EAAE;AAAA,MACpC;AAAA,IACF;AAEA,WAAO,UAAU;AAAA;AAAA;;;AChBjB;AAAA;AAAA,QAAM,UAAU;AAEhB,QAAM,uBAAN,cAAmC,QAAQ;AAAA,MAF3C,OAE2C;AAAA;AAAA;AAAA,MACzC,YAAY,EAAE,IAAI,GAAG,KAAK,GAAG;AAC3B,cAAM,EAAE,IAAI,GAAG,KAAK,CAAC;AAAA,MACvB;AAAA,MAEA,IAAI,OAAO;AACT,eAAO;AAAA,MACT;AAAA,MAEA,IAAI,aAAa;AACf,YAAI,OAAO,KAAK,KAAK,OAAO;AAAU,iBAAO,SAAS,KAAK,KAAK,EAAE;AAClE,YAAI,MAAM,QAAQ,KAAK,KAAK,EAAE;AAAG,iBAAO;AACxC,eAAO;AAAA,MACT;AAAA,IACF;AAEA,WAAO,UAAU;AAAA;AAAA;;;AClBjB;AAAA;AAAA,WAAO,UAAU,MAAM,iBAAiB,MAAM;AAAA,MAA9C,OAA8C;AAAA;AAAA;AAAA,MAC5C,YAAY,UAAU,yBAAyB,SAAS;AACtD,cAAM,SAAS,OAAO;AACtB,aAAK,OAAO,KAAK,YAAY;AAC7B,aAAK,aAAa;AAClB,eAAO,eAAe,MAAM,SAAS,SAAS;AAAA,MAChD;AAAA,IACF;AAAA;AAAA;;;ACPA;AAAA;AAAA,QAAM,WAAW;AAEjB,WAAO,UAAU,MAAM,qBAAqB,SAAS;AAAA,MAFrD,OAEqD;AAAA;AAAA;AAAA,MACnD,YAAY,UAAU,eAAe,UAAU,CAAC,GAAG;AACjD,cAAM,SAAS,OAAO;AACtB,aAAK,aAAa;AAClB,eAAO,eAAe,MAAM,aAAa,SAAS;AAAA,MACpD;AAAA,IACF;AAAA;AAAA;;;ACRA;AAAA;AAAA,QAAM,UAAU;AAChB,QAAM,eAAe;AAErB,QAAM,qBAAN,cAAiC,QAAQ;AAAA,MAHzC,OAGyC;AAAA;AAAA;AAAA,MACvC,YAAY,EAAE,MAAM,OAAO,GAAG,KAAK,GAAG;AACpC,YAAI,CAAC;AAAO,gBAAM,IAAI,aAAa,4BAA4B;AAC/D,cAAM,EAAE,MAAM,OAAO,GAAG,KAAK,CAAC;AAAA,MAChC;AAAA,MAEA,IAAI,OAAO;AACT,eAAO;AAAA,MACT;AAAA,IACF;AAEA,WAAO,UAAU;AAAA;AAAA;;;ACdjB;AAAA;AAAA,QAAM,UAAU;AAChB,QAAM,eAAe;AAErB,QAAM,4BAAN,cAAwC,QAAQ;AAAA,MAHhD,OAGgD;AAAA;AAAA;AAAA,MAC9C,YAAY,EAAE,IAAI,GAAG,KAAK,GAAG;AAC3B,YAAI,CAAC;AAAI,gBAAM,IAAI,aAAa,4BAA4B;AAC5D,cAAM,EAAE,IAAI,GAAG,KAAK,CAAC;AAAA,MACvB;AAAA,MAEA,IAAI,OAAO;AACT,eAAO;AAAA,MACT;AAAA,MAEA,IAAI,aAAa;AACf,eAAO,eAAe,KAAK,KAAK,EAAE;AAAA,MACpC;AAAA,IACF;AAEA,WAAO,UAAU;AAAA;AAAA;;;AClBjB;AAAA;AAAA,QAAM,UAAU;AAChB,QAAM,eAAe;AAErB,QAAM,6BAAN,cAAyC,QAAQ;AAAA,MAHjD,OAGiD;AAAA;AAAA;AAAA,MAC/C,YAAY,EAAE,eAAe,QAAQ,GAAG,KAAK,GAAG;AAC9C,YAAI,CAAC;AAAe,gBAAM,IAAI,aAAa,4BAA4B;AACvE,YAAI,CAAC;AAAQ,gBAAM,IAAI,aAAa,qBAAqB;AACzD,cAAM,EAAE,eAAe,QAAQ,GAAG,KAAK,CAAC;AAAA,MAC1C;AAAA,MAEA,IAAI,OAAO;AACT,eAAO;AAAA,MACT;AAAA,MAEA,IAAI,aAAa;AACf,eAAO,eAAe,KAAK,KAAK,EAAE;AAAA,MACpC;AAAA,IACF;AAEA,WAAO,UAAU;AAAA;AAAA;;;ACnBjB;AAAA;AAAA,QAAM,UAAU;AAChB,QAAM,eAAe;AAErB,QAAM,mBAAN,cAA+B,QAAQ;AAAA,MAHvC,OAGuC;AAAA;AAAA;AAAA,MACrC,YAAY,EAAE,MAAM,MAAM,IAAI,MAAM,SAAS,GAAG,KAAK,GAAG;AACtD,YAAI,CAAC;AAAI,gBAAM,IAAI,aAAa,sBAAsB;AACtD,YAAI,CAAC;AAAM,gBAAM,IAAI,aAAa,wBAAwB;AAC1D,YAAI,CAAC;AAAS,gBAAM,IAAI,aAAa,2BAA2B;AAChE,YAAI,CAAC,QAAQ,CAAC;AACZ,gBAAM,IAAI,aAAa,gCAAgC;AAEzD,cAAM,EAAE,MAAM,MAAM,IAAI,MAAM,SAAS,GAAG,KAAK,CAAC;AAAA,MAClD;AAAA,MAEA,IAAI,OAAO;AACT,eAAO;AAAA,MACT;AAAA,MAEA,IAAI,aAAa;AACf,eAAO;AAAA,MACT;AAAA,IACF;AAEA,WAAO,UAAU;AAAA;AAAA;;;ACvBjB;AAAA;AAAA,QAAM,UAAU;AAChB,QAAM,eAAe;AAErB,QAAM,iBAAN,cAA6B,QAAQ;AAAA,MAHrC,OAGqC;AAAA;AAAA;AAAA,MACnC,YAAY,EAAE,IAAI,MAAM,IAAI,MAAM,OAAO,GAAG,KAAK,GAAG;AAClD,YAAI,CAAC,QAAQ,CAAC;AACZ,gBAAM,IAAI,aAAa,+BAA+B;AACxD,YAAI,CAAC;AAAI,gBAAM,IAAI,aAAa,oBAAoB;AACpD,YAAI,CAAC;AAAM,gBAAM,IAAI,aAAa,sBAAsB;AACxD,cAAM,EAAE,IAAI,MAAM,IAAI,MAAM,OAAO,GAAG,KAAK,CAAC;AAAA,MAC9C;AAAA,MAEA,IAAI,OAAO;AACT,eAAO;AAAA,MACT;AAAA,MAEA,IAAI,aAAa;AACf,eAAO;AAAA,MACT;AAAA,IACF;AAEA,WAAO,UAAU;AAAA;AAAA;;;ACrBjB;AAAA;AAAA,QAAM,WAAW;AAEjB,WAAO,UAAU,MAAM,4BAA4B,SAAS;AAAA,MAF5D,OAE4D;AAAA;AAAA;AAAA,MAC1D,YAAY,UAAU,wBAAwB,UAAU,CAAC,GAAG;AAC1D,cAAM,SAAS,OAAO;AACtB,aAAK,aAAa;AAClB,eAAO,eAAe,MAAM,oBAAoB,SAAS;AAAA,MAC3D;AAAA,IACF;AAAA;AAAA;;;ACRA;AAAA;AAAA,QAAM,WAAW;AAEjB,WAAO,UAAU,MAAM,2BAA2B,SAAS;AAAA,MAF3D,OAE2D;AAAA;AAAA;AAAA,MACzD,YAAY,UAAU,uBAAuB,UAAU,CAAC,GAAG;AACzD,cAAM,SAAS,OAAO;AACtB,aAAK,aAAa;AAClB,eAAO,eAAe,MAAM,mBAAmB,SAAS;AAAA,MAC1D;AAAA,IACF;AAAA;AAAA;;;ACRA;AAAA;AAAA,QAAM,WAAW;AAEjB,WAAO,UAAU,MAAM,sBAAsB,SAAS;AAAA,MAFtD,OAEsD;AAAA;AAAA;AAAA,MACpD,YAAY,UAAU,eAAe,UAAU,CAAC,GAAG;AACjD,cAAM,SAAS,OAAO;AACtB,aAAK,aAAa;AAClB,eAAO,eAAe,MAAM,cAAc,SAAS;AAAA,MACrD;AAAA,IACF;AAAA;AAAA;;;ACRA;AAAA;AAAA,QAAM,WAAW;AAEjB,WAAO,UAAU,MAAM,wBAAwB,SAAS;AAAA,MAFxD,OAEwD;AAAA;AAAA;AAAA,MACtD,YAAY,UAAU,8BAA8B,UAAU,CAAC,GAAG;AAChE,cAAM,SAAS,OAAO;AACtB,aAAK,aAAa;AAClB,eAAO,eAAe,MAAM,gBAAgB,SAAS;AAAA,MACvD;AAAA,IACF;AAAA;AAAA;;;ACRA;AAAA;AAAA,QAAM,WAAW;AAEjB,WAAO,UAAU,MAAM,mBAAmB,SAAS;AAAA,MAFnD,OAEmD;AAAA;AAAA;AAAA,MACjD,YAAY,UAAU,sCAAsC,UAAU,CAAC,GAAG;AACxE,cAAM,SAAS,OAAO;AACtB,aAAK,aAAa;AAClB,eAAO,eAAe,MAAM,WAAW,SAAS;AAAA,MAClD;AAAA,IACF;AAAA;AAAA;;;ACRA;AAAA;AAAA,QAAM,WAAW;AAEjB,WAAO,UAAU,MAAM,sBAAsB,SAAS;AAAA,MAFtD,OAEsD;AAAA;AAAA;AAAA,MACpD,YAAY,UAAU,sBAAsB,UAAU,CAAC,GAAG;AACxD,cAAM,SAAS,OAAO;AACtB,aAAK,aAAa;AAClB,eAAO,eAAe,MAAM,cAAc,SAAS;AAAA,MACrD;AAAA,IACF;AAAA;AAAA;;;ACRA;AAAA;AAAA,QAAM,WAAW;AAEjB,WAAO,UAAU,MAAM,wBAAwB,SAAS;AAAA,MAFxD,OAEwD;AAAA;AAAA;AAAA,MACtD,YAAY,UAAU,8BAA8B,UAAU,CAAC,GAAG;AAChE,cAAM,SAAS,OAAO;AACtB,aAAK,aAAa;AAClB,eAAO,eAAe,MAAM,gBAAgB,SAAS;AAAA,MACvD;AAAA,IACF;AAAA;AAAA;;;ACRA;AAAA;AAAA,QAAM,WAAW;AAEjB,WAAO,UAAU,MAAM,0BAA0B,SAAS;AAAA,MAF1D,OAE0D;AAAA;AAAA;AAAA,MACxD,YAAY,UAAU,iBAAiB,UAAU,CAAC,GAAG;AACnD,cAAM,SAAS,OAAO;AACtB,aAAK,aAAa;AAClB,eAAO,eAAe,MAAM,kBAAkB,SAAS;AAAA,MACzD;AAAA,IACF;AAAA;AAAA;;;ACRA;AAAA;AAAA,QAAM,WAAW;AAEjB,WAAO,UAAU,MAAM,kCAAkC,SAAS;AAAA,MAFlE,OAEkE;AAAA;AAAA;AAAA,MAChE,YAAY,UAAU,+BAA+B,UAAU,CAAC,GAAG;AACjE,cAAM,SAAS,OAAO;AACtB,aAAK,aAAa;AAClB,eAAO,eAAe,MAAM,0BAA0B,SAAS;AAAA,MACjE;AAAA,IACF;AAAA;AAAA;;;ACRA;AAAA;AAAA,QAAM,WAAW;AAEjB,WAAO,UAAU,MAAM,wBAAwB,SAAS;AAAA,MAFxD,OAEwD;AAAA;AAAA;AAAA,MACtD,YAAY,UAAU,oBAAoB,UAAU,CAAC,GAAG;AACtD,cAAM,SAAS,OAAO;AACtB,aAAK,aAAa;AAClB,eAAO,eAAe,MAAM,gBAAgB,SAAS;AAAA,MACvD;AAAA,IACF;AAAA;AAAA;;;ACRA;AAAA;AAAA,QAAM,SAAS;AAAA,MACb,UAAU;AAAA,MACV,qBAAqB;AAAA,MACrB,oBAAoB;AAAA,MACpB,eAAe;AAAA,MACf,iBAAiB;AAAA,MACjB,YAAY;AAAA,MACZ,eAAe;AAAA,MACf,cAAc;AAAA,MACd,iBAAiB;AAAA,MACjB,mBAAmB;AAAA,MACnB,2BAA2B;AAAA,MAC3B,iBAAiB;AAAA,IACnB;AAEA,WAAO,UAAU;AAAA;AAAA;;;ACfjB;AAAA;AAAA,QAAM,EAAE,aAAa,IAAI;AACzB,QAAM,UAAU;AAEhB,QAAM,8BAAN,cAA0C,QAAQ;AAAA,MAHlD,OAGkD;AAAA;AAAA;AAAA,MAChD,YAAY,SAAS;AACnB,YAAI,CAAC;AAAS,gBAAM,IAAI,aAAa,sBAAsB;AAC3D,cAAM,EAAE,IAAI,WAAW,SAAS,QAAQ,GAAG,KAAK,IAAI;AACpD,cAAM,EAAE,IAAI,WAAW,SAAS,QAAQ,GAAG,KAAK,CAAC;AAAA,MACnD;AAAA,MAEA,IAAI,OAAO;AACT,eAAO;AAAA,MACT;AAAA,MAEA,IAAI,aAAa;AACf,eAAO;AAAA,MACT;AAAA,IACF;AAEA,WAAO,UAAU;AAAA;AAAA;;;ACnBjB;AAAA;AAAA,QAAM,EAAE,aAAa,IAAI;AACzB,QAAM,UAAU;AAEhB,QAAM,wDAAN,cAAoE,QAAQ;AAAA,MAH5E,OAG4E;AAAA;AAAA;AAAA,MAC1E,YAAY,SAAS;AACnB,YAAI,CAAC;AAAS,gBAAM,IAAI,aAAa,sBAAsB;AAC3D,cAAM,EAAE,IAAI,GAAG,KAAK,IAAI;AACxB,cAAM,EAAE,IAAI,GAAG,KAAK,CAAC;AAAA,MACvB;AAAA,MAEA,IAAI,OAAO;AACT,eAAO;AAAA,MACT;AAAA,MAEA,IAAI,aAAa;AACf,eAAO;AAAA,MACT;AAAA,IACF;AAEA,WAAO,UAAU;AAAA;AAAA;;;ACnBjB;AAAA;AAAA,QAAM,UAAU;AAEhB,QAAM,uBAAN,cAAmC,QAAQ;AAAA,MAF3C,OAE2C;AAAA;AAAA;AAAA,MACzC,YAAY;AAAA,QACV;AAAA,QACA;AAAA,QACA;AAAA,QACA;AAAA,QACA;AAAA,QACA;AAAA,QACA;AAAA,QACA,GAAG;AAAA,MACL,GAAG;AACD,cAAM;AAAA,UACJ;AAAA,UACA;AAAA,UACA;AAAA,UACA;AAAA,UACA;AAAA,UACA;AAAA,UACA;AAAA,UACA,GAAG;AAAA,QACL,CAAC;AAAA,MACH;AAAA,MAEA,IAAI,OAAO;AACT,eAAO;AAAA,MACT;AAAA,MAEA,IAAI,aAAa;AACf,YAAI,OAAO,KAAK,KAAK,OAAO;AAAU,iBAAO,SAAS,KAAK,KAAK,EAAE;AAClE,YAAI,MAAM,QAAQ,KAAK,KAAK,EAAE;AAAG,iBAAO;AACxC,eAAO;AAAA,MACT;AAAA,IACF;AAEA,WAAO,UAAU;AAAA;AAAA;;;ACpCjB;AAAA;AAAA,QAAM,UAAU;AAEhB,QAAM,4BAAN,cAAwC,QAAQ;AAAA,MAFhD,OAEgD;AAAA;AAAA;AAAA,MAC9C,YAAY,EAAE,IAAI,GAAG,KAAK,GAAG;AAC3B,cAAM,EAAE,IAAI,GAAG,KAAK,CAAC;AAAA,MACvB;AAAA,MAEA,IAAI,OAAO;AACT,eAAO;AAAA,MACT;AAAA,MAEA,IAAI,aAAa;AACf,YAAI,OAAO,KAAK,KAAK,OAAO;AAC1B,iBAAO,cAAc,KAAK,KAAK,EAAE;AACnC,YAAI,MAAM,QAAQ,KAAK,KAAK,EAAE;AAAG,iBAAO;AACxC,eAAO;AAAA,MACT;AAAA,IACF;AAEA,WAAO,UAAU;AAAA;AAAA;;;ACnBjB;AAAA;AAAA,QAAM,UAAU;AAChB,QAAM,eAAe;AAErB,QAAM,yBAAN,cAAqC,QAAQ;AAAA,MAH7C,OAG6C;AAAA;AAAA;AAAA,MAC3C,YAAY,EAAE,OAAO,aAAa,GAAG,KAAK,GAAG;AAC3C,YAAI,CAAC;AAAO,gBAAM,IAAI,aAAa,mBAAmB;AACtD,YAAI,CAAC;AAAa,gBAAM,IAAI,aAAa,4BAA4B;AACrE,cAAM,EAAE,OAAO,aAAa,GAAG,KAAK,CAAC;AAAA,MACvC;AAAA,MAEA,IAAI,OAAO;AACT,eAAO;AAAA,MACT;AAAA,MAEA,IAAI,aAAa;AACf,eAAO;AAAA,MACT;AAAA,IACF;AAEA,WAAO,UAAU;AAAA;AAAA;;;ACnBjB;AAAA;AAAA,QAAM,UAAU;AAChB,QAAM,eAAe;AAErB,QAAM,2BAAN,cAAuC,QAAQ;AAAA,MAH/C,OAG+C;AAAA;AAAA;AAAA,MAC7C,YAAY,EAAE,IAAI,GAAG,KAAK,GAAG;AAC3B,YAAI,CAAC;AAAI,gBAAM,IAAI,aAAa,2BAA2B;AAC3D,cAAM,EAAE,IAAI,GAAG,KAAK,CAAC;AAAA,MACvB;AAAA,MAEA,IAAI,OAAO;AACT,eAAO;AAAA,MACT;AAAA,MAEA,IAAI,aAAa;AACf,eAAO,eAAe,KAAK,KAAK,EAAE;AAAA,MACpC;AAAA,IACF;AAEA,WAAO,UAAU;AAAA;AAAA;;;AClBjB;AAAA;AAAA,QAAM,UAAU;AAChB,QAAM,eAAe;AAErB,QAAM,oBAAN,cAAgC,QAAQ;AAAA,MAHxC,OAGwC;AAAA;AAAA;AAAA,MACtC,YAAY;AAAA,QACV;AAAA,QACA;AAAA,QACA;AAAA,QACA;AAAA,QACA;AAAA,QACA;AAAA,QACA;AAAA,QACA;AAAA,QACA;AAAA,QACA,GAAG;AAAA,MACL,GAAG;AACD,YAAI,CAAC;AAAI,gBAAM,IAAI,aAAa,2BAA2B;AAC3D,cAAM;AAAA,UACJ;AAAA,UACA;AAAA,UACA;AAAA,UACA;AAAA,UACA;AAAA,UACA;AAAA,UACA;AAAA,UACA;AAAA,UACA;AAAA,UACA,GAAG;AAAA,QACL,CAAC;AAAA,MACH;AAAA,MAEA,IAAI,OAAO;AACT,eAAO;AAAA,MACT;AAAA,MAEA,IAAI,aAAa;AACf,eAAO,QAAQ,KAAK,KAAK,EAAE;AAAA,MAC7B;AAAA,IACF;AAEA,WAAO,UAAU;AAAA;AAAA;;;ACxCjB;AAAA;AAAA,QAAM,UAAU;AAEhB,QAAM,sBAAN,cAAkC,QAAQ;AAAA,MAF1C,OAE0C;AAAA;AAAA;AAAA,MACxC,YAAY;AAAA,QACV;AAAA,QACA;AAAA,QACA;AAAA,QACA;AAAA,QACA;AAAA,QACA,GAAG;AAAA,MACL,GAAG;AACD,cAAM,EAAE,IAAI,OAAO,eAAe,aAAa,cAAc,GAAG,KAAK,CAAC;AAAA,MACxE;AAAA,MAEA,IAAI,OAAO;AACT,eAAO;AAAA,MACT;AAAA,MAEA,IAAI,aAAa;AACf,eAAO,QAAQ,KAAK,KAAK,EAAE;AAAA,MAC7B;AAAA,IACF;AAEA,WAAO,UAAU;AAAA;AAAA;;;ACvBjB;AAAA;AAAA,QAAM,UAAU;AAEhB,QAAM,mCAAN,cAA+C,QAAQ;AAAA,MAFvD,OAEuD;AAAA;AAAA;AAAA,MACrD,YAAY,EAAE,IAAI,SAAS,GAAG,KAAK,GAAG;AACpC,cAAM,EAAE,IAAI,SAAS,GAAG,KAAK,CAAC;AAAA,MAChC;AAAA,MAEA,IAAI,OAAO;AACT,eAAO;AAAA,MACT;AAAA,MAEA,IAAI,aAAa;AACf,eAAO;AAAA,MACT;AAAA,IACF;AAEA,WAAO,UAAU;AAAA;AAAA;;;AChBjB;AAAA;AAAA,QAAM,UAAU;AAEhB,QAAM,qBAAN,cAAiC,QAAQ;AAAA,MAFzC,OAEyC;AAAA;AAAA;AAAA,MACvC,YAAY,EAAE,IAAI,KAAK,MAAM,GAAG,KAAK,GAAG;AACtC,cAAM,EAAE,IAAI,KAAK,MAAM,GAAG,KAAK,CAAC;AAAA,MAClC;AAAA,MAEA,IAAI,OAAO;AACT,eAAO;AAAA,MACT;AAAA,MAEA,IAAI,aAAa;AACf,eAAO,SAAS,KAAK,KAAK,EAAE;AAAA,MAC9B;AAAA,IACF;AAEA,WAAO,UAAU;AAAA;AAAA;;;AChBjB;AAAA;AAAA,QAAM,UAAU;AAEhB,QAAM,qBAAN,cAAiC,QAAQ;AAAA,MAFzC,OAEyC;AAAA;AAAA;AAAA,MACvC,YAAY,EAAE,IAAI,kBAAkB,GAAG,KAAK,GAAG;AAC7C,cAAM,EAAE,IAAI,kBAAkB,GAAG,KAAK,CAAC;AAAA,MACzC;AAAA,MAEA,IAAI,OAAO;AACT,eAAO;AAAA,MACT;AAAA,MAEA,IAAI,aAAa;AACf,eAAO,WAAW,KAAK,KAAK,EAAE;AAAA,MAChC;AAAA,IACF;AAEA,WAAO,UAAU;AAAA;AAAA;;;AChBjB;AAAA;AAAA,QAAM,UAAU;AAEhB,QAAM,sBAAN,cAAkC,QAAQ;AAAA,MAF1C,OAE0C;AAAA;AAAA;AAAA,MACxC,YAAY,EAAE,eAAe,QAAQ,UAAU,GAAG,KAAK,GAAG;AACxD,cAAM,EAAE,eAAe,QAAQ,UAAU,GAAG,KAAK,CAAC;AAAA,MACpD;AAAA,MAEA,IAAI,OAAO;AACT,eAAO;AAAA,MACT;AAAA,MAEA,IAAI,aAAa;AACf,eAAO,WAAW,KAAK,KAAK,EAAE;AAAA,MAChC;AAAA,IACF;AAEA,WAAO,UAAU;AAAA;AAAA;;;AChBjB;AAAA;AAAA,QAAM,kBAAkB;AACxB,QAAM,kBAAkB;AACxB,QAAM,mBAAmB;AACzB,QAAM,mBAAmB;AACzB,QAAM,uBAAuB;AAC7B,QAAM,iBAAiB;AACvB,QAAM,2BAA2B;AACjC,QAAM,qBAAqB;AAC3B,QAAM,kBAAkB;AACxB,QAAM,uBAAuB;AAC7B,QAAM,qBAAqB;AAC3B,QAAM,4BAA4B;AAClC,QAAM,6BAA6B;AACnC,QAAM,mBAAmB;AACzB,QAAM,iBAAiB;AACvB,QAAM,8BAA8B;AACpC,QAAM,wDAAwD;AAC9D,QAAM,uBAAuB;AAC7B,QAAM,4BAA4B;AAClC,QAAM,yBAAyB;AAC/B,QAAM,2BAA2B;AACjC,QAAM,oBAAoB;AAC1B,QAAM,sBAAsB;AAC5B,QAAM,mCAAmC;AACzC,QAAM,qBAAqB;AAC3B,QAAM,qBAAqB;AAC3B,QAAM,sBAAsB;AAE5B,WAAO,UAAU;AAAA,MACf;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,IACF;AAAA;AAAA;",
|
|
4
|
+
"sourcesContent": ["class Command {\n constructor(data) {\n this.data = {};\n if (!data) throw new Error(\"Command data is required\");\n if (typeof data !== \"object\")\n throw new Error(\"Command data must be an object\");\n\n for (const key in data) {\n this.data[key] = data[key];\n }\n }\n\n get name() {\n throw new Error(\"Command name is required\");\n }\n\n get type() {\n return \"Command\";\n }\n\n get routingKey() {\n return \"\";\n }\n\n get exchange() {\n return \"Commands\";\n }\n\n build() {\n return { data: { ...this.data } };\n }\n}\n\nmodule.exports = Command;\n", "const Command = require(\"./Command\");\n\nclass SetSceneCommand extends Command {\n constructor({ id, devices, ...rest }) {\n super({ id, devices, ...rest });\n }\n\n get name() {\n return \"SetScene\";\n }\n\n get routingKey() {\n return `scene.${this.data.id}.set`;\n }\n}\n\nmodule.exports = SetSceneCommand;\n", "const Command = require(\"./Command\");\n\nclass SetAlarmCommand extends Command {\n constructor({ id, zones, areas, code, ...rest }) {\n super({ id, zones, areas, code, ...rest });\n }\n\n get name() {\n return \"SetAlarm\";\n }\n\n get routingKey() {\n return `alarm.${this.data.id}.set`;\n }\n}\n\nmodule.exports = SetAlarmCommand;\n", "const Command = require(\"./Command\");\n\nclass SetDimmerCommand extends Command {\n constructor({ id, level, ...rest }) {\n super({ id, level, ...rest });\n }\n\n get name() {\n return \"SetDimmer\";\n }\n\n get routingKey() {\n return `dimmer.${this.data.id}.set`;\n }\n}\n\nmodule.exports = SetDimmerCommand;\n", "const Command = require(\"./Command\");\n\nclass SetSwitchCommand extends Command {\n constructor({ id, state, ...rest }) {\n super({ id, state, ...rest });\n }\n\n get name() {\n return \"SetSwitch\";\n }\n\n get routingKey() {\n return `switch.${this.data.id}.set`;\n }\n}\n\nmodule.exports = SetSwitchCommand;\n", "const Command = require(\"./Command\");\n\nclass SetThermostatCommand extends Command {\n constructor({ id, setpoints, hvacMode, fanMode, ...rest }) {\n super({ id, setpoints, hvacMode, fanMode, ...rest });\n }\n\n get name() {\n return \"SetThermostat\";\n }\n\n get routingKey() {\n return `thermostat.${this.data.id}.set`;\n }\n}\n\nmodule.exports = SetThermostatCommand;\n", "const Command = require(\"./Command\");\n\nclass SetLockCommand extends Command {\n constructor({ id, state, ...rest }) {\n super({ id, state, ...rest });\n }\n\n get name() {\n return \"SetLock\";\n }\n\n get routingKey() {\n return `lock.${this.data.id}.set`;\n }\n}\n\nmodule.exports = SetLockCommand;\n", "const Command = require(\"./Command\");\n\nclass SetWindowCoveringCommand extends Command {\n constructor({ id, position, ...rest }) {\n super({ id, position, ...rest });\n }\n\n get name() {\n return \"SetWindowCovering\";\n }\n\n get routingKey() {\n return `windowCovering.${this.data.id}.set`;\n }\n}\n\nmodule.exports = SetWindowCoveringCommand;\n", "const Command = require(\"./Command\");\n\nclass SetCourtesyCommand extends Command {\n constructor({ id, state, ...rest }) {\n super({ id, state, ...rest });\n }\n\n get name() {\n return \"SetCourtesy\";\n }\n\n get routingKey() {\n return `courtesy.${this.data.id}.set`;\n }\n}\n\nmodule.exports = SetCourtesyCommand;\n", "const Command = require(\"./Command\");\n\nclass SetMediaCommand extends Command {\n constructor({ id, command, ...rest }) {\n super({ id, command, ...rest });\n }\n\n get name() {\n return \"SetMedia\";\n }\n\n get routingKey() {\n return `mediaSource.${this.data.id}.set`;\n }\n}\n\nmodule.exports = SetMediaCommand;\n", "const Command = require(\"./Command\");\n\nclass DiscoverUsersCommand extends Command {\n constructor({ id, ...rest }) {\n super({ id, ...rest });\n }\n\n get name() {\n return \"DiscoverUsers\";\n }\n\n get routingKey() {\n if (typeof this.data.id === \"string\") return `users.${this.data.id}.get`;\n if (Array.isArray(this.data.id)) return \"users.batch.get\";\n return \"users.get\";\n }\n}\n\nmodule.exports = DiscoverUsersCommand;\n", "module.exports = class AppError extends Error {\n constructor(message = \"Internal Server Error\", options) {\n super(message, options);\n this.type = this.constructor.name;\n this.statusCode = 500;\n this.name = \"AppError\";\n Object.setPrototypeOf(this, AppError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class RequestError extends AppError {\n constructor(message = \"Bad Request\", options = {}) {\n super(message, options);\n this.statusCode = 400;\n this.name = \"RequestError\";\n Object.setPrototypeOf(this, RequestError.prototype);\n }\n};\n", "const Command = require(\"./Command\");\nconst RequestError = require(\"../Errors/RequestError\");\n\nclass OCRDocumentCommand extends Command {\n constructor({ type, image, ...rest }) {\n if (!image) throw new RequestError(\"document image is required\");\n super({ type, image, ...rest });\n }\n\n get name() {\n return \"OCRDocument\";\n }\n}\n\nmodule.exports = OCRDocumentCommand;\n", "const Command = require(\"./Command\");\nconst RequestError = require(\"../Errors/RequestError\");\n\nclass CheckInReservationCommand extends Command {\n constructor({ id, ...rest }) {\n if (!id) throw new RequestError(\"reservation id is required\");\n super({ id, ...rest });\n }\n\n get name() {\n return \"CheckInReservation\";\n }\n\n get routingKey() {\n return `reservation.${this.data.id}.checkin`;\n }\n}\n\nmodule.exports = CheckInReservationCommand;\n", "const Command = require(\"./Command\");\nconst RequestError = require(\"../Errors/RequestError\");\n\nclass CheckOutReservationCommand extends Command {\n constructor({ reservationId, userId, ...rest }) {\n if (!reservationId) throw new RequestError(\"reservation id is required\");\n if (!userId) throw new RequestError(\"user id is required\");\n super({ reservationId, userId, ...rest });\n }\n\n get name() {\n return \"CheckOutReservation\";\n }\n\n get routingKey() {\n return `reservation.${this.data.id}.checkout`;\n }\n}\n\nmodule.exports = CheckOutReservationCommand;\n", "const Command = require(\"./Command\");\nconst RequestError = require(\"../Errors/RequestError\");\n\nclass SendEmailCommand extends Command {\n constructor({ text, html, to, from, subject, ...rest }) {\n if (!to) throw new RequestError(\"email to is required\");\n if (!from) throw new RequestError(\"email from is required\");\n if (!subject) throw new RequestError(\"email subject is required\");\n if (!text && !html)\n throw new RequestError(\"email text or html is required\");\n\n super({ text, html, to, from, subject, ...rest });\n }\n\n get name() {\n return \"SendEmail\";\n }\n\n get routingKey() {\n return \"comm.email.send\";\n }\n}\n\nmodule.exports = SendEmailCommand;\n", "const Command = require(\"./Command\");\nconst RequestError = require(\"../Errors/RequestError\");\n\nclass SendSMSCommand extends Command {\n constructor({ id, body, to, from, media, ...rest }) {\n if (!body && !media)\n throw new RequestError(\"sms body or media is required\");\n if (!to) throw new RequestError(\"sms to is required\");\n if (!from) throw new RequestError(\"sms from is required\");\n super({ id, body, to, from, media, ...rest });\n }\n\n get name() {\n return \"SendSMS\";\n }\n\n get routingKey() {\n return \"comm.sms.send\";\n }\n}\n\nmodule.exports = SendSMSCommand;\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class AuthenticationError extends AppError {\n constructor(message = \"Authentication Error\", options = {}) {\n super(message, options);\n this.statusCode = 401;\n this.name = \"AuthenticationError\";\n Object.setPrototypeOf(this, AuthenticationError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class AuthorizationError extends AppError {\n constructor(message = \"Authorization Error\", options = {}) {\n super(message, options);\n this.statusCode = 403;\n this.name = \"AuthorizationError\";\n Object.setPrototypeOf(this, AuthorizationError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class ConflictError extends AppError {\n constructor(message = \"Bad Request\", options = {}) {\n super(message, options);\n this.statusCode = 409;\n this.name = \"ConflictError\";\n Object.setPrototypeOf(this, ConflictError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class DeviceCommError extends AppError {\n constructor(message = \"Device Communication Error\", options = {}) {\n super(message, options);\n this.statusCode = 503;\n this.name = \"DeviceCommError\";\n Object.setPrototypeOf(this, DeviceCommError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class LoginError extends AppError {\n constructor(message = \"Invalid Login information provided\", options = {}) {\n super(message, options);\n this.statusCode = 401;\n this.name = \"LoginError\";\n Object.setPrototypeOf(this, LoginError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class NotFoundError extends AppError {\n constructor(message = \"Resource Not Found\", options = {}) {\n super(message, options);\n this.statusCode = 404;\n this.name = \"NotFoundError\";\n Object.setPrototypeOf(this, NotFoundError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class SystemCommError extends AppError {\n constructor(message = \"System Communication Error\", options = {}) {\n super(message, options);\n this.statusCode = 503;\n this.name = \"SystemCommError\";\n Object.setPrototypeOf(this, SystemCommError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class TokenExpiredError extends AppError {\n constructor(message = \"Token Expired\", options = {}) {\n super(message, options);\n this.statusCode = 401;\n this.name = \"TokenExpiredError\";\n Object.setPrototypeOf(this, TokenExpiredError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class UnprocessableRequestError extends AppError {\n constructor(message = \"Unprocessable Request Error\", options = {}) {\n super(message, options);\n this.statusCode = 422;\n this.name = \"UnprocessableRequestError\";\n Object.setPrototypeOf(this, UnprocessableRequestError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class ValidationError extends AppError {\n constructor(message = \"Validation Error\", options = {}) {\n super(message, options);\n this.statusCode = 400;\n this.name = \"ValidationError\";\n Object.setPrototypeOf(this, ValidationError.prototype);\n }\n};\n", "const Errors = {\n AppError: require(\"./AppError\"),\n AuthenticationError: require(\"./AuthenticationError\"),\n AuthorizationError: require(\"./AuthorizationError\"),\n ConflictError: require(\"./ConflictError\"),\n DeviceCommError: require(\"./DeviceCommError\"),\n LoginError: require(\"./LoginError\"),\n NotFoundError: require(\"./NotFoundError\"),\n RequestError: require(\"./RequestError\"),\n SystemCommError: require(\"./SystemCommError\"),\n TokenExpiredError: require(\"./TokenExpiredError\"),\n UnprocessableRequestError: require(\"./UnprocessableRequestError\"),\n ValidationError: require(\"./ValidationError\"),\n};\n\nmodule.exports = Errors;\n", "const { RequestError } = require(\"../Errors\");\nconst Command = require(\"./Command\");\n\nclass DiscoverReservationsCommand extends Command {\n constructor(options) {\n if (!options) throw new RequestError(\"options are required\");\n const { id, startDate, endDate, status, ...rest } = options;\n super({ id, startDate, endDate, status, ...rest });\n }\n\n get name() {\n return \"DiscoverReservations\";\n }\n\n get routingKey() {\n return \"reservation.discover\";\n }\n}\n\nmodule.exports = DiscoverReservationsCommand;\n", "const { RequestError } = require(\"../Errors\");\nconst Command = require(\"./Command\");\n\nclass DiscoverReservationSpaceCategoryAvailabilitiesCommand extends Command {\n constructor(options) {\n if (!options) throw new RequestError(\"options are required\");\n const { id, ...rest } = options;\n super({ id, ...rest });\n }\n\n get name() {\n return \"DiscoverReservationSpaceCategoryAvailabilities\";\n }\n\n get routingKey() {\n return \"reservation.discoverRoomUpsells\";\n }\n}\n\nmodule.exports = DiscoverReservationSpaceCategoryAvailabilitiesCommand;\n", "const Command = require(\"./Command\");\n\nclass DiscoverRoomsCommand extends Command {\n constructor({\n id,\n types,\n categories,\n startDate,\n endDate,\n serviceStatus,\n housekeepingStatus,\n ...rest\n }) {\n super({\n id,\n types,\n categories,\n startDate,\n endDate,\n serviceStatus,\n housekeepingStatus,\n ...rest,\n });\n }\n\n get name() {\n return \"DiscoverRooms\";\n }\n\n get routingKey() {\n if (typeof this.data.id === \"string\") return `rooms.${this.data.id}.get`;\n if (Array.isArray(this.data.id)) return \"rooms.batch.get\";\n return \"rooms.get\";\n }\n}\n\nmodule.exports = DiscoverRoomsCommand;\n", "const Command = require(\"./Command\");\n\nclass DiscoverCategoriesCommand extends Command {\n constructor({ id, ...rest }) {\n super({ id, ...rest });\n }\n\n get name() {\n return \"DiscoverCategories\";\n }\n\n get routingKey() {\n if (typeof this.data.id === \"string\")\n return `categories.${this.data.id}.get`;\n if (Array.isArray(this.data.id)) return \"categories.batch.get\";\n return \"categories.get\";\n }\n}\n\nmodule.exports = DiscoverCategoriesCommand;\n", "const Command = require(\"./Command\");\nconst RequestError = require(\"../Errors/RequestError\");\n\nclass CreateShortLinkCommand extends Command {\n constructor({ title, destination, ...rest }) {\n if (!title) throw new RequestError(\"title is required\");\n if (!destination) throw new RequestError(\"destination to is required\");\n super({ title, destination, ...rest });\n }\n\n get name() {\n return \"CreateShortLink\";\n }\n\n get routingKey() {\n return \"comm.shortlink.create\";\n }\n}\n\nmodule.exports = CreateShortLinkCommand;\n", "const Command = require(\"./Command\");\nconst RequestError = require(\"../Errors/RequestError\");\n\nclass UpdateReservationCommand extends Command {\n constructor({ id, ...rest }) {\n if (!id) throw new RequestError(\"document type is required\");\n super({ id, ...rest });\n }\n\n get name() {\n return \"UpdateReservation\";\n }\n\n get routingKey() {\n return `reservation.${this.data.id}.update`;\n }\n}\n\nmodule.exports = UpdateReservationCommand;\n", "const Command = require(\"./Command\");\nconst RequestError = require(\"../Errors/RequestError\");\n\nclass UpdateUserCommand extends Command {\n constructor({\n id,\n email,\n phone,\n identification,\n address,\n note,\n nationality,\n file,\n payment,\n ...rest\n }) {\n if (!id) throw new RequestError(\"document type is required\");\n super({\n id,\n email,\n phone,\n identification,\n address,\n note,\n nationality,\n file,\n payment,\n ...rest,\n });\n }\n\n get name() {\n return \"UpdateUser\";\n }\n\n get routingKey() {\n return `user.${this.data.id}.update`;\n }\n}\n\nmodule.exports = UpdateUserCommand;\n", "const Command = require(\"./Command\");\n\nclass GetMobileKeyCommand extends Command {\n constructor({\n id,\n phone,\n beginDateTime,\n endDateTime,\n keyToReplace,\n ...rest\n }) {\n super({ id, phone, beginDateTime, endDateTime, keyToReplace, ...rest });\n }\n\n get name() {\n return \"GetMobileKey\";\n }\n\n get routingKey() {\n return `lock.${this.data.id}.set`;\n }\n}\n\nmodule.exports = GetMobileKeyCommand;\n", "const Command = require(\"./Command\");\n\nclass CreateImageUploadEndpointCommand extends Command {\n constructor({ id, expires, ...rest }) {\n super({ id, expires, ...rest });\n }\n\n get name() {\n return \"CreateImageUploadEndpoint\";\n }\n\n get routingKey() {\n return \"image.createUploadEndpoint\";\n }\n}\n\nmodule.exports = CreateImageUploadEndpointCommand;\n", "const Command = require(\"./Command\");\n\nclass UploadImageCommand extends Command {\n constructor({ id, url, file, ...rest }) {\n super({ id, url, file, ...rest });\n }\n\n get name() {\n return \"UploadImage\";\n }\n\n get routingKey() {\n return `image.${this.data.id}.upload`;\n }\n}\n\nmodule.exports = UploadImageCommand;\n", "const Command = require(\"./Command\");\n\nclass GetProductsCommand extends Command {\n constructor({ id, externalSystemId, ...rest }) {\n super({ id, externalSystemId, ...rest });\n }\n\n get name() {\n return \"GetProducts\";\n }\n\n get routingKey() {\n return `product.${this.data.id}.get`;\n }\n}\n\nmodule.exports = GetProductsCommand;\n", "const Command = require(\"./Command\");\n\nclass SellProductsCommand extends Command {\n constructor({ reservationId, userId, products, ...rest }) {\n super({ reservationId, userId, products, ...rest });\n }\n\n get name() {\n return \"SellProducts\";\n }\n\n get routingKey() {\n return `product.${this.data.id}.sell`;\n }\n}\n\nmodule.exports = SellProductsCommand;\n", "const SetSceneCommand = require(\"./SetSceneCommand\");\nconst SetAlarmCommand = require(\"./SetAlarmCommand\");\nconst SetDimmerCommand = require(\"./SetDimmerCommand\");\nconst SetSwitchCommand = require(\"./SetSwitchCommand\");\nconst SetThermostatCommand = require(\"./SetThermostatCommand\");\nconst SetLockCommand = require(\"./SetLockCommand\");\nconst SetWindowCoveringCommand = require(\"./SetWindowCoveringCommand\");\nconst SetCourtesyCommand = require(\"./SetCourtesyCommand\");\nconst SetMediaCommand = require(\"./SetMediaCommand\");\nconst DiscoverUsersCommand = require(\"./DiscoverUsersCommand\");\nconst OCRDocumentCommand = require(\"./OCRDocumentCommand\");\nconst CheckInReservationCommand = require(\"./CheckInReservationCommand\");\nconst CheckOutReservationCommand = require(\"./CheckOutReservationCommand\");\nconst SendEmailCommand = require(\"./SendEmailCommand\");\nconst SendSMSCommand = require(\"./SendSMSCommand\");\nconst DiscoverReservationsCommand = require(\"./DiscoverReservationsCommand\");\nconst DiscoverReservationSpaceCategoryAvailabilitiesCommand = require(\"./DiscoverReservationSpaceCategoryAvailabilitiesCommand\");\nconst DiscoverRoomsCommand = require(\"./DiscoverRoomsCommand\");\nconst DiscoverCategoriesCommand = require(\"./DiscoverCategoriesCommand\");\nconst CreateShortLinkCommand = require(\"./CreateShortLinkCommand\");\nconst UpdateReservationCommand = require(\"./UpdateReservationCommand\");\nconst UpdateUserCommand = require(\"./UpdateUserCommand\");\nconst GetMobileKeyCommand = require(\"./GetMobileKeyCommand\");\nconst CreateImageUploadEndpointCommand = require(\"./CreateImageUploadEndpointCommand\");\nconst UploadImageCommand = require(\"./UploadImageCommand\");\nconst GetProductsCommand = require(\"./GetProductsCommand\");\nconst SellProductsCommand = require(\"./SellProductsCommand\");\n\nmodule.exports = {\n SetSceneCommand,\n SetAlarmCommand,\n SetDimmerCommand,\n SetSwitchCommand,\n SetThermostatCommand,\n SetLockCommand,\n SetWindowCoveringCommand,\n SetCourtesyCommand,\n SetMediaCommand,\n OCRDocumentCommand,\n DiscoverUsersCommand,\n CheckInReservationCommand,\n CheckOutReservationCommand,\n SendSMSCommand,\n SendEmailCommand,\n DiscoverReservationsCommand,\n DiscoverReservationSpaceCategoryAvailabilitiesCommand,\n DiscoverRoomsCommand,\n DiscoverCategoriesCommand,\n CreateShortLinkCommand,\n UpdateReservationCommand,\n UpdateUserCommand,\n GetMobileKeyCommand,\n CreateImageUploadEndpointCommand,\n UploadImageCommand,\n GetProductsCommand,\n SellProductsCommand,\n};\n"],
|
|
5
|
+
"mappings": "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",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/dist/esm/Errors.js
CHANGED
|
@@ -16,6 +16,7 @@ var require_AppError = __commonJS({
|
|
|
16
16
|
super(message, options);
|
|
17
17
|
this.type = this.constructor.name;
|
|
18
18
|
this.statusCode = 500;
|
|
19
|
+
this.name = "AppError";
|
|
19
20
|
Object.setPrototypeOf(this, AppError.prototype);
|
|
20
21
|
}
|
|
21
22
|
};
|
|
@@ -33,6 +34,7 @@ var require_AuthenticationError = __commonJS({
|
|
|
33
34
|
constructor(message = "Authentication Error", options = {}) {
|
|
34
35
|
super(message, options);
|
|
35
36
|
this.statusCode = 401;
|
|
37
|
+
this.name = "AuthenticationError";
|
|
36
38
|
Object.setPrototypeOf(this, AuthenticationError.prototype);
|
|
37
39
|
}
|
|
38
40
|
};
|
|
@@ -50,6 +52,7 @@ var require_AuthorizationError = __commonJS({
|
|
|
50
52
|
constructor(message = "Authorization Error", options = {}) {
|
|
51
53
|
super(message, options);
|
|
52
54
|
this.statusCode = 403;
|
|
55
|
+
this.name = "AuthorizationError";
|
|
53
56
|
Object.setPrototypeOf(this, AuthorizationError.prototype);
|
|
54
57
|
}
|
|
55
58
|
};
|
|
@@ -67,6 +70,7 @@ var require_ConflictError = __commonJS({
|
|
|
67
70
|
constructor(message = "Bad Request", options = {}) {
|
|
68
71
|
super(message, options);
|
|
69
72
|
this.statusCode = 409;
|
|
73
|
+
this.name = "ConflictError";
|
|
70
74
|
Object.setPrototypeOf(this, ConflictError.prototype);
|
|
71
75
|
}
|
|
72
76
|
};
|
|
@@ -84,6 +88,7 @@ var require_DeviceCommError = __commonJS({
|
|
|
84
88
|
constructor(message = "Device Communication Error", options = {}) {
|
|
85
89
|
super(message, options);
|
|
86
90
|
this.statusCode = 503;
|
|
91
|
+
this.name = "DeviceCommError";
|
|
87
92
|
Object.setPrototypeOf(this, DeviceCommError.prototype);
|
|
88
93
|
}
|
|
89
94
|
};
|
|
@@ -101,6 +106,7 @@ var require_LoginError = __commonJS({
|
|
|
101
106
|
constructor(message = "Invalid Login information provided", options = {}) {
|
|
102
107
|
super(message, options);
|
|
103
108
|
this.statusCode = 401;
|
|
109
|
+
this.name = "LoginError";
|
|
104
110
|
Object.setPrototypeOf(this, LoginError.prototype);
|
|
105
111
|
}
|
|
106
112
|
};
|
|
@@ -118,6 +124,7 @@ var require_NotFoundError = __commonJS({
|
|
|
118
124
|
constructor(message = "Resource Not Found", options = {}) {
|
|
119
125
|
super(message, options);
|
|
120
126
|
this.statusCode = 404;
|
|
127
|
+
this.name = "NotFoundError";
|
|
121
128
|
Object.setPrototypeOf(this, NotFoundError.prototype);
|
|
122
129
|
}
|
|
123
130
|
};
|
|
@@ -135,6 +142,7 @@ var require_RequestError = __commonJS({
|
|
|
135
142
|
constructor(message = "Bad Request", options = {}) {
|
|
136
143
|
super(message, options);
|
|
137
144
|
this.statusCode = 400;
|
|
145
|
+
this.name = "RequestError";
|
|
138
146
|
Object.setPrototypeOf(this, RequestError.prototype);
|
|
139
147
|
}
|
|
140
148
|
};
|
|
@@ -152,6 +160,7 @@ var require_SystemCommError = __commonJS({
|
|
|
152
160
|
constructor(message = "System Communication Error", options = {}) {
|
|
153
161
|
super(message, options);
|
|
154
162
|
this.statusCode = 503;
|
|
163
|
+
this.name = "SystemCommError";
|
|
155
164
|
Object.setPrototypeOf(this, SystemCommError.prototype);
|
|
156
165
|
}
|
|
157
166
|
};
|
|
@@ -169,6 +178,7 @@ var require_TokenExpiredError = __commonJS({
|
|
|
169
178
|
constructor(message = "Token Expired", options = {}) {
|
|
170
179
|
super(message, options);
|
|
171
180
|
this.statusCode = 401;
|
|
181
|
+
this.name = "TokenExpiredError";
|
|
172
182
|
Object.setPrototypeOf(this, TokenExpiredError.prototype);
|
|
173
183
|
}
|
|
174
184
|
};
|
|
@@ -186,6 +196,7 @@ var require_UnprocessableRequestError = __commonJS({
|
|
|
186
196
|
constructor(message = "Unprocessable Request Error", options = {}) {
|
|
187
197
|
super(message, options);
|
|
188
198
|
this.statusCode = 422;
|
|
199
|
+
this.name = "UnprocessableRequestError";
|
|
189
200
|
Object.setPrototypeOf(this, UnprocessableRequestError.prototype);
|
|
190
201
|
}
|
|
191
202
|
};
|
|
@@ -203,6 +214,7 @@ var require_ValidationError = __commonJS({
|
|
|
203
214
|
constructor(message = "Validation Error", options = {}) {
|
|
204
215
|
super(message, options);
|
|
205
216
|
this.statusCode = 400;
|
|
217
|
+
this.name = "ValidationError";
|
|
206
218
|
Object.setPrototypeOf(this, ValidationError.prototype);
|
|
207
219
|
}
|
|
208
220
|
};
|
package/dist/esm/Errors.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/Errors/AppError.js", "../../src/Errors/AuthenticationError.js", "../../src/Errors/AuthorizationError.js", "../../src/Errors/ConflictError.js", "../../src/Errors/DeviceCommError.js", "../../src/Errors/LoginError.js", "../../src/Errors/NotFoundError.js", "../../src/Errors/RequestError.js", "../../src/Errors/SystemCommError.js", "../../src/Errors/TokenExpiredError.js", "../../src/Errors/UnprocessableRequestError.js", "../../src/Errors/ValidationError.js", "../../src/Errors/index.js"],
|
|
4
|
-
"sourcesContent": ["module.exports = class AppError extends Error {\n constructor(message = \"Internal Server Error\", options) {\n super(message, options);\n this.type = this.constructor.name;\n this.statusCode = 500;\n Object.setPrototypeOf(this, AppError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class AuthenticationError extends AppError {\n constructor(message = \"Authentication Error\", options = {}) {\n super(message, options);\n this.statusCode = 401;\n Object.setPrototypeOf(this, AuthenticationError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class AuthorizationError extends AppError {\n constructor(message = \"Authorization Error\", options = {}) {\n super(message, options);\n this.statusCode = 403;\n Object.setPrototypeOf(this, AuthorizationError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class ConflictError extends AppError {\n constructor(message = \"Bad Request\", options = {}) {\n super(message, options);\n this.statusCode = 409;\n Object.setPrototypeOf(this, ConflictError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class DeviceCommError extends AppError {\n constructor(message = \"Device Communication Error\", options = {}) {\n super(message, options);\n this.statusCode = 503;\n Object.setPrototypeOf(this, DeviceCommError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class LoginError extends AppError {\n constructor(message = \"Invalid Login information provided\", options = {}) {\n super(message, options);\n this.statusCode = 401;\n Object.setPrototypeOf(this, LoginError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class NotFoundError extends AppError {\n constructor(message = \"Resource Not Found\", options = {}) {\n super(message, options);\n this.statusCode = 404;\n Object.setPrototypeOf(this, NotFoundError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class RequestError extends AppError {\n constructor(message = \"Bad Request\", options = {}) {\n super(message, options);\n this.statusCode = 400;\n Object.setPrototypeOf(this, RequestError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class SystemCommError extends AppError {\n constructor(message = \"System Communication Error\", options = {}) {\n super(message, options);\n this.statusCode = 503;\n Object.setPrototypeOf(this, SystemCommError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class TokenExpiredError extends AppError {\n constructor(message = \"Token Expired\", options = {}) {\n super(message, options);\n this.statusCode = 401;\n Object.setPrototypeOf(this, TokenExpiredError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class UnprocessableRequestError extends AppError {\n constructor(message = \"Unprocessable Request Error\", options = {}) {\n super(message, options);\n this.statusCode = 422;\n Object.setPrototypeOf(this, UnprocessableRequestError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class ValidationError extends AppError {\n constructor(message = \"Validation Error\", options = {}) {\n super(message, options);\n this.statusCode = 400;\n Object.setPrototypeOf(this, ValidationError.prototype);\n }\n};\n", "const Errors = {\n AppError: require(\"./AppError\"),\n AuthenticationError: require(\"./AuthenticationError\"),\n AuthorizationError: require(\"./AuthorizationError\"),\n ConflictError: require(\"./ConflictError\"),\n DeviceCommError: require(\"./DeviceCommError\"),\n LoginError: require(\"./LoginError\"),\n NotFoundError: require(\"./NotFoundError\"),\n RequestError: require(\"./RequestError\"),\n SystemCommError: require(\"./SystemCommError\"),\n TokenExpiredError: require(\"./TokenExpiredError\"),\n UnprocessableRequestError: require(\"./UnprocessableRequestError\"),\n ValidationError: require(\"./ValidationError\"),\n};\n\nmodule.exports = Errors;\n"],
|
|
5
|
-
"mappings": ";;;;;;;;AAAA;AAAA;AAAA,WAAO,UAAU,MAAM,iBAAiB,MAAM;AAAA,MAA9C,OAA8C;AAAA;AAAA;AAAA,MAC5C,YAAY,UAAU,yBAAyB,SAAS;AACtD,cAAM,SAAS,OAAO;AACtB,aAAK,OAAO,KAAK,YAAY;AAC7B,aAAK,aAAa;AAClB,eAAO,eAAe,MAAM,SAAS,SAAS;AAAA,MAChD;AAAA,IACF;AAAA;AAAA;;;
|
|
4
|
+
"sourcesContent": ["module.exports = class AppError extends Error {\n constructor(message = \"Internal Server Error\", options) {\n super(message, options);\n this.type = this.constructor.name;\n this.statusCode = 500;\n this.name = \"AppError\";\n Object.setPrototypeOf(this, AppError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class AuthenticationError extends AppError {\n constructor(message = \"Authentication Error\", options = {}) {\n super(message, options);\n this.statusCode = 401;\n this.name = \"AuthenticationError\";\n Object.setPrototypeOf(this, AuthenticationError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class AuthorizationError extends AppError {\n constructor(message = \"Authorization Error\", options = {}) {\n super(message, options);\n this.statusCode = 403;\n this.name = \"AuthorizationError\";\n Object.setPrototypeOf(this, AuthorizationError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class ConflictError extends AppError {\n constructor(message = \"Bad Request\", options = {}) {\n super(message, options);\n this.statusCode = 409;\n this.name = \"ConflictError\";\n Object.setPrototypeOf(this, ConflictError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class DeviceCommError extends AppError {\n constructor(message = \"Device Communication Error\", options = {}) {\n super(message, options);\n this.statusCode = 503;\n this.name = \"DeviceCommError\";\n Object.setPrototypeOf(this, DeviceCommError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class LoginError extends AppError {\n constructor(message = \"Invalid Login information provided\", options = {}) {\n super(message, options);\n this.statusCode = 401;\n this.name = \"LoginError\";\n Object.setPrototypeOf(this, LoginError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class NotFoundError extends AppError {\n constructor(message = \"Resource Not Found\", options = {}) {\n super(message, options);\n this.statusCode = 404;\n this.name = \"NotFoundError\";\n Object.setPrototypeOf(this, NotFoundError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class RequestError extends AppError {\n constructor(message = \"Bad Request\", options = {}) {\n super(message, options);\n this.statusCode = 400;\n this.name = \"RequestError\";\n Object.setPrototypeOf(this, RequestError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class SystemCommError extends AppError {\n constructor(message = \"System Communication Error\", options = {}) {\n super(message, options);\n this.statusCode = 503;\n this.name = \"SystemCommError\";\n Object.setPrototypeOf(this, SystemCommError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class TokenExpiredError extends AppError {\n constructor(message = \"Token Expired\", options = {}) {\n super(message, options);\n this.statusCode = 401;\n this.name = \"TokenExpiredError\";\n Object.setPrototypeOf(this, TokenExpiredError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class UnprocessableRequestError extends AppError {\n constructor(message = \"Unprocessable Request Error\", options = {}) {\n super(message, options);\n this.statusCode = 422;\n this.name = \"UnprocessableRequestError\";\n Object.setPrototypeOf(this, UnprocessableRequestError.prototype);\n }\n};\n", "const AppError = require(\"./AppError\");\n\nmodule.exports = class ValidationError extends AppError {\n constructor(message = \"Validation Error\", options = {}) {\n super(message, options);\n this.statusCode = 400;\n this.name = \"ValidationError\";\n Object.setPrototypeOf(this, ValidationError.prototype);\n }\n};\n", "const Errors = {\n AppError: require(\"./AppError\"),\n AuthenticationError: require(\"./AuthenticationError\"),\n AuthorizationError: require(\"./AuthorizationError\"),\n ConflictError: require(\"./ConflictError\"),\n DeviceCommError: require(\"./DeviceCommError\"),\n LoginError: require(\"./LoginError\"),\n NotFoundError: require(\"./NotFoundError\"),\n RequestError: require(\"./RequestError\"),\n SystemCommError: require(\"./SystemCommError\"),\n TokenExpiredError: require(\"./TokenExpiredError\"),\n UnprocessableRequestError: require(\"./UnprocessableRequestError\"),\n ValidationError: require(\"./ValidationError\"),\n};\n\nmodule.exports = Errors;\n"],
|
|
5
|
+
"mappings": "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",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/dist/esm/Models.js
CHANGED
|
@@ -7629,7 +7629,8 @@ var require_definitions = __commonJS({
|
|
|
7629
7629
|
"outsideSafeTemperatureRange",
|
|
7630
7630
|
"outsideSafeHumidityRange",
|
|
7631
7631
|
"scheduleMaintenance",
|
|
7632
|
-
"doorAjar"
|
|
7632
|
+
"doorAjar",
|
|
7633
|
+
"communicationFailure"
|
|
7633
7634
|
]
|
|
7634
7635
|
}
|
|
7635
7636
|
},
|
|
@@ -7870,6 +7871,7 @@ var require_AppError = __commonJS({
|
|
|
7870
7871
|
super(message, options);
|
|
7871
7872
|
this.type = this.constructor.name;
|
|
7872
7873
|
this.statusCode = 500;
|
|
7874
|
+
this.name = "AppError";
|
|
7873
7875
|
Object.setPrototypeOf(this, AppError.prototype);
|
|
7874
7876
|
}
|
|
7875
7877
|
};
|
|
@@ -7887,6 +7889,7 @@ var require_AuthenticationError = __commonJS({
|
|
|
7887
7889
|
constructor(message = "Authentication Error", options = {}) {
|
|
7888
7890
|
super(message, options);
|
|
7889
7891
|
this.statusCode = 401;
|
|
7892
|
+
this.name = "AuthenticationError";
|
|
7890
7893
|
Object.setPrototypeOf(this, AuthenticationError.prototype);
|
|
7891
7894
|
}
|
|
7892
7895
|
};
|
|
@@ -7904,6 +7907,7 @@ var require_AuthorizationError = __commonJS({
|
|
|
7904
7907
|
constructor(message = "Authorization Error", options = {}) {
|
|
7905
7908
|
super(message, options);
|
|
7906
7909
|
this.statusCode = 403;
|
|
7910
|
+
this.name = "AuthorizationError";
|
|
7907
7911
|
Object.setPrototypeOf(this, AuthorizationError.prototype);
|
|
7908
7912
|
}
|
|
7909
7913
|
};
|
|
@@ -7921,6 +7925,7 @@ var require_ConflictError = __commonJS({
|
|
|
7921
7925
|
constructor(message = "Bad Request", options = {}) {
|
|
7922
7926
|
super(message, options);
|
|
7923
7927
|
this.statusCode = 409;
|
|
7928
|
+
this.name = "ConflictError";
|
|
7924
7929
|
Object.setPrototypeOf(this, ConflictError.prototype);
|
|
7925
7930
|
}
|
|
7926
7931
|
};
|
|
@@ -7938,6 +7943,7 @@ var require_DeviceCommError = __commonJS({
|
|
|
7938
7943
|
constructor(message = "Device Communication Error", options = {}) {
|
|
7939
7944
|
super(message, options);
|
|
7940
7945
|
this.statusCode = 503;
|
|
7946
|
+
this.name = "DeviceCommError";
|
|
7941
7947
|
Object.setPrototypeOf(this, DeviceCommError.prototype);
|
|
7942
7948
|
}
|
|
7943
7949
|
};
|
|
@@ -7955,6 +7961,7 @@ var require_LoginError = __commonJS({
|
|
|
7955
7961
|
constructor(message = "Invalid Login information provided", options = {}) {
|
|
7956
7962
|
super(message, options);
|
|
7957
7963
|
this.statusCode = 401;
|
|
7964
|
+
this.name = "LoginError";
|
|
7958
7965
|
Object.setPrototypeOf(this, LoginError.prototype);
|
|
7959
7966
|
}
|
|
7960
7967
|
};
|
|
@@ -7972,6 +7979,7 @@ var require_NotFoundError = __commonJS({
|
|
|
7972
7979
|
constructor(message = "Resource Not Found", options = {}) {
|
|
7973
7980
|
super(message, options);
|
|
7974
7981
|
this.statusCode = 404;
|
|
7982
|
+
this.name = "NotFoundError";
|
|
7975
7983
|
Object.setPrototypeOf(this, NotFoundError.prototype);
|
|
7976
7984
|
}
|
|
7977
7985
|
};
|
|
@@ -7989,6 +7997,7 @@ var require_RequestError = __commonJS({
|
|
|
7989
7997
|
constructor(message = "Bad Request", options = {}) {
|
|
7990
7998
|
super(message, options);
|
|
7991
7999
|
this.statusCode = 400;
|
|
8000
|
+
this.name = "RequestError";
|
|
7992
8001
|
Object.setPrototypeOf(this, RequestError.prototype);
|
|
7993
8002
|
}
|
|
7994
8003
|
};
|
|
@@ -8006,6 +8015,7 @@ var require_SystemCommError = __commonJS({
|
|
|
8006
8015
|
constructor(message = "System Communication Error", options = {}) {
|
|
8007
8016
|
super(message, options);
|
|
8008
8017
|
this.statusCode = 503;
|
|
8018
|
+
this.name = "SystemCommError";
|
|
8009
8019
|
Object.setPrototypeOf(this, SystemCommError.prototype);
|
|
8010
8020
|
}
|
|
8011
8021
|
};
|
|
@@ -8023,6 +8033,7 @@ var require_TokenExpiredError = __commonJS({
|
|
|
8023
8033
|
constructor(message = "Token Expired", options = {}) {
|
|
8024
8034
|
super(message, options);
|
|
8025
8035
|
this.statusCode = 401;
|
|
8036
|
+
this.name = "TokenExpiredError";
|
|
8026
8037
|
Object.setPrototypeOf(this, TokenExpiredError.prototype);
|
|
8027
8038
|
}
|
|
8028
8039
|
};
|
|
@@ -8040,6 +8051,7 @@ var require_UnprocessableRequestError = __commonJS({
|
|
|
8040
8051
|
constructor(message = "Unprocessable Request Error", options = {}) {
|
|
8041
8052
|
super(message, options);
|
|
8042
8053
|
this.statusCode = 422;
|
|
8054
|
+
this.name = "UnprocessableRequestError";
|
|
8043
8055
|
Object.setPrototypeOf(this, UnprocessableRequestError.prototype);
|
|
8044
8056
|
}
|
|
8045
8057
|
};
|
|
@@ -8057,6 +8069,7 @@ var require_ValidationError = __commonJS({
|
|
|
8057
8069
|
constructor(message = "Validation Error", options = {}) {
|
|
8058
8070
|
super(message, options);
|
|
8059
8071
|
this.statusCode = 400;
|
|
8072
|
+
this.name = "ValidationError";
|
|
8060
8073
|
Object.setPrototypeOf(this, ValidationError.prototype);
|
|
8061
8074
|
}
|
|
8062
8075
|
};
|