@ecency/sdk 1.5.0 → 1.5.1
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 +160 -23
- package/dist/browser/index.js +657 -31
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.cjs +691 -30
- package/dist/node/index.cjs.map +1 -1
- package/dist/node/index.mjs +657 -31
- package/dist/node/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/browser/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { UseMutationOptions, MutationKey, QueryClient, QueryKey, InfiniteData, U
|
|
|
3
3
|
import * as _hiveio_dhive from '@hiveio/dhive';
|
|
4
4
|
import { Authority, SMTAsset, PrivateKey, AuthorityType, PublicKey, Operation, Client } from '@hiveio/dhive';
|
|
5
5
|
import * as _hiveio_dhive_lib_chain_rc from '@hiveio/dhive/lib/chain/rc';
|
|
6
|
+
import { RCAccount } from '@hiveio/dhive/lib/chain/rc';
|
|
6
7
|
|
|
7
8
|
interface AccountFollowStats {
|
|
8
9
|
follower_count: number;
|
|
@@ -652,13 +653,10 @@ declare function getAccountFullQueryOptions(username: string | undefined): _tans
|
|
|
652
653
|
};
|
|
653
654
|
};
|
|
654
655
|
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
*/
|
|
658
|
-
declare function getAccountsQueryOptions(usernames: string[]): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<FullAccount[], Error, FullAccount[], (string | string[])[]>, "queryFn"> & {
|
|
659
|
-
queryFn?: _tanstack_react_query.QueryFunction<FullAccount[], (string | string[])[], never> | undefined;
|
|
656
|
+
declare function getAccountsQueryOptions(usernames: string[]): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<FullAccount[], Error, FullAccount[], string[]>, "queryFn"> & {
|
|
657
|
+
queryFn?: _tanstack_react_query.QueryFunction<FullAccount[], string[], never> | undefined;
|
|
660
658
|
} & {
|
|
661
|
-
queryKey:
|
|
659
|
+
queryKey: string[] & {
|
|
662
660
|
[dataTagSymbol]: FullAccount[];
|
|
663
661
|
[dataTagErrorSymbol]: Error;
|
|
664
662
|
};
|
|
@@ -810,6 +808,15 @@ declare function getAccountPendingRecoveryQueryOptions(username: string | undefi
|
|
|
810
808
|
};
|
|
811
809
|
};
|
|
812
810
|
|
|
811
|
+
declare function getAccountReputationsQueryOptions(query: string, limit?: number): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<AccountReputation[], Error, AccountReputation[], (string | number)[]>, "queryFn"> & {
|
|
812
|
+
queryFn?: _tanstack_react_query.QueryFunction<AccountReputation[], (string | number)[], never> | undefined;
|
|
813
|
+
} & {
|
|
814
|
+
queryKey: (string | number)[] & {
|
|
815
|
+
[dataTagSymbol]: AccountReputation[];
|
|
816
|
+
[dataTagErrorSymbol]: Error;
|
|
817
|
+
};
|
|
818
|
+
};
|
|
819
|
+
|
|
813
820
|
declare const ACCOUNT_OPERATION_GROUPS: Record<OperationGroup, number[]>;
|
|
814
821
|
declare const ALL_ACCOUNT_OPERATIONS: number[];
|
|
815
822
|
type TxPage = Transaction[];
|
|
@@ -1126,6 +1133,15 @@ declare function getAccountVoteHistoryInfiniteQueryOptions<F>(username: string,
|
|
|
1126
1133
|
};
|
|
1127
1134
|
};
|
|
1128
1135
|
|
|
1136
|
+
declare function getProfilesQueryOptions(accounts: string[], observer?: string, enabled?: boolean): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<Profile[], Error, Profile[], (string | string[])[]>, "queryFn"> & {
|
|
1137
|
+
queryFn?: _tanstack_react_query.QueryFunction<Profile[], (string | string[])[], never> | undefined;
|
|
1138
|
+
} & {
|
|
1139
|
+
queryKey: (string | string[])[] & {
|
|
1140
|
+
[dataTagSymbol]: Profile[];
|
|
1141
|
+
[dataTagErrorSymbol]: Error;
|
|
1142
|
+
};
|
|
1143
|
+
};
|
|
1144
|
+
|
|
1129
1145
|
type ProfileTokens = AccountProfile["tokens"];
|
|
1130
1146
|
interface BuildProfileMetadataArgs {
|
|
1131
1147
|
existingProfile?: AccountProfile;
|
|
@@ -1142,6 +1158,28 @@ declare function buildProfileMetadata({ existingProfile, profile, tokens, }: Bui
|
|
|
1142
1158
|
*/
|
|
1143
1159
|
declare function parseAccounts(rawAccounts: any[]): FullAccount[];
|
|
1144
1160
|
|
|
1161
|
+
interface DynamicProps {
|
|
1162
|
+
hivePerMVests: number;
|
|
1163
|
+
base: number;
|
|
1164
|
+
quote: number;
|
|
1165
|
+
fundRewardBalance: number;
|
|
1166
|
+
fundRecentClaims: number;
|
|
1167
|
+
hbdPrintRate: number;
|
|
1168
|
+
hbdInterestRate: number;
|
|
1169
|
+
headBlock: number;
|
|
1170
|
+
totalVestingFund: number;
|
|
1171
|
+
totalVestingShares: number;
|
|
1172
|
+
virtualSupply: number;
|
|
1173
|
+
vestingRewardPercent: number;
|
|
1174
|
+
accountCreationFee: string;
|
|
1175
|
+
}
|
|
1176
|
+
|
|
1177
|
+
declare function votingPower(account: FullAccount): number;
|
|
1178
|
+
declare function powerRechargeTime(power: number): number;
|
|
1179
|
+
declare function downVotingPower(account: FullAccount): number;
|
|
1180
|
+
declare function rcPower(account: RCAccount): number;
|
|
1181
|
+
declare function votingValue(account: FullAccount, dynamicProps: DynamicProps, votingPowerValue: number, weight?: number): number;
|
|
1182
|
+
|
|
1145
1183
|
declare function useSignOperationByKey(username: string | undefined): _tanstack_react_query.UseMutationResult<_hiveio_dhive.TransactionConfirmation, Error, {
|
|
1146
1184
|
operation: Operation;
|
|
1147
1185
|
keyOrSeed: string;
|
|
@@ -1266,22 +1304,6 @@ declare namespace EcencyQueriesManager {
|
|
|
1266
1304
|
};
|
|
1267
1305
|
}
|
|
1268
1306
|
|
|
1269
|
-
interface DynamicProps {
|
|
1270
|
-
hivePerMVests: number;
|
|
1271
|
-
base: number;
|
|
1272
|
-
quote: number;
|
|
1273
|
-
fundRewardBalance: number;
|
|
1274
|
-
fundRecentClaims: number;
|
|
1275
|
-
hbdPrintRate: number;
|
|
1276
|
-
hbdInterestRate: number;
|
|
1277
|
-
headBlock: number;
|
|
1278
|
-
totalVestingFund: number;
|
|
1279
|
-
totalVestingShares: number;
|
|
1280
|
-
virtualSupply: number;
|
|
1281
|
-
vestingRewardPercent: number;
|
|
1282
|
-
accountCreationFee: string;
|
|
1283
|
-
}
|
|
1284
|
-
|
|
1285
1307
|
declare function getDynamicPropsQueryOptions(): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<DynamicProps, Error, DynamicProps, string[]>, "queryFn"> & {
|
|
1286
1308
|
queryFn?: _tanstack_react_query.QueryFunction<DynamicProps, string[], never> | undefined;
|
|
1287
1309
|
} & {
|
|
@@ -1368,6 +1390,24 @@ declare function getEntryActiveVotesQueryOptions(entry?: Entry$1): _tanstack_rea
|
|
|
1368
1390
|
};
|
|
1369
1391
|
};
|
|
1370
1392
|
|
|
1393
|
+
declare function getContentQueryOptions(author: string, permlink: string): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<Entry$1, Error, Entry$1, string[]>, "queryFn"> & {
|
|
1394
|
+
queryFn?: _tanstack_react_query.QueryFunction<Entry$1, string[], never> | undefined;
|
|
1395
|
+
} & {
|
|
1396
|
+
queryKey: string[] & {
|
|
1397
|
+
[dataTagSymbol]: Entry$1;
|
|
1398
|
+
[dataTagErrorSymbol]: Error;
|
|
1399
|
+
};
|
|
1400
|
+
};
|
|
1401
|
+
|
|
1402
|
+
declare function getContentRepliesQueryOptions(author: string, permlink: string): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<Entry$1[], Error, Entry$1[], string[]>, "queryFn"> & {
|
|
1403
|
+
queryFn?: _tanstack_react_query.QueryFunction<Entry$1[], string[], never> | undefined;
|
|
1404
|
+
} & {
|
|
1405
|
+
queryKey: string[] & {
|
|
1406
|
+
[dataTagSymbol]: Entry$1[];
|
|
1407
|
+
[dataTagErrorSymbol]: Error;
|
|
1408
|
+
};
|
|
1409
|
+
};
|
|
1410
|
+
|
|
1371
1411
|
declare function getPostHeaderQueryOptions(author: string, permlink: string): Omit<_tanstack_react_query.UseQueryOptions<Entry$1 | null, Error, Entry$1 | null, string[]>, "queryFn"> & {
|
|
1372
1412
|
initialData: Entry$1 | (() => Entry$1 | null) | null;
|
|
1373
1413
|
queryFn?: _tanstack_react_query.QueryFunction<Entry$1 | null, string[]> | undefined;
|
|
@@ -1402,6 +1442,14 @@ declare function getDiscussionsQueryOptions(entry: Entry$1, order?: SortOrder, e
|
|
|
1402
1442
|
[dataTagErrorSymbol]: Error;
|
|
1403
1443
|
};
|
|
1404
1444
|
};
|
|
1445
|
+
declare function getDiscussionQueryOptions(author: string, permlink: string, observer?: string, enabled?: boolean): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<Record<string, Entry$1> | null, Error, Record<string, Entry$1> | null, string[]>, "queryFn"> & {
|
|
1446
|
+
queryFn?: _tanstack_react_query.QueryFunction<Record<string, Entry$1> | null, string[], never> | undefined;
|
|
1447
|
+
} & {
|
|
1448
|
+
queryKey: string[] & {
|
|
1449
|
+
[dataTagSymbol]: Record<string, Entry$1> | null;
|
|
1450
|
+
[dataTagErrorSymbol]: Error;
|
|
1451
|
+
};
|
|
1452
|
+
};
|
|
1405
1453
|
|
|
1406
1454
|
type PageParam$2 = {
|
|
1407
1455
|
author: string | undefined;
|
|
@@ -1417,6 +1465,14 @@ declare function getAccountPostsInfiniteQueryOptions(username: string | undefine
|
|
|
1417
1465
|
[dataTagErrorSymbol]: Error;
|
|
1418
1466
|
};
|
|
1419
1467
|
};
|
|
1468
|
+
declare function getAccountPostsQueryOptions(username: string | undefined, filter?: string, start_author?: string, start_permlink?: string, limit?: number, observer?: string, enabled?: boolean): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<Entry$1[], Error, Entry$1[], (string | number)[]>, "queryFn"> & {
|
|
1469
|
+
queryFn?: _tanstack_react_query.QueryFunction<Entry$1[], (string | number)[], never> | undefined;
|
|
1470
|
+
} & {
|
|
1471
|
+
queryKey: (string | number)[] & {
|
|
1472
|
+
[dataTagSymbol]: Entry$1[];
|
|
1473
|
+
[dataTagErrorSymbol]: Error;
|
|
1474
|
+
};
|
|
1475
|
+
};
|
|
1420
1476
|
|
|
1421
1477
|
type PageParam$1 = {
|
|
1422
1478
|
author: string | undefined;
|
|
@@ -1434,6 +1490,14 @@ declare function getPostsRankedInfiniteQueryOptions(sort: string, tag: string, l
|
|
|
1434
1490
|
[dataTagErrorSymbol]: Error;
|
|
1435
1491
|
};
|
|
1436
1492
|
};
|
|
1493
|
+
declare function getPostsRankedQueryOptions(sort: string, start_author?: string, start_permlink?: string, limit?: number, tag?: string, observer?: string, enabled?: boolean): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<Entry$1[], Error, Entry$1[], (string | number)[]>, "queryFn"> & {
|
|
1494
|
+
queryFn?: _tanstack_react_query.QueryFunction<Entry$1[], (string | number)[], never> | undefined;
|
|
1495
|
+
} & {
|
|
1496
|
+
queryKey: (string | number)[] & {
|
|
1497
|
+
[dataTagSymbol]: Entry$1[];
|
|
1498
|
+
[dataTagErrorSymbol]: Error;
|
|
1499
|
+
};
|
|
1500
|
+
};
|
|
1437
1501
|
|
|
1438
1502
|
interface BlogEntry {
|
|
1439
1503
|
author: string;
|
|
@@ -1575,6 +1639,18 @@ declare function getWavesTrendingTagsQueryOptions(host: string, hours?: number):
|
|
|
1575
1639
|
};
|
|
1576
1640
|
};
|
|
1577
1641
|
|
|
1642
|
+
declare function getNormalizePostQueryOptions(post: {
|
|
1643
|
+
author?: string;
|
|
1644
|
+
permlink?: string;
|
|
1645
|
+
} | undefined, enabled?: boolean): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<Entry$1 | null, Error, Entry$1 | null, string[]>, "queryFn"> & {
|
|
1646
|
+
queryFn?: _tanstack_react_query.QueryFunction<Entry$1 | null, string[], never> | undefined;
|
|
1647
|
+
} & {
|
|
1648
|
+
queryKey: string[] & {
|
|
1649
|
+
[dataTagSymbol]: Entry$1 | null;
|
|
1650
|
+
[dataTagErrorSymbol]: Error;
|
|
1651
|
+
};
|
|
1652
|
+
};
|
|
1653
|
+
|
|
1578
1654
|
declare function useAddFragment(username: string, code: string | undefined): _tanstack_react_query.UseMutationResult<Fragment, Error, {
|
|
1579
1655
|
title: string;
|
|
1580
1656
|
body: string;
|
|
@@ -1599,6 +1675,11 @@ declare function toEntryArray(x: unknown): Entry$1[];
|
|
|
1599
1675
|
declare function getVisibleFirstLevelThreadItems(container: WaveEntry): Promise<Entry$1[]>;
|
|
1600
1676
|
declare function mapThreadItemsToWaveEntries(items: Entry$1[], container: WaveEntry, host: string): WaveEntry[];
|
|
1601
1677
|
|
|
1678
|
+
type ValidatePostCreatingOptions = {
|
|
1679
|
+
delays?: number[];
|
|
1680
|
+
};
|
|
1681
|
+
declare function validatePostCreating(author: string, permlink: string, attempts?: number, options?: ValidatePostCreatingOptions): Promise<void>;
|
|
1682
|
+
|
|
1602
1683
|
type ActivityType = "post-created" | "post-updated" | "post-scheduled" | "draft-created" | "video-published" | "legacy-post-created" | "legacy-post-updated" | "legacy-post-scheduled" | "legacy-draft-created" | "legacy-video-published" | "perks-points-by-qr" | "perks-account-boost" | "perks-promote" | "perks-boost-plus" | "points-claimed" | "spin-rolled" | "signed-up-with-wallets" | "signed-up-with-email";
|
|
1603
1684
|
declare function useRecordActivity(username: string | undefined, activityType: ActivityType): _tanstack_react_query.UseMutationResult<void, Error, void, unknown>;
|
|
1604
1685
|
|
|
@@ -2035,6 +2116,15 @@ declare function getCommunityContextQueryOptions(username: string | undefined, c
|
|
|
2035
2116
|
};
|
|
2036
2117
|
};
|
|
2037
2118
|
|
|
2119
|
+
declare function getCommunityQueryOptions(name: string | undefined, observer?: string | undefined, enabled?: boolean): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<Community | null, Error, Community | null, (string | undefined)[]>, "queryFn"> & {
|
|
2120
|
+
queryFn?: _tanstack_react_query.QueryFunction<Community | null, (string | undefined)[], never> | undefined;
|
|
2121
|
+
} & {
|
|
2122
|
+
queryKey: (string | undefined)[] & {
|
|
2123
|
+
[dataTagSymbol]: Community | null;
|
|
2124
|
+
[dataTagErrorSymbol]: Error;
|
|
2125
|
+
};
|
|
2126
|
+
};
|
|
2127
|
+
|
|
2038
2128
|
/**
|
|
2039
2129
|
* Get list of subscribers for a community
|
|
2040
2130
|
*
|
|
@@ -2512,6 +2602,14 @@ interface RcDirectDelegationsResponse {
|
|
|
2512
2602
|
next_start?: [string, string] | null;
|
|
2513
2603
|
}
|
|
2514
2604
|
|
|
2605
|
+
interface IncomingRcDelegation {
|
|
2606
|
+
sender: string;
|
|
2607
|
+
amount: string;
|
|
2608
|
+
}
|
|
2609
|
+
interface IncomingRcResponse {
|
|
2610
|
+
list: IncomingRcDelegation[];
|
|
2611
|
+
}
|
|
2612
|
+
|
|
2515
2613
|
interface ReceivedVestingShare {
|
|
2516
2614
|
delegatee: string;
|
|
2517
2615
|
delegator: string;
|
|
@@ -2622,6 +2720,15 @@ declare function getOutgoingRcDelegationsInfiniteQueryOptions(username: string,
|
|
|
2622
2720
|
};
|
|
2623
2721
|
};
|
|
2624
2722
|
|
|
2723
|
+
declare function getIncomingRcQueryOptions(username: string | undefined): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<IncomingRcResponse, Error, IncomingRcResponse, (string | undefined)[]>, "queryFn"> & {
|
|
2724
|
+
queryFn?: _tanstack_react_query.QueryFunction<IncomingRcResponse, (string | undefined)[], never> | undefined;
|
|
2725
|
+
} & {
|
|
2726
|
+
queryKey: (string | undefined)[] & {
|
|
2727
|
+
[dataTagSymbol]: IncomingRcResponse;
|
|
2728
|
+
[dataTagErrorSymbol]: Error;
|
|
2729
|
+
};
|
|
2730
|
+
};
|
|
2731
|
+
|
|
2625
2732
|
declare function getReceivedVestingSharesQueryOptions(username: string): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<ReceivedVestingShare[], Error, ReceivedVestingShare[], string[]>, "queryFn"> & {
|
|
2626
2733
|
queryFn?: _tanstack_react_query.QueryFunction<ReceivedVestingShare[], string[], never> | undefined;
|
|
2627
2734
|
} & {
|
|
@@ -2795,6 +2902,15 @@ declare function getMarketDataQueryOptions(coin: string, vsCurrency: string, fro
|
|
|
2795
2902
|
};
|
|
2796
2903
|
};
|
|
2797
2904
|
|
|
2905
|
+
declare function getTradeHistoryQueryOptions(limit?: number, startDate?: Date, endDate?: Date): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<OrdersDataItem[], Error, OrdersDataItem[], (string | number)[]>, "queryFn"> & {
|
|
2906
|
+
queryFn?: _tanstack_react_query.QueryFunction<OrdersDataItem[], (string | number)[], never> | undefined;
|
|
2907
|
+
} & {
|
|
2908
|
+
queryKey: (string | number)[] & {
|
|
2909
|
+
[dataTagSymbol]: OrdersDataItem[];
|
|
2910
|
+
[dataTagErrorSymbol]: Error;
|
|
2911
|
+
};
|
|
2912
|
+
};
|
|
2913
|
+
|
|
2798
2914
|
interface ApiResponse<T> {
|
|
2799
2915
|
status: number;
|
|
2800
2916
|
data: T;
|
|
@@ -2964,6 +3080,11 @@ declare function getSearchPathQueryOptions(q: string): _tanstack_react_query.Omi
|
|
|
2964
3080
|
};
|
|
2965
3081
|
};
|
|
2966
3082
|
|
|
3083
|
+
declare function search(q: string, sort: string, hideLow: string, since?: string, scroll_id?: string, votes?: number): Promise<SearchResponse>;
|
|
3084
|
+
declare function searchAccount(q?: string, limit?: number, random?: number): Promise<AccountSearchResult[]>;
|
|
3085
|
+
declare function searchTag(q?: string, limit?: number, random?: number): Promise<TagSearchResult[]>;
|
|
3086
|
+
declare function searchPath(q: string): Promise<string[]>;
|
|
3087
|
+
|
|
2967
3088
|
interface PromotePrice {
|
|
2968
3089
|
duration: number;
|
|
2969
3090
|
price: number;
|
|
@@ -3000,6 +3121,22 @@ declare function getBoostPlusAccountPricesQueryOptions(account: string, accessTo
|
|
|
3000
3121
|
};
|
|
3001
3122
|
};
|
|
3002
3123
|
|
|
3124
|
+
type BridgeParams = Record<string, unknown> | unknown[];
|
|
3125
|
+
declare function bridgeApiCall<T>(endpoint: string, params: BridgeParams): Promise<T>;
|
|
3126
|
+
declare function resolvePost(post: Entry$1, observer: string, num?: number): Promise<Entry$1>;
|
|
3127
|
+
declare function getPostsRanked(sort: string, start_author?: string, start_permlink?: string, limit?: number, tag?: string, observer?: string): Promise<Entry$1[] | null>;
|
|
3128
|
+
declare function getAccountPosts(sort: string, account: string, start_author?: string, start_permlink?: string, limit?: number, observer?: string): Promise<Entry$1[] | null>;
|
|
3129
|
+
declare function getPost(author?: string, permlink?: string, observer?: string, num?: number): Promise<Entry$1 | undefined>;
|
|
3130
|
+
declare function getPostHeader(author?: string, permlink?: string): Promise<Entry$1 | null>;
|
|
3131
|
+
declare function getDiscussion(author: string, permlink: string, observer?: string): Promise<Record<string, Entry$1> | null>;
|
|
3132
|
+
declare function getCommunity(name: string, observer?: string | undefined): Promise<Community | null>;
|
|
3133
|
+
declare function getCommunities(last?: string, limit?: number, query?: string | null, sort?: string, observer?: string): Promise<Community[] | null>;
|
|
3134
|
+
declare function normalizePost(post: unknown): Promise<Entry$1 | null>;
|
|
3135
|
+
declare function getSubscriptions(account: string): Promise<Subscription[] | null>;
|
|
3136
|
+
declare function getSubscribers(community: string): Promise<Subscription[] | null>;
|
|
3137
|
+
declare function getRelationshipBetweenAccounts(follower: string, following: string): Promise<AccountRelationship | null>;
|
|
3138
|
+
declare function getProfiles(accounts: string[], observer?: string): Promise<Profile[]>;
|
|
3139
|
+
|
|
3003
3140
|
declare function signUp(username: string, email: string, referral: string): Promise<ApiResponse<Record<string, unknown>>>;
|
|
3004
3141
|
declare function subscribeEmail(email: string): Promise<ApiResponse<Record<string, unknown>>>;
|
|
3005
3142
|
declare function usrActivity(code: string | undefined, ty: number, bl?: string | number, tx?: string | number): Promise<void>;
|
|
@@ -3037,4 +3174,4 @@ interface HsTokenRenewResponse {
|
|
|
3037
3174
|
|
|
3038
3175
|
declare function hsTokenRenew(code: string): Promise<HsTokenRenewResponse>;
|
|
3039
3176
|
|
|
3040
|
-
export { ACCOUNT_OPERATION_GROUPS, ALL_ACCOUNT_OPERATIONS, ALL_NOTIFY_TYPES, type AccountBookmark, type AccountFavorite, type AccountFollowStats, type AccountNotification, type AccountProfile, type AccountRelationship, type AccountReputation, type AccountSearchResult, 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 Asset, type AuthorReward, type BlogEntry, type BoostPlusAccountPrice, type BuildProfileMetadataArgs, CONFIG, type CancelTransferFromSavings, type CantAfford, type CheckUsernameWalletsPendingResponse, type ClaimRewardBalance, type CollateralizedConversionRequest, type CollateralizedConvert, type CommentBenefactor, type CommentPayoutUpdate, type CommentReward, type Communities, type Community, type CommunityRole, type CommunityTeam, type CommunityType, ConfigManager, type ConversionRequest, type CurationDuration, type CurationItem, type CurationReward, type CurrencyRates, type DelegateVestingShares, type DelegatedVestingShare, type DeletedEntry, type Draft, type DraftMetadata, type DynamicProps, index as EcencyAnalytics, EcencyQueriesManager, type EffectiveCommentVote, type Entry$1 as Entry, type EntryBeneficiaryRoute, type EntryHeader, type EntryStat, type EntryVote, type FillCollateralizedConvertRequest, type FillConvertRequest, type FillOrder, type FillRecurrentTransfers, type FillVestingWithdraw, type Follow, type Fragment, type FriendSearchResult, type FriendsPageParam, type FriendsRow, type FullAccount, type GameClaim, type GetGameStatus, type GetRecoveriesEmailResponse, type HiveHbdStats, HiveSignerIntegration, type HsTokenRenewResponse, type Interest, type JsonMetadata, type JsonPollMetadata, keychain as Keychain, type Keys, type LeaderBoardDuration, type LeaderBoardItem, type LimitOrderCancel, type LimitOrderCreate, type MarketCandlestickDataItem, type MarketData, type MarketStatistics, NaiMap, NotificationFilter, NotificationViewType, type Notifications, NotifyTypes, type OpenOrdersData, type OperationGroup, type OrdersData, type OrdersDataItem, type PageStatsResponse, type Payer, type PointTransaction, type Points, type PostTip, type PostTipsResponse, type ProducerReward, type Profile, type ProfileTokens, type PromotePrice, type Proposal, type ProposalPay, type ProposalVote, type ProposalVoteRow, ROLES, type RcDirectDelegation, type RcDirectDelegationsResponse, type RcStats, type Reblog, type ReceivedVestingShare, type Recoveries, type RecurrentTransfers, type ReferralItem, type ReferralItems, type ReferralStat, type ReturnVestingDelegation, type RewardedCommunity, type SavingsWithdrawRequest, type Schedule, type SearchResponse, type SearchResult, type SetWithdrawRoute, SortOrder, type StatsResponse, type StoringUser, type Subscription, Symbol, type TagSearchResult, type ThreadItemEntry, ThreeSpeakIntegration, type ThreeSpeakVideo, type Transaction, type Transfer, type TransferToSavings, type TransferToVesting, type TrendingTag, type UpdateProposalVotes, type UserImage, type Vote, type VoteHistoryPage, type VoteHistoryPageParam, type VoteProxy, type WalletMetadataCandidate, type WaveEntry, type WaveTrendingTag, type WithdrawRoute, type WithdrawVesting, type Witness, 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, addSchedule, broadcastJson, buildProfileMetadata, checkUsernameWalletsPendingQueryOptions, decodeObj, dedupeAndSortKeyAuths, deleteDraft, deleteImage, deleteSchedule, encodeObj, extractAccountProfile, getAccessToken, getAccountFullQueryOptions, getAccountNotificationsInfiniteQueryOptions, getAccountPendingRecoveryQueryOptions, getAccountPostsInfiniteQueryOptions, getAccountRcQueryOptions, getAccountRecoveriesQueryOptions, getAccountSubscriptionsQueryOptions, getAccountVoteHistoryInfiniteQueryOptions, getAccountsQueryOptions, getActiveAccountBookmarksQueryOptions, getActiveAccountFavouritesQueryOptions, getAnnouncementsQueryOptions, getBoostPlusAccountPricesQueryOptions, getBoostPlusPricesQueryOptions, getBotsQueryOptions, getBoundFetch, getChainPropertiesQueryOptions, getCollateralizedConversionRequestsQueryOptions, getCommentHistoryQueryOptions, getCommunitiesQueryOptions, getCommunityContextQueryOptions, getCommunityPermissions, getCommunitySubscribersQueryOptions, getCommunityType, getControversialRisingInfiniteQueryOptions, getConversionRequestsQueryOptions, getCurrencyRate, getCurrencyRates, getCurrencyTokenRate, getDeletedEntryQueryOptions, getDiscoverCurationQueryOptions, getDiscoverLeaderboardQueryOptions, getDiscussionsQueryOptions, getDraftsQueryOptions, getDynamicPropsQueryOptions, getEntryActiveVotesQueryOptions, getFollowCountQueryOptions, getFollowingQueryOptions, getFragmentsQueryOptions, getFriendsInfiniteQueryOptions, getGalleryImagesQueryOptions, getGameStatusCheckQueryOptions, getHiveHbdStatsQueryOptions, getHivePoshLinksQueryOptions, getImagesQueryOptions, getLoginType, getMarketData, getMarketDataQueryOptions, getMarketHistoryQueryOptions, getMarketStatisticsQueryOptions, getMutedUsersQueryOptions, getNotificationSetting, getNotifications, getNotificationsInfiniteQueryOptions, getNotificationsSettingsQueryOptions, getNotificationsUnreadCountQueryOptions, getOpenOrdersQueryOptions, getOrderBookQueryOptions, getOutgoingRcDelegationsInfiniteQueryOptions, getPageStatsQueryOptions, getPointsQueryOptions, getPostHeaderQueryOptions, getPostQueryOptions, getPostTipsQueryOptions, getPostingKey, getPostsRankedInfiniteQueryOptions, getPromotePriceQueryOptions, getPromotedPost, getPromotedPostsQuery, getProposalQueryOptions, getProposalVotesInfiniteQueryOptions, getProposalsQueryOptions, getQueryClient, getRcStatsQueryOptions, getReblogsQueryOptions, getReceivedVestingSharesQueryOptions, getReferralsInfiniteQueryOptions, getReferralsStatsQueryOptions, getRefreshToken, getRelationshipBetweenAccountsQueryOptions, getRewardedCommunitiesQueryOptions, getSavingsWithdrawFromQueryOptions, getSchedulesQueryOptions, getSearchAccountQueryOptions, getSearchAccountsByUsernameQueryOptions, getSearchApiInfiniteQueryOptions, getSearchFriendsQueryOptions, getSearchPathQueryOptions, getSearchTopicsQueryOptions, getSimilarEntriesQueryOptions, getStatsQueryOptions, getTransactionsInfiniteQueryOptions, getTrendingTagsQueryOptions, getTrendingTagsWithStatsQueryOptions, getUser, getUserProposalVotesQueryOptions, getVestingDelegationsQueryOptions, getVisibleFirstLevelThreadItems, getWavesByHostQueryOptions, getWavesByTagQueryOptions, getWavesFollowingQueryOptions, getWavesTrendingTagsQueryOptions, getWithdrawRoutesQueryOptions, getWitnessesInfiniteQueryOptions, hsTokenRenew, isCommunity, lookupAccountsQueryOptions, makeQueryClient, mapThreadItemsToWaveEntries, markNotifications, moveSchedule, normalizeWaveEntryFromApi, onboardEmail, parseAccounts, parseAsset, parseProfileMetadata, roleMap, saveNotificationSetting, searchQueryOptions, signUp, sortDiscussions, subscribeEmail, toEntryArray, updateDraft, uploadImage, useAccountFavouriteAdd, useAccountFavouriteDelete, useAccountRelationsUpdate, useAccountRevokeKey, useAccountRevokePosting, useAccountUpdate, useAccountUpdateKeyAuths, useAccountUpdatePassword, useAccountUpdateRecovery, useAddFragment, useBookmarkAdd, useBookmarkDelete, useBroadcastMutation, useEditFragment, useGameClaim, useRecordActivity, useRemoveFragment, useSignOperationByHivesigner, useSignOperationByKey, useSignOperationByKeychain, usrActivity };
|
|
3177
|
+
export { ACCOUNT_OPERATION_GROUPS, ALL_ACCOUNT_OPERATIONS, ALL_NOTIFY_TYPES, type AccountBookmark, type AccountFavorite, type AccountFollowStats, type AccountNotification, type AccountProfile, type AccountRelationship, type AccountReputation, type AccountSearchResult, 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 Asset, type AuthorReward, type BlogEntry, type BoostPlusAccountPrice, type BuildProfileMetadataArgs, CONFIG, type CancelTransferFromSavings, type CantAfford, type CheckUsernameWalletsPendingResponse, type ClaimRewardBalance, type CollateralizedConversionRequest, type CollateralizedConvert, type CommentBenefactor, type CommentPayoutUpdate, type CommentReward, type Communities, type Community, type CommunityRole, type CommunityTeam, type CommunityType, ConfigManager, type ConversionRequest, type CurationDuration, type CurationItem, type CurationReward, type CurrencyRates, type DelegateVestingShares, type DelegatedVestingShare, type DeletedEntry, type Draft, type DraftMetadata, type DynamicProps, index as EcencyAnalytics, EcencyQueriesManager, type EffectiveCommentVote, type Entry$1 as Entry, type EntryBeneficiaryRoute, type EntryHeader, type EntryStat, type EntryVote, type FillCollateralizedConvertRequest, type FillConvertRequest, type FillOrder, type FillRecurrentTransfers, type FillVestingWithdraw, type Follow, type Fragment, type FriendSearchResult, type FriendsPageParam, type FriendsRow, type FullAccount, type GameClaim, type GetGameStatus, type GetRecoveriesEmailResponse, type HiveHbdStats, HiveSignerIntegration, type HsTokenRenewResponse, type IncomingRcDelegation, type IncomingRcResponse, type Interest, type JsonMetadata, type JsonPollMetadata, keychain as Keychain, type Keys, type LeaderBoardDuration, type LeaderBoardItem, type LimitOrderCancel, type LimitOrderCreate, type MarketCandlestickDataItem, type MarketData, type MarketStatistics, NaiMap, NotificationFilter, NotificationViewType, type Notifications, NotifyTypes, type OpenOrdersData, type OperationGroup, type OrdersData, type OrdersDataItem, type PageStatsResponse, type Payer, type PointTransaction, type Points, type PostTip, type PostTipsResponse, type ProducerReward, type Profile, type ProfileTokens, type PromotePrice, type Proposal, type ProposalPay, type ProposalVote, type ProposalVoteRow, ROLES, type RcDirectDelegation, type RcDirectDelegationsResponse, type RcStats, type Reblog, type ReceivedVestingShare, type Recoveries, type RecurrentTransfers, type ReferralItem, type ReferralItems, type ReferralStat, type ReturnVestingDelegation, type RewardedCommunity, type SavingsWithdrawRequest, type Schedule, type SearchResponse, type SearchResult, type SetWithdrawRoute, SortOrder, type StatsResponse, type StoringUser, type Subscription, Symbol, type TagSearchResult, type ThreadItemEntry, ThreeSpeakIntegration, type ThreeSpeakVideo, type Transaction, type Transfer, type TransferToSavings, type TransferToVesting, type TrendingTag, type UpdateProposalVotes, type UserImage, type ValidatePostCreatingOptions, type Vote, type VoteHistoryPage, type VoteHistoryPageParam, type VoteProxy, type WalletMetadataCandidate, type WaveEntry, type WaveTrendingTag, type WithdrawRoute, type WithdrawVesting, type Witness, 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, addSchedule, bridgeApiCall, broadcastJson, buildProfileMetadata, checkUsernameWalletsPendingQueryOptions, decodeObj, dedupeAndSortKeyAuths, deleteDraft, deleteImage, deleteSchedule, downVotingPower, encodeObj, extractAccountProfile, getAccessToken, getAccountFullQueryOptions, getAccountNotificationsInfiniteQueryOptions, getAccountPendingRecoveryQueryOptions, getAccountPosts, getAccountPostsInfiniteQueryOptions, getAccountPostsQueryOptions, getAccountRcQueryOptions, getAccountRecoveriesQueryOptions, getAccountReputationsQueryOptions, getAccountSubscriptionsQueryOptions, getAccountVoteHistoryInfiniteQueryOptions, getAccountsQueryOptions, getActiveAccountBookmarksQueryOptions, getActiveAccountFavouritesQueryOptions, getAnnouncementsQueryOptions, getBoostPlusAccountPricesQueryOptions, getBoostPlusPricesQueryOptions, getBotsQueryOptions, getBoundFetch, getChainPropertiesQueryOptions, getCollateralizedConversionRequestsQueryOptions, getCommentHistoryQueryOptions, getCommunities, getCommunitiesQueryOptions, getCommunity, getCommunityContextQueryOptions, getCommunityPermissions, getCommunityQueryOptions, getCommunitySubscribersQueryOptions, getCommunityType, getContentQueryOptions, getContentRepliesQueryOptions, getControversialRisingInfiniteQueryOptions, getConversionRequestsQueryOptions, getCurrencyRate, getCurrencyRates, getCurrencyTokenRate, getDeletedEntryQueryOptions, getDiscoverCurationQueryOptions, getDiscoverLeaderboardQueryOptions, getDiscussion, getDiscussionQueryOptions, getDiscussionsQueryOptions, getDraftsQueryOptions, getDynamicPropsQueryOptions, getEntryActiveVotesQueryOptions, getFollowCountQueryOptions, getFollowingQueryOptions, getFragmentsQueryOptions, getFriendsInfiniteQueryOptions, getGalleryImagesQueryOptions, getGameStatusCheckQueryOptions, getHiveHbdStatsQueryOptions, getHivePoshLinksQueryOptions, getImagesQueryOptions, getIncomingRcQueryOptions, getLoginType, getMarketData, getMarketDataQueryOptions, getMarketHistoryQueryOptions, getMarketStatisticsQueryOptions, getMutedUsersQueryOptions, getNormalizePostQueryOptions, getNotificationSetting, getNotifications, getNotificationsInfiniteQueryOptions, getNotificationsSettingsQueryOptions, getNotificationsUnreadCountQueryOptions, getOpenOrdersQueryOptions, getOrderBookQueryOptions, getOutgoingRcDelegationsInfiniteQueryOptions, getPageStatsQueryOptions, getPointsQueryOptions, getPost, getPostHeader, getPostHeaderQueryOptions, getPostQueryOptions, getPostTipsQueryOptions, getPostingKey, getPostsRanked, getPostsRankedInfiniteQueryOptions, getPostsRankedQueryOptions, getProfiles, getProfilesQueryOptions, getPromotePriceQueryOptions, getPromotedPost, getPromotedPostsQuery, getProposalQueryOptions, getProposalVotesInfiniteQueryOptions, getProposalsQueryOptions, getQueryClient, getRcStatsQueryOptions, getReblogsQueryOptions, getReceivedVestingSharesQueryOptions, getReferralsInfiniteQueryOptions, getReferralsStatsQueryOptions, getRefreshToken, getRelationshipBetweenAccounts, getRelationshipBetweenAccountsQueryOptions, getRewardedCommunitiesQueryOptions, getSavingsWithdrawFromQueryOptions, getSchedulesQueryOptions, getSearchAccountQueryOptions, getSearchAccountsByUsernameQueryOptions, getSearchApiInfiniteQueryOptions, getSearchFriendsQueryOptions, getSearchPathQueryOptions, getSearchTopicsQueryOptions, getSimilarEntriesQueryOptions, getStatsQueryOptions, getSubscribers, getSubscriptions, getTradeHistoryQueryOptions, getTransactionsInfiniteQueryOptions, getTrendingTagsQueryOptions, getTrendingTagsWithStatsQueryOptions, getUser, getUserProposalVotesQueryOptions, getVestingDelegationsQueryOptions, getVisibleFirstLevelThreadItems, getWavesByHostQueryOptions, getWavesByTagQueryOptions, getWavesFollowingQueryOptions, getWavesTrendingTagsQueryOptions, getWithdrawRoutesQueryOptions, getWitnessesInfiniteQueryOptions, hsTokenRenew, isCommunity, lookupAccountsQueryOptions, makeQueryClient, mapThreadItemsToWaveEntries, markNotifications, moveSchedule, normalizePost, normalizeWaveEntryFromApi, onboardEmail, parseAccounts, parseAsset, parseProfileMetadata, powerRechargeTime, rcPower, resolvePost, roleMap, saveNotificationSetting, search, searchAccount, searchPath, searchQueryOptions, searchTag, signUp, sortDiscussions, subscribeEmail, toEntryArray, updateDraft, uploadImage, useAccountFavouriteAdd, useAccountFavouriteDelete, useAccountRelationsUpdate, useAccountRevokeKey, useAccountRevokePosting, useAccountUpdate, useAccountUpdateKeyAuths, useAccountUpdatePassword, useAccountUpdateRecovery, useAddFragment, useBookmarkAdd, useBookmarkDelete, useBroadcastMutation, useEditFragment, useGameClaim, useRecordActivity, useRemoveFragment, useSignOperationByHivesigner, useSignOperationByKey, useSignOperationByKeychain, usrActivity, validatePostCreating, votingPower, votingValue };
|