@kohost/api-client 3.0.0-beta.41 → 3.0.0-beta.42

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.
@@ -301,7 +301,7 @@ var require_SendEmailCommand = __commonJS({
301
301
  var Command = require_Command();
302
302
  var RequestError = require_RequestError();
303
303
  var SendEmailCommand = class extends Command {
304
- constructor({ text, html, to, from, subject, eventData }) {
304
+ constructor({ text, html, to, from, subject, ...rest }) {
305
305
  if (!to)
306
306
  throw new RequestError("email to is required");
307
307
  if (!from)
@@ -310,7 +310,7 @@ var require_SendEmailCommand = __commonJS({
310
310
  throw new RequestError("email subject is required");
311
311
  if (!text && !html)
312
312
  throw new RequestError("email text or html is required");
313
- super({ text, html, to, from, subject, eventData });
313
+ super({ text, html, to, from, subject, ...rest });
314
314
  }
315
315
  get name() {
316
316
  return "SendEmail";
@@ -506,8 +506,8 @@ var require_DiscoverReservationsCommand = __commonJS({
506
506
  constructor(options) {
507
507
  if (!options)
508
508
  throw new RequestError("options are required");
509
- const { id, startDate, endDate, status } = options;
510
- super({ id, startDate, endDate, status });
509
+ const { id, startDate, endDate, status, ...rest } = options;
510
+ super({ id, startDate, endDate, status, ...rest });
511
511
  }
512
512
  get name() {
513
513
  return "DiscoverReservations";
@@ -521,6 +521,30 @@ var require_DiscoverReservationsCommand = __commonJS({
521
521
  }
522
522
  });
523
523
 
524
+ // src/Commands/DiscoverReservationRoomTypeUpsellOptionsCommand.js
525
+ var require_DiscoverReservationRoomTypeUpsellOptionsCommand = __commonJS({
526
+ "src/Commands/DiscoverReservationRoomTypeUpsellOptionsCommand.js"(exports, module) {
527
+ var { RequestError } = require_Errors();
528
+ var Command = require_Command();
529
+ var DiscoverReservationRoomTypeUpsellOptionsCommand = class extends Command {
530
+ constructor(options) {
531
+ if (!options)
532
+ throw new RequestError("options are required");
533
+ const { id, ...rest } = options;
534
+ super({ id, ...rest });
535
+ }
536
+ get name() {
537
+ return "DiscoverReservationRoomTypeUpsellOptions";
538
+ }
539
+ get routingKey() {
540
+ return "reservation.discoverRoomUpsells";
541
+ }
542
+ };
543
+ __name(DiscoverReservationRoomTypeUpsellOptionsCommand, "DiscoverReservationRoomTypeUpsellOptionsCommand");
544
+ module.exports = DiscoverReservationRoomTypeUpsellOptionsCommand;
545
+ }
546
+ });
547
+
524
548
  // src/Commands/DiscoverRoomsCommand.js
525
549
  var require_DiscoverRoomsCommand = __commonJS({
526
550
  "src/Commands/DiscoverRoomsCommand.js"(exports, module) {
@@ -532,9 +556,18 @@ var require_DiscoverRoomsCommand = __commonJS({
532
556
  startDate,
533
557
  endDate,
534
558
  serviceStatus,
535
- housekeepingStatus
559
+ housekeepingStatus,
560
+ ...rest
536
561
  }) {
537
- super({ id, types, startDate, endDate, serviceStatus, housekeepingStatus });
562
+ super({
563
+ id,
564
+ types,
565
+ startDate,
566
+ endDate,
567
+ serviceStatus,
568
+ housekeepingStatus,
569
+ ...rest
570
+ });
538
571
  }
539
572
  get name() {
540
573
  return "DiscoverRooms";
@@ -607,10 +640,10 @@ var require_UpdateReservationCommand = __commonJS({
607
640
  var Command = require_Command();
608
641
  var RequestError = require_RequestError();
609
642
  var UpdateReservationCommand = class extends Command {
610
- constructor({ id, space }) {
643
+ constructor({ id, ...rest }) {
611
644
  if (!id)
612
645
  throw new RequestError("document type is required");
613
- super({ id, space });
646
+ super({ id, ...rest });
614
647
  }
615
648
  get name() {
616
649
  return "UpdateReservation";
@@ -734,6 +767,46 @@ var require_UploadImageCommand = __commonJS({
734
767
  }
735
768
  });
736
769
 
770
+ // src/Commands/GetProductsCommand.js
771
+ var require_GetProductsCommand = __commonJS({
772
+ "src/Commands/GetProductsCommand.js"(exports, module) {
773
+ var Command = require_Command();
774
+ var GetProductsCommand = class extends Command {
775
+ constructor({ id, externalSystemId, ...rest }) {
776
+ super({ id, externalSystemId, ...rest });
777
+ }
778
+ get name() {
779
+ return "GetProducts";
780
+ }
781
+ get routingKey() {
782
+ return `product.${this.data.id}.get`;
783
+ }
784
+ };
785
+ __name(GetProductsCommand, "GetProductsCommand");
786
+ module.exports = GetProductsCommand;
787
+ }
788
+ });
789
+
790
+ // src/Commands/SellProductsCommand.js
791
+ var require_SellProductsCommand = __commonJS({
792
+ "src/Commands/SellProductsCommand.js"(exports, module) {
793
+ var Command = require_Command();
794
+ var SellProductsCommand = class extends Command {
795
+ constructor({ reservationId, userId, products, ...rest }) {
796
+ super({ reservationId, userId, products, ...rest });
797
+ }
798
+ get name() {
799
+ return "SellProducts";
800
+ }
801
+ get routingKey() {
802
+ return `product.${this.data.id}.sell`;
803
+ }
804
+ };
805
+ __name(SellProductsCommand, "SellProductsCommand");
806
+ module.exports = SellProductsCommand;
807
+ }
808
+ });
809
+
737
810
  // src/Commands/index.js
738
811
  var require_Commands = __commonJS({
739
812
  "src/Commands/index.js"(exports, module) {
@@ -751,6 +824,7 @@ var require_Commands = __commonJS({
751
824
  var SendEmailCommand = require_SendEmailCommand();
752
825
  var SendSMSCommand = require_SendSMSCommand();
753
826
  var DiscoverReservationsCommand = require_DiscoverReservationsCommand();
827
+ var DiscoverReservationRoomTypeUpsellOptionsCommand = require_DiscoverReservationRoomTypeUpsellOptionsCommand();
754
828
  var DiscoverRoomsCommand = require_DiscoverRoomsCommand();
755
829
  var DiscoverRoomTypesCommand = require_DiscoverRoomTypesCommand();
756
830
  var CreateShortLinkCommand = require_CreateShortLinkCommand();
@@ -759,6 +833,8 @@ var require_Commands = __commonJS({
759
833
  var GetMobileKeyCommand = require_GetMobileKeyCommand();
760
834
  var CreateImageUploadEndpointCommand = require_CreateImageUploadEndpointCommand();
761
835
  var UploadImageCommand = require_UploadImageCommand();
836
+ var GetProductsCommand = require_GetProductsCommand();
837
+ var SellProductsCommand = require_SellProductsCommand();
762
838
  module.exports = {
763
839
  SetAlarmCommand,
764
840
  SetDimmerCommand,
@@ -774,6 +850,7 @@ var require_Commands = __commonJS({
774
850
  SendSMSCommand,
775
851
  SendEmailCommand,
776
852
  DiscoverReservationsCommand,
853
+ DiscoverReservationRoomTypeUpsellOptionsCommand,
777
854
  DiscoverRoomsCommand,
778
855
  DiscoverRoomTypesCommand,
779
856
  CreateShortLinkCommand,
@@ -781,7 +858,9 @@ var require_Commands = __commonJS({
781
858
  UpdateUserCommand,
782
859
  GetMobileKeyCommand,
783
860
  CreateImageUploadEndpointCommand,
784
- UploadImageCommand
861
+ UploadImageCommand,
862
+ GetProductsCommand,
863
+ SellProductsCommand
785
864
  };
786
865
  }
787
866
  });
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
- "sources": ["../../src/Commands/Command.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/SendEmailCommand.js", "../../src/Commands/SendSMSCommand.js", "../../src/Errors/AuthenticationError.js", "../../src/Errors/AuthorizationError.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/DiscoverRoomsCommand.js", "../../src/Commands/DiscoverRoomTypesCommand.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/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 SetAlarmCommand extends Command {\n constructor({ id, zones, areas }) {\n super({ id, zones, areas });\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 }) {\n super({ id, level });\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 }) {\n super({ id, state });\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 }) {\n super({ id, setpoints, hvacMode, fanMode });\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 }) {\n super({ id, state });\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 }) {\n super({ id, position });\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 }) {\n super({ id, state });\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 }) {\n super({ id });\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 }) {\n if (!image) throw new RequestError(\"document image is required\");\n super({ type, image });\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 }) {\n if (!id) throw new RequestError(\"document type is required\");\n super({ id });\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 SendEmailCommand extends Command {\n constructor({ text, html, to, from, subject, eventData }) {\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, eventData });\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, ...rest }) {\n if (!body) throw new RequestError(\"sms body 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, ...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 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 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 } = options;\n super({ id, startDate, endDate, status });\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 Command = require(\"./Command\");\n\nclass DiscoverRoomsCommand extends Command {\n constructor({\n id,\n types,\n startDate,\n endDate,\n serviceStatus,\n housekeepingStatus,\n }) {\n super({ id, types, startDate, endDate, serviceStatus, housekeepingStatus });\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 DiscoverRoomTypesCommand extends Command {\n constructor({ id }) {\n super({ id });\n }\n\n get name() {\n return \"DiscoverRoomTypes\";\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 = DiscoverRoomTypesCommand;\n", "const Command = require(\"./Command\");\nconst RequestError = require(\"../Errors/RequestError\");\n\nclass CreateShortLinkCommand extends Command {\n constructor({ title, destination }) {\n if (!title) throw new RequestError(\"title is required\");\n if (!destination) throw new RequestError(\"destination to is required\");\n super({ title, destination });\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, space }) {\n if (!id) throw new RequestError(\"document type is required\");\n super({ id, space });\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 }) {\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 });\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 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 SendEmailCommand = require(\"./SendEmailCommand\");\nconst SendSMSCommand = require(\"./SendSMSCommand\");\nconst DiscoverReservationsCommand = require(\"./DiscoverReservationsCommand\");\nconst DiscoverRoomsCommand = require(\"./DiscoverRoomsCommand\");\nconst DiscoverRoomTypesCommand = require(\"./DiscoverRoomTypesCommand\");\nconst CreateShortLinkCommand = require(\"./CreateShortLinkCommand\");\nconst UpdateReservationCommand = require(\"./UpdateReservationCommand\");\nconst UpdateUserCommand = require(\"./UpdateUserCommand\");\nconst GetMobileKeyCommand = require(\"./GetMobileKeyCommand\");\nconst CreateImageUploadEndpointCommand = require(\"./CreateImageUploadEndpointCommand\");\nconst UploadImageCommand = require(\"./UploadImageCommand\");\n\nmodule.exports = {\n SetAlarmCommand,\n SetDimmerCommand,\n SetSwitchCommand,\n SetThermostatCommand,\n SetLockCommand,\n SetWindowCoveringCommand,\n SetCourtesyCommand,\n SetMediaCommand,\n OCRDocumentCommand,\n DiscoverUsersCommand,\n CheckInReservationCommand,\n SendSMSCommand,\n SendEmailCommand,\n DiscoverReservationsCommand,\n DiscoverRoomsCommand,\n DiscoverRoomTypesCommand,\n CreateShortLinkCommand,\n UpdateReservationCommand,\n UpdateUserCommand,\n GetMobileKeyCommand,\n CreateImageUploadEndpointCommand,\n UploadImageCommand,\n};\n"],
5
- "mappings": "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",
3
+ "sources": ["../../src/Commands/Command.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/SendEmailCommand.js", "../../src/Commands/SendSMSCommand.js", "../../src/Errors/AuthenticationError.js", "../../src/Errors/AuthorizationError.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/DiscoverReservationRoomTypeUpsellOptionsCommand.js", "../../src/Commands/DiscoverRoomsCommand.js", "../../src/Commands/DiscoverRoomTypesCommand.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 SetAlarmCommand extends Command {\n constructor({ id, zones, areas }) {\n super({ id, zones, areas });\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 }) {\n super({ id, level });\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 }) {\n super({ id, state });\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 }) {\n super({ id, setpoints, hvacMode, fanMode });\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 }) {\n super({ id, state });\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 }) {\n super({ id, position });\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 }) {\n super({ id, state });\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 }) {\n super({ id });\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 }) {\n if (!image) throw new RequestError(\"document image is required\");\n super({ type, image });\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 }) {\n if (!id) throw new RequestError(\"document type is required\");\n super({ id });\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 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, ...rest }) {\n if (!body) throw new RequestError(\"sms body 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, ...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 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 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 DiscoverReservationRoomTypeUpsellOptionsCommand 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 \"DiscoverReservationRoomTypeUpsellOptions\";\n }\n\n get routingKey() {\n return \"reservation.discoverRoomUpsells\";\n }\n}\n\nmodule.exports = DiscoverReservationRoomTypeUpsellOptionsCommand;\n", "const Command = require(\"./Command\");\n\nclass DiscoverRoomsCommand extends Command {\n constructor({\n id,\n types,\n startDate,\n endDate,\n serviceStatus,\n housekeepingStatus,\n ...rest\n }) {\n super({\n id,\n types,\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 DiscoverRoomTypesCommand extends Command {\n constructor({ id }) {\n super({ id });\n }\n\n get name() {\n return \"DiscoverRoomTypes\";\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 = DiscoverRoomTypesCommand;\n", "const Command = require(\"./Command\");\nconst RequestError = require(\"../Errors/RequestError\");\n\nclass CreateShortLinkCommand extends Command {\n constructor({ title, destination }) {\n if (!title) throw new RequestError(\"title is required\");\n if (!destination) throw new RequestError(\"destination to is required\");\n super({ title, destination });\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 }) {\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 });\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 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 SendEmailCommand = require(\"./SendEmailCommand\");\nconst SendSMSCommand = require(\"./SendSMSCommand\");\nconst DiscoverReservationsCommand = require(\"./DiscoverReservationsCommand\");\nconst DiscoverReservationRoomTypeUpsellOptionsCommand = require(\"./DiscoverReservationRoomTypeUpsellOptionsCommand\");\nconst DiscoverRoomsCommand = require(\"./DiscoverRoomsCommand\");\nconst DiscoverRoomTypesCommand = require(\"./DiscoverRoomTypesCommand\");\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 SetAlarmCommand,\n SetDimmerCommand,\n SetSwitchCommand,\n SetThermostatCommand,\n SetLockCommand,\n SetWindowCoveringCommand,\n SetCourtesyCommand,\n SetMediaCommand,\n OCRDocumentCommand,\n DiscoverUsersCommand,\n CheckInReservationCommand,\n SendSMSCommand,\n SendEmailCommand,\n DiscoverReservationsCommand,\n DiscoverReservationRoomTypeUpsellOptionsCommand,\n DiscoverRoomsCommand,\n DiscoverRoomTypesCommand,\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
  }
@@ -406,43 +406,24 @@ var require_SMSEvent = __commonJS({
406
406
  }
407
407
  });
408
408
 
409
- // src/Events/SMSSentEvent.js
410
- var require_SMSSentEvent = __commonJS({
411
- "src/Events/SMSSentEvent.js"(exports, module) {
409
+ // src/Events/EmailEvent.js
410
+ var require_EmailEvent = __commonJS({
411
+ "src/Events/EmailEvent.js"(exports, module) {
412
412
  var Event = require_Event();
413
- var SMSSentEvent = class extends Event {
414
- constructor(sms, context) {
415
- super(sms, context);
416
- }
417
- get name() {
418
- return "SMSSent";
419
- }
420
- get routingKey() {
421
- return "comm.sms.sent";
422
- }
423
- };
424
- __name(SMSSentEvent, "SMSSentEvent");
425
- module.exports = SMSSentEvent;
426
- }
427
- });
428
-
429
- // src/Events/EmailSentEvent.js
430
- var require_EmailSentEvent = __commonJS({
431
- "src/Events/EmailSentEvent.js"(exports, module) {
432
- var Event = require_Event();
433
- var EmailSentEvent = class extends Event {
413
+ var EmailEvent = class extends Event {
434
414
  constructor(email, context) {
435
415
  super(email, context);
416
+ this.status = email.status;
436
417
  }
437
418
  get name() {
438
- return "EmailSent";
419
+ return "EmailEvent";
439
420
  }
440
421
  get routingKey() {
441
- return "comm.email.sent";
422
+ return `comm.email.${this.status}`;
442
423
  }
443
424
  };
444
- __name(EmailSentEvent, "EmailSentEvent");
445
- module.exports = EmailSentEvent;
425
+ __name(EmailEvent, "EmailEvent");
426
+ module.exports = EmailEvent;
446
427
  }
447
428
  });
448
429
 
@@ -526,8 +507,7 @@ var require_Events = __commonJS({
526
507
  var SystemProductUpdatedEvent = require_SystemProductUpdatedEvent();
527
508
  var SystemReservationUpdatedEvent = require_SystemReservationUpdatedEvent();
528
509
  var SMSEvent = require_SMSEvent();
529
- var SMSSentEvent = require_SMSSentEvent();
530
- var EmailSentEvent = require_EmailSentEvent();
510
+ var EmailEvent = require_EmailEvent();
531
511
  var ShortLinkCreatedEvent = require_ShortLinkCreatedEvent();
532
512
  var ApplicationInUseEvent = require_ApplicationInUseEvent();
533
513
  var ApplicationOutOfUseEvent = require_ApplicationOutOfUseEvent();
@@ -549,8 +529,7 @@ var require_Events = __commonJS({
549
529
  SystemProductUpdatedEvent,
550
530
  SystemReservationUpdatedEvent,
551
531
  SMSEvent,
552
- SMSSentEvent,
553
- EmailSentEvent,
532
+ EmailEvent,
554
533
  ShortLinkCreatedEvent,
555
534
  ApplicationInUseEvent,
556
535
  ApplicationOutOfUseEvent
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
- "sources": ["../../src/Events/Event.js", "../../src/Events/SystemGatewayUpdatedEvent.js", "../../src/Events/SystemThermostatUpdatedEvent.js", "../../src/Events/SystemDimmerUpdatedEvent.js", "../../src/Events/SystemSwitchUpdatedEvent.js", "../../src/Events/SystemLockUpdatedEvent.js", "../../src/Events/SystemCameraUpdatedEvent.js", "../../src/Events/SystemSceneControllerUpdatedEvent.js", "../../src/Events/SystemWindowCoveringUpdatedEvent.js", "../../src/Events/SystemMediaSourceUpdatedEvent.js", "../../src/Events/SystemCourtesyUpdatedEvent.js", "../../src/Events/SystemMotionSensorUpdatedEvent.js", "../../src/Events/SystemUserUpdatedEvent.js", "../../src/Events/SystemSpaceUpdatedEvent.js", "../../src/Events/SystemSpaceTypeUpdatedEvent.js", "../../src/Events/SystemProductUpdatedEvent.js", "../../src/Events/SystemReservationUpdatedEvent.js", "../../src/Events/SMSEvent.js", "../../src/Events/SMSSentEvent.js", "../../src/Events/EmailSentEvent.js", "../../src/Events/ShortLinkCreatedEvent.js", "../../src/Events/ApplicationInUseEvent.js", "../../src/Events/ApplicationOutOfUseEvent.js", "../../src/Events/index.js"],
4
- "sourcesContent": ["class Event {\n constructor(data, context) {\n this.data = [];\n this.context = {};\n if (!data) throw new Error(\"Event data is required\");\n if (typeof data !== \"object\" && !Array.isArray(data))\n throw new Error(\"Event data must be an object or array\");\n\n if (!Array.isArray(data)) this.data = [data];\n else this.data = data;\n\n this.data = this.data.map((d) => {\n if (d.eventData) {\n if (!d.eventData.timestamp) d.eventData.timestamp = new Date();\n if (!d.eventData.name) d.eventData.name = this.name;\n if (!d.eventData.type) d.eventData.type = this.type;\n }\n return d;\n });\n\n if (context) {\n for (const key in context) {\n this.context[key] = context[key];\n }\n }\n }\n\n get keyId() {\n if (Array.isArray(this.data)) return \"batch\";\n if (this.data.id) return this.data.id;\n return \"unknown\";\n }\n\n get name() {\n throw new Error(\"Event name is required\");\n }\n\n get type() {\n return \"Event\";\n }\n\n get routingKey() {\n return \"\";\n }\n\n get exchange() {\n return \"Events\";\n }\n\n build() {\n return { data: { ...this.data } };\n }\n}\n\nmodule.exports = Event;\n", "const Event = require(\"./Event\");\n\nclass SystemGatewayUpdatedEvent extends Event {\n constructor(space) {\n super(space);\n }\n\n get name() {\n return \"SystemGatewayUpdated\";\n }\n\n get routingKey() {\n return `gateway.${this.keyId}.updated`;\n }\n}\n\nmodule.exports = SystemGatewayUpdatedEvent;\n", "const Event = require(\"./Event\");\n\nclass SystemThermostatUpdatedEvent extends Event {\n constructor(thermostat) {\n super(thermostat);\n }\n\n get name() {\n return \"SystemThermostatUpdated\";\n }\n\n get routingKey() {\n return `thermostat.${this.keyId}.updated`;\n }\n}\n\nmodule.exports = SystemThermostatUpdatedEvent;\n", "const Event = require(\"./Event\");\n\nclass SystemDimmerUpdatedEvent extends Event {\n constructor(dimmer) {\n super(dimmer);\n }\n\n get name() {\n return \"SystemDimmerUpdated\";\n }\n\n get routingKey() {\n return `dimmer.${this.keyId}.updated`;\n }\n}\n\nmodule.exports = SystemDimmerUpdatedEvent;\n", "const Event = require(\"./Event\");\n\nclass SystemSwitchUpdatedEvent extends Event {\n constructor(_switch) {\n super(_switch);\n }\n\n get name() {\n return \"SystemSwitchUpdated\";\n }\n\n get routingKey() {\n return `switch.${this.keyId}.updated`; \n }\n}\n\nmodule.exports = SystemSwitchUpdatedEvent;\n", "const Event = require(\"./Event\");\n\nclass SystemLockUpdatedEvent extends Event {\n constructor(lock) {\n super(lock);\n }\n\n get name() {\n return \"SystemLockUpdated\";\n }\n\n get routingKey() {\n return `lock.${this.keyId}.updated`;\n }\n}\n\nmodule.exports = SystemLockUpdatedEvent;\n", "const Event = require(\"./Event\");\n\nclass SystemCameraUpdatedEvent extends Event {\n constructor(camera) {\n super(camera);\n }\n\n get name() {\n return \"SystemCameraUpdated\";\n }\n\n get routingKey() {\n return `camera.${this.keyId}.updated`;\n }\n}\n\nmodule.exports = SystemCameraUpdatedEvent;\n", "const Event = require(\"./Event\");\n\nclass SystemSceneControllerUpdatedEvent extends Event {\n constructor(sceneController) {\n super(sceneController);\n }\n\n get name() {\n return \"SystemSceneControllerUpdated\";\n }\n\n get routingKey() {\n return `sceneController.${this.keyId}.updated`;\n }\n}\n\nmodule.exports = SystemSceneControllerUpdatedEvent;\n", "const Event = require(\"./Event\");\n\nclass SystemWindowCoveringUpdatedEvent extends Event {\n constructor(wc) {\n super(wc);\n }\n\n get name() {\n return \"SystemWindowCoveringUpdated\";\n }\n\n get routingKey() {\n return `windowCovering.${this.keyId}.updated`;\n }\n}\n\nmodule.exports = SystemWindowCoveringUpdatedEvent;\n", "const Event = require(\"./Event\");\n\nclass SystemMediaSourceUpdatedEvent extends Event {\n constructor(mediaSource) {\n super(mediaSource);\n }\n\n get name() {\n return \"SystemMediaSourceUpdated\";\n }\n\n get routingKey() {\n return `mediaSource.${this.keyId}.updated`;\n }\n}\n \nmodule.exports = SystemMediaSourceUpdatedEvent;\n", "const Event = require(\"./Event\");\n\nclass SystemCourtesyUpdatedEvent extends Event {\n constructor(courtesy) {\n super(courtesy);\n }\n\n get name() {\n return \"SystemCourtesyUpdated\";\n }\n\n get routingKey() {\n return `courtesy.${this.keyId}.updated`;\n }\n}\n\nmodule.exports = SystemCourtesyUpdatedEvent;\n", "const Event = require(\"./Event\");\n\nclass SystemMotionSensorUpdatedEvent extends Event {\n constructor(mediaSource) {\n super(mediaSource);\n }\n\n get name() {\n return \"SystemMotionSensorUpdated\";\n }\n\n get routingKey() {\n return `mediaSource.${this.keyId}.updated`;\n }\n}\n\nmodule.exports = SystemMotionSensorUpdatedEvent;\n", "const Event = require(\"./Event\");\n\nclass SystemUserUpdatedEvent extends Event {\n constructor(user) {\n super(user);\n }\n\n get name() {\n return \"SystemUserUpdated\";\n }\n\n get routingKey() {\n return `user.${this.keyId}.updated`;\n }\n}\n\nmodule.exports = SystemUserUpdatedEvent;\n", "const Event = require(\"./Event\");\n\nclass SystemSpaceUpdatedEvent extends Event {\n constructor(space) {\n super(space);\n }\n\n get name() {\n return \"SystemSpaceUpdated\";\n }\n\n get routingKey() {\n return `space.${this.keyId}.updated`;\n }\n}\n\nmodule.exports = SystemSpaceUpdatedEvent;\n", "const Event = require(\"./Event\");\n\nclass SystemSpaceTypeUpdatedEvent extends Event {\n constructor(space) {\n super(space);\n }\n\n get name() {\n return \"SystemSpaceTypeUpdated\";\n }\n\n get routingKey() {\n\n return `spaceType.${this.keyId}.updated`; \n }\n}\n\nmodule.exports = SystemSpaceTypeUpdatedEvent; \n \n", "const Event = require(\"./Event\");\n\nclass SystemProductUpdatedEvent extends Event {\n constructor(product) {\n super(product);\n }\n\n get name() {\n return \"SystemProductUpdated\";\n }\n\n get routingKey() {\n return `product.${this.keyId}.updated`;\n }\n}\n\nmodule.exports = SystemProductUpdatedEvent;\n", "const Event = require(\"./Event\");\n\nclass SystemReservationUpdatedEvent extends Event {\n constructor(reservation) {\n super(reservation);\n }\n\n get name() {\n return \"SystemReservationUpdated\";\n }\n\n get routingKey() {\n return `reservation.${this.keyId}.updated`;\n }\n}\n\nmodule.exports = SystemReservationUpdatedEvent;\n", "const Event = require(\"./Event\");\n\nclass SMSEvent extends Event {\n constructor(sms, context) {\n super(sms, context);\n this.status = sms.status;\n }\n\n get name() {\n return \"SMSEvent\";\n }\n\n get routingKey() {\n return `comm.sms.${this.status}`;\n }\n}\n\nmodule.exports = SMSEvent;\n", "const Event = require(\"./Event\");\n\nclass SMSSentEvent extends Event {\n constructor(sms, context) {\n super(sms, context);\n }\n\n get name() {\n return \"SMSSent\";\n }\n\n get routingKey() {\n return \"comm.sms.sent\";\n }\n}\n\nmodule.exports = SMSSentEvent;\n", "const Event = require(\"./Event\");\n\nclass EmailSentEvent extends Event {\n constructor(email, context) {\n super(email, context);\n }\n\n get name() {\n return \"EmailSent\";\n }\n\n get routingKey() {\n return \"comm.email.sent\";\n }\n}\n\nmodule.exports = EmailSentEvent;\n", "const Event = require(\"./Event\");\n\nclass ShortLinkCreatedEvent extends Event {\n constructor(shortLink, context) {\n super(shortLink, context);\n }\n\n get name() {\n return \"ShortLinkCreated\";\n }\n\n get routingKey() {\n return `shortlink.${this.keyId}.created`;\n }\n}\n\nmodule.exports = ShortLinkCreatedEvent;\n", "const Event = require(\"./Event\");\n\nclass ApplicationInUseEvent extends Event {\n constructor({ propertyId }) {\n super({ propertyId });\n }\n\n get name() {\n return \"ApplicationInUse\";\n }\n\n get routingKey() {\n return `app.${this.data[0].propertyId}.inUse`;\n }\n}\n\nmodule.exports = ApplicationInUseEvent;\n", "const Event = require(\"./Event\");\n\nclass ApplicationOutOfUseEvent extends Event {\n constructor({ propertyId }) {\n super({ propertyId });\n }\n\n get name() {\n return \"ApplicationOutOfUse\";\n }\n\n get routingKey() {\n return `app.${this.data[0].propertyId}.notInUse`;\n }\n}\n\nmodule.exports = ApplicationOutOfUseEvent;\n", "const SystemGatewayUpdatedEvent = require(\"./SystemGatewayUpdatedEvent\");\nconst SystemThermostatUpdatedEvent = require(\"./SystemThermostatUpdatedEvent\");\nconst SystemDimmerUpdatedEvent = require(\"./SystemDimmerUpdatedEvent\");\nconst SystemSwitchUpdatedEvent = require(\"./SystemSwitchUpdatedEvent\");\nconst SystemLockUpdatedEvent = require(\"./SystemLockUpdatedEvent\");\nconst SystemCameraUpdatedEvent = require(\"./SystemCameraUpdatedEvent\");\nconst SystemSceneControllerUpdatedEvent = require(\"./SystemSceneControllerUpdatedEvent\");\nconst SystemWindowCoveringUpdatedEvent = require(\"./SystemWindowCoveringUpdatedEvent\");\nconst SystemMediaSourceUpdatedEvent = require(\"./SystemMediaSourceUpdatedEvent\");\nconst SystemCourtesyUpdatedEvent = require(\"./SystemCourtesyUpdatedEvent\");\n\nconst SystemMotionSensorUpdatedEvent = require(\"./SystemMotionSensorUpdatedEvent\");\n\nconst SystemUserUpdatedEvent = require(\"./SystemUserUpdatedEvent\");\nconst SystemSpaceUpdatedEvent = require(\"./SystemSpaceUpdatedEvent\");\nconst SystemSpaceTypeUpdatedEvent = require(\"./SystemSpaceTypeUpdatedEvent\");\nconst SystemProductUpdatedEvent = require(\"./SystemProductUpdatedEvent\");\n\nconst SystemReservationUpdatedEvent = require(\"./SystemReservationUpdatedEvent\");\n\nconst SMSEvent = require(\"./SMSEvent\");\nconst SMSSentEvent = require(\"./SMSSentEvent\");\nconst EmailSentEvent = require(\"./EmailSentEvent\");\nconst ShortLinkCreatedEvent = require(\"./ShortLinkCreatedEvent\");\n\nconst ApplicationInUseEvent = require(\"./ApplicationInUseEvent\");\nconst ApplicationOutOfUseEvent = require(\"./ApplicationOutOfUseEvent\");\n\nmodule.exports = {\n SystemGatewayUpdatedEvent,\n SystemThermostatUpdatedEvent,\n SystemDimmerUpdatedEvent,\n SystemSwitchUpdatedEvent,\n SystemLockUpdatedEvent,\n SystemCameraUpdatedEvent,\n SystemSceneControllerUpdatedEvent,\n SystemWindowCoveringUpdatedEvent,\n SystemMediaSourceUpdatedEvent,\n SystemMotionSensorUpdatedEvent,\n SystemCourtesyUpdatedEvent,\n SystemUserUpdatedEvent,\n SystemSpaceUpdatedEvent,\n SystemSpaceTypeUpdatedEvent,\n SystemProductUpdatedEvent,\n SystemReservationUpdatedEvent,\n SMSEvent,\n SMSSentEvent,\n EmailSentEvent,\n ShortLinkCreatedEvent,\n ApplicationInUseEvent,\n ApplicationOutOfUseEvent,\n};\n"],
5
- "mappings": "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",
3
+ "sources": ["../../src/Events/Event.js", "../../src/Events/SystemGatewayUpdatedEvent.js", "../../src/Events/SystemThermostatUpdatedEvent.js", "../../src/Events/SystemDimmerUpdatedEvent.js", "../../src/Events/SystemSwitchUpdatedEvent.js", "../../src/Events/SystemLockUpdatedEvent.js", "../../src/Events/SystemCameraUpdatedEvent.js", "../../src/Events/SystemSceneControllerUpdatedEvent.js", "../../src/Events/SystemWindowCoveringUpdatedEvent.js", "../../src/Events/SystemMediaSourceUpdatedEvent.js", "../../src/Events/SystemCourtesyUpdatedEvent.js", "../../src/Events/SystemMotionSensorUpdatedEvent.js", "../../src/Events/SystemUserUpdatedEvent.js", "../../src/Events/SystemSpaceUpdatedEvent.js", "../../src/Events/SystemSpaceTypeUpdatedEvent.js", "../../src/Events/SystemProductUpdatedEvent.js", "../../src/Events/SystemReservationUpdatedEvent.js", "../../src/Events/SMSEvent.js", "../../src/Events/EmailEvent.js", "../../src/Events/ShortLinkCreatedEvent.js", "../../src/Events/ApplicationInUseEvent.js", "../../src/Events/ApplicationOutOfUseEvent.js", "../../src/Events/index.js"],
4
+ "sourcesContent": ["class Event {\n constructor(data, context) {\n this.data = [];\n this.context = {};\n if (!data) throw new Error(\"Event data is required\");\n if (typeof data !== \"object\" && !Array.isArray(data))\n throw new Error(\"Event data must be an object or array\");\n\n if (!Array.isArray(data)) this.data = [data];\n else this.data = data;\n\n this.data = this.data.map((d) => {\n if (d.eventData) {\n if (!d.eventData.timestamp) d.eventData.timestamp = new Date();\n if (!d.eventData.name) d.eventData.name = this.name;\n if (!d.eventData.type) d.eventData.type = this.type;\n }\n return d;\n });\n\n if (context) {\n for (const key in context) {\n this.context[key] = context[key];\n }\n }\n }\n\n get keyId() {\n if (Array.isArray(this.data)) return \"batch\";\n if (this.data.id) return this.data.id;\n return \"unknown\";\n }\n\n get name() {\n throw new Error(\"Event name is required\");\n }\n\n get type() {\n return \"Event\";\n }\n\n get routingKey() {\n return \"\";\n }\n\n get exchange() {\n return \"Events\";\n }\n\n build() {\n return { data: { ...this.data } };\n }\n}\n\nmodule.exports = Event;\n", "const Event = require(\"./Event\");\n\nclass SystemGatewayUpdatedEvent extends Event {\n constructor(space) {\n super(space);\n }\n\n get name() {\n return \"SystemGatewayUpdated\";\n }\n\n get routingKey() {\n return `gateway.${this.keyId}.updated`;\n }\n}\n\nmodule.exports = SystemGatewayUpdatedEvent;\n", "const Event = require(\"./Event\");\n\nclass SystemThermostatUpdatedEvent extends Event {\n constructor(thermostat) {\n super(thermostat);\n }\n\n get name() {\n return \"SystemThermostatUpdated\";\n }\n\n get routingKey() {\n return `thermostat.${this.keyId}.updated`;\n }\n}\n\nmodule.exports = SystemThermostatUpdatedEvent;\n", "const Event = require(\"./Event\");\n\nclass SystemDimmerUpdatedEvent extends Event {\n constructor(dimmer) {\n super(dimmer);\n }\n\n get name() {\n return \"SystemDimmerUpdated\";\n }\n\n get routingKey() {\n return `dimmer.${this.keyId}.updated`;\n }\n}\n\nmodule.exports = SystemDimmerUpdatedEvent;\n", "const Event = require(\"./Event\");\n\nclass SystemSwitchUpdatedEvent extends Event {\n constructor(_switch) {\n super(_switch);\n }\n\n get name() {\n return \"SystemSwitchUpdated\";\n }\n\n get routingKey() {\n return `switch.${this.keyId}.updated`; \n }\n}\n\nmodule.exports = SystemSwitchUpdatedEvent;\n", "const Event = require(\"./Event\");\n\nclass SystemLockUpdatedEvent extends Event {\n constructor(lock) {\n super(lock);\n }\n\n get name() {\n return \"SystemLockUpdated\";\n }\n\n get routingKey() {\n return `lock.${this.keyId}.updated`;\n }\n}\n\nmodule.exports = SystemLockUpdatedEvent;\n", "const Event = require(\"./Event\");\n\nclass SystemCameraUpdatedEvent extends Event {\n constructor(camera) {\n super(camera);\n }\n\n get name() {\n return \"SystemCameraUpdated\";\n }\n\n get routingKey() {\n return `camera.${this.keyId}.updated`;\n }\n}\n\nmodule.exports = SystemCameraUpdatedEvent;\n", "const Event = require(\"./Event\");\n\nclass SystemSceneControllerUpdatedEvent extends Event {\n constructor(sceneController) {\n super(sceneController);\n }\n\n get name() {\n return \"SystemSceneControllerUpdated\";\n }\n\n get routingKey() {\n return `sceneController.${this.keyId}.updated`;\n }\n}\n\nmodule.exports = SystemSceneControllerUpdatedEvent;\n", "const Event = require(\"./Event\");\n\nclass SystemWindowCoveringUpdatedEvent extends Event {\n constructor(wc) {\n super(wc);\n }\n\n get name() {\n return \"SystemWindowCoveringUpdated\";\n }\n\n get routingKey() {\n return `windowCovering.${this.keyId}.updated`;\n }\n}\n\nmodule.exports = SystemWindowCoveringUpdatedEvent;\n", "const Event = require(\"./Event\");\n\nclass SystemMediaSourceUpdatedEvent extends Event {\n constructor(mediaSource) {\n super(mediaSource);\n }\n\n get name() {\n return \"SystemMediaSourceUpdated\";\n }\n\n get routingKey() {\n return `mediaSource.${this.keyId}.updated`;\n }\n}\n \nmodule.exports = SystemMediaSourceUpdatedEvent;\n", "const Event = require(\"./Event\");\n\nclass SystemCourtesyUpdatedEvent extends Event {\n constructor(courtesy) {\n super(courtesy);\n }\n\n get name() {\n return \"SystemCourtesyUpdated\";\n }\n\n get routingKey() {\n return `courtesy.${this.keyId}.updated`;\n }\n}\n\nmodule.exports = SystemCourtesyUpdatedEvent;\n", "const Event = require(\"./Event\");\n\nclass SystemMotionSensorUpdatedEvent extends Event {\n constructor(mediaSource) {\n super(mediaSource);\n }\n\n get name() {\n return \"SystemMotionSensorUpdated\";\n }\n\n get routingKey() {\n return `mediaSource.${this.keyId}.updated`;\n }\n}\n\nmodule.exports = SystemMotionSensorUpdatedEvent;\n", "const Event = require(\"./Event\");\n\nclass SystemUserUpdatedEvent extends Event {\n constructor(user) {\n super(user);\n }\n\n get name() {\n return \"SystemUserUpdated\";\n }\n\n get routingKey() {\n return `user.${this.keyId}.updated`;\n }\n}\n\nmodule.exports = SystemUserUpdatedEvent;\n", "const Event = require(\"./Event\");\n\nclass SystemSpaceUpdatedEvent extends Event {\n constructor(space) {\n super(space);\n }\n\n get name() {\n return \"SystemSpaceUpdated\";\n }\n\n get routingKey() {\n return `space.${this.keyId}.updated`;\n }\n}\n\nmodule.exports = SystemSpaceUpdatedEvent;\n", "const Event = require(\"./Event\");\n\nclass SystemSpaceTypeUpdatedEvent extends Event {\n constructor(space) {\n super(space);\n }\n\n get name() {\n return \"SystemSpaceTypeUpdated\";\n }\n\n get routingKey() {\n return `spaceType.${this.keyId}.updated`;\n }\n}\n\nmodule.exports = SystemSpaceTypeUpdatedEvent;\n", "const Event = require(\"./Event\");\n\nclass SystemProductUpdatedEvent extends Event {\n constructor(product) {\n super(product);\n }\n\n get name() {\n return \"SystemProductUpdated\";\n }\n\n get routingKey() {\n return `product.${this.keyId}.updated`;\n }\n}\n\nmodule.exports = SystemProductUpdatedEvent;\n", "const Event = require(\"./Event\");\n\nclass SystemReservationUpdatedEvent extends Event {\n constructor(reservation) {\n super(reservation);\n }\n\n get name() {\n return \"SystemReservationUpdated\";\n }\n\n get routingKey() {\n return `reservation.${this.keyId}.updated`;\n }\n}\n\nmodule.exports = SystemReservationUpdatedEvent;\n", "const Event = require(\"./Event\");\n\nclass SMSEvent extends Event {\n constructor(sms, context) {\n super(sms, context);\n this.status = sms.status;\n }\n\n get name() {\n return \"SMSEvent\";\n }\n\n get routingKey() {\n return `comm.sms.${this.status}`;\n }\n}\n\nmodule.exports = SMSEvent;\n", "const Event = require(\"./Event\");\n\nclass EmailEvent extends Event {\n constructor(email, context) {\n super(email, context);\n this.status = email.status;\n }\n\n get name() {\n return \"EmailEvent\";\n }\n\n get routingKey() {\n return `comm.email.${this.status}`;\n }\n}\n\nmodule.exports = EmailEvent;\n", "const Event = require(\"./Event\");\n\nclass ShortLinkCreatedEvent extends Event {\n constructor(shortLink, context) {\n super(shortLink, context);\n }\n\n get name() {\n return \"ShortLinkCreated\";\n }\n\n get routingKey() {\n return `shortlink.${this.keyId}.created`;\n }\n}\n\nmodule.exports = ShortLinkCreatedEvent;\n", "const Event = require(\"./Event\");\n\nclass ApplicationInUseEvent extends Event {\n constructor({ propertyId }) {\n super({ propertyId });\n }\n\n get name() {\n return \"ApplicationInUse\";\n }\n\n get routingKey() {\n return `app.${this.data[0].propertyId}.inUse`;\n }\n}\n\nmodule.exports = ApplicationInUseEvent;\n", "const Event = require(\"./Event\");\n\nclass ApplicationOutOfUseEvent extends Event {\n constructor({ propertyId }) {\n super({ propertyId });\n }\n\n get name() {\n return \"ApplicationOutOfUse\";\n }\n\n get routingKey() {\n return `app.${this.data[0].propertyId}.notInUse`;\n }\n}\n\nmodule.exports = ApplicationOutOfUseEvent;\n", "const SystemGatewayUpdatedEvent = require(\"./SystemGatewayUpdatedEvent\");\nconst SystemThermostatUpdatedEvent = require(\"./SystemThermostatUpdatedEvent\");\nconst SystemDimmerUpdatedEvent = require(\"./SystemDimmerUpdatedEvent\");\nconst SystemSwitchUpdatedEvent = require(\"./SystemSwitchUpdatedEvent\");\nconst SystemLockUpdatedEvent = require(\"./SystemLockUpdatedEvent\");\nconst SystemCameraUpdatedEvent = require(\"./SystemCameraUpdatedEvent\");\nconst SystemSceneControllerUpdatedEvent = require(\"./SystemSceneControllerUpdatedEvent\");\nconst SystemWindowCoveringUpdatedEvent = require(\"./SystemWindowCoveringUpdatedEvent\");\nconst SystemMediaSourceUpdatedEvent = require(\"./SystemMediaSourceUpdatedEvent\");\nconst SystemCourtesyUpdatedEvent = require(\"./SystemCourtesyUpdatedEvent\");\n\nconst SystemMotionSensorUpdatedEvent = require(\"./SystemMotionSensorUpdatedEvent\");\n\nconst SystemUserUpdatedEvent = require(\"./SystemUserUpdatedEvent\");\nconst SystemSpaceUpdatedEvent = require(\"./SystemSpaceUpdatedEvent\");\nconst SystemSpaceTypeUpdatedEvent = require(\"./SystemSpaceTypeUpdatedEvent\");\nconst SystemProductUpdatedEvent = require(\"./SystemProductUpdatedEvent\");\n\nconst SystemReservationUpdatedEvent = require(\"./SystemReservationUpdatedEvent\");\n\nconst SMSEvent = require(\"./SMSEvent\");\nconst EmailEvent = require(\"./EmailEvent\");\nconst ShortLinkCreatedEvent = require(\"./ShortLinkCreatedEvent\");\n\nconst ApplicationInUseEvent = require(\"./ApplicationInUseEvent\");\nconst ApplicationOutOfUseEvent = require(\"./ApplicationOutOfUseEvent\");\n\nmodule.exports = {\n SystemGatewayUpdatedEvent,\n SystemThermostatUpdatedEvent,\n SystemDimmerUpdatedEvent,\n SystemSwitchUpdatedEvent,\n SystemLockUpdatedEvent,\n SystemCameraUpdatedEvent,\n SystemSceneControllerUpdatedEvent,\n SystemWindowCoveringUpdatedEvent,\n SystemMediaSourceUpdatedEvent,\n SystemMotionSensorUpdatedEvent,\n SystemCourtesyUpdatedEvent,\n SystemUserUpdatedEvent,\n SystemSpaceUpdatedEvent,\n SystemSpaceTypeUpdatedEvent,\n SystemProductUpdatedEvent,\n SystemReservationUpdatedEvent,\n SMSEvent,\n EmailEvent,\n ShortLinkCreatedEvent,\n ApplicationInUseEvent,\n ApplicationOutOfUseEvent,\n};\n"],
5
+ "mappings": "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",
6
6
  "names": []
7
7
  }