@meltwater/conversations-api-services 1.1.3 → 1.1.4

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.
@@ -115,7 +115,8 @@ async function getMentionHandleInfo(token, externalId, logger) {
115
115
  token,
116
116
  uri,
117
117
  attachUrlPrefix: false,
118
- convertPayloadToUri: false
118
+ convertPayloadToUri: false,
119
+ logger
119
120
  });
120
121
  return result.data;
121
122
  } catch (error) {
@@ -92,7 +92,8 @@ export async function getMentionHandleInfo(token, externalId, logger) {
92
92
  token,
93
93
  uri,
94
94
  attachUrlPrefix: false,
95
- convertPayloadToUri: false
95
+ convertPayloadToUri: false,
96
+ logger
96
97
  });
97
98
  return result.data;
98
99
  } catch (error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meltwater/conversations-api-services",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "Repository to contain all conversations api services shared across our services",
5
5
  "main": "dist/cjs/data-access/index.js",
6
6
  "module": "dist/esm/data-access/index.js",
@@ -100,6 +100,7 @@ export async function getMentionHandleInfo(token, externalId, logger) {
100
100
  uri,
101
101
  attachUrlPrefix: false,
102
102
  convertPayloadToUri: false,
103
+ logger,
103
104
  });
104
105
  return result.data;
105
106
  } catch (error) {