@ecency/sdk 2.3.59 → 2.3.61

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.
@@ -4989,6 +4989,13 @@ type LeaderBoardDuration = "day" | "week" | "month";
4989
4989
  interface CurationItem {
4990
4990
  efficiency: number;
4991
4991
  account: string;
4992
+ /** Curation reward for the period, in Hive Power. */
4993
+ hp: number;
4994
+ /**
4995
+ * @deprecated Alias of `hp`, kept while consumers migrate. The value has
4996
+ * always been Hive Power despite the name, which caused a double-conversion
4997
+ * bug downstream. Read `hp` instead.
4998
+ */
4992
4999
  vests: number;
4993
5000
  votes: number;
4994
5001
  uniques: number;
@@ -6011,7 +6018,9 @@ declare enum NotificationFilter {
6011
6018
  TRANSFERS = "transfers",
6012
6019
  DELEGATIONS = "delegations",
6013
6020
  PAYOUTS = "payouts",
6014
- SCHEDULED_PUBLISHED = "scheduled_published"
6021
+ SCHEDULED_PUBLISHED = "scheduled_published",
6022
+ ACCOUNT_UPDATES = "account_updates",
6023
+ WEEKLY_EARNINGS = "weekly_earnings"
6015
6024
  }
6016
6025
 
6017
6026
  declare enum NotifyTypes {
@@ -6021,12 +6030,16 @@ declare enum NotifyTypes {
6021
6030
  COMMENT = 4,
6022
6031
  RE_BLOG = 5,
6023
6032
  TRANSFERS = 6,
6033
+ DELEGATIONS = 10,
6024
6034
  FAVORITES = 13,
6025
6035
  BOOKMARKS = 15,
6036
+ PAYOUTS = 19,
6037
+ ACCOUNT_UPDATE = 20,
6038
+ WEEKLY_EARNINGS = 21,
6026
6039
  SCHEDULED_PUBLISHED = 22,
6027
6040
  ALLOW_NOTIFY = "ALLOW_NOTIFY"
6028
6041
  }
6029
- declare const ALL_NOTIFY_TYPES: readonly [NotifyTypes.VOTE, NotifyTypes.MENTION, NotifyTypes.FOLLOW, NotifyTypes.COMMENT, NotifyTypes.RE_BLOG, NotifyTypes.TRANSFERS, NotifyTypes.FAVORITES, NotifyTypes.BOOKMARKS, NotifyTypes.SCHEDULED_PUBLISHED];
6042
+ declare const ALL_NOTIFY_TYPES: readonly [NotifyTypes.VOTE, NotifyTypes.MENTION, NotifyTypes.FOLLOW, NotifyTypes.COMMENT, NotifyTypes.RE_BLOG, NotifyTypes.TRANSFERS, NotifyTypes.DELEGATIONS, NotifyTypes.FAVORITES, NotifyTypes.BOOKMARKS, NotifyTypes.PAYOUTS, NotifyTypes.ACCOUNT_UPDATE, NotifyTypes.WEEKLY_EARNINGS, NotifyTypes.SCHEDULED_PUBLISHED];
6030
6043
  declare enum NotificationViewType {
6031
6044
  ALL = "All",
6032
6045
  UNREAD = "Unread",