@@ -65,6 +65,8 @@ export const SCOPE_VALUES: Record<Scope, number> = {
65
65
"all" : 0x3fffffff ,
66
66
} ;
67
67
68
+ export type SearchEngine = "google" ;
69
+
68
70
export type SettingType = "bool" | "int" | "string" | "json" | "Duration" | "PrivateKey" | "PublicKey" | "Timestamp"
69
71
| "UUID" | "Principal" ;
70
72
@@ -76,7 +78,7 @@ export type SheriffOrderCategory = "visibility";
76
78
export type SheriffOrderReason = "unlawful" | "defamatory" | "threat" | "spam" | "scam" | "malware" | "copyright"
77
79
| "impersonating" | "privacy" | "other" ;
78
80
79
- export type SourceFormat = "plain-text" | "html" | "markdown" | "application" ;
81
+ export type SourceFormat = "plain-text" | "html" | "markdown" | "html/visual" | " application";
80
82
81
83
export type StoryType = "asked-to-friend" | "asked-to-subscribe" | "blocked-user" | "blocked-user-in-posting"
82
84
| "comment-added" | "comment-media-reaction-added-negative" | "comment-media-reaction-added-positive"
@@ -86,7 +88,8 @@ export type StoryType = "asked-to-friend" | "asked-to-subscribe" | "blocked-user
86
88
| "posting-added" | "posting-media-reaction-added-negative" | "posting-media-reaction-added-positive"
87
89
| "posting-media-reaction-failed" | "posting-post-task-failed" | "posting-reaction-task-failed"
88
90
| "posting-subscribe-task-failed" | "posting-update-task-failed" | "posting-updated" | "reaction-added-negative"
89
- | "reaction-added-positive" | "remote-comment-added" | "reply-comment" | "sheriff-complaint-added"
91
+ | "reaction-added-positive" | "reminder-avatar" | "reminder-email" | "reminder-full-name" | "reminder-sheriff-allow"
92
+ | "remote-comment-added" | "reply-comment" | "search-report" | "sheriff-complaint-added"
90
93
| "sheriff-complaint-decided" | "sheriff-marked" | "sheriff-unmarked" | "subscriber-added" | "subscriber-deleted"
91
94
| "unblocked-user" | "unblocked-user-in-posting" ;
92
95
@@ -1186,6 +1189,13 @@ export interface GrantInfo {
1186
1189
scope : Scope [ ] ;
1187
1190
}
1188
1191
1192
+ export interface KeyMnemonic {
1193
+ /**
1194
+ * the words
1195
+ */
1196
+ mnemonic : string [ ] ;
1197
+ }
1198
+
1189
1199
export interface LinkPreview {
1190
1200
/**
1191
1201
* name of the site
@@ -1332,6 +1342,10 @@ export interface NodeNameInfo {
1332
1342
* if the operation with the node name was failed, the human-readable description of the failure
1333
1343
*/
1334
1344
operationErrorMessage ?: string | null ;
1345
+ /**
1346
+ * ``true``, if updating key mnemonic is being stored on the node, ``false`` otherwise
1347
+ */
1348
+ storedMnemonic ?: boolean | null ;
1335
1349
/**
1336
1350
* the supported operations and the corresponding principals
1337
1351
*/
@@ -2630,6 +2644,21 @@ export interface StorySummaryNode {
2630
2644
ownerGender ?: string | null ;
2631
2645
}
2632
2646
2647
+ export interface StorySummaryPageClicks {
2648
+ /**
2649
+ * page heading, ``null`` for the blog itself
2650
+ */
2651
+ heading ?: string | null ;
2652
+ /**
2653
+ * page URL
2654
+ */
2655
+ href : string ;
2656
+ /**
2657
+ * number of clicks on the page
2658
+ */
2659
+ clicks : number ;
2660
+ }
2661
+
2633
2662
export interface StorySummaryReaction {
2634
2663
/**
2635
2664
* reaction owner's name
@@ -4034,6 +4063,10 @@ export interface StorySummaryData {
4034
4063
* additional descriptive text
4035
4064
*/
4036
4065
description ?: string | null ;
4066
+ /**
4067
+ * list of pages with number of clicks on each of them
4068
+ */
4069
+ clicks ?: StorySummaryPageClicks [ ] | null ;
4037
4070
}
4038
4071
4039
4072
export interface CommentInfoBase < B > {
0 commit comments