@ecency/sdk 2.3.27 → 2.3.29

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.
@@ -1,7 +1,7 @@
1
1
  import * as _tanstack_react_query from '@tanstack/react-query';
2
2
  import { MutationKey, UseMutationOptions, QueryClient, QueryKey, InfiniteData, UseQueryOptions, UseInfiniteQueryOptions, useMutation } from '@tanstack/react-query';
3
- import { O as Operation, R as PrivateKey, i as BroadcastResult, g as Authority, S as PublicKey, P as OperationName, aj as operations } from './hive-fkgMnAQs.js';
4
- export { A as AccountCreateOperation, f as AssetSymbol, u as CustomJsonOperation, $ as HiveTxTransaction, M as Memo, N as OperationBody, _ as Signature, ae as callREST, af as callRPC, ag as callRPCBroadcast, ah as callWithQuorum, ai as hiveTxConfig, am as hiveTxUtils } from './hive-fkgMnAQs.js';
3
+ import { O as Operation, S as PrivateKey, j as BroadcastResult, A as APIMethods, h as Authority, T as PublicKey, Q as OperationName, ak as operations } from './hive-CMt4SNd2.js';
4
+ export { a as AccountCreateOperation, g as AssetSymbol, v as CustomJsonOperation, a0 as HiveTxTransaction, N as Memo, P as OperationBody, $ as Signature, af as callREST, ag as callRPC, ah as callRPCBroadcast, ai as callWithQuorum, aj as hiveTxConfig, ap as hiveTxUtils } from './hive-CMt4SNd2.js';
5
5
 
6
6
  interface AiGenerationPrice {
7
7
  aspect_ratio: string;
@@ -1015,6 +1015,23 @@ declare namespace ConfigManager {
1015
1015
  * @param nodes - Array of Hive RPC node URLs
1016
1016
  */
1017
1017
  function setHiveNodes(nodes: string[]): void;
1018
+ /**
1019
+ * Set the REST-API node list, replacing the default `restNodes`. Lets an app
1020
+ * add/remove REST hosts at runtime (e.g. drop an own node being decommissioned,
1021
+ * or widen the public pool) without forking + republishing the SDK. Delegates to
1022
+ * the unified hive-tx `setRestNodes` (validated, shared with `@ecency/sdk/hive`).
1023
+ * @param nodes - Array of REST-capable node URLs (without a trailing slash)
1024
+ */
1025
+ function setRestNodes(nodes: string[]): void;
1026
+ /**
1027
+ * Merge per-API REST node overrides. For each API a non-empty valid list pins it
1028
+ * to those hosts (so `callREST` never wastes its retry budget on a node that
1029
+ * 404/503s the API); an empty list removes the pin (falls back to `restNodes`).
1030
+ * Other APIs' pins (e.g. the built-in `hivesense`) are preserved. Delegates to the
1031
+ * unified hive-tx `setRestNodesByApi`.
1032
+ * @param map - Partial map of REST API name → capable node URLs
1033
+ */
1034
+ function setRestNodesByApi(map: Partial<Record<APIMethods, string[]>>): void;
1018
1035
  /**
1019
1036
  * Set the User-Agent sent on server-side (Node) requests to Hive nodes.
1020
1037
  * Lets an app label its own SSR/server traffic (otherwise Node's fetch sends a
@@ -1242,6 +1259,13 @@ declare const QueryKeys: {
1242
1259
  observer?: string;
1243
1260
  limit?: number;
1244
1261
  }) => (string | number)[];
1262
+ readonly shortsFeed: (params?: {
1263
+ containers?: string[];
1264
+ tag?: string;
1265
+ author?: string;
1266
+ observer?: string;
1267
+ limit?: number;
1268
+ }) => (string | number)[];
1245
1269
  readonly wavesByHost: (host: string) => string[];
1246
1270
  readonly wavesByTag: (host: string, tag: string) => string[];
1247
1271
  readonly wavesFollowing: (host: string, username: string) => string[];
@@ -2833,127 +2857,167 @@ interface CreateAccountPayload {
2833
2857
  }
2834
2858
  declare function useCreateAccount(username: string | undefined, auth?: AuthContextV2, broadcastMode?: BroadcastMode): _tanstack_react_query.UseMutationResult<unknown, Error, CreateAccountPayload, unknown>;
2835
2859
 
2860
+ declare function useSignOperationByKey(username: string | undefined): _tanstack_react_query.UseMutationResult<TransactionConfirmation, Error, {
2861
+ operation: Operation;
2862
+ keyOrSeed: string;
2863
+ }, unknown>;
2864
+
2865
+ declare function useSignOperationByKeychain(username: string | undefined, auth?: AuthContext, keyType?: "owner" | "active" | "posting" | "memo"): _tanstack_react_query.UseMutationResult<unknown, Error, {
2866
+ operation: Operation;
2867
+ }, unknown>;
2868
+
2869
+ declare function useSignOperationByHivesigner(callbackUri?: string): _tanstack_react_query.UseMutationResult<string | void, Error, {
2870
+ operation: Operation;
2871
+ }, unknown>;
2872
+
2873
+ declare function getChainPropertiesQueryOptions(): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<any, Error, any, string[]>, "queryFn"> & {
2874
+ queryFn?: _tanstack_react_query.QueryFunction<any, string[], never> | undefined;
2875
+ } & {
2876
+ queryKey: string[] & {
2877
+ [dataTagSymbol]: any;
2878
+ [dataTagErrorSymbol]: Error;
2879
+ };
2880
+ };
2881
+
2836
2882
  declare function getAccountFullQueryOptions(username: string | undefined): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<{
2837
- name: any;
2838
- owner: any;
2839
- active: any;
2840
- posting: any;
2841
- memo_key: any;
2842
- post_count: any;
2843
- created: any;
2844
- posting_json_metadata: any;
2845
- last_vote_time: any;
2846
- last_post: any;
2847
- json_metadata: any;
2848
- reward_hive_balance: any;
2849
- reward_hbd_balance: any;
2850
- reward_vesting_hive: any;
2851
- reward_vesting_balance: any;
2852
- balance: any;
2853
- hbd_balance: any;
2854
- savings_balance: any;
2855
- savings_hbd_balance: any;
2856
- savings_hbd_last_interest_payment: any;
2857
- savings_hbd_seconds_last_update: any;
2858
- savings_hbd_seconds: any;
2859
- next_vesting_withdrawal: any;
2860
- pending_claimed_accounts: any;
2861
- vesting_shares: any;
2862
- delegated_vesting_shares: any;
2863
- received_vesting_shares: any;
2864
- vesting_withdraw_rate: any;
2865
- to_withdraw: any;
2866
- withdrawn: any;
2867
- witness_votes: any;
2868
- proxy: any;
2869
- recovery_account: any;
2870
- proxied_vsf_votes: any;
2871
- voting_manabar: any;
2872
- voting_power: any;
2873
- downvote_manabar: any;
2883
+ name: string;
2884
+ owner: Authority;
2885
+ active: Authority;
2886
+ posting: Authority;
2887
+ memo_key: string;
2888
+ post_count: number;
2889
+ created: string;
2890
+ posting_json_metadata: string;
2891
+ last_vote_time: string;
2892
+ last_post: string;
2893
+ json_metadata: string;
2894
+ reward_hive_balance: string;
2895
+ reward_hbd_balance: string;
2896
+ reward_vesting_hive: string;
2897
+ reward_vesting_balance: string;
2898
+ balance: string;
2899
+ hbd_balance: string;
2900
+ savings_balance: string;
2901
+ savings_hbd_balance: string;
2902
+ savings_hbd_last_interest_payment: string;
2903
+ savings_hbd_seconds_last_update: string;
2904
+ savings_hbd_seconds: string;
2905
+ next_vesting_withdrawal: string;
2906
+ pending_claimed_accounts: number;
2907
+ vesting_shares: string;
2908
+ delegated_vesting_shares: string;
2909
+ received_vesting_shares: string;
2910
+ vesting_withdraw_rate: string;
2911
+ to_withdraw: string;
2912
+ withdrawn: string;
2913
+ witness_votes: string[];
2914
+ proxy: string;
2915
+ recovery_account: string;
2916
+ proxied_vsf_votes: string[] | number[];
2917
+ voting_manabar: {
2918
+ current_mana: string | number;
2919
+ last_update_time: number;
2920
+ };
2921
+ voting_power: number;
2922
+ downvote_manabar: {
2923
+ current_mana: string | number;
2924
+ last_update_time: number;
2925
+ };
2874
2926
  follow_stats: AccountFollowStats | undefined;
2875
2927
  reputation: number;
2876
2928
  profile: AccountProfile;
2877
2929
  } | null, Error, {
2878
- name: any;
2879
- owner: any;
2880
- active: any;
2881
- posting: any;
2882
- memo_key: any;
2883
- post_count: any;
2884
- created: any;
2885
- posting_json_metadata: any;
2886
- last_vote_time: any;
2887
- last_post: any;
2888
- json_metadata: any;
2889
- reward_hive_balance: any;
2890
- reward_hbd_balance: any;
2891
- reward_vesting_hive: any;
2892
- reward_vesting_balance: any;
2893
- balance: any;
2894
- hbd_balance: any;
2895
- savings_balance: any;
2896
- savings_hbd_balance: any;
2897
- savings_hbd_last_interest_payment: any;
2898
- savings_hbd_seconds_last_update: any;
2899
- savings_hbd_seconds: any;
2900
- next_vesting_withdrawal: any;
2901
- pending_claimed_accounts: any;
2902
- vesting_shares: any;
2903
- delegated_vesting_shares: any;
2904
- received_vesting_shares: any;
2905
- vesting_withdraw_rate: any;
2906
- to_withdraw: any;
2907
- withdrawn: any;
2908
- witness_votes: any;
2909
- proxy: any;
2910
- recovery_account: any;
2911
- proxied_vsf_votes: any;
2912
- voting_manabar: any;
2913
- voting_power: any;
2914
- downvote_manabar: any;
2930
+ name: string;
2931
+ owner: Authority;
2932
+ active: Authority;
2933
+ posting: Authority;
2934
+ memo_key: string;
2935
+ post_count: number;
2936
+ created: string;
2937
+ posting_json_metadata: string;
2938
+ last_vote_time: string;
2939
+ last_post: string;
2940
+ json_metadata: string;
2941
+ reward_hive_balance: string;
2942
+ reward_hbd_balance: string;
2943
+ reward_vesting_hive: string;
2944
+ reward_vesting_balance: string;
2945
+ balance: string;
2946
+ hbd_balance: string;
2947
+ savings_balance: string;
2948
+ savings_hbd_balance: string;
2949
+ savings_hbd_last_interest_payment: string;
2950
+ savings_hbd_seconds_last_update: string;
2951
+ savings_hbd_seconds: string;
2952
+ next_vesting_withdrawal: string;
2953
+ pending_claimed_accounts: number;
2954
+ vesting_shares: string;
2955
+ delegated_vesting_shares: string;
2956
+ received_vesting_shares: string;
2957
+ vesting_withdraw_rate: string;
2958
+ to_withdraw: string;
2959
+ withdrawn: string;
2960
+ witness_votes: string[];
2961
+ proxy: string;
2962
+ recovery_account: string;
2963
+ proxied_vsf_votes: string[] | number[];
2964
+ voting_manabar: {
2965
+ current_mana: string | number;
2966
+ last_update_time: number;
2967
+ };
2968
+ voting_power: number;
2969
+ downvote_manabar: {
2970
+ current_mana: string | number;
2971
+ last_update_time: number;
2972
+ };
2915
2973
  follow_stats: AccountFollowStats | undefined;
2916
2974
  reputation: number;
2917
2975
  profile: AccountProfile;
2918
2976
  } | null, (string | undefined)[]>, "queryFn"> & {
2919
2977
  queryFn?: _tanstack_react_query.QueryFunction<{
2920
- name: any;
2921
- owner: any;
2922
- active: any;
2923
- posting: any;
2924
- memo_key: any;
2925
- post_count: any;
2926
- created: any;
2927
- posting_json_metadata: any;
2928
- last_vote_time: any;
2929
- last_post: any;
2930
- json_metadata: any;
2931
- reward_hive_balance: any;
2932
- reward_hbd_balance: any;
2933
- reward_vesting_hive: any;
2934
- reward_vesting_balance: any;
2935
- balance: any;
2936
- hbd_balance: any;
2937
- savings_balance: any;
2938
- savings_hbd_balance: any;
2939
- savings_hbd_last_interest_payment: any;
2940
- savings_hbd_seconds_last_update: any;
2941
- savings_hbd_seconds: any;
2942
- next_vesting_withdrawal: any;
2943
- pending_claimed_accounts: any;
2944
- vesting_shares: any;
2945
- delegated_vesting_shares: any;
2946
- received_vesting_shares: any;
2947
- vesting_withdraw_rate: any;
2948
- to_withdraw: any;
2949
- withdrawn: any;
2950
- witness_votes: any;
2951
- proxy: any;
2952
- recovery_account: any;
2953
- proxied_vsf_votes: any;
2954
- voting_manabar: any;
2955
- voting_power: any;
2956
- downvote_manabar: any;
2978
+ name: string;
2979
+ owner: Authority;
2980
+ active: Authority;
2981
+ posting: Authority;
2982
+ memo_key: string;
2983
+ post_count: number;
2984
+ created: string;
2985
+ posting_json_metadata: string;
2986
+ last_vote_time: string;
2987
+ last_post: string;
2988
+ json_metadata: string;
2989
+ reward_hive_balance: string;
2990
+ reward_hbd_balance: string;
2991
+ reward_vesting_hive: string;
2992
+ reward_vesting_balance: string;
2993
+ balance: string;
2994
+ hbd_balance: string;
2995
+ savings_balance: string;
2996
+ savings_hbd_balance: string;
2997
+ savings_hbd_last_interest_payment: string;
2998
+ savings_hbd_seconds_last_update: string;
2999
+ savings_hbd_seconds: string;
3000
+ next_vesting_withdrawal: string;
3001
+ pending_claimed_accounts: number;
3002
+ vesting_shares: string;
3003
+ delegated_vesting_shares: string;
3004
+ received_vesting_shares: string;
3005
+ vesting_withdraw_rate: string;
3006
+ to_withdraw: string;
3007
+ withdrawn: string;
3008
+ witness_votes: string[];
3009
+ proxy: string;
3010
+ recovery_account: string;
3011
+ proxied_vsf_votes: string[] | number[];
3012
+ voting_manabar: {
3013
+ current_mana: string | number;
3014
+ last_update_time: number;
3015
+ };
3016
+ voting_power: number;
3017
+ downvote_manabar: {
3018
+ current_mana: string | number;
3019
+ last_update_time: number;
3020
+ };
2957
3021
  follow_stats: AccountFollowStats | undefined;
2958
3022
  reputation: number;
2959
3023
  profile: AccountProfile;
@@ -2961,43 +3025,49 @@ declare function getAccountFullQueryOptions(username: string | undefined): _tans
2961
3025
  } & {
2962
3026
  queryKey: (string | undefined)[] & {
2963
3027
  [dataTagSymbol]: {
2964
- name: any;
2965
- owner: any;
2966
- active: any;
2967
- posting: any;
2968
- memo_key: any;
2969
- post_count: any;
2970
- created: any;
2971
- posting_json_metadata: any;
2972
- last_vote_time: any;
2973
- last_post: any;
2974
- json_metadata: any;
2975
- reward_hive_balance: any;
2976
- reward_hbd_balance: any;
2977
- reward_vesting_hive: any;
2978
- reward_vesting_balance: any;
2979
- balance: any;
2980
- hbd_balance: any;
2981
- savings_balance: any;
2982
- savings_hbd_balance: any;
2983
- savings_hbd_last_interest_payment: any;
2984
- savings_hbd_seconds_last_update: any;
2985
- savings_hbd_seconds: any;
2986
- next_vesting_withdrawal: any;
2987
- pending_claimed_accounts: any;
2988
- vesting_shares: any;
2989
- delegated_vesting_shares: any;
2990
- received_vesting_shares: any;
2991
- vesting_withdraw_rate: any;
2992
- to_withdraw: any;
2993
- withdrawn: any;
2994
- witness_votes: any;
2995
- proxy: any;
2996
- recovery_account: any;
2997
- proxied_vsf_votes: any;
2998
- voting_manabar: any;
2999
- voting_power: any;
3000
- downvote_manabar: any;
3028
+ name: string;
3029
+ owner: Authority;
3030
+ active: Authority;
3031
+ posting: Authority;
3032
+ memo_key: string;
3033
+ post_count: number;
3034
+ created: string;
3035
+ posting_json_metadata: string;
3036
+ last_vote_time: string;
3037
+ last_post: string;
3038
+ json_metadata: string;
3039
+ reward_hive_balance: string;
3040
+ reward_hbd_balance: string;
3041
+ reward_vesting_hive: string;
3042
+ reward_vesting_balance: string;
3043
+ balance: string;
3044
+ hbd_balance: string;
3045
+ savings_balance: string;
3046
+ savings_hbd_balance: string;
3047
+ savings_hbd_last_interest_payment: string;
3048
+ savings_hbd_seconds_last_update: string;
3049
+ savings_hbd_seconds: string;
3050
+ next_vesting_withdrawal: string;
3051
+ pending_claimed_accounts: number;
3052
+ vesting_shares: string;
3053
+ delegated_vesting_shares: string;
3054
+ received_vesting_shares: string;
3055
+ vesting_withdraw_rate: string;
3056
+ to_withdraw: string;
3057
+ withdrawn: string;
3058
+ witness_votes: string[];
3059
+ proxy: string;
3060
+ recovery_account: string;
3061
+ proxied_vsf_votes: string[] | number[];
3062
+ voting_manabar: {
3063
+ current_mana: string | number;
3064
+ last_update_time: number;
3065
+ };
3066
+ voting_power: number;
3067
+ downvote_manabar: {
3068
+ current_mana: string | number;
3069
+ last_update_time: number;
3070
+ };
3001
3071
  follow_stats: AccountFollowStats | undefined;
3002
3072
  reputation: number;
3003
3073
  profile: AccountProfile;
@@ -3658,28 +3728,6 @@ declare function downVotingPower(account: FullAccount): number;
3658
3728
  declare function rcPower(account: RCAccount): number;
3659
3729
  declare function votingValue(account: FullAccount, dynamicProps: DynamicProps$1, votingPowerValue: number, weight?: number): number;
3660
3730
 
3661
- declare function useSignOperationByKey(username: string | undefined): _tanstack_react_query.UseMutationResult<TransactionConfirmation, Error, {
3662
- operation: Operation;
3663
- keyOrSeed: string;
3664
- }, unknown>;
3665
-
3666
- declare function useSignOperationByKeychain(username: string | undefined, auth?: AuthContext, keyType?: "owner" | "active" | "posting" | "memo"): _tanstack_react_query.UseMutationResult<unknown, Error, {
3667
- operation: Operation;
3668
- }, unknown>;
3669
-
3670
- declare function useSignOperationByHivesigner(callbackUri?: string): _tanstack_react_query.UseMutationResult<string | void, Error, {
3671
- operation: Operation;
3672
- }, unknown>;
3673
-
3674
- declare function getChainPropertiesQueryOptions(): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<any, Error, any, string[]>, "queryFn"> & {
3675
- queryFn?: _tanstack_react_query.QueryFunction<any, string[], never> | undefined;
3676
- } & {
3677
- queryKey: string[] & {
3678
- [dataTagSymbol]: any;
3679
- [dataTagErrorSymbol]: Error;
3680
- };
3681
- };
3682
-
3683
3731
  declare function getTrendingTagsQueryOptions(limit?: number): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseInfiniteQueryOptions<string[], Error, _tanstack_react_query.InfiniteData<string[], unknown>, string[], {
3684
3732
  afterTag: string;
3685
3733
  }>, "queryFn"> & {
@@ -4053,6 +4101,49 @@ declare function getWavesLatestFeedQueryOptions(params?: WavesFeedParams): _tans
4053
4101
  };
4054
4102
  };
4055
4103
 
4104
+ /** The 3Speak video a short embeds, as returned by esync /api/waves/shorts. */
4105
+ interface ShortVideo {
4106
+ platform: string;
4107
+ author: string;
4108
+ permlink: string;
4109
+ embed_url: string;
4110
+ thumbnail_url: string | null;
4111
+ duration_secs: number | null;
4112
+ }
4113
+ type ShortsFeedEntry = WaveEntry & {
4114
+ /** The embedded 3Speak video reference for the reels player. */
4115
+ video?: ShortVideo;
4116
+ _cursor?: string;
4117
+ };
4118
+ interface ShortsFeedParams {
4119
+ /** Scope to one or more container accounts; omit for the full combined feed. */
4120
+ containers?: string[];
4121
+ /** Only shorts carrying this tag (across all containers). */
4122
+ tag?: string;
4123
+ /** Only this author's shorts (across all containers). */
4124
+ author?: string;
4125
+ /** The viewing user; exclude authors they currently mute. */
4126
+ observer?: string;
4127
+ /** Page size (default 20). */
4128
+ limit?: number;
4129
+ }
4130
+ /**
4131
+ * Combined cross-container shorts (reels) feed: waves that embed a 3Speak video.
4132
+ *
4133
+ * Backed by esync /api/waves/shorts (via /private-api/waves/shorts). Same shape,
4134
+ * keyset pagination and filters as {@link getWavesFeedQueryOptions}, plus a
4135
+ * `video` block per item for the vertical reels player. There is no `following`
4136
+ * filter in v1.
4137
+ */
4138
+ declare function getShortsFeedQueryOptions(params?: ShortsFeedParams): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseInfiniteQueryOptions<ShortsFeedEntry[], Error, _tanstack_react_query.InfiniteData<ShortsFeedEntry[], unknown>, (string | number)[], string | undefined>, "queryFn"> & {
4139
+ queryFn?: _tanstack_react_query.QueryFunction<ShortsFeedEntry[], (string | number)[], string | undefined> | undefined;
4140
+ } & {
4141
+ queryKey: (string | number)[] & {
4142
+ [dataTagSymbol]: _tanstack_react_query.InfiniteData<ShortsFeedEntry[], unknown>;
4143
+ [dataTagErrorSymbol]: Error;
4144
+ };
4145
+ };
4146
+
4056
4147
  type WavesPage = WaveEntry[];
4057
4148
  type WavesCursor = WaveEntry | undefined;
4058
4149
  declare function getWavesByHostQueryOptions(host: string): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseInfiniteQueryOptions<WavesPage, Error, WavesPage, string[], WavesCursor>, "queryFn"> & {
@@ -8864,4 +8955,4 @@ interface PollVotePayload {
8864
8955
  }
8865
8956
  declare function usePollVote(username: string | undefined, auth?: AuthContextV2, broadcastMode?: BroadcastMode): _tanstack_react_query.UseMutationResult<unknown, Error, PollVotePayload, unknown>;
8866
8957
 
8867
- export { ACCOUNT_OPERATION_GROUPS, ALL_ACCOUNT_OPERATIONS, ALL_NOTIFY_TYPES, type AccountBookmark, type AccountDelegations, type AccountFavorite, type AccountFollowStats, type AccountKeys, type AccountNotification, type AccountProfile, type AccountRelationship, type AccountReputation, type AggregatedBalanceEntry, type AiAssistParams, type AiAssistPrice, type AiAssistResponse, type AiGenerationPrice, type AiGenerationRequest, type AiGenerationResponse, type AiImagePowerTier, type AiImagePriceResponse, type Announcement, type ApiBookmarkNotification, type ApiDelegationsNotification, type ApiFavoriteNotification, type ApiFollowNotification, type ApiInactiveNotification, type ApiMentionNotification, type ApiNotification, type ApiNotificationSetting, type ApiReblogNotification, type ApiReferralNotification, type ApiReplyNotification, type ApiResponse, type ApiSpinNotification, type ApiTransferNotification, type ApiVoteNotification, type ApiWeeklyEarningsNotification, type Asset, AssetOperation, type AuthContext, type AuthContextV2, type AuthMethod, type AuthorReward, Authority, type AuthorityLevel, type AuthorityType, BROADCAST_INCLUSION_DELAY_MS, type BalanceAggregationGranularity, type BalanceCoinType, type BalanceHistoryEntry, type BalanceHistoryResponse, type Beneficiary, type BlogEntry, type BoostPlusAccountPrice, type BoostPlusPayload, type BroadcastMode, BroadcastResult, type BuildProfileMetadataArgs, BuySellTransactionType, CONFIG, type CancelTransferFromSavings, type CantAfford, type CheckUsernameWalletsPendingResponse, type ClaimAccountPayload, type ClaimEngineRewardsPayload, type ClaimInterestPayload, type ClaimRewardBalance, type ClaimRewardsPayload, type CollateralizedConversionRequest, type CollateralizedConvert, type CommentBenefactor, type CommentPayload, type CommentPayoutUpdate, type CommentReward, type Communities, type Community, type CommunityProps, type CommunityRewardsRegisterPayload, type CommunityRole, type CommunityTeam, type CommunityType, ConfigManager, type ConversionRequest, type ConvertPayload, type CreateAccountPayload, type CrossPostPayload, type CurationDuration, type CurationItem, type CurationReward, type CurrencyRates, type DailyCheckinQuest, type DailyContentQuest, type DailyQuest, type DelegateEngineTokenPayload, type DelegateRcPayload, type DelegateVestingShares, type DelegateVestingSharesPayload, type DelegatedVestingShare, type DeleteCommentPayload, type DeletedEntry, type Draft, type DraftMetadata, type DraftsWrappedResponse, type DynamicProps$1 as DynamicProps, index as EcencyAnalytics, EcencyQueriesManager, type EffectiveCommentVote, type EngineMarketOrderPayload, EntriesCacheManagement, type Entry$1 as Entry, type EntryBeneficiaryRoute, type EntryHeader, type EntryStat, type EntryVote, ErrorType, type FeedHistoryItem, type FillCollateralizedConvertRequest, type FillConvertRequest, type FillOrder, type FillRecurrentTransfers, type FillVestingWithdraw, type Follow, type FollowPayload, type Fragment, type FriendSearchResult, type FriendsPageParam, type FriendsRow, type FullAccount, type GameClaim, type GeneralAssetInfo, type GeneralAssetTransaction, type GenerateImageParams, type GetGameStatus, type GetRecoveriesEmailResponse, type GrantPostingPermissionPayload, HIVE_ACCOUNT_OPERATION_GROUPS, HIVE_OPERATION_LIST, HIVE_OPERATION_NAME_BY_ID, HIVE_OPERATION_ORDERS, type HiveBasedAssetSignType, type HiveEngineMarketResponse, type HiveEngineMetric, type HiveEngineOpenOrder, type HiveEngineOrderBookEntry, HiveEngineToken, type HiveEngineTokenBalance, type HiveEngineTokenInfo, type HiveEngineTokenMetadataResponse, type HiveEngineTokenStatus, type HiveEngineTransaction, type HiveHbdStats, type HiveMarketMetric, type HiveOperationFilter, type HiveOperationFilterKey, type HiveOperationFilterValue, type HiveOperationGroup, type HiveOperationName, HiveSignerIntegration, type HiveTransaction, type HsTokenRenewResponse, INTERNAL_API_TIMEOUT_MS, type IncomingDelegation, type IncomingRcDelegation, type IncomingRcResponse, type Interest, type JsonMetadata, type JsonPollMetadata, type Keys, type LeaderBoardDuration, type LeaderBoardItem, type LimitOrderCancel, type LimitOrderCancelPayload, type LimitOrderCreate, type LimitOrderCreatePayload, type LockLarynxPayload, type MarketCandlestickDataItem, type MarketData, type MarketStatistics, type MedianHistoryPrice, type MutePostPayload, NaiMap, NotificationFilter, NotificationViewType, type Notifications, NotifyTypes, OPERATION_AUTHORITY_MAP, type OpenOrdersData, Operation, type OperationGroup, OperationName, OrderIdPrefix, type OrdersData, type OrdersDataItem, type OutgoingDelegation, POLLS_PROTOCOL_VERSION, type PageStatsResponse, type PaginationMeta, type ParsedChainError, type Payer, type PeriodQuest, type PinPostPayload, type PlatformAdapter, type PointTransaction, PointTransactionType, type Points, type PointsResponse, type Poll, type PollChoice, type PollChoiceVotes, PollPreferredInterpretation, type PollStats, type PollVotePayload, type PollVoter, type PortfolioResponse, type PortfolioWalletItem, type PostTip, type PostTipsResponse, type PowerLarynxPayload, PrivateKey, type ProducerReward, type Profile, type ProfileTokens, type PromotePayload, type PromotePrice, type Proposal, type ProposalCreatePayload, type ProposalPay, type ProposalVote, type ProposalVotePayload, type ProposalVoteRow, PublicKey, QUEST_CATALOG, QueryKeys, type QuestCatalogEntry, type QuestMilestone, type QuestPeriod, type QuestStreak, type QuestTier, type QuestsResponse, type RCAccount, ROLES, type RcDelegationActive, type RcDelegationPayload, type RcDirectDelegation, type RcDirectDelegationsResponse, type RcPrecheckInput, type RcPrecheckOperation, type RcPrecheckResult, type RcStats, type Reblog, type ReblogPayload, type ReceivedVestingShare, type RecordActivityOptions, type Recoveries, type RecurrentTransfer, type RecurrentTransfers, type ReferralItem, type ReferralItems, type ReferralStat, type ReturnVestingDelegation, type RewardFund, type RewardedCommunity, SIMILAR_ENTRIES_MIN_RENDER, type SMTAsset, type SavingsWithdrawRequest, type Schedule, type SearchResponse, type SearchResult, type SetCommunityRolePayload, type SetLastReadPayload, type SetWithdrawRoute, type SetWithdrawVestingRoutePayload, SortOrder, type SpkApiWallet, type SpkMarkets, type Spotlight, type StakeEngineTokenPayload, type StatsResponse, type SubscribeCommunityPayload, type Subscription, Symbol, type ThreadItemEntry, ThreeSpeakIntegration, type ThreeSpeakVideo, type Token, type TokenMetadata, type Transaction, type TransactionConfirmation, type Transfer, type TransferEngineTokenPayload, type TransferFromSavingsPayload, type TransferLarynxPayload, type TransferPayload, type TransferPointPayload, type TransferSpkPayload, type TransferToSavings, type TransferToSavingsPayload, type TransferToVesting, type TransferToVestingPayload, type TransformedSpkMarkets, type TrendingTag, type UndelegateEngineTokenPayload, type UnfollowPayload, type UnstakeEngineTokenPayload, type UnsubscribeCommunityPayload, type UpdateCommunityPayload, type UpdateProposalVotes, type UpdateReplyPayload, type User, type UserImage, type ValidatePostCreatingOptions, type VestingDelegationExpiration, type Vote, type VoteHistoryPage, type VoteHistoryPageParam, type VotePayload, type VoteProxy, type WalletMetadataCandidate, type WalletOperationPayload, type WaveEntry, type WaveTrendingAuthor, type WaveTrendingTag, type WavesFeedEntry, type WavesFeedParams, type WithdrawRoute, type WithdrawVesting, type WithdrawVestingPayload, type Witness, type WitnessProxyPayload, type WitnessVotePayload, type WitnessVoter, type WitnessVoterSortDirection, type WitnessVoterSortField, type WitnessVotersResponse, type WrappedResponse, type WsBookmarkNotification, type WsDelegationsNotification, type WsFavoriteNotification, type WsFollowNotification, type WsInactiveNotification, type WsMentionNotification, type WsNotification, type WsReblogNotification, type WsReferralNotification, type WsReplyNotification, type WsSpinNotification, type WsTransferNotification, type WsVoteNotification, addDraft, addImage, addOptimisticDiscussionEntry, addSchedule, bridgeApiCall, broadcastJson, broadcastOperations, broadcastOperationsAsync, buildAccountCreateOp, buildAccountUpdate2Op, buildAccountUpdateOp, buildActiveCustomJsonOp, buildBoostPlusOp, buildCancelTransferFromSavingsOp, buildChangeRecoveryAccountOp, buildClaimAccountOp, buildClaimInterestOps, buildClaimRewardBalanceOp, buildCollateralizedConvertOp, buildCommentOp, buildCommentOptionsOp, buildCommunityRegistrationOp, buildConvertOp, buildCreateClaimedAccountOp, buildDelegateRcOp, buildDelegateVestingSharesOp, buildDeleteCommentOp, buildEngineClaimOp, buildEngineOp, buildFlagPostOp, buildFollowOp, buildGrantPostingPermissionOp, buildIgnoreOp, buildLimitOrderCancelOp, buildLimitOrderCreateOp, buildLimitOrderCreateOpWithType, buildMultiPointTransferOps, buildMultiTransferOps, buildMutePostOp, buildMuteUserOp, buildPinPostOp, buildPointTransferOp, buildPostingCustomJsonOp, buildPostingJsonMetadata, buildProfileMetadata, buildPromoteOp, buildProposalCreateOp, buildProposalVoteOp, buildRcDelegationOp, buildReblogOp, buildRecoverAccountOp, buildRecurrentTransferOp, buildRemoveProposalOp, buildRequestAccountRecoveryOp, buildRevokeKeysOp, buildRevokePostingPermissionOp, buildSetLastReadOps, buildSetRoleOp, buildSetWithdrawVestingRouteOp, buildSpkCustomJsonOp, buildSubscribeOp, buildTransferFromSavingsOp, buildTransferOp, buildTransferToSavingsOp, buildTransferToVestingOp, buildUnfollowOp, buildUnignoreOp, buildUnsubscribeOp, buildUpdateCommunityOp, buildUpdateProposalOp, buildVoteOp, buildWithdrawVestingOp, buildWitnessProxyOp, buildWitnessVoteOp, calculateRCMana, calculateVPMana, canRevokeFromAuthority, checkFavoriteQueryOptions, checkUsernameWalletsPendingQueryOptions, decodeObj, dedupeAndSortKeyAuths, deleteDraft, deleteImage, deleteSchedule, downVotingPower, encodeObj, estimateRcPrecheck, extractAccountProfile, formatError, formattedNumber, getAccountDelegationsQueryOptions, getAccountFullQueryOptions, getAccountNotificationsInfiniteQueryOptions, getAccountPendingRecoveryQueryOptions, getAccountPosts, getAccountPostsInfiniteQueryOptions, getAccountPostsQueryOptions, getAccountRcQueryOptions, getAccountRecoveriesQueryOptions, getAccountReputationsQueryOptions, getAccountSubscriptionsQueryOptions, getAccountVoteHistoryInfiniteQueryOptions, getAccountWalletAssetInfoQueryOptions, getAccountsQueryOptions, getAggregatedBalanceQueryOptions, getAiAssistPriceQueryOptions, getAiGeneratePriceQueryOptions, getAllHiveEngineTokensQueryOptions, getAnnouncementsQueryOptions, getBadActorsQueryOptions, getBalanceHistoryInfiniteQueryOptions, getBookmarksInfiniteQueryOptions, getBookmarksQueryOptions, getBoostPlusAccountPricesQueryOptions, getBoostPlusPricesQueryOptions, getBotsQueryOptions, getBoundFetch, getChainPropertiesQueryOptions, getCollateralizedConversionRequestsQueryOptions, getCommentHistoryQueryOptions, getCommunities, getCommunitiesQueryOptions, getCommunity, getCommunityContextQueryOptions, getCommunityPermissions, getCommunityQueryOptions, getCommunitySubscribersQueryOptions, getCommunityType, getContentQueryOptions, getContentRepliesQueryOptions, getControversialRisingInfiniteQueryOptions, getConversionRequestsQueryOptions, getCurrencyRate, getCurrencyRates, getCurrencyTokenRate, getCurrentMedianHistoryPriceQueryOptions, getCustomJsonAuthority, getDeletedEntryQueryOptions, getDiscoverCurationQueryOptions, getDiscoverLeaderboardQueryOptions, getDiscussion, getDiscussionQueryOptions, getDiscussionsQueryOptions, getDraftsInfiniteQueryOptions, getDraftsQueryOptions, getDynamicPropsQueryOptions, getEntryActiveVotesQueryOptions, getFavoritesInfiniteQueryOptions, getFavoritesQueryOptions, getFeedHistoryQueryOptions, getFollowCountQueryOptions, getFollowersQueryOptions, getFollowingQueryOptions, getFragmentsInfiniteQueryOptions, getFragmentsQueryOptions, getFriendsInfiniteQueryOptions, getGalleryImagesQueryOptions, getGameStatusCheckQueryOptions, getHbdAssetGeneralInfoQueryOptions, getHbdAssetTransactionsQueryOptions, getHiveAssetGeneralInfoQueryOptions, getHiveAssetMetricQueryOptions, getHiveAssetTransactionsQueryOptions, getHiveAssetWithdrawalRoutesQueryOptions, getHiveEngineBalancesWithUsdQueryOptions, getHiveEngineMetrics, getHiveEngineOpenOrders, getHiveEngineOrderBook, getHiveEngineTokenGeneralInfoQueryOptions, getHiveEngineTokenMetrics, getHiveEngineTokenTransactions, getHiveEngineTokenTransactionsQueryOptions, getHiveEngineTokensBalances, getHiveEngineTokensBalancesQueryOptions, getHiveEngineTokensMarket, getHiveEngineTokensMarketQueryOptions, getHiveEngineTokensMetadata, getHiveEngineTokensMetadataQueryOptions, getHiveEngineTokensMetricsQueryOptions, getHiveEngineTradeHistory, getHiveEngineUnclaimedRewards, getHiveEngineUnclaimedRewardsQueryOptions, getHiveHbdStatsQueryOptions, getHivePoshLinksQueryOptions, getHivePowerAssetGeneralInfoQueryOptions, getHivePowerAssetTransactionsQueryOptions, getHivePowerDelegatesInfiniteQueryOptions, getHivePowerDelegatingsQueryOptions, getHivePrice, getImagesInfiniteQueryOptions, getImagesQueryOptions, getIncomingRcQueryOptions, getLarynxAssetGeneralInfoQueryOptions, getLarynxPowerAssetGeneralInfoQueryOptions, getMarketData, getMarketDataQueryOptions, getMarketHistoryQueryOptions, getMarketStatisticsQueryOptions, getMutedUsersQueryOptions, getNormalizePostQueryOptions, getNotificationSetting, getNotifications, getNotificationsInfiniteQueryOptions, getNotificationsSettingsQueryOptions, getNotificationsUnreadCountQueryOptions, getOpenOrdersQueryOptions, getOperationAuthority, getOrderBookQueryOptions, getOutgoingRcDelegationsInfiniteQueryOptions, getPageStatsQueryOptions, getPointsAssetGeneralInfoQueryOptions, getPointsAssetTransactionsQueryOptions, getPointsQueryOptions, getPollQueryOptions, getPortfolioQueryOptions, getPost, getPostHeader, getPostHeaderQueryOptions, getPostQueryOptions, getPostTipsQueryOptions, getPostsRanked, getPostsRankedInfiniteQueryOptions, getPostsRankedQueryOptions, getProfiles, getProfilesQueryOptions, getPromotePriceQueryOptions, getPromotedPost, getPromotedPostsQuery, getProposalAuthority, getProposalQueryOptions, getProposalVotesInfiniteQueryOptions, getProposalsQueryOptions, getQueryClient, getQuestCatalogEntry, getQuestsQueryOptions, getRcDelegationActiveQueryOptions, getRcDelegationPricesQueryOptions, getRcStatsQueryOptions, getRebloggedByQueryOptions, getReblogsQueryOptions, getReceivedVestingSharesQueryOptions, getRecurrentTransfersQueryOptions, getReferralsInfiniteQueryOptions, getReferralsStatsQueryOptions, getRelationshipBetweenAccounts, getRelationshipBetweenAccountsQueryOptions, getRequiredAuthority, getRewardFundQueryOptions, getRewardedCommunitiesQueryOptions, getSavingsWithdrawFromQueryOptions, getSchedulesInfiniteQueryOptions, getSchedulesQueryOptions, getSearchAccountQueryOptions, getSearchAccountsByUsernameQueryOptions, getSearchApiInfiniteQueryOptions, getSearchFriendsQueryOptions, getSearchPathQueryOptions, getSearchTopicsQueryOptions, getSimilarEntriesQueryOptions, getSpkAssetGeneralInfoQueryOptions, getSpkMarkets, getSpkMarketsQueryOptions, getSpkWallet, getSpkWalletQueryOptions, getSpotlightsQueryOptions, getStatsQueryOptions, getSubscribers, getSubscriptions, getTradeHistoryQueryOptions, getTransactionsInfiniteQueryOptions, getTrendingTagsQueryOptions, getTrendingTagsWithStatsQueryOptions, getUserPostVoteQueryOptions, getUserProposalVotesQueryOptions, getVestingDelegationExpirationsQueryOptions, getVestingDelegationsQueryOptions, getVisibleFirstLevelThreadItems, getWavesByAccountQueryOptions, getWavesByHostQueryOptions, getWavesByTagQueryOptions, getWavesFeedQueryOptions, getWavesFollowingQueryOptions, getWavesLatestFeedQueryOptions, getWavesTrendingAuthorsQueryOptions, getWavesTrendingTagsQueryOptions, getWithdrawRoutesQueryOptions, getWitnessVoterCountQueryOptions, getWitnessVotersPageQueryOptions, getWitnessesInfiniteQueryOptions, hsTokenRenew, invalidateAfterBroadcast, isCommunity, isEmptyDate, isInfoError, isNetworkError, isResourceCreditsError, isWif, isWrappedResponse, lookupAccountsQueryOptions, makeQueryClient, mapMetaChoicesToPollChoices, mapThreadItemsToWaveEntries, markNotifications, moveSchedule, normalizePost, normalizeToWrappedResponse, normalizeWaveEntryFromApi, onboardEmail, parseAccounts, parseAsset, parseChainError, parsePostingMetadataRoot, parseProfileMetadata, powerRechargeTime, rcPower, removeOptimisticDiscussionEntry, resolveHiveOperationFilters, resolvePost, restoreDiscussionSnapshots, restoreEntryInCache, rewardSpk, roleMap, saveNotificationSetting, search, searchPath, searchQueryOptions, sha256, shouldTriggerAuthFallback, signUp, similar, sortDiscussions, subscribeEmail, toEntryArray, updateDraft, updateEntryInCache, uploadImage, uploadImageWithSignature, useAccountFavoriteAdd, useAccountFavoriteDelete, useAccountRelationsUpdate, useAccountRevokeKey, useAccountRevokePosting, useAccountUpdate, useAccountUpdateKeyAuths, useAccountUpdatePassword, useAccountUpdateRecovery, useAddDraft, useAddFragment, useAddImage, useAddSchedule, useAiAssist, useBookmarkAdd, useBookmarkDelete, useBoostPlus, useBroadcastMutation, useClaimAccount, useClaimEngineRewards, useClaimInterest, useClaimPoints, useClaimRewards, useComment, useConvert, useCreateAccount, useCrossPost, useDelegateEngineToken, useDelegateRc, useDelegateVestingShares, useDeleteComment, useDeleteDraft, useDeleteImage, useDeleteSchedule, useEditFragment, useEngineMarketOrder, useFollow, useGameClaim, useGenerateImage, useGrantPostingPermission, useLimitOrderCancel, useLimitOrderCreate, useLockLarynx, useMarkNotificationsRead, useMoveSchedule, useMutePost, usePinPost, usePollVote, usePowerLarynx, usePromote, useProposalCreate, useProposalVote, useRcDelegation, useReblog, useRecordActivity, useRegisterCommunityRewards, useRemoveFragment, useSetCommunityRole, useSetLastRead, useSetWithdrawVestingRoute, useSignOperationByHivesigner, useSignOperationByKey, useSignOperationByKeychain, useStakeEngineToken, useSubscribeCommunity, useTransfer, useTransferEngineToken, useTransferFromSavings, useTransferLarynx, useTransferPoint, useTransferSpk, useTransferToSavings, useTransferToVesting, useUndelegateEngineToken, useUnfollow, useUnstakeEngineToken, useUnsubscribeCommunity, useUpdateCommunity, useUpdateDraft, useUpdateReply, useUploadImage, useVote, useWalletOperation, useWithdrawVesting, useWitnessProxy, useWitnessVote, usrActivity, validatePostCreating, verifyPostOnAlternateNode, vestsToHp, votingPower, votingRshares, votingValue, withTimeoutSignal };
8958
+ export { ACCOUNT_OPERATION_GROUPS, ALL_ACCOUNT_OPERATIONS, ALL_NOTIFY_TYPES, type AccountBookmark, type AccountDelegations, type AccountFavorite, type AccountFollowStats, type AccountKeys, type AccountNotification, type AccountProfile, type AccountRelationship, type AccountReputation, type AggregatedBalanceEntry, type AiAssistParams, type AiAssistPrice, type AiAssistResponse, type AiGenerationPrice, type AiGenerationRequest, type AiGenerationResponse, type AiImagePowerTier, type AiImagePriceResponse, type Announcement, type ApiBookmarkNotification, type ApiDelegationsNotification, type ApiFavoriteNotification, type ApiFollowNotification, type ApiInactiveNotification, type ApiMentionNotification, type ApiNotification, type ApiNotificationSetting, type ApiReblogNotification, type ApiReferralNotification, type ApiReplyNotification, type ApiResponse, type ApiSpinNotification, type ApiTransferNotification, type ApiVoteNotification, type ApiWeeklyEarningsNotification, type Asset, AssetOperation, type AuthContext, type AuthContextV2, type AuthMethod, type AuthorReward, Authority, type AuthorityLevel, type AuthorityType, BROADCAST_INCLUSION_DELAY_MS, type BalanceAggregationGranularity, type BalanceCoinType, type BalanceHistoryEntry, type BalanceHistoryResponse, type Beneficiary, type BlogEntry, type BoostPlusAccountPrice, type BoostPlusPayload, type BroadcastMode, BroadcastResult, type BuildProfileMetadataArgs, BuySellTransactionType, CONFIG, type CancelTransferFromSavings, type CantAfford, type CheckUsernameWalletsPendingResponse, type ClaimAccountPayload, type ClaimEngineRewardsPayload, type ClaimInterestPayload, type ClaimRewardBalance, type ClaimRewardsPayload, type CollateralizedConversionRequest, type CollateralizedConvert, type CommentBenefactor, type CommentPayload, type CommentPayoutUpdate, type CommentReward, type Communities, type Community, type CommunityProps, type CommunityRewardsRegisterPayload, type CommunityRole, type CommunityTeam, type CommunityType, ConfigManager, type ConversionRequest, type ConvertPayload, type CreateAccountPayload, type CrossPostPayload, type CurationDuration, type CurationItem, type CurationReward, type CurrencyRates, type DailyCheckinQuest, type DailyContentQuest, type DailyQuest, type DelegateEngineTokenPayload, type DelegateRcPayload, type DelegateVestingShares, type DelegateVestingSharesPayload, type DelegatedVestingShare, type DeleteCommentPayload, type DeletedEntry, type Draft, type DraftMetadata, type DraftsWrappedResponse, type DynamicProps$1 as DynamicProps, index as EcencyAnalytics, EcencyQueriesManager, type EffectiveCommentVote, type EngineMarketOrderPayload, EntriesCacheManagement, type Entry$1 as Entry, type EntryBeneficiaryRoute, type EntryHeader, type EntryStat, type EntryVote, ErrorType, type FeedHistoryItem, type FillCollateralizedConvertRequest, type FillConvertRequest, type FillOrder, type FillRecurrentTransfers, type FillVestingWithdraw, type Follow, type FollowPayload, type Fragment, type FriendSearchResult, type FriendsPageParam, type FriendsRow, type FullAccount, type GameClaim, type GeneralAssetInfo, type GeneralAssetTransaction, type GenerateImageParams, type GetGameStatus, type GetRecoveriesEmailResponse, type GrantPostingPermissionPayload, HIVE_ACCOUNT_OPERATION_GROUPS, HIVE_OPERATION_LIST, HIVE_OPERATION_NAME_BY_ID, HIVE_OPERATION_ORDERS, type HiveBasedAssetSignType, type HiveEngineMarketResponse, type HiveEngineMetric, type HiveEngineOpenOrder, type HiveEngineOrderBookEntry, HiveEngineToken, type HiveEngineTokenBalance, type HiveEngineTokenInfo, type HiveEngineTokenMetadataResponse, type HiveEngineTokenStatus, type HiveEngineTransaction, type HiveHbdStats, type HiveMarketMetric, type HiveOperationFilter, type HiveOperationFilterKey, type HiveOperationFilterValue, type HiveOperationGroup, type HiveOperationName, HiveSignerIntegration, type HiveTransaction, type HsTokenRenewResponse, INTERNAL_API_TIMEOUT_MS, type IncomingDelegation, type IncomingRcDelegation, type IncomingRcResponse, type Interest, type JsonMetadata, type JsonPollMetadata, type Keys, type LeaderBoardDuration, type LeaderBoardItem, type LimitOrderCancel, type LimitOrderCancelPayload, type LimitOrderCreate, type LimitOrderCreatePayload, type LockLarynxPayload, type MarketCandlestickDataItem, type MarketData, type MarketStatistics, type MedianHistoryPrice, type MutePostPayload, NaiMap, NotificationFilter, NotificationViewType, type Notifications, NotifyTypes, OPERATION_AUTHORITY_MAP, type OpenOrdersData, Operation, type OperationGroup, OperationName, OrderIdPrefix, type OrdersData, type OrdersDataItem, type OutgoingDelegation, POLLS_PROTOCOL_VERSION, type PageStatsResponse, type PaginationMeta, type ParsedChainError, type Payer, type PeriodQuest, type PinPostPayload, type PlatformAdapter, type PointTransaction, PointTransactionType, type Points, type PointsResponse, type Poll, type PollChoice, type PollChoiceVotes, PollPreferredInterpretation, type PollStats, type PollVotePayload, type PollVoter, type PortfolioResponse, type PortfolioWalletItem, type PostTip, type PostTipsResponse, type PowerLarynxPayload, PrivateKey, type ProducerReward, type Profile, type ProfileTokens, type PromotePayload, type PromotePrice, type Proposal, type ProposalCreatePayload, type ProposalPay, type ProposalVote, type ProposalVotePayload, type ProposalVoteRow, PublicKey, QUEST_CATALOG, QueryKeys, type QuestCatalogEntry, type QuestMilestone, type QuestPeriod, type QuestStreak, type QuestTier, type QuestsResponse, type RCAccount, ROLES, type RcDelegationActive, type RcDelegationPayload, type RcDirectDelegation, type RcDirectDelegationsResponse, type RcPrecheckInput, type RcPrecheckOperation, type RcPrecheckResult, type RcStats, type Reblog, type ReblogPayload, type ReceivedVestingShare, type RecordActivityOptions, type Recoveries, type RecurrentTransfer, type RecurrentTransfers, type ReferralItem, type ReferralItems, type ReferralStat, type ReturnVestingDelegation, type RewardFund, type RewardedCommunity, SIMILAR_ENTRIES_MIN_RENDER, type SMTAsset, type SavingsWithdrawRequest, type Schedule, type SearchResponse, type SearchResult, type SetCommunityRolePayload, type SetLastReadPayload, type SetWithdrawRoute, type SetWithdrawVestingRoutePayload, type ShortVideo, type ShortsFeedEntry, type ShortsFeedParams, SortOrder, type SpkApiWallet, type SpkMarkets, type Spotlight, type StakeEngineTokenPayload, type StatsResponse, type SubscribeCommunityPayload, type Subscription, Symbol, type ThreadItemEntry, ThreeSpeakIntegration, type ThreeSpeakVideo, type Token, type TokenMetadata, type Transaction, type TransactionConfirmation, type Transfer, type TransferEngineTokenPayload, type TransferFromSavingsPayload, type TransferLarynxPayload, type TransferPayload, type TransferPointPayload, type TransferSpkPayload, type TransferToSavings, type TransferToSavingsPayload, type TransferToVesting, type TransferToVestingPayload, type TransformedSpkMarkets, type TrendingTag, type UndelegateEngineTokenPayload, type UnfollowPayload, type UnstakeEngineTokenPayload, type UnsubscribeCommunityPayload, type UpdateCommunityPayload, type UpdateProposalVotes, type UpdateReplyPayload, type User, type UserImage, type ValidatePostCreatingOptions, type VestingDelegationExpiration, type Vote, type VoteHistoryPage, type VoteHistoryPageParam, type VotePayload, type VoteProxy, type WalletMetadataCandidate, type WalletOperationPayload, type WaveEntry, type WaveTrendingAuthor, type WaveTrendingTag, type WavesFeedEntry, type WavesFeedParams, type WithdrawRoute, type WithdrawVesting, type WithdrawVestingPayload, type Witness, type WitnessProxyPayload, type WitnessVotePayload, type WitnessVoter, type WitnessVoterSortDirection, type WitnessVoterSortField, type WitnessVotersResponse, type WrappedResponse, type WsBookmarkNotification, type WsDelegationsNotification, type WsFavoriteNotification, type WsFollowNotification, type WsInactiveNotification, type WsMentionNotification, type WsNotification, type WsReblogNotification, type WsReferralNotification, type WsReplyNotification, type WsSpinNotification, type WsTransferNotification, type WsVoteNotification, addDraft, addImage, addOptimisticDiscussionEntry, addSchedule, bridgeApiCall, broadcastJson, broadcastOperations, broadcastOperationsAsync, buildAccountCreateOp, buildAccountUpdate2Op, buildAccountUpdateOp, buildActiveCustomJsonOp, buildBoostPlusOp, buildCancelTransferFromSavingsOp, buildChangeRecoveryAccountOp, buildClaimAccountOp, buildClaimInterestOps, buildClaimRewardBalanceOp, buildCollateralizedConvertOp, buildCommentOp, buildCommentOptionsOp, buildCommunityRegistrationOp, buildConvertOp, buildCreateClaimedAccountOp, buildDelegateRcOp, buildDelegateVestingSharesOp, buildDeleteCommentOp, buildEngineClaimOp, buildEngineOp, buildFlagPostOp, buildFollowOp, buildGrantPostingPermissionOp, buildIgnoreOp, buildLimitOrderCancelOp, buildLimitOrderCreateOp, buildLimitOrderCreateOpWithType, buildMultiPointTransferOps, buildMultiTransferOps, buildMutePostOp, buildMuteUserOp, buildPinPostOp, buildPointTransferOp, buildPostingCustomJsonOp, buildPostingJsonMetadata, buildProfileMetadata, buildPromoteOp, buildProposalCreateOp, buildProposalVoteOp, buildRcDelegationOp, buildReblogOp, buildRecoverAccountOp, buildRecurrentTransferOp, buildRemoveProposalOp, buildRequestAccountRecoveryOp, buildRevokeKeysOp, buildRevokePostingPermissionOp, buildSetLastReadOps, buildSetRoleOp, buildSetWithdrawVestingRouteOp, buildSpkCustomJsonOp, buildSubscribeOp, buildTransferFromSavingsOp, buildTransferOp, buildTransferToSavingsOp, buildTransferToVestingOp, buildUnfollowOp, buildUnignoreOp, buildUnsubscribeOp, buildUpdateCommunityOp, buildUpdateProposalOp, buildVoteOp, buildWithdrawVestingOp, buildWitnessProxyOp, buildWitnessVoteOp, calculateRCMana, calculateVPMana, canRevokeFromAuthority, checkFavoriteQueryOptions, checkUsernameWalletsPendingQueryOptions, decodeObj, dedupeAndSortKeyAuths, deleteDraft, deleteImage, deleteSchedule, downVotingPower, encodeObj, estimateRcPrecheck, extractAccountProfile, formatError, formattedNumber, getAccountDelegationsQueryOptions, getAccountFullQueryOptions, getAccountNotificationsInfiniteQueryOptions, getAccountPendingRecoveryQueryOptions, getAccountPosts, getAccountPostsInfiniteQueryOptions, getAccountPostsQueryOptions, getAccountRcQueryOptions, getAccountRecoveriesQueryOptions, getAccountReputationsQueryOptions, getAccountSubscriptionsQueryOptions, getAccountVoteHistoryInfiniteQueryOptions, getAccountWalletAssetInfoQueryOptions, getAccountsQueryOptions, getAggregatedBalanceQueryOptions, getAiAssistPriceQueryOptions, getAiGeneratePriceQueryOptions, getAllHiveEngineTokensQueryOptions, getAnnouncementsQueryOptions, getBadActorsQueryOptions, getBalanceHistoryInfiniteQueryOptions, getBookmarksInfiniteQueryOptions, getBookmarksQueryOptions, getBoostPlusAccountPricesQueryOptions, getBoostPlusPricesQueryOptions, getBotsQueryOptions, getBoundFetch, getChainPropertiesQueryOptions, getCollateralizedConversionRequestsQueryOptions, getCommentHistoryQueryOptions, getCommunities, getCommunitiesQueryOptions, getCommunity, getCommunityContextQueryOptions, getCommunityPermissions, getCommunityQueryOptions, getCommunitySubscribersQueryOptions, getCommunityType, getContentQueryOptions, getContentRepliesQueryOptions, getControversialRisingInfiniteQueryOptions, getConversionRequestsQueryOptions, getCurrencyRate, getCurrencyRates, getCurrencyTokenRate, getCurrentMedianHistoryPriceQueryOptions, getCustomJsonAuthority, getDeletedEntryQueryOptions, getDiscoverCurationQueryOptions, getDiscoverLeaderboardQueryOptions, getDiscussion, getDiscussionQueryOptions, getDiscussionsQueryOptions, getDraftsInfiniteQueryOptions, getDraftsQueryOptions, getDynamicPropsQueryOptions, getEntryActiveVotesQueryOptions, getFavoritesInfiniteQueryOptions, getFavoritesQueryOptions, getFeedHistoryQueryOptions, getFollowCountQueryOptions, getFollowersQueryOptions, getFollowingQueryOptions, getFragmentsInfiniteQueryOptions, getFragmentsQueryOptions, getFriendsInfiniteQueryOptions, getGalleryImagesQueryOptions, getGameStatusCheckQueryOptions, getHbdAssetGeneralInfoQueryOptions, getHbdAssetTransactionsQueryOptions, getHiveAssetGeneralInfoQueryOptions, getHiveAssetMetricQueryOptions, getHiveAssetTransactionsQueryOptions, getHiveAssetWithdrawalRoutesQueryOptions, getHiveEngineBalancesWithUsdQueryOptions, getHiveEngineMetrics, getHiveEngineOpenOrders, getHiveEngineOrderBook, getHiveEngineTokenGeneralInfoQueryOptions, getHiveEngineTokenMetrics, getHiveEngineTokenTransactions, getHiveEngineTokenTransactionsQueryOptions, getHiveEngineTokensBalances, getHiveEngineTokensBalancesQueryOptions, getHiveEngineTokensMarket, getHiveEngineTokensMarketQueryOptions, getHiveEngineTokensMetadata, getHiveEngineTokensMetadataQueryOptions, getHiveEngineTokensMetricsQueryOptions, getHiveEngineTradeHistory, getHiveEngineUnclaimedRewards, getHiveEngineUnclaimedRewardsQueryOptions, getHiveHbdStatsQueryOptions, getHivePoshLinksQueryOptions, getHivePowerAssetGeneralInfoQueryOptions, getHivePowerAssetTransactionsQueryOptions, getHivePowerDelegatesInfiniteQueryOptions, getHivePowerDelegatingsQueryOptions, getHivePrice, getImagesInfiniteQueryOptions, getImagesQueryOptions, getIncomingRcQueryOptions, getLarynxAssetGeneralInfoQueryOptions, getLarynxPowerAssetGeneralInfoQueryOptions, getMarketData, getMarketDataQueryOptions, getMarketHistoryQueryOptions, getMarketStatisticsQueryOptions, getMutedUsersQueryOptions, getNormalizePostQueryOptions, getNotificationSetting, getNotifications, getNotificationsInfiniteQueryOptions, getNotificationsSettingsQueryOptions, getNotificationsUnreadCountQueryOptions, getOpenOrdersQueryOptions, getOperationAuthority, getOrderBookQueryOptions, getOutgoingRcDelegationsInfiniteQueryOptions, getPageStatsQueryOptions, getPointsAssetGeneralInfoQueryOptions, getPointsAssetTransactionsQueryOptions, getPointsQueryOptions, getPollQueryOptions, getPortfolioQueryOptions, getPost, getPostHeader, getPostHeaderQueryOptions, getPostQueryOptions, getPostTipsQueryOptions, getPostsRanked, getPostsRankedInfiniteQueryOptions, getPostsRankedQueryOptions, getProfiles, getProfilesQueryOptions, getPromotePriceQueryOptions, getPromotedPost, getPromotedPostsQuery, getProposalAuthority, getProposalQueryOptions, getProposalVotesInfiniteQueryOptions, getProposalsQueryOptions, getQueryClient, getQuestCatalogEntry, getQuestsQueryOptions, getRcDelegationActiveQueryOptions, getRcDelegationPricesQueryOptions, getRcStatsQueryOptions, getRebloggedByQueryOptions, getReblogsQueryOptions, getReceivedVestingSharesQueryOptions, getRecurrentTransfersQueryOptions, getReferralsInfiniteQueryOptions, getReferralsStatsQueryOptions, getRelationshipBetweenAccounts, getRelationshipBetweenAccountsQueryOptions, getRequiredAuthority, getRewardFundQueryOptions, getRewardedCommunitiesQueryOptions, getSavingsWithdrawFromQueryOptions, getSchedulesInfiniteQueryOptions, getSchedulesQueryOptions, getSearchAccountQueryOptions, getSearchAccountsByUsernameQueryOptions, getSearchApiInfiniteQueryOptions, getSearchFriendsQueryOptions, getSearchPathQueryOptions, getSearchTopicsQueryOptions, getShortsFeedQueryOptions, getSimilarEntriesQueryOptions, getSpkAssetGeneralInfoQueryOptions, getSpkMarkets, getSpkMarketsQueryOptions, getSpkWallet, getSpkWalletQueryOptions, getSpotlightsQueryOptions, getStatsQueryOptions, getSubscribers, getSubscriptions, getTradeHistoryQueryOptions, getTransactionsInfiniteQueryOptions, getTrendingTagsQueryOptions, getTrendingTagsWithStatsQueryOptions, getUserPostVoteQueryOptions, getUserProposalVotesQueryOptions, getVestingDelegationExpirationsQueryOptions, getVestingDelegationsQueryOptions, getVisibleFirstLevelThreadItems, getWavesByAccountQueryOptions, getWavesByHostQueryOptions, getWavesByTagQueryOptions, getWavesFeedQueryOptions, getWavesFollowingQueryOptions, getWavesLatestFeedQueryOptions, getWavesTrendingAuthorsQueryOptions, getWavesTrendingTagsQueryOptions, getWithdrawRoutesQueryOptions, getWitnessVoterCountQueryOptions, getWitnessVotersPageQueryOptions, getWitnessesInfiniteQueryOptions, hsTokenRenew, invalidateAfterBroadcast, isCommunity, isEmptyDate, isInfoError, isNetworkError, isResourceCreditsError, isWif, isWrappedResponse, lookupAccountsQueryOptions, makeQueryClient, mapMetaChoicesToPollChoices, mapThreadItemsToWaveEntries, markNotifications, moveSchedule, normalizePost, normalizeToWrappedResponse, normalizeWaveEntryFromApi, onboardEmail, parseAccounts, parseAsset, parseChainError, parsePostingMetadataRoot, parseProfileMetadata, powerRechargeTime, rcPower, removeOptimisticDiscussionEntry, resolveHiveOperationFilters, resolvePost, restoreDiscussionSnapshots, restoreEntryInCache, rewardSpk, roleMap, saveNotificationSetting, search, searchPath, searchQueryOptions, sha256, shouldTriggerAuthFallback, signUp, similar, sortDiscussions, subscribeEmail, toEntryArray, updateDraft, updateEntryInCache, uploadImage, uploadImageWithSignature, useAccountFavoriteAdd, useAccountFavoriteDelete, useAccountRelationsUpdate, useAccountRevokeKey, useAccountRevokePosting, useAccountUpdate, useAccountUpdateKeyAuths, useAccountUpdatePassword, useAccountUpdateRecovery, useAddDraft, useAddFragment, useAddImage, useAddSchedule, useAiAssist, useBookmarkAdd, useBookmarkDelete, useBoostPlus, useBroadcastMutation, useClaimAccount, useClaimEngineRewards, useClaimInterest, useClaimPoints, useClaimRewards, useComment, useConvert, useCreateAccount, useCrossPost, useDelegateEngineToken, useDelegateRc, useDelegateVestingShares, useDeleteComment, useDeleteDraft, useDeleteImage, useDeleteSchedule, useEditFragment, useEngineMarketOrder, useFollow, useGameClaim, useGenerateImage, useGrantPostingPermission, useLimitOrderCancel, useLimitOrderCreate, useLockLarynx, useMarkNotificationsRead, useMoveSchedule, useMutePost, usePinPost, usePollVote, usePowerLarynx, usePromote, useProposalCreate, useProposalVote, useRcDelegation, useReblog, useRecordActivity, useRegisterCommunityRewards, useRemoveFragment, useSetCommunityRole, useSetLastRead, useSetWithdrawVestingRoute, useSignOperationByHivesigner, useSignOperationByKey, useSignOperationByKeychain, useStakeEngineToken, useSubscribeCommunity, useTransfer, useTransferEngineToken, useTransferFromSavings, useTransferLarynx, useTransferPoint, useTransferSpk, useTransferToSavings, useTransferToVesting, useUndelegateEngineToken, useUnfollow, useUnstakeEngineToken, useUnsubscribeCommunity, useUpdateCommunity, useUpdateDraft, useUpdateReply, useUploadImage, useVote, useWalletOperation, useWithdrawVesting, useWitnessProxy, useWitnessVote, usrActivity, validatePostCreating, verifyPostOnAlternateNode, vestsToHp, votingPower, votingRshares, votingValue, withTimeoutSignal };