diff --git a/CHANGELOG.md b/CHANGELOG.md index 90d12c3..e880b8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## 0.2.0 + +⚠️ BREAKING ⚠️ + +- Changed `FS.currentSession()` (method) to `FS.currentSession` (property) +- Changed `FS.fsVersion()` (method) to `FS.fsVersion` (property) +- Changed `FS.getCurrentSessionURL([bool now = false])` (positional parameter) to `FS.getCurrentSessionURL({bool now = false})` (named parameter) +- Removed `FSLogLevel.debug` to align log levels with Fullstory playback + +New: + +- Added `FS.page()` API and associated `FSPage` object and APIs + ## 0.1.3 - Update with links to developer docs. diff --git a/README.md b/README.md index bd11867..9985b44 100644 --- a/README.md +++ b/README.md @@ -26,9 +26,9 @@ Most non-visual Fullstory APIs are supported: - `FS.shutdown()` - `FS.restart()` - `FS.setStatusListener(FSStatusListener? listener)` -- `FS.getCurrentSession()` → `Future` -- `FS.getCurrentSessionURL([bool now = false])` → `Future` -- `FS.fsVersion()` → `Future` +- `FS.getCurrentSession` → `Future` +- `FS.getCurrentSessionURL({bool now = false})` → `Future` +- `FS.fsVersion` → `Future` - `FS.resetIdleTimer()` Visual session replay is not currently supported, but is planned for a future release.