@messenger-box/property-ext-server 0.0.1-alpha.200 → 0.0.1-alpha.216

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/lib/index.js CHANGED
@@ -280,13 +280,13 @@ exports.PropertyExtMessagesMigration = void 0;
280
280
  const inversify_1 = __webpack_require__(/*! inversify */ "inversify");
281
281
  const core_1 = __webpack_require__(/*! @common-stack/core */ "@common-stack/core");
282
282
  const property_ext_core_1 = __webpack_require__(/*! @messenger-box/property-ext-core */ "@messenger-box/property-ext-core");
283
- const core_2 = __webpack_require__(/*! @messenger-box/core */ "@messenger-box/core");
284
283
  const config_1 = __webpack_require__(/*! ../config */ "./src/config/index.ts");
285
284
  let PropertyExtMessagesMigration = PropertyExtMessagesMigration_1 = class PropertyExtMessagesMigration {
286
285
  constructor(broker, logger) {
287
286
  this.broker = broker;
288
287
  this.logger = logger;
289
- this.name = 'PropertyExtMessagesMigration';
288
+ this.name = this.constructor.name;
289
+ this.id = `${this.name}_20220814`;
290
290
  this.logger = logger.child({ className: PropertyExtMessagesMigration_1.name });
291
291
  }
292
292
  async createUsers() {
@@ -317,13 +317,13 @@ let PropertyExtMessagesMigration = PropertyExtMessagesMigration_1 = class Proper
317
317
  return Promise.all([userOne, userTwo]);
318
318
  }
319
319
  createChannel(owner, guest) {
320
- return this.broker.call(`${core_2.IMoleculerTopics.ChannelService}.${core_2.IBaseServiceCommands.create}`, {
320
+ return this.broker.call(`${"ChannelService" /* IMoleculerTopics.ChannelService */}.${"create" /* IBaseServiceCommands.create */}`, {
321
321
  data: {
322
322
  topic: 'Fixtures',
323
323
  title: `${owner.alias}:${guest.alias}`,
324
324
  creator: guest.id,
325
- displayName: `${owner.alias}:${guest.alias}`,
326
- type: core_2.IRoomType.DIRECT,
325
+ displayName: `${owner.id}:${guest.id}`,
326
+ type: "DIRECT" /* IRoomType.DIRECT */,
327
327
  members: [
328
328
  {
329
329
  id: undefined,
@@ -342,7 +342,7 @@ let PropertyExtMessagesMigration = PropertyExtMessagesMigration_1 = class Proper
342
342
  });
343
343
  }
344
344
  async createSimpleMessage(channelId, editedBy) {
345
- return this.broker.call(`${core_2.IMoleculerTopics.PostService}.${core_2.IBaseServiceCommands.create}`, {
345
+ return this.broker.call(`${"PostService" /* IMoleculerTopics.PostService */}.${"create" /* IBaseServiceCommands.create */}`, {
346
346
  data: {
347
347
  editedBy: editedBy,
348
348
  channel: channelId,
@@ -354,7 +354,7 @@ let PropertyExtMessagesMigration = PropertyExtMessagesMigration_1 = class Proper
354
354
  }
355
355
  async createAlertMessage(channelId, editedBy) {
356
356
  const message = 'This is a dummy alert!';
357
- return this.broker.call(`${core_2.IMoleculerTopics.PostService}.${core_2.IBaseServiceCommands.create}`, {
357
+ return this.broker.call(`${"PostService" /* IMoleculerTopics.PostService */}.${"create" /* IBaseServiceCommands.create */}`, {
358
358
  data: {
359
359
  editedBy: editedBy,
360
360
  channel: channelId,
@@ -379,7 +379,7 @@ let PropertyExtMessagesMigration = PropertyExtMessagesMigration_1 = class Proper
379
379
  }
380
380
  async createCardMessage(channelId, editedBy) {
381
381
  const message = 'Inquiry for fixture property';
382
- return this.broker.call(`${core_2.IMoleculerTopics.PostService}.${core_2.IBaseServiceCommands.create}`, {
382
+ return this.broker.call(`${"PostService" /* IMoleculerTopics.PostService */}.${"create" /* IBaseServiceCommands.create */}`, {
383
383
  data: {
384
384
  editedBy: editedBy,
385
385
  channel: channelId,
@@ -415,9 +415,11 @@ let PropertyExtMessagesMigration = PropertyExtMessagesMigration_1 = class Proper
415
415
  }
416
416
  async waitForServices() {
417
417
  if (config_1.config.isDev) {
418
- await this.broker.waitForServices('AccountUser');
419
- await this.broker.waitForServices(`${core_2.IMoleculerTopics.ChannelService}`);
420
- await this.broker.waitForServices(`${core_2.IMoleculerTopics.PostService}`);
418
+ await Promise.all([
419
+ this.broker.waitForServices(`${"ChannelService" /* IMoleculerTopics.ChannelService */}`),
420
+ this.broker.waitForServices('AccountUser'),
421
+ this.broker.waitForServices(`${"PostService" /* IMoleculerTopics.PostService */}`),
422
+ ]);
421
423
  }
422
424
  }
423
425
  async up() {
@@ -447,32 +449,37 @@ let PropertyExtMessagesMigration = PropertyExtMessagesMigration_1 = class Proper
447
449
  },
448
450
  },
449
451
  });
450
- console.log('--users--', JSON.stringify(users));
451
- await Promise.all(users.map(({ id }) => this.broker.call(`AccountUser.deleteAccount`, {
452
- account: {
453
- id,
454
- },
455
- })));
456
- const [channel] = await this.broker.call(`${core_2.IMoleculerTopics.ChannelService}.${core_2.IBaseServiceCommands.getAll}`, {
452
+ if (!users.length) {
453
+ this.logger.debug(`(down) No Users found, skipping migrations!`);
454
+ return;
455
+ }
456
+ const [userOne, userTwo] = users;
457
+ const [channel] = await this.broker.call(`${"ChannelService" /* IMoleculerTopics.ChannelService */}.${"getAll" /* IBaseServiceCommands.getAll */}`, {
457
458
  criteria: {
458
- displayName: `propertyAutomatedUser:propertyAutomatedUser2`,
459
+ displayName: `${userTwo.id}:${userOne.id}`,
459
460
  },
460
461
  });
461
462
  if (!(channel === null || channel === void 0 ? void 0 : channel.id)) {
462
- this.logger.debug(`(down) No Channel found, skipping migration!`);
463
- return;
463
+ this.logger.debug(`(down) No Channel found, skipping channel delete!`);
464
464
  }
465
- const posts = await this.broker.call(`${core_2.IMoleculerTopics.PostService}.getAll`, {
466
- criteria: {
467
- channel: channel.id,
465
+ else {
466
+ const posts = await this.broker.call(`${"PostService" /* IMoleculerTopics.PostService */}.getAll`, {
467
+ criteria: {
468
+ channel: channel.id,
469
+ },
470
+ });
471
+ await Promise.all(posts.map(({ id }) => this.broker.call(`${"PostService" /* IMoleculerTopics.PostService */}.delete`, {
472
+ id,
473
+ })));
474
+ await this.broker.call(`${"ChannelService" /* IMoleculerTopics.ChannelService */}.${"delete" /* IBaseServiceCommands.delete */}`, {
475
+ id: channel.id,
476
+ });
477
+ }
478
+ await Promise.all(users.map(({ id }) => this.broker.call(`AccountUser.deleteAccount`, {
479
+ account: {
480
+ id,
468
481
  },
469
- });
470
- await Promise.all(posts.map(({ id }) => this.broker.call(`${core_2.IMoleculerTopics.PostService}.delete`, {
471
- id,
472
482
  })));
473
- await this.broker.call(`${core_2.IMoleculerTopics.ChannelService}.${core_2.IBaseServiceCommands.delete}`, {
474
- id: channel.id,
475
- });
476
483
  this.logger.debug(`(down) Successful`);
477
484
  }
478
485
  };
@@ -525,16 +532,6 @@ module.exports = require("@common-stack/server-core");
525
532
 
526
533
  /***/ }),
527
534
 
528
- /***/ "@messenger-box/core":
529
- /*!**************************************!*\
530
- !*** external "@messenger-box/core" ***!
531
- \**************************************/
532
- /***/ ((module) => {
533
-
534
- module.exports = require("@messenger-box/core");
535
-
536
- /***/ }),
537
-
538
535
  /***/ "@messenger-box/property-ext-core":
539
536
  /*!***************************************************!*\
540
537
  !*** external "@messenger-box/property-ext-core" ***!
package/lib/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","mappings":"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","sources":["webpack://@messenger-box/property-ext-server/./src/graphql/schema/post.graphql","webpack://@messenger-box/property-ext-server/./src/config/config.ts","webpack://@messenger-box/property-ext-server/./src/config/index.ts","webpack://@messenger-box/property-ext-server/./src/containers/container.ts","webpack://@messenger-box/property-ext-server/./src/containers/index.ts","webpack://@messenger-box/property-ext-server/./src/graphql/index.ts","webpack://@messenger-box/property-ext-server/./src/graphql/schema/index.ts","webpack://@messenger-box/property-ext-server/./src/index.ts","webpack://@messenger-box/property-ext-server/./src/migrations/bot-user-migration.ts","webpack://@messenger-box/property-ext-server/./src/migrations/index.ts","webpack://@messenger-box/property-ext-server/./src/migrations/property-ext-messages-migration.ts","webpack://@messenger-box/property-ext-server/./src/module.ts","webpack://@messenger-box/property-ext-server/external commonjs \"@common-stack/core\"","webpack://@messenger-box/property-ext-server/external commonjs \"@common-stack/server-core\"","webpack://@messenger-box/property-ext-server/external commonjs \"@messenger-box/core\"","webpack://@messenger-box/property-ext-server/external commonjs \"@messenger-box/property-ext-core\"","webpack://@messenger-box/property-ext-server/external commonjs \"envalid\"","webpack://@messenger-box/property-ext-server/external commonjs \"inversify\"","webpack://@messenger-box/property-ext-server/webpack/bootstrap","webpack://@messenger-box/property-ext-server/webpack/runtime/define property getters","webpack://@messenger-box/property-ext-server/webpack/runtime/hasOwnProperty shorthand","webpack://@messenger-box/property-ext-server/webpack/runtime/make namespace object","webpack://@messenger-box/property-ext-server/webpack/before-startup","webpack://@messenger-box/property-ext-server/webpack/startup","webpack://@messenger-box/property-ext-server/webpack/after-startup"],"sourcesContent":["export default \"extend enum PostTypeEnum{\\n ALERT\\n CARD\\n}\\n\";","import { str, cleanEnv, json } from 'envalid';\nimport { IntegrationConnections, Integrations } from '@adminide-stack/core';\n\nconst env = (process as any).APP_ENV || process.env;\n\nexport const config = cleanEnv(env, {\n NODE_ENV: str({ choices: ['production', 'test', 'staging', 'development'], default: 'production' }),\n POST_DATA_FILE_PATH: str({\n default: 'node_modules/@messenger-box/property-ext-server/lib/mock/fixtures/post.json',\n }),\n CHANNEL_DATA_FILE_PATH: str({\n default: 'node_modules/@messenger-box/property-ext-server/lib/mock/fixtures/channel.json',\n }),\n});\n","export * from './config';\n","import { ContainerModule, interfaces } from 'inversify';\nimport { BotUserMigration, PropertyExtMessagesMigration } from '../migrations';\n\nexport const propertyContainerModule: (settings) => interfaces.ContainerModule = () =>\n new ContainerModule((bind: interfaces.Bind) => {\n bind('MongodbMigration').to(BotUserMigration).whenTargetNamed(BotUserMigration.name);\n bind('MongodbMigration').to(PropertyExtMessagesMigration).whenTargetNamed(PropertyExtMessagesMigration.name);\n });\n","export * from './container';\n","export { schema } from './schema';\n","// eslint-disable-next-line @typescript-eslint/ban-ts-comment\n// @ts-nocheck\nimport post from './post.graphql';\n\nexport const schema = [post].join('/n');\n","export { default } from './module';\n","import { inject, injectable } from 'inversify';\nimport { CommonType } from '@common-stack/core';\nimport { ServiceBroker } from 'moleculer';\nimport { IDatabaseMigration } from '@adminide-stack/core';\nimport * as Logger from 'bunyan';\nimport { config } from '../config';\n\n@injectable()\nexport class BotUserMigration implements IDatabaseMigration {\n constructor(\n @inject(CommonType.MOLECULER_BROKER)\n private readonly broker: ServiceBroker,\n @inject('Logger')\n private logger: Logger,\n ) {\n this.logger = logger.child({ className: BotUserMigration.name });\n }\n\n protected name = 'BotUserMigration';\n\n id = `${this.constructor.name}_20220502`;\n\n async up(): Promise<void> {\n await this.down();\n this.logger.debug(`(up) Starting up migration...`);\n const user = await this.broker.call(`AccountUser.createAccount`, {\n account: {\n username: 'resortifi',\n email: 'resortifi-bot@resortifi.com',\n alias: 'resortifi',\n emailVerified: true,\n notificationEmail: '',\n },\n });\n this.logger.debug(`(up) done`, user);\n }\n\n async down(): Promise<void> {\n if (config.isDev) {\n await this.broker.waitForServices('AccountUser');\n }\n this.logger.debug(`(down) Starting down migration...`);\n const user = await this.broker.call<{ id: string }, { email: string }>(`AccountUser.findAccountByEmail`, {\n email: 'resortifi-bot@resortifi.com',\n });\n if (!user) {\n return;\n }\n this.logger.debug(`(down) User Found, dropping...`, user);\n await this.broker.call(`AccountUser.deleteAccount`, {\n account: {\n id: user.id,\n },\n });\n this.logger.debug(`(down) User drop done!`);\n }\n}\n","export { PropertyExtMessagesMigration } from './property-ext-messages-migration';\nexport { BotUserMigration } from './bot-user-migration';\n","import { inject, injectable } from 'inversify';\nimport { IDatabaseMigration, IUserAccount } from '@adminide-stack/core';\nimport { CommonType } from '@common-stack/core';\nimport { ServiceBroker } from 'moleculer';\nimport * as Logger from 'bunyan';\nimport { IChannel, IPost, IPostTypeEnum } from '@messenger-box/property-ext-core';\nimport { IBaseServiceCommands, IMoleculerTopics, IRoomType } from '@messenger-box/core';\nimport { config } from '../config';\n\n@injectable()\nexport class PropertyExtMessagesMigration implements IDatabaseMigration {\n constructor(\n @inject(CommonType.MOLECULER_BROKER)\n private readonly broker: ServiceBroker,\n @inject('Logger')\n private logger: Logger,\n ) {\n this.logger = logger.child({ className: PropertyExtMessagesMigration.name });\n }\n\n id: 'MessagesMigration_07312022';\n\n protected name = 'PropertyExtMessagesMigration';\n\n private async createUsers(): Promise<[IUserAccount, IUserAccount]> {\n const userOne = this.broker.call<IUserAccount, unknown>(`AccountUser.createAccount`, {\n account: {\n username: 'propertyAutomatedUser',\n email: 'property-automated-user@resortifi.com',\n alias: 'auth0|62df21f9e8116e9fce8207cf', // This need to match with auth0 id. Otherwise manually updatein the DB\n familyName: 'property-fixure',\n givenName: 'user1',\n picture: 'https://lh3.googleusercontent.com/a/AATXAJxMARAgr96npkZGf4R2uGbahBP4tLh5SRbS9bVq=s96-c',\n emailVerified: true,\n notificationEmail: '',\n },\n });\n const userTwo = this.broker.call<IUserAccount, unknown>(`AccountUser.createAccount`, {\n account: {\n username: 'propertyAutomatedUser2',\n email: 'property-automated-user2@resortifi.com',\n alias: 'auth0|62df22109b1f5f6077c1f57e', // This need to match with auth0 id. Otherwise manually updatein the DB\n familyName: 'property-fixure',\n givenName: 'user2',\n picture: 'https://lh3.googleusercontent.com/a/AATXAJxMARAgr96npkZGf4R2uGbahBP4tLh5SRbS9bVq=s96-c',\n emailVerified: true,\n notificationEmail: '',\n },\n });\n return Promise.all([userOne, userTwo]);\n }\n\n private createChannel(owner: IUserAccount, guest: IUserAccount): Promise<IChannel> {\n return this.broker.call(`${IMoleculerTopics.ChannelService}.${IBaseServiceCommands.create}`, {\n data: {\n topic: 'Fixtures',\n title: `${owner.alias}:${guest.alias}`,\n creator: guest.id as never,\n displayName: `${owner.alias}:${guest.alias}`,\n type: IRoomType.DIRECT,\n members: [\n {\n id: undefined,\n schemeAdmin: false,\n roles: 'OWNER',\n user: owner.id as never,\n },\n {\n id: undefined,\n schemeAdmin: true,\n roles: 'GUEST',\n user: guest.id as never,\n },\n ],\n },\n });\n }\n\n private async createSimpleMessage(channelId: string, editedBy: string) {\n return this.broker.call(`${IMoleculerTopics.PostService}.${IBaseServiceCommands.create}`, {\n data: {\n editedBy: editedBy as never,\n channel: channelId as never,\n message: 'Hello from the migrations',\n type: IPostTypeEnum.Simple as never,\n files: [],\n },\n });\n }\n\n private async createAlertMessage(channelId: string, editedBy: string) {\n const message = 'This is a dummy alert!';\n return this.broker.call(`${IMoleculerTopics.PostService}.${IBaseServiceCommands.create}`, {\n data: {\n editedBy: editedBy as never,\n channel: channelId as never,\n message,\n type: IPostTypeEnum.ALERT as never,\n files: [],\n props: {\n ref: 'Dummy',\n refId: 'some-ref',\n attachment: {\n title: message,\n isTitleHtml: false,\n icon: 'InfoIcon',\n callToAction: {\n title: 'View',\n link: `/some-route/some-id`,\n },\n },\n },\n },\n });\n }\n\n private async createCardMessage(channelId: string, editedBy: string) {\n const message = 'Inquiry for fixture property';\n return this.broker.call(`${IMoleculerTopics.PostService}.${IBaseServiceCommands.create}`, {\n data: {\n editedBy: editedBy as never,\n channel: channelId as never,\n message,\n type: IPostTypeEnum.CARD as never,\n files: [],\n props: {\n ref: 'Property',\n refId: 'some-property-id',\n attachment: {\n image: 'https://placehold.co/300',\n title: message,\n isTitleHtml: false,\n description:\n 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis interdum leo augue, non posuere sapien ullamcorper ac. Aliquam vitae ornare libero, ac vulputate elit. Aenean interdum, mi a viverra maximus, leo nibh maximus augue, vel ultrices leo ante et ex. Maecenas vel mi auctor, egestas tellus nec, placerat odio. Curabitur eget tortor sed ligula pharetra varius. Aliquam sit amet lacus ligula. Etiam vitae magna eros.',\n isDescriptionHtml: false,\n callToAction: {\n title: 'View',\n // Should come from frontend\n link: `/property/some-id`,\n },\n property: {\n price: 10,\n priceType: 'Hourly',\n type: 'Hotel',\n totalStar: 5,\n maxPeople: 500,\n totalReview: 450,\n },\n },\n },\n },\n });\n }\n\n private async waitForServices() {\n if (config.isDev) {\n await this.broker.waitForServices('AccountUser');\n await this.broker.waitForServices(`${IMoleculerTopics.ChannelService}`);\n await this.broker.waitForServices(`${IMoleculerTopics.PostService}`);\n }\n }\n\n async up(): Promise<void> {\n await this.waitForServices();\n await this.down();\n this.logger.debug(`(up) Starting up migration...`);\n const users = await this.createUsers();\n this.logger.debug('(up) users created...');\n const channel = await this.createChannel(users[0], users[1]);\n if (!channel) {\n return;\n }\n this.logger.debug('(up) channel created...');\n await Promise.all([\n this.createSimpleMessage(channel.id, users[0].id),\n this.createAlertMessage(channel.id, users[0].id),\n this.createCardMessage(channel.id, users[0].id),\n ]);\n this.logger.debug('(up) messages created...');\n }\n\n async down(): Promise<void> {\n this.logger.debug(`(down) Starting down migration...`);\n const users = await this.broker.call<IUserAccount[], unknown>('AccountUser.getAll', {\n options: {\n criteria: {\n email: { $in: ['property-automated-user@resortifi.com', 'property-automated-user2@resortifi.com'] },\n },\n },\n });\n console.log('--users--', JSON.stringify(users));\n await Promise.all(\n users.map(({ id }) =>\n this.broker.call(`AccountUser.deleteAccount`, {\n account: {\n id,\n },\n }),\n ),\n );\n const [channel] = await this.broker.call(`${IMoleculerTopics.ChannelService}.${IBaseServiceCommands.getAll}`, {\n criteria: {\n displayName: `propertyAutomatedUser:propertyAutomatedUser2`,\n },\n });\n if (!channel?.id) {\n this.logger.debug(`(down) No Channel found, skipping migration!`);\n return;\n }\n const posts = await this.broker.call<IPost[], unknown>(`${IMoleculerTopics.PostService}.getAll`, {\n criteria: {\n channel: channel.id,\n },\n });\n await Promise.all(\n posts.map(({ id }) =>\n this.broker.call(`${IMoleculerTopics.PostService}.delete`, {\n id,\n }),\n ),\n );\n await this.broker.call(`${IMoleculerTopics.ChannelService}.${IBaseServiceCommands.delete}`, {\n id: channel.id,\n });\n this.logger.debug(`(down) Successful`);\n }\n}\n","import { Feature } from '@common-stack/server-core';\nimport { propertyContainerModule } from './containers';\nimport { schema } from './graphql';\n\nexport default new Feature({\n schema,\n createContainerFunc: [propertyContainerModule],\n});\n","module.exports = require(\"@common-stack/core\");","module.exports = require(\"@common-stack/server-core\");","module.exports = require(\"@messenger-box/core\");","module.exports = require(\"@messenger-box/property-ext-core\");","module.exports = require(\"envalid\");","module.exports = require(\"inversify\");","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","","// startup\n// Load entry module and return exports\n// This entry module is referenced by other modules so it can't be inlined\nvar __webpack_exports__ = __webpack_require__(\"./src/index.ts\");\n",""],"names":[],"sourceRoot":""}
1
+ {"version":3,"file":"index.js","mappings":";;;;;;;;;;;;;;AAAA,iEAAe,0BAA0B,wBAAwB,GAAG;;;;;;;;;;;;;ACApE,gEAA8C;AAG9C,MAAM,GAAG,GAAI,OAAe,CAAC,OAAO,IAAI,OAAO,CAAC,GAAG,CAAC;AAEvC,cAAM,GAAG,sBAAQ,EAAC,GAAG,EAAE;IAChC,QAAQ,EAAE,iBAAG,EAAC,EAAE,OAAO,EAAE,CAAC,YAAY,EAAE,MAAM,EAAE,SAAS,EAAE,aAAa,CAAC,EAAE,OAAO,EAAE,YAAY,EAAE,CAAC;IACnG,mBAAmB,EAAE,iBAAG,EAAC;QACrB,OAAO,EAAE,6EAA6E;KACzF,CAAC;IACF,sBAAsB,EAAE,iBAAG,EAAC;QACxB,OAAO,EAAE,gFAAgF;KAC5F,CAAC;CACL,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;ACbH,qFAAyB;;;;;;;;;;;;;;ACAzB,sEAAwD;AACxD,2FAA+E;AAExE,MAAM,uBAAuB,GAA6C,GAAG,EAAE,CAClF,IAAI,2BAAe,CAAC,CAAC,IAAqB,EAAE,EAAE;IAC1C,IAAI,CAAC,kBAAkB,CAAC,CAAC,EAAE,CAAC,6BAAgB,CAAC,CAAC,eAAe,CAAC,6BAAgB,CAAC,IAAI,CAAC,CAAC;IACrF,IAAI,CAAC,kBAAkB,CAAC,CAAC,EAAE,CAAC,yCAA4B,CAAC,CAAC,eAAe,CAAC,yCAA4B,CAAC,IAAI,CAAC,CAAC;AACjH,CAAC,CAAC,CAAC;AAJM,+BAAuB,2BAI7B;;;;;;;;;;;;;;;;;;;;;;;;;;;ACPP,+FAA4B;;;;;;;;;;;;;;ACA5B,oFAAkC;AAAzB,uGAAM;;;;;;;;;;;;;;;;;ACAf,6DAA6D;AAC7D,cAAc;AACd,uHAAkC;AAErB,cAAM,GAAG,CAAC,sBAAI,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;;;;;;;;;;;;ACJxC,sEAAmC;AAA1B,0HAAO;;;;;;;;;;;;;;;;;;;;;;;;ACAhB,sEAA+C;AAC/C,mFAAgD;AAIhD,+EAAmC;AAGnC,IAAa,gBAAgB,wBAA7B,MAAa,gBAAgB;IACzB,YAEqB,MAAqB,EAE9B,MAAc;QAFL,WAAM,GAAN,MAAM,CAAe;QAE9B,WAAM,GAAN,MAAM,CAAQ;QAKhB,SAAI,GAAG,kBAAkB,CAAC;QAEpC,OAAE,GAAG,GAAG,IAAI,CAAC,WAAW,CAAC,IAAI,WAAW,CAAC;QALrC,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC,KAAK,CAAC,EAAE,SAAS,EAAE,kBAAgB,CAAC,IAAI,EAAE,CAAC,CAAC;IACrE,CAAC;IAMD,KAAK,CAAC,EAAE;QACJ,MAAM,IAAI,CAAC,IAAI,EAAE,CAAC;QAClB,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,+BAA+B,CAAC,CAAC;QACnD,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,2BAA2B,EAAE;YAC7D,OAAO,EAAE;gBACL,QAAQ,EAAE,WAAW;gBACrB,KAAK,EAAE,6BAA6B;gBACpC,KAAK,EAAE,WAAW;gBAClB,aAAa,EAAE,IAAI;gBACnB,iBAAiB,EAAE,EAAE;aACxB;SACJ,CAAC,CAAC;QACH,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;IACzC,CAAC;IAED,KAAK,CAAC,IAAI;QACN,IAAI,eAAM,CAAC,KAAK,EAAE;YACd,MAAM,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,aAAa,CAAC,CAAC;SACpD;QACD,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,mCAAmC,CAAC,CAAC;QACvD,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,IAAI,CAAoC,gCAAgC,EAAE;YACrG,KAAK,EAAE,6BAA6B;SACvC,CAAC,CAAC;QACH,IAAI,CAAC,IAAI,EAAE;YACP,OAAO;SACV;QACD,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,gCAAgC,EAAE,IAAI,CAAC,CAAC;QAC1D,MAAM,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,2BAA2B,EAAE;YAChD,OAAO,EAAE;gBACL,EAAE,EAAE,IAAI,CAAC,EAAE;aACd;SACJ,CAAC,CAAC;QACH,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,wBAAwB,CAAC,CAAC;IAChD,CAAC;CACJ;AAhDY,gBAAgB;IAD5B,0BAAU,GAAE;IAGJ,iCAAM,EAAC,iBAAU,CAAC,gBAAgB,CAAC;IAEnC,iCAAM,EAAC,QAAQ,CAAC;GAJZ,gBAAgB,CAgD5B;AAhDY,4CAAgB;;;;;;;;;;;;;;ACR7B,4JAAiF;AAAxE,4KAA4B;AACrC,qHAAwD;AAA/C,uIAAgB;;;;;;;;;;;;;;;;;;;;;;;;ACDzB,sEAA+C;AAE/C,mFAAgD;AAGhD,4HAAkF;AAElF,+EAAmC;AAGnC,IAAa,4BAA4B,oCAAzC,MAAa,4BAA4B;IACrC,YAEqB,MAAqB,EAE9B,MAAc;QAFL,WAAM,GAAN,MAAM,CAAe;QAE9B,WAAM,GAAN,MAAM,CAAQ;QAKhB,SAAI,GAAG,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC;QAEvC,OAAE,GAAG,GAAG,IAAI,CAAC,IAAI,WAAW,CAAC;QALzB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC,KAAK,CAAC,EAAE,SAAS,EAAE,8BAA4B,CAAC,IAAI,EAAE,CAAC,CAAC;IACjF,CAAC;IAMO,KAAK,CAAC,WAAW;QACrB,MAAM,OAAO,GAAG,IAAI,CAAC,MAAM,CAAC,IAAI,CAAwB,2BAA2B,EAAE;YACjF,OAAO,EAAE;gBACL,QAAQ,EAAE,uBAAuB;gBACjC,KAAK,EAAE,uCAAuC;gBAC9C,KAAK,EAAE,gCAAgC;gBACvC,UAAU,EAAE,iBAAiB;gBAC7B,SAAS,EAAE,OAAO;gBAClB,OAAO,EAAE,wFAAwF;gBACjG,aAAa,EAAE,IAAI;gBACnB,iBAAiB,EAAE,EAAE;aACxB;SACJ,CAAC,CAAC;QACH,MAAM,OAAO,GAAG,IAAI,CAAC,MAAM,CAAC,IAAI,CAAwB,2BAA2B,EAAE;YACjF,OAAO,EAAE;gBACL,QAAQ,EAAE,wBAAwB;gBAClC,KAAK,EAAE,wCAAwC;gBAC/C,KAAK,EAAE,gCAAgC;gBACvC,UAAU,EAAE,iBAAiB;gBAC7B,SAAS,EAAE,OAAO;gBAClB,OAAO,EAAE,wFAAwF;gBACjG,aAAa,EAAE,IAAI;gBACnB,iBAAiB,EAAE,EAAE;aACxB;SACJ,CAAC,CAAC;QACH,OAAO,OAAO,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,CAAC;IAC3C,CAAC;IAEO,aAAa,CAAC,KAAmB,EAAE,KAAmB;QAC1D,OAAO,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,sDAA+B,IAAI,0CAA2B,EAAE,EAAE;YACzF,IAAI,EAAE;gBACF,KAAK,EAAE,UAAU;gBACjB,KAAK,EAAE,GAAG,KAAK,CAAC,KAAK,IAAI,KAAK,CAAC,KAAK,EAAE;gBACtC,OAAO,EAAE,KAAK,CAAC,EAAW;gBAC1B,WAAW,EAAE,GAAG,KAAK,CAAC,EAAE,IAAI,KAAK,CAAC,EAAE,EAAE;gBACtC,IAAI,iCAAkB;gBACtB,OAAO,EAAE;oBACL;wBACI,EAAE,EAAE,SAAS;wBACb,WAAW,EAAE,KAAK;wBAClB,KAAK,EAAE,OAAO;wBACd,IAAI,EAAE,KAAK,CAAC,EAAW;qBAC1B;oBACD;wBACI,EAAE,EAAE,SAAS;wBACb,WAAW,EAAE,IAAI;wBACjB,KAAK,EAAE,OAAO;wBACd,IAAI,EAAE,KAAK,CAAC,EAAW;qBAC1B;iBACJ;aACJ;SACJ,CAAC,CAAC;IACP,CAAC;IAEO,KAAK,CAAC,mBAAmB,CAAC,SAAiB,EAAE,QAAgB;QACjE,OAAO,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,gDAA4B,IAAI,0CAA2B,EAAE,EAAE;YACtF,IAAI,EAAE;gBACF,QAAQ,EAAE,QAAiB;gBAC3B,OAAO,EAAE,SAAkB;gBAC3B,OAAO,EAAE,2BAA2B;gBACpC,IAAI,EAAE,iCAAa,CAAC,MAAe;gBACnC,KAAK,EAAE,EAAE;aACZ;SACJ,CAAC,CAAC;IACP,CAAC;IAEO,KAAK,CAAC,kBAAkB,CAAC,SAAiB,EAAE,QAAgB;QAChE,MAAM,OAAO,GAAG,wBAAwB,CAAC;QACzC,OAAO,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,gDAA4B,IAAI,0CAA2B,EAAE,EAAE;YACtF,IAAI,EAAE;gBACF,QAAQ,EAAE,QAAiB;gBAC3B,OAAO,EAAE,SAAkB;gBAC3B,OAAO;gBACP,IAAI,EAAE,iCAAa,CAAC,KAAc;gBAClC,KAAK,EAAE,EAAE;gBACT,KAAK,EAAE;oBACH,GAAG,EAAE,OAAO;oBACZ,KAAK,EAAE,UAAU;oBACjB,UAAU,EAAE;wBACR,KAAK,EAAE,OAAO;wBACd,WAAW,EAAE,KAAK;wBAClB,IAAI,EAAE,UAAU;wBAChB,YAAY,EAAE;4BACV,KAAK,EAAE,MAAM;4BACb,IAAI,EAAE,qBAAqB;yBAC9B;qBACJ;iBACJ;aACJ;SACJ,CAAC,CAAC;IACP,CAAC;IAEO,KAAK,CAAC,iBAAiB,CAAC,SAAiB,EAAE,QAAgB;QAC/D,MAAM,OAAO,GAAG,8BAA8B,CAAC;QAC/C,OAAO,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,gDAA4B,IAAI,0CAA2B,EAAE,EAAE;YACtF,IAAI,EAAE;gBACF,QAAQ,EAAE,QAAiB;gBAC3B,OAAO,EAAE,SAAkB;gBAC3B,OAAO;gBACP,IAAI,EAAE,iCAAa,CAAC,IAAa;gBACjC,KAAK,EAAE,EAAE;gBACT,KAAK,EAAE;oBACH,GAAG,EAAE,UAAU;oBACf,KAAK,EAAE,kBAAkB;oBACzB,UAAU,EAAE;wBACR,KAAK,EAAE,0BAA0B;wBACjC,KAAK,EAAE,OAAO;wBACd,WAAW,EAAE,KAAK;wBAClB,WAAW,EACP,saAAsa;wBAC1a,iBAAiB,EAAE,KAAK;wBACxB,YAAY,EAAE;4BACV,KAAK,EAAE,MAAM;4BACb,4BAA4B;4BAC5B,IAAI,EAAE,mBAAmB;yBAC5B;wBACD,QAAQ,EAAE;4BACN,KAAK,EAAE,EAAE;4BACT,SAAS,EAAE,QAAQ;4BACnB,IAAI,EAAE,OAAO;4BACb,SAAS,EAAE,CAAC;4BACZ,SAAS,EAAE,GAAG;4BACd,WAAW,EAAE,GAAG;yBACnB;qBACJ;iBACJ;aACJ;SACJ,CAAC,CAAC;IACP,CAAC;IAEO,KAAK,CAAC,eAAe;QACzB,IAAI,eAAM,CAAC,KAAK,EAAE;YACd,MAAM,OAAO,CAAC,GAAG,CAAC;gBACd,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,GAAG,sDAA+B,EAAE,CAAC;gBACjE,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,aAAa,CAAC;gBAC1C,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,GAAG,gDAA4B,EAAE,CAAC;aACjE,CAAC,CAAC;SACN;IACL,CAAC;IAED,KAAK,CAAC,EAAE;QACJ,MAAM,IAAI,CAAC,eAAe,EAAE,CAAC;QAC7B,MAAM,IAAI,CAAC,IAAI,EAAE,CAAC;QAClB,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,+BAA+B,CAAC,CAAC;QACnD,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,WAAW,EAAE,CAAC;QACvC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,uBAAuB,CAAC,CAAC;QAC3C,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;QAC7D,IAAI,CAAC,OAAO,EAAE;YACV,OAAO;SACV;QACD,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,yBAAyB,CAAC,CAAC;QAC7C,MAAM,OAAO,CAAC,GAAG,CAAC;YACd,IAAI,CAAC,mBAAmB,CAAC,OAAO,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;YACjD,IAAI,CAAC,kBAAkB,CAAC,OAAO,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;YAChD,IAAI,CAAC,iBAAiB,CAAC,OAAO,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;SAClD,CAAC,CAAC;QACH,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,0BAA0B,CAAC,CAAC;IAClD,CAAC;IAED,KAAK,CAAC,IAAI;QACN,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,mCAAmC,CAAC,CAAC;QACvD,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,IAAI,CAA0B,oBAAoB,EAAE;YAChF,OAAO,EAAE;gBACL,QAAQ,EAAE;oBACN,KAAK,EAAE,EAAE,GAAG,EAAE,CAAC,uCAAuC,EAAE,wCAAwC,CAAC,EAAE;iBACtG;aACJ;SACJ,CAAC,CAAC;QACH,IAAI,CAAC,KAAK,CAAC,MAAM,EAAE;YACf,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,6CAA6C,CAAC,CAAC;YACjE,OAAO;SACV;QACD,MAAM,CAAC,OAAO,EAAE,OAAO,CAAC,GAAG,KAAK,CAAC;QACjC,MAAM,CAAC,OAAO,CAAC,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,sDAA+B,IAAI,0CAA2B,EAAE,EAAE;YAC1G,QAAQ,EAAE;gBACN,WAAW,EAAE,GAAG,OAAO,CAAC,EAAE,IAAI,OAAO,CAAC,EAAE,EAAE;aAC7C;SACJ,CAAC,CAAC;QACH,IAAI,CAAC,QAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,EAAE,GAAE;YACd,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,mDAAmD,CAAC,CAAC;SAC1E;aAAM;YACH,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,IAAI,CAAmB,GAAG,gDAA4B,SAAS,EAAE;gBAC7F,QAAQ,EAAE;oBACN,OAAO,EAAE,OAAO,CAAC,EAAE;iBACtB;aACJ,CAAC,CAAC;YACH,MAAM,OAAO,CAAC,GAAG,CACb,KAAK,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CACjB,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,gDAA4B,SAAS,EAAE;gBACvD,EAAE;aACL,CAAC,CACL,CACJ,CAAC;YACF,MAAM,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,sDAA+B,IAAI,0CAA2B,EAAE,EAAE;gBACxF,EAAE,EAAE,OAAO,CAAC,EAAE;aACjB,CAAC,CAAC;SACN;QACD,MAAM,OAAO,CAAC,GAAG,CACb,KAAK,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CACjB,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,2BAA2B,EAAE;YAC1C,OAAO,EAAE;gBACL,EAAE;aACL;SACJ,CAAC,CACL,CACJ,CAAC;QACF,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC;IAC3C,CAAC;CACJ;AA9NY,4BAA4B;IADxC,0BAAU,GAAE;IAGJ,iCAAM,EAAC,iBAAU,CAAC,gBAAgB,CAAC;IAEnC,iCAAM,EAAC,QAAQ,CAAC;GAJZ,4BAA4B,CA8NxC;AA9NY,oEAA4B;;;;;;;;;;;;;ACVzC,wGAAoD;AACpD,0FAAuD;AACvD,iFAAmC;AAEnC,qBAAe,IAAI,qBAAO,CAAC;IACvB,MAAM,EAAN,gBAAM;IACN,mBAAmB,EAAE,CAAC,oCAAuB,CAAC;CACjD,CAAC,CAAC;;;;;;;;;;;ACPH;;;;;;;;;;ACAA;;;;;;;;;;ACAA;;;;;;;;;;ACAA;;;;;;;;;;ACAA;;;;;;UCAA;UACA;;UAEA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;;UAEA;UACA;;UAEA;UACA;UACA;;;;;WCtBA;WACA;WACA;WACA;WACA,yCAAyC,wCAAwC;WACjF;WACA;WACA;;;;;WCPA;;;;;WCAA;WACA;WACA;WACA,uDAAuD,iBAAiB;WACxE;WACA,gDAAgD,aAAa;WAC7D;;;;;UENA;UACA;UACA;UACA","sources":["webpack://@messenger-box/property-ext-server/./src/graphql/schema/post.graphql","webpack://@messenger-box/property-ext-server/./src/config/config.ts","webpack://@messenger-box/property-ext-server/./src/config/index.ts","webpack://@messenger-box/property-ext-server/./src/containers/container.ts","webpack://@messenger-box/property-ext-server/./src/containers/index.ts","webpack://@messenger-box/property-ext-server/./src/graphql/index.ts","webpack://@messenger-box/property-ext-server/./src/graphql/schema/index.ts","webpack://@messenger-box/property-ext-server/./src/index.ts","webpack://@messenger-box/property-ext-server/./src/migrations/bot-user-migration.ts","webpack://@messenger-box/property-ext-server/./src/migrations/index.ts","webpack://@messenger-box/property-ext-server/./src/migrations/property-ext-messages-migration.ts","webpack://@messenger-box/property-ext-server/./src/module.ts","webpack://@messenger-box/property-ext-server/external commonjs \"@common-stack/core\"","webpack://@messenger-box/property-ext-server/external commonjs \"@common-stack/server-core\"","webpack://@messenger-box/property-ext-server/external commonjs \"@messenger-box/property-ext-core\"","webpack://@messenger-box/property-ext-server/external commonjs \"envalid\"","webpack://@messenger-box/property-ext-server/external commonjs \"inversify\"","webpack://@messenger-box/property-ext-server/webpack/bootstrap","webpack://@messenger-box/property-ext-server/webpack/runtime/define property getters","webpack://@messenger-box/property-ext-server/webpack/runtime/hasOwnProperty shorthand","webpack://@messenger-box/property-ext-server/webpack/runtime/make namespace object","webpack://@messenger-box/property-ext-server/webpack/before-startup","webpack://@messenger-box/property-ext-server/webpack/startup","webpack://@messenger-box/property-ext-server/webpack/after-startup"],"sourcesContent":["export default \"extend enum PostTypeEnum{\\n ALERT\\n CARD\\n}\\n\";","import { str, cleanEnv, json } from 'envalid';\nimport { IntegrationConnections, Integrations } from '@adminide-stack/core';\n\nconst env = (process as any).APP_ENV || process.env;\n\nexport const config = cleanEnv(env, {\n NODE_ENV: str({ choices: ['production', 'test', 'staging', 'development'], default: 'production' }),\n POST_DATA_FILE_PATH: str({\n default: 'node_modules/@messenger-box/property-ext-server/lib/mock/fixtures/post.json',\n }),\n CHANNEL_DATA_FILE_PATH: str({\n default: 'node_modules/@messenger-box/property-ext-server/lib/mock/fixtures/channel.json',\n }),\n});\n","export * from './config';\n","import { ContainerModule, interfaces } from 'inversify';\nimport { BotUserMigration, PropertyExtMessagesMigration } from '../migrations';\n\nexport const propertyContainerModule: (settings) => interfaces.ContainerModule = () =>\n new ContainerModule((bind: interfaces.Bind) => {\n bind('MongodbMigration').to(BotUserMigration).whenTargetNamed(BotUserMigration.name);\n bind('MongodbMigration').to(PropertyExtMessagesMigration).whenTargetNamed(PropertyExtMessagesMigration.name);\n });\n","export * from './container';\n","export { schema } from './schema';\n","// eslint-disable-next-line @typescript-eslint/ban-ts-comment\n// @ts-nocheck\nimport post from './post.graphql';\n\nexport const schema = [post].join('/n');\n","export { default } from './module';\n","import { inject, injectable } from 'inversify';\nimport { CommonType } from '@common-stack/core';\nimport { ServiceBroker } from 'moleculer';\nimport { IDatabaseMigration } from '@adminide-stack/core';\nimport * as Logger from 'bunyan';\nimport { config } from '../config';\n\n@injectable()\nexport class BotUserMigration implements IDatabaseMigration {\n constructor(\n @inject(CommonType.MOLECULER_BROKER)\n private readonly broker: ServiceBroker,\n @inject('Logger')\n private logger: Logger,\n ) {\n this.logger = logger.child({ className: BotUserMigration.name });\n }\n\n protected name = 'BotUserMigration';\n\n id = `${this.constructor.name}_20220502`;\n\n async up(): Promise<void> {\n await this.down();\n this.logger.debug(`(up) Starting up migration...`);\n const user = await this.broker.call(`AccountUser.createAccount`, {\n account: {\n username: 'resortifi',\n email: 'resortifi-bot@resortifi.com',\n alias: 'resortifi',\n emailVerified: true,\n notificationEmail: '',\n },\n });\n this.logger.debug(`(up) done`, user);\n }\n\n async down(): Promise<void> {\n if (config.isDev) {\n await this.broker.waitForServices('AccountUser');\n }\n this.logger.debug(`(down) Starting down migration...`);\n const user = await this.broker.call<{ id: string }, { email: string }>(`AccountUser.findAccountByEmail`, {\n email: 'resortifi-bot@resortifi.com',\n });\n if (!user) {\n return;\n }\n this.logger.debug(`(down) User Found, dropping...`, user);\n await this.broker.call(`AccountUser.deleteAccount`, {\n account: {\n id: user.id,\n },\n });\n this.logger.debug(`(down) User drop done!`);\n }\n}\n","export { PropertyExtMessagesMigration } from './property-ext-messages-migration';\nexport { BotUserMigration } from './bot-user-migration';\n","import { inject, injectable } from 'inversify';\nimport { IDatabaseMigration, IUserAccount } from '@adminide-stack/core';\nimport { CommonType } from '@common-stack/core';\nimport { ServiceBroker } from 'moleculer';\nimport * as Logger from 'bunyan';\nimport { IChannel, IPost, IPostTypeEnum } from '@messenger-box/property-ext-core';\nimport { IBaseServiceCommands, IMoleculerTopics, IRoomType } from '@messenger-box/core';\nimport { config } from '../config';\n\n@injectable()\nexport class PropertyExtMessagesMigration implements IDatabaseMigration {\n constructor(\n @inject(CommonType.MOLECULER_BROKER)\n private readonly broker: ServiceBroker,\n @inject('Logger')\n private logger: Logger,\n ) {\n this.logger = logger.child({ className: PropertyExtMessagesMigration.name });\n }\n\n protected name = this.constructor.name;\n\n id = `${this.name}_20220814`;\n\n private async createUsers(): Promise<[IUserAccount, IUserAccount]> {\n const userOne = this.broker.call<IUserAccount, unknown>(`AccountUser.createAccount`, {\n account: {\n username: 'propertyAutomatedUser',\n email: 'property-automated-user@resortifi.com',\n alias: 'auth0|62df21f9e8116e9fce8207cf', // This need to match with auth0 id. Otherwise manually updatein the DB\n familyName: 'property-fixure',\n givenName: 'user1',\n picture: 'https://lh3.googleusercontent.com/a/AATXAJxMARAgr96npkZGf4R2uGbahBP4tLh5SRbS9bVq=s96-c',\n emailVerified: true,\n notificationEmail: '',\n },\n });\n const userTwo = this.broker.call<IUserAccount, unknown>(`AccountUser.createAccount`, {\n account: {\n username: 'propertyAutomatedUser2',\n email: 'property-automated-user2@resortifi.com',\n alias: 'auth0|62df22109b1f5f6077c1f57e', // This need to match with auth0 id. Otherwise manually updatein the DB\n familyName: 'property-fixure',\n givenName: 'user2',\n picture: 'https://lh3.googleusercontent.com/a/AATXAJxMARAgr96npkZGf4R2uGbahBP4tLh5SRbS9bVq=s96-c',\n emailVerified: true,\n notificationEmail: '',\n },\n });\n return Promise.all([userOne, userTwo]);\n }\n\n private createChannel(owner: IUserAccount, guest: IUserAccount): Promise<IChannel> {\n return this.broker.call(`${IMoleculerTopics.ChannelService}.${IBaseServiceCommands.create}`, {\n data: {\n topic: 'Fixtures',\n title: `${owner.alias}:${guest.alias}`,\n creator: guest.id as never,\n displayName: `${owner.id}:${guest.id}`,\n type: IRoomType.DIRECT,\n members: [\n {\n id: undefined,\n schemeAdmin: false,\n roles: 'OWNER',\n user: owner.id as never,\n },\n {\n id: undefined,\n schemeAdmin: true,\n roles: 'GUEST',\n user: guest.id as never,\n },\n ],\n },\n });\n }\n\n private async createSimpleMessage(channelId: string, editedBy: string) {\n return this.broker.call(`${IMoleculerTopics.PostService}.${IBaseServiceCommands.create}`, {\n data: {\n editedBy: editedBy as never,\n channel: channelId as never,\n message: 'Hello from the migrations',\n type: IPostTypeEnum.Simple as never,\n files: [],\n },\n });\n }\n\n private async createAlertMessage(channelId: string, editedBy: string) {\n const message = 'This is a dummy alert!';\n return this.broker.call(`${IMoleculerTopics.PostService}.${IBaseServiceCommands.create}`, {\n data: {\n editedBy: editedBy as never,\n channel: channelId as never,\n message,\n type: IPostTypeEnum.ALERT as never,\n files: [],\n props: {\n ref: 'Dummy',\n refId: 'some-ref',\n attachment: {\n title: message,\n isTitleHtml: false,\n icon: 'InfoIcon',\n callToAction: {\n title: 'View',\n link: `/some-route/some-id`,\n },\n },\n },\n },\n });\n }\n\n private async createCardMessage(channelId: string, editedBy: string) {\n const message = 'Inquiry for fixture property';\n return this.broker.call(`${IMoleculerTopics.PostService}.${IBaseServiceCommands.create}`, {\n data: {\n editedBy: editedBy as never,\n channel: channelId as never,\n message,\n type: IPostTypeEnum.CARD as never,\n files: [],\n props: {\n ref: 'Property',\n refId: 'some-property-id',\n attachment: {\n image: 'https://placehold.co/300',\n title: message,\n isTitleHtml: false,\n description:\n 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis interdum leo augue, non posuere sapien ullamcorper ac. Aliquam vitae ornare libero, ac vulputate elit. Aenean interdum, mi a viverra maximus, leo nibh maximus augue, vel ultrices leo ante et ex. Maecenas vel mi auctor, egestas tellus nec, placerat odio. Curabitur eget tortor sed ligula pharetra varius. Aliquam sit amet lacus ligula. Etiam vitae magna eros.',\n isDescriptionHtml: false,\n callToAction: {\n title: 'View',\n // Should come from frontend\n link: `/property/some-id`,\n },\n property: {\n price: 10,\n priceType: 'Hourly',\n type: 'Hotel',\n totalStar: 5,\n maxPeople: 500,\n totalReview: 450,\n },\n },\n },\n },\n });\n }\n\n private async waitForServices() {\n if (config.isDev) {\n await Promise.all([\n this.broker.waitForServices(`${IMoleculerTopics.ChannelService}`),\n this.broker.waitForServices('AccountUser'),\n this.broker.waitForServices(`${IMoleculerTopics.PostService}`),\n ]);\n }\n }\n\n async up(): Promise<void> {\n await this.waitForServices();\n await this.down();\n this.logger.debug(`(up) Starting up migration...`);\n const users = await this.createUsers();\n this.logger.debug('(up) users created...');\n const channel = await this.createChannel(users[0], users[1]);\n if (!channel) {\n return;\n }\n this.logger.debug('(up) channel created...');\n await Promise.all([\n this.createSimpleMessage(channel.id, users[0].id),\n this.createAlertMessage(channel.id, users[0].id),\n this.createCardMessage(channel.id, users[0].id),\n ]);\n this.logger.debug('(up) messages created...');\n }\n\n async down(): Promise<void> {\n this.logger.debug(`(down) Starting down migration...`);\n const users = await this.broker.call<IUserAccount[], unknown>('AccountUser.getAll', {\n options: {\n criteria: {\n email: { $in: ['property-automated-user@resortifi.com', 'property-automated-user2@resortifi.com'] },\n },\n },\n });\n if (!users.length) {\n this.logger.debug(`(down) No Users found, skipping migrations!`);\n return;\n }\n const [userOne, userTwo] = users;\n const [channel] = await this.broker.call(`${IMoleculerTopics.ChannelService}.${IBaseServiceCommands.getAll}`, {\n criteria: {\n displayName: `${userTwo.id}:${userOne.id}`,\n },\n });\n if (!channel?.id) {\n this.logger.debug(`(down) No Channel found, skipping channel delete!`);\n } else {\n const posts = await this.broker.call<IPost[], unknown>(`${IMoleculerTopics.PostService}.getAll`, {\n criteria: {\n channel: channel.id,\n },\n });\n await Promise.all(\n posts.map(({ id }) =>\n this.broker.call(`${IMoleculerTopics.PostService}.delete`, {\n id,\n }),\n ),\n );\n await this.broker.call(`${IMoleculerTopics.ChannelService}.${IBaseServiceCommands.delete}`, {\n id: channel.id,\n });\n }\n await Promise.all(\n users.map(({ id }) =>\n this.broker.call(`AccountUser.deleteAccount`, {\n account: {\n id,\n },\n }),\n ),\n );\n this.logger.debug(`(down) Successful`);\n }\n}\n","import { Feature } from '@common-stack/server-core';\nimport { propertyContainerModule } from './containers';\nimport { schema } from './graphql';\n\nexport default new Feature({\n schema,\n createContainerFunc: [propertyContainerModule],\n});\n","module.exports = require(\"@common-stack/core\");","module.exports = require(\"@common-stack/server-core\");","module.exports = require(\"@messenger-box/property-ext-core\");","module.exports = require(\"envalid\");","module.exports = require(\"inversify\");","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","","// startup\n// Load entry module and return exports\n// This entry module is referenced by other modules so it can't be inlined\nvar __webpack_exports__ = __webpack_require__(\"./src/index.ts\");\n",""],"names":[],"sourceRoot":""}
@@ -5,8 +5,8 @@ export declare class PropertyExtMessagesMigration implements IDatabaseMigration
5
5
  private readonly broker;
6
6
  private logger;
7
7
  constructor(broker: ServiceBroker, logger: Logger);
8
- id: 'MessagesMigration_07312022';
9
8
  protected name: string;
9
+ id: string;
10
10
  private createUsers;
11
11
  private createChannel;
12
12
  private createSimpleMessage;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@messenger-box/property-ext-server",
3
- "version": "0.0.1-alpha.200",
3
+ "version": "0.0.1-alpha.216",
4
4
  "description": "Extension to Messenger to support property",
5
5
  "license": "ISC",
6
6
  "author": "CDMBase LLC",
@@ -38,12 +38,13 @@
38
38
  }
39
39
  },
40
40
  "dependencies": {
41
- "@messenger-box/property-ext-core": "0.0.1-alpha.198"
41
+ "@messenger-box/property-ext-core": "0.0.1-alpha.206"
42
42
  },
43
43
  "peerDependencies": {
44
44
  "@adminide-stack/account-api-server": "1.1.3-alpha.40",
45
45
  "@adminide-stack/core": "*",
46
46
  "@adminide-stack/platform-server": "*",
47
+ "@cdm-logger/core": "*",
47
48
  "@cdm-logger/server": "*",
48
49
  "@common-stack/core": "*",
49
50
  "@common-stack/server-core": "*",
@@ -59,7 +60,9 @@
59
60
  "inversify": "*",
60
61
  "lodash": "*",
61
62
  "moleculer": "*",
62
- "mongoose": "*"
63
+ "mongoose": "*",
64
+ "stream-chain": "*",
65
+ "stream-json": "*"
63
66
  },
64
67
  "publishConfig": {
65
68
  "access": "public"
@@ -67,5 +70,5 @@
67
70
  "typescript": {
68
71
  "definition": "lib/index.d.ts"
69
72
  },
70
- "gitHead": "c3906697064e546d68717c4667f75d1f900eed33"
73
+ "gitHead": "472ceab9f7b9410fab7a91f21e2752c5d7a0ae16"
71
74
  }