anear-js-api 0.3.26 → 0.3.27

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
@@ -2,7 +2,8 @@
2
2
 
3
3
  const JsonApiResource = require('./models/JsonApiResource')
4
4
  const JsonApiArrayResource = require('./models/JsonApiArrayResource')
5
- const {AnearEvent, logger} = require('./models/AnearEvent')
5
+ const AnearEvent = require('./models/AnearEvent')
6
+ const logger = require('./utils/Logger')
6
7
  const AnearParticipant = require('./models/AnearParticipant')
7
8
  const AnearMessaging = require('./messaging/AnearMessaging')
8
9
  const AnearApiService = require('./api/ApiService')
@@ -328,6 +328,5 @@ class AnearEvent extends JsonApiResource {
328
328
  }
329
329
 
330
330
  module.exports = {
331
- AnearEvent,
332
- logger
331
+ AnearEvent
333
332
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "anear-js-api",
3
- "version": "0.3.26",
3
+ "version": "0.3.27",
4
4
  "description": "Javascript Developer API for Anear Apps",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {