@ecency/sdk 2.0.8 → 2.0.10

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.
@@ -2714,6 +2714,7 @@ declare const QueryKeys: {
2714
2714
  readonly list: () => string[];
2715
2715
  readonly proposal: (id: number) => (string | number)[];
2716
2716
  readonly votes: (proposalId: number, voter: string, limit: number) => (string | number)[];
2717
+ readonly votesPrefix: (proposalId: number) => readonly ["proposals", "votes", number];
2717
2718
  readonly votesByUser: (voter: string) => string[];
2718
2719
  };
2719
2720
  readonly search: {
@@ -3723,6 +3724,7 @@ declare function useMoveSchedule(username: string | undefined, code: string | un
3723
3724
  */
3724
3725
  declare function useAddImage(username: string | undefined, code: string | undefined, onSuccess?: () => void, onError?: (e: Error) => void): _tanstack_react_query.UseMutationResult<Record<string, unknown>, Error, {
3725
3726
  url: string;
3727
+ code?: string;
3726
3728
  }, unknown>;
3727
3729
 
3728
3730
  /**