@babelforce/manager-sdk 0.2.1 → 0.4.0

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/CHANGELOG.md CHANGED
@@ -3,6 +3,26 @@
3
3
  All notable changes to `@babelforce/manager-sdk` are documented here. This project adheres to
4
4
  [Semantic Versioning](https://semver.org/).
5
5
 
6
+ ## 0.4.0
7
+
8
+ - Add the `applications` resource (v2 IVR application management): `list` / `listAll`
9
+ (auto-paginated), `create`, `get`, `update`, `delete`, `deleteMany` (bulk), `listModules`,
10
+ `dispatch`, plus a nested `applications.actions` sub-resource (local automations:
11
+ `list` / `listAll` / `create` / `get` / `update` / `delete`).
12
+ - Add the `settings` resource (v2 global settings): a typed `get` / `update` per group across the
13
+ `app`, `telephony`, `audit`, `ui` and `retention` scopes — e.g.
14
+ `settings.telephony.agentRecording.get()` / `.update({ … })`. Read/write the data payload
15
+ directly; the `{ scope, key }` envelope is handled for you.
16
+
17
+ ## 0.3.0
18
+
19
+ - Add the `agents` resource (v2 agent management): `list` / `listAll` (auto-paginated), `create`,
20
+ `get`, `update`, `delete`, `updateStatus`, plus `agents.groups`
21
+ (`list` / `listAll` / `create` / `get` / `update` / `delete` / `addAgent`).
22
+ - Add the `calls.reporting` resource (v2 call reporting): `list` / `listAll` (detailed report),
23
+ `simple` / `simpleAll`, and `simpleByType` / `simpleAllByType` — all auto-paginated.
24
+ - Add the `metrics` resource (v2 metrics): `listIds`, `get`, `describe`, `push`, `reset`.
25
+
6
26
  ## 0.2.0
7
27
 
8
28
  - Add the `tasks` resource (v3 task automations): `create`, `createFromTemplate`, `list` /