@babelforce/manager-sdk 0.2.1 → 0.5.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,32 @@
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.5.0
7
+
8
+ - `applications.list` / `applications.actions.list`: an explicit `pageSize: 0` now means "use the
9
+ server default" (the `max` query parameter is omitted), matching the Go SDK. It was previously sent
10
+ as `max=0`.
11
+
12
+ ## 0.4.0
13
+
14
+ - Add the `applications` resource (v2 IVR application management): `list` / `listAll`
15
+ (auto-paginated), `create`, `get`, `update`, `delete`, `deleteMany` (bulk), `listModules`,
16
+ `dispatch`, plus a nested `applications.actions` sub-resource (local automations:
17
+ `list` / `listAll` / `create` / `get` / `update` / `delete`).
18
+ - Add the `settings` resource (v2 global settings): a typed `get` / `update` per group across the
19
+ `app`, `telephony`, `audit`, `ui` and `retention` scopes — e.g.
20
+ `settings.telephony.agentRecording.get()` / `.update({ … })`. Read/write the data payload
21
+ directly; the `{ scope, key }` envelope is handled for you.
22
+
23
+ ## 0.3.0
24
+
25
+ - Add the `agents` resource (v2 agent management): `list` / `listAll` (auto-paginated), `create`,
26
+ `get`, `update`, `delete`, `updateStatus`, plus `agents.groups`
27
+ (`list` / `listAll` / `create` / `get` / `update` / `delete` / `addAgent`).
28
+ - Add the `calls.reporting` resource (v2 call reporting): `list` / `listAll` (detailed report),
29
+ `simple` / `simpleAll`, and `simpleByType` / `simpleAllByType` — all auto-paginated.
30
+ - Add the `metrics` resource (v2 metrics): `listIds`, `get`, `describe`, `push`, `reset`.
31
+
6
32
  ## 0.2.0
7
33
 
8
34
  - Add the `tasks` resource (v3 task automations): `create`, `createFromTemplate`, `list` /