Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.25.1] - 2026-03-25

### Added

- Enhance response payload explanation for nested keys in event `Version1.GET_SETTINGS`

## [1.25.0] - 2026-03-25

### Added
Expand Down
9 changes: 9 additions & 0 deletions docs/events.md
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,15 @@ Request permissions for specified object from the Shell
}
```

**Important:** When nested keys are used, the response key is returned as a dot-separated string (combining the individual parts). This approach was chosen to simplify comparison, as working with array-based keys in responses would be less practical:

```typescript
{
key: 'folder_2.folder_3.key_4',
value: 'value4'
}
```

- Listener

```typescript
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fsm-shell",
"version": "1.25.0",
"version": "1.25.1",
"description": "client library for FSM shell",
"main": "release/fsm-shell-client.js",
"module": "release/fsm-shell-client.es.js",
Expand Down
Loading