@webitel/api-services 0.0.77 → 0.0.78

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/api-services",
3
- "version": "0.0.77",
3
+ "version": "0.0.78",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "make-all": "npm run gen:api && npm version patch && (npm run build:types || true) && (npm run format:all || true) && npm run publish-lib",
@@ -10,7 +10,7 @@ const patchMessagesService = async (changes) => {
10
10
  const body = applyTransform(changes, [camelToSnake()]);
11
11
 
12
12
  try {
13
- const response = await getMessages().broadcastMessage(body);
13
+ const response = await getMessages().messagesServiceBroadcastMessage(body);
14
14
  return applyTransform(response.data, [snakeToCamel()]);
15
15
  } catch (err) {
16
16
  throw applyTransform(err, [notify]);