@ecency/sdk 2.3.49 → 2.3.50
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.
package/dist/browser/index.d.ts
CHANGED
|
@@ -1587,7 +1587,8 @@ interface FullAccount {
|
|
|
1587
1587
|
interface AccountRelationship {
|
|
1588
1588
|
follows: boolean;
|
|
1589
1589
|
ignores: boolean;
|
|
1590
|
-
|
|
1590
|
+
blacklists: boolean;
|
|
1591
|
+
follows_muted: boolean;
|
|
1591
1592
|
follows_blacklists: boolean;
|
|
1592
1593
|
}
|
|
1593
1594
|
|
|
@@ -1975,7 +1976,8 @@ type Kind = "toggle-ignore" | "toggle-follow";
|
|
|
1975
1976
|
declare function useAccountRelationsUpdate(reference: string | undefined, target: string | undefined, auth: AuthContext | undefined, onSuccess: (data: Partial<AccountRelationship> | undefined) => void, onError: (e: Error) => void): _tanstack_react_query.UseMutationResult<{
|
|
1976
1977
|
ignores: boolean | undefined;
|
|
1977
1978
|
follows: boolean | undefined;
|
|
1978
|
-
|
|
1979
|
+
blacklists?: boolean | undefined;
|
|
1980
|
+
follows_muted?: boolean | undefined;
|
|
1979
1981
|
follows_blacklists?: boolean | undefined;
|
|
1980
1982
|
}, Error, Kind, unknown>;
|
|
1981
1983
|
|