hive-react-kit 0.10.4 → 0.10.5

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.
@@ -24,6 +24,12 @@ declare class UserService {
24
24
  getProfile(username: string, signal?: AbortSignal): Promise<UserProfileResponse>;
25
25
  getFollowers(username: string, startFollower?: string | null, limit?: number, signal?: AbortSignal): Promise<Follower[]>;
26
26
  getFollowing(username: string, startFollowing?: string | null, limit?: number, signal?: AbortSignal): Promise<Following[]>;
27
+ /**
28
+ * Returns the list of accounts the user has muted (the `ignore` follow
29
+ * type on Hive). Same shape as `getFollowing` — the third parameter to
30
+ * `condenser_api.get_following` is the type.
31
+ */
32
+ getMuted(username: string, startMuted?: string | null, limit?: number, signal?: AbortSignal): Promise<Following[]>;
27
33
  getAccounts(usernames: string[], signal?: AbortSignal): Promise<Account[]>;
28
34
  getDynamicGlobalProperties(signal?: AbortSignal): Promise<any>;
29
35
  convertVestingSharesToHive(vestingShares: string): Promise<string>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "hive-react-kit",
3
3
  "private": false,
4
- "version": "0.10.4",
4
+ "version": "0.10.5",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs.js",
7
7
  "module": "./dist/index.esm.js",