Skip to content

Commit e2d1fd7

Browse files
committed
docs
1 parent cb081ac commit e2d1fd7

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

special-pages/pages/history/app/history.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,36 @@ Sent when a right-click is issued on a section title (or when the three-dots but
148148
}
149149
```
150150

151+
### `entries_menu`
152+
{@link "History Messages".EntriesMenuRequest}
153+
154+
Sent when a right-click is issued on a section title (or when the three-dots button is clicked)
155+
156+
**Types:**
157+
- Parameters: {@link "History Messages".EntriesMenuParams}
158+
- Response: {@link "History Messages".EntriesMenuResponse}
159+
160+
**params**
161+
```json
162+
{
163+
"ids": ["abc", "def"]
164+
}
165+
```
166+
167+
**response, if deleted**
168+
```json
169+
{
170+
"action": "delete"
171+
}
172+
```
173+
174+
**response, otherwise**
175+
```json
176+
{
177+
"action": "none"
178+
}
179+
```
180+
151181
## Notifications
152182

153183
### `open`

special-pages/pages/history/types/history.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ export interface HistoryMessages {
4444
| EntriesMenuRequest
4545
| GetRangesRequest
4646
| InitialSetupRequest
47-
| QueryRequest | TitleMenuRequest;
47+
| QueryRequest
48+
| TitleMenuRequest;
4849
}
4950
/**
5051
* Generated from @see "../messages/open.notify.json"

0 commit comments

Comments
 (0)