@ecency/sdk 1.5.9 → 1.5.11
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 +182 -111
- package/dist/browser/index.js +272 -7
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.cjs +277 -6
- package/dist/node/index.cjs.map +1 -1
- package/dist/node/index.mjs +272 -7
- package/dist/node/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/browser/index.js
CHANGED
|
@@ -864,6 +864,47 @@ function getActiveAccountBookmarksQueryOptions(activeUsername, code) {
|
|
|
864
864
|
}
|
|
865
865
|
});
|
|
866
866
|
}
|
|
867
|
+
function getActiveAccountBookmarksInfiniteQueryOptions(activeUsername, code, limit = 10) {
|
|
868
|
+
return infiniteQueryOptions({
|
|
869
|
+
queryKey: ["accounts", "bookmarks", "infinite", activeUsername, limit],
|
|
870
|
+
queryFn: async ({ pageParam = 0 }) => {
|
|
871
|
+
if (!activeUsername || !code) {
|
|
872
|
+
return {
|
|
873
|
+
data: [],
|
|
874
|
+
pagination: {
|
|
875
|
+
total: 0,
|
|
876
|
+
limit,
|
|
877
|
+
offset: 0,
|
|
878
|
+
has_next: false
|
|
879
|
+
}
|
|
880
|
+
};
|
|
881
|
+
}
|
|
882
|
+
const fetchApi = getBoundFetch();
|
|
883
|
+
const response = await fetchApi(
|
|
884
|
+
`${CONFIG.privateApiHost}/private-api/bookmarks?format=wrapped&offset=${pageParam}&limit=${limit}`,
|
|
885
|
+
{
|
|
886
|
+
method: "POST",
|
|
887
|
+
headers: {
|
|
888
|
+
"Content-Type": "application/json"
|
|
889
|
+
},
|
|
890
|
+
body: JSON.stringify({ code })
|
|
891
|
+
}
|
|
892
|
+
);
|
|
893
|
+
if (!response.ok) {
|
|
894
|
+
throw new Error(`Failed to fetch bookmarks: ${response.status}`);
|
|
895
|
+
}
|
|
896
|
+
return response.json();
|
|
897
|
+
},
|
|
898
|
+
initialPageParam: 0,
|
|
899
|
+
getNextPageParam: (lastPage) => {
|
|
900
|
+
if (lastPage.pagination.has_next) {
|
|
901
|
+
return lastPage.pagination.offset + lastPage.pagination.limit;
|
|
902
|
+
}
|
|
903
|
+
return void 0;
|
|
904
|
+
},
|
|
905
|
+
enabled: !!activeUsername && !!code
|
|
906
|
+
});
|
|
907
|
+
}
|
|
867
908
|
function getActiveAccountFavouritesQueryOptions(activeUsername, code) {
|
|
868
909
|
return queryOptions({
|
|
869
910
|
queryKey: ["accounts", "favourites", activeUsername],
|
|
@@ -887,6 +928,47 @@ function getActiveAccountFavouritesQueryOptions(activeUsername, code) {
|
|
|
887
928
|
}
|
|
888
929
|
});
|
|
889
930
|
}
|
|
931
|
+
function getActiveAccountFavouritesInfiniteQueryOptions(activeUsername, code, limit = 10) {
|
|
932
|
+
return infiniteQueryOptions({
|
|
933
|
+
queryKey: ["accounts", "favourites", "infinite", activeUsername, limit],
|
|
934
|
+
queryFn: async ({ pageParam = 0 }) => {
|
|
935
|
+
if (!activeUsername || !code) {
|
|
936
|
+
return {
|
|
937
|
+
data: [],
|
|
938
|
+
pagination: {
|
|
939
|
+
total: 0,
|
|
940
|
+
limit,
|
|
941
|
+
offset: 0,
|
|
942
|
+
has_next: false
|
|
943
|
+
}
|
|
944
|
+
};
|
|
945
|
+
}
|
|
946
|
+
const fetchApi = getBoundFetch();
|
|
947
|
+
const response = await fetchApi(
|
|
948
|
+
`${CONFIG.privateApiHost}/private-api/favorites?format=wrapped&offset=${pageParam}&limit=${limit}`,
|
|
949
|
+
{
|
|
950
|
+
method: "POST",
|
|
951
|
+
headers: {
|
|
952
|
+
"Content-Type": "application/json"
|
|
953
|
+
},
|
|
954
|
+
body: JSON.stringify({ code })
|
|
955
|
+
}
|
|
956
|
+
);
|
|
957
|
+
if (!response.ok) {
|
|
958
|
+
throw new Error(`Failed to fetch favorites: ${response.status}`);
|
|
959
|
+
}
|
|
960
|
+
return response.json();
|
|
961
|
+
},
|
|
962
|
+
initialPageParam: 0,
|
|
963
|
+
getNextPageParam: (lastPage) => {
|
|
964
|
+
if (lastPage.pagination.has_next) {
|
|
965
|
+
return lastPage.pagination.offset + lastPage.pagination.limit;
|
|
966
|
+
}
|
|
967
|
+
return void 0;
|
|
968
|
+
},
|
|
969
|
+
enabled: !!activeUsername && !!code
|
|
970
|
+
});
|
|
971
|
+
}
|
|
890
972
|
function getAccountRecoveriesQueryOptions(username, code) {
|
|
891
973
|
return queryOptions({
|
|
892
974
|
enabled: !!username && !!code,
|
|
@@ -1220,6 +1302,49 @@ function getFragmentsQueryOptions(username, code) {
|
|
|
1220
1302
|
enabled: !!username && !!code
|
|
1221
1303
|
});
|
|
1222
1304
|
}
|
|
1305
|
+
function getFragmentsInfiniteQueryOptions(username, code, limit = 10) {
|
|
1306
|
+
return infiniteQueryOptions({
|
|
1307
|
+
queryKey: ["posts", "fragments", "infinite", username, limit],
|
|
1308
|
+
queryFn: async ({ pageParam = 0 }) => {
|
|
1309
|
+
if (!username || !code) {
|
|
1310
|
+
return {
|
|
1311
|
+
data: [],
|
|
1312
|
+
pagination: {
|
|
1313
|
+
total: 0,
|
|
1314
|
+
limit,
|
|
1315
|
+
offset: 0,
|
|
1316
|
+
has_next: false
|
|
1317
|
+
}
|
|
1318
|
+
};
|
|
1319
|
+
}
|
|
1320
|
+
const fetchApi = getBoundFetch();
|
|
1321
|
+
const response = await fetchApi(
|
|
1322
|
+
`${CONFIG.privateApiHost}/private-api/fragments?format=wrapped&offset=${pageParam}&limit=${limit}`,
|
|
1323
|
+
{
|
|
1324
|
+
method: "POST",
|
|
1325
|
+
headers: {
|
|
1326
|
+
"Content-Type": "application/json"
|
|
1327
|
+
},
|
|
1328
|
+
body: JSON.stringify({
|
|
1329
|
+
code
|
|
1330
|
+
})
|
|
1331
|
+
}
|
|
1332
|
+
);
|
|
1333
|
+
if (!response.ok) {
|
|
1334
|
+
throw new Error(`Failed to fetch fragments: ${response.status}`);
|
|
1335
|
+
}
|
|
1336
|
+
return response.json();
|
|
1337
|
+
},
|
|
1338
|
+
initialPageParam: 0,
|
|
1339
|
+
getNextPageParam: (lastPage) => {
|
|
1340
|
+
if (lastPage.pagination.has_next) {
|
|
1341
|
+
return lastPage.pagination.offset + lastPage.pagination.limit;
|
|
1342
|
+
}
|
|
1343
|
+
return void 0;
|
|
1344
|
+
},
|
|
1345
|
+
enabled: !!username && !!code
|
|
1346
|
+
});
|
|
1347
|
+
}
|
|
1223
1348
|
function getPromotedPostsQuery(type = "feed") {
|
|
1224
1349
|
return queryOptions({
|
|
1225
1350
|
queryKey: ["posts", "promoted", type],
|
|
@@ -1840,6 +1965,49 @@ function getSchedulesQueryOptions(activeUsername, code) {
|
|
|
1840
1965
|
enabled: !!activeUsername && !!code
|
|
1841
1966
|
});
|
|
1842
1967
|
}
|
|
1968
|
+
function getSchedulesInfiniteQueryOptions(activeUsername, code, limit = 10) {
|
|
1969
|
+
return infiniteQueryOptions({
|
|
1970
|
+
queryKey: ["posts", "schedules", "infinite", activeUsername, limit],
|
|
1971
|
+
queryFn: async ({ pageParam = 0 }) => {
|
|
1972
|
+
if (!activeUsername || !code) {
|
|
1973
|
+
return {
|
|
1974
|
+
data: [],
|
|
1975
|
+
pagination: {
|
|
1976
|
+
total: 0,
|
|
1977
|
+
limit,
|
|
1978
|
+
offset: 0,
|
|
1979
|
+
has_next: false
|
|
1980
|
+
}
|
|
1981
|
+
};
|
|
1982
|
+
}
|
|
1983
|
+
const fetchApi = getBoundFetch();
|
|
1984
|
+
const response = await fetchApi(
|
|
1985
|
+
`${CONFIG.privateApiHost}/private-api/schedules?format=wrapped&offset=${pageParam}&limit=${limit}`,
|
|
1986
|
+
{
|
|
1987
|
+
method: "POST",
|
|
1988
|
+
headers: {
|
|
1989
|
+
"Content-Type": "application/json"
|
|
1990
|
+
},
|
|
1991
|
+
body: JSON.stringify({
|
|
1992
|
+
code
|
|
1993
|
+
})
|
|
1994
|
+
}
|
|
1995
|
+
);
|
|
1996
|
+
if (!response.ok) {
|
|
1997
|
+
throw new Error(`Failed to fetch schedules: ${response.status}`);
|
|
1998
|
+
}
|
|
1999
|
+
return response.json();
|
|
2000
|
+
},
|
|
2001
|
+
initialPageParam: 0,
|
|
2002
|
+
getNextPageParam: (lastPage) => {
|
|
2003
|
+
if (lastPage.pagination.has_next) {
|
|
2004
|
+
return lastPage.pagination.offset + lastPage.pagination.limit;
|
|
2005
|
+
}
|
|
2006
|
+
return void 0;
|
|
2007
|
+
},
|
|
2008
|
+
enabled: !!activeUsername && !!code
|
|
2009
|
+
});
|
|
2010
|
+
}
|
|
1843
2011
|
function getDraftsQueryOptions(activeUsername, code) {
|
|
1844
2012
|
return queryOptions({
|
|
1845
2013
|
queryKey: ["posts", "drafts", activeUsername],
|
|
@@ -1865,6 +2033,49 @@ function getDraftsQueryOptions(activeUsername, code) {
|
|
|
1865
2033
|
enabled: !!activeUsername && !!code
|
|
1866
2034
|
});
|
|
1867
2035
|
}
|
|
2036
|
+
function getDraftsInfiniteQueryOptions(activeUsername, code, limit = 10) {
|
|
2037
|
+
return infiniteQueryOptions({
|
|
2038
|
+
queryKey: ["posts", "drafts", "infinite", activeUsername, limit],
|
|
2039
|
+
queryFn: async ({ pageParam = 0 }) => {
|
|
2040
|
+
if (!activeUsername || !code) {
|
|
2041
|
+
return {
|
|
2042
|
+
data: [],
|
|
2043
|
+
pagination: {
|
|
2044
|
+
total: 0,
|
|
2045
|
+
limit,
|
|
2046
|
+
offset: 0,
|
|
2047
|
+
has_next: false
|
|
2048
|
+
}
|
|
2049
|
+
};
|
|
2050
|
+
}
|
|
2051
|
+
const fetchApi = getBoundFetch();
|
|
2052
|
+
const response = await fetchApi(
|
|
2053
|
+
`${CONFIG.privateApiHost}/private-api/drafts?format=wrapped&offset=${pageParam}&limit=${limit}`,
|
|
2054
|
+
{
|
|
2055
|
+
method: "POST",
|
|
2056
|
+
headers: {
|
|
2057
|
+
"Content-Type": "application/json"
|
|
2058
|
+
},
|
|
2059
|
+
body: JSON.stringify({
|
|
2060
|
+
code
|
|
2061
|
+
})
|
|
2062
|
+
}
|
|
2063
|
+
);
|
|
2064
|
+
if (!response.ok) {
|
|
2065
|
+
throw new Error(`Failed to fetch drafts: ${response.status}`);
|
|
2066
|
+
}
|
|
2067
|
+
return response.json();
|
|
2068
|
+
},
|
|
2069
|
+
initialPageParam: 0,
|
|
2070
|
+
getNextPageParam: (lastPage) => {
|
|
2071
|
+
if (lastPage.pagination.has_next) {
|
|
2072
|
+
return lastPage.pagination.offset + lastPage.pagination.limit;
|
|
2073
|
+
}
|
|
2074
|
+
return void 0;
|
|
2075
|
+
},
|
|
2076
|
+
enabled: !!activeUsername && !!code
|
|
2077
|
+
});
|
|
2078
|
+
}
|
|
1868
2079
|
async function fetchUserImages(code) {
|
|
1869
2080
|
const fetchApi = getBoundFetch();
|
|
1870
2081
|
const response = await fetchApi(CONFIG.privateApiHost + "/private-api/images", {
|
|
@@ -1905,6 +2116,49 @@ function getGalleryImagesQueryOptions(activeUsername, code) {
|
|
|
1905
2116
|
enabled: !!activeUsername && !!code
|
|
1906
2117
|
});
|
|
1907
2118
|
}
|
|
2119
|
+
function getImagesInfiniteQueryOptions(username, code, limit = 10) {
|
|
2120
|
+
return infiniteQueryOptions({
|
|
2121
|
+
queryKey: ["posts", "images", "infinite", username, limit],
|
|
2122
|
+
queryFn: async ({ pageParam = 0 }) => {
|
|
2123
|
+
if (!username || !code) {
|
|
2124
|
+
return {
|
|
2125
|
+
data: [],
|
|
2126
|
+
pagination: {
|
|
2127
|
+
total: 0,
|
|
2128
|
+
limit,
|
|
2129
|
+
offset: 0,
|
|
2130
|
+
has_next: false
|
|
2131
|
+
}
|
|
2132
|
+
};
|
|
2133
|
+
}
|
|
2134
|
+
const fetchApi = getBoundFetch();
|
|
2135
|
+
const response = await fetchApi(
|
|
2136
|
+
`${CONFIG.privateApiHost}/private-api/images?format=wrapped&offset=${pageParam}&limit=${limit}`,
|
|
2137
|
+
{
|
|
2138
|
+
method: "POST",
|
|
2139
|
+
headers: {
|
|
2140
|
+
"Content-Type": "application/json"
|
|
2141
|
+
},
|
|
2142
|
+
body: JSON.stringify({
|
|
2143
|
+
code
|
|
2144
|
+
})
|
|
2145
|
+
}
|
|
2146
|
+
);
|
|
2147
|
+
if (!response.ok) {
|
|
2148
|
+
throw new Error(`Failed to fetch images: ${response.status}`);
|
|
2149
|
+
}
|
|
2150
|
+
return response.json();
|
|
2151
|
+
},
|
|
2152
|
+
initialPageParam: 0,
|
|
2153
|
+
getNextPageParam: (lastPage) => {
|
|
2154
|
+
if (lastPage.pagination.has_next) {
|
|
2155
|
+
return lastPage.pagination.offset + lastPage.pagination.limit;
|
|
2156
|
+
}
|
|
2157
|
+
return void 0;
|
|
2158
|
+
},
|
|
2159
|
+
enabled: !!username && !!code
|
|
2160
|
+
});
|
|
2161
|
+
}
|
|
1908
2162
|
function getCommentHistoryQueryOptions(author, permlink, onlyMeta = false) {
|
|
1909
2163
|
return queryOptions({
|
|
1910
2164
|
queryKey: ["posts", "comment-history", author, permlink, onlyMeta],
|
|
@@ -3111,7 +3365,16 @@ var mutations_exports = {};
|
|
|
3111
3365
|
__export(mutations_exports, {
|
|
3112
3366
|
useRecordActivity: () => useRecordActivity
|
|
3113
3367
|
});
|
|
3114
|
-
function
|
|
3368
|
+
function getLocationInfo() {
|
|
3369
|
+
if (typeof window !== "undefined" && window.location) {
|
|
3370
|
+
return {
|
|
3371
|
+
url: window.location.href,
|
|
3372
|
+
domain: window.location.host
|
|
3373
|
+
};
|
|
3374
|
+
}
|
|
3375
|
+
return { url: "", domain: "" };
|
|
3376
|
+
}
|
|
3377
|
+
function useRecordActivity(username, activityType, options) {
|
|
3115
3378
|
return useMutation({
|
|
3116
3379
|
mutationKey: ["analytics", activityType],
|
|
3117
3380
|
mutationFn: async () => {
|
|
@@ -3119,6 +3382,9 @@ function useRecordActivity(username, activityType) {
|
|
|
3119
3382
|
throw new Error("[SDK][Analytics] \u2013 no activity type provided");
|
|
3120
3383
|
}
|
|
3121
3384
|
const fetchApi = getBoundFetch();
|
|
3385
|
+
const locationInfo = getLocationInfo();
|
|
3386
|
+
const url = options?.url ?? locationInfo.url;
|
|
3387
|
+
const domain = options?.domain ?? locationInfo.domain;
|
|
3122
3388
|
await fetchApi(CONFIG.plausibleHost + "/api/event", {
|
|
3123
3389
|
method: "POST",
|
|
3124
3390
|
headers: {
|
|
@@ -3126,8 +3392,8 @@ function useRecordActivity(username, activityType) {
|
|
|
3126
3392
|
},
|
|
3127
3393
|
body: JSON.stringify({
|
|
3128
3394
|
name: activityType,
|
|
3129
|
-
url
|
|
3130
|
-
domain
|
|
3395
|
+
url,
|
|
3396
|
+
domain,
|
|
3131
3397
|
props: {
|
|
3132
3398
|
username
|
|
3133
3399
|
}
|
|
@@ -3714,7 +3980,7 @@ var NotificationViewType = /* @__PURE__ */ ((NotificationViewType2) => {
|
|
|
3714
3980
|
})(NotificationViewType || {});
|
|
3715
3981
|
|
|
3716
3982
|
// src/modules/notifications/queries/get-notifications-settings-query-options.ts
|
|
3717
|
-
function getNotificationsSettingsQueryOptions(activeUsername, code) {
|
|
3983
|
+
function getNotificationsSettingsQueryOptions(activeUsername, code, initialMuted) {
|
|
3718
3984
|
return queryOptions({
|
|
3719
3985
|
queryKey: ["notifications", "settings", activeUsername],
|
|
3720
3986
|
queryFn: async () => {
|
|
@@ -3744,12 +4010,11 @@ function getNotificationsSettingsQueryOptions(activeUsername, code) {
|
|
|
3744
4010
|
enabled: !!activeUsername && !!code,
|
|
3745
4011
|
refetchOnMount: false,
|
|
3746
4012
|
initialData: () => {
|
|
3747
|
-
const wasMutedPreviously = typeof window !== "undefined" ? localStorage.getItem("notifications") !== "true" : false;
|
|
3748
4013
|
return {
|
|
3749
4014
|
status: 0,
|
|
3750
4015
|
system: "web",
|
|
3751
4016
|
allows_notify: 0,
|
|
3752
|
-
notify_types:
|
|
4017
|
+
notify_types: initialMuted ? [] : [
|
|
3753
4018
|
4 /* COMMENT */,
|
|
3754
4019
|
3 /* FOLLOW */,
|
|
3755
4020
|
2 /* MENTION */,
|
|
@@ -5138,6 +5403,6 @@ async function getSpkMarkets() {
|
|
|
5138
5403
|
return await response.json();
|
|
5139
5404
|
}
|
|
5140
5405
|
|
|
5141
|
-
export { ACCOUNT_OPERATION_GROUPS, ALL_ACCOUNT_OPERATIONS, ALL_NOTIFY_TYPES, CONFIG, ConfigManager, mutations_exports as EcencyAnalytics, EcencyQueriesManager, HiveSignerIntegration, NaiMap, NotificationFilter, NotificationViewType, NotifyTypes, ROLES, SortOrder, Symbol2 as Symbol, ThreeSpeakIntegration, addDraft, addImage, addSchedule, bridgeApiCall, broadcastJson, buildProfileMetadata, checkUsernameWalletsPendingQueryOptions, decodeObj, dedupeAndSortKeyAuths, deleteDraft, deleteImage, deleteSchedule, downVotingPower, encodeObj, extractAccountProfile, 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, getHiveEngineMetrics, getHiveEngineOpenOrders, getHiveEngineOrderBook, getHiveEngineTokenMetrics, getHiveEngineTokenTransactions, getHiveEngineTokensBalances, getHiveEngineTokensMarket, getHiveEngineTokensMetadata, getHiveEngineTradeHistory, getHiveEngineUnclaimedRewards, getHiveHbdStatsQueryOptions, getHivePoshLinksQueryOptions, getHivePrice, getImagesQueryOptions, getIncomingRcQueryOptions, getMarketData, getMarketDataQueryOptions, getMarketHistoryQueryOptions, getMarketStatisticsQueryOptions, getMutedUsersQueryOptions, getNormalizePostQueryOptions, getNotificationSetting, getNotifications, getNotificationsInfiniteQueryOptions, getNotificationsSettingsQueryOptions, getNotificationsUnreadCountQueryOptions, getOpenOrdersQueryOptions, getOrderBookQueryOptions, getOutgoingRcDelegationsInfiniteQueryOptions, getPageStatsQueryOptions, getPointsQueryOptions, getPost, getPostHeader, getPostHeaderQueryOptions, getPostQueryOptions, getPostTipsQueryOptions, getPostsRanked, getPostsRankedInfiniteQueryOptions, getPostsRankedQueryOptions, getProfiles, getProfilesQueryOptions, getPromotePriceQueryOptions, getPromotedPost, getPromotedPostsQuery, getProposalQueryOptions, getProposalVotesInfiniteQueryOptions, getProposalsQueryOptions, getQueryClient, getRcStatsQueryOptions, getReblogsQueryOptions, getReceivedVestingSharesQueryOptions, getReferralsInfiniteQueryOptions, getReferralsStatsQueryOptions, getRelationshipBetweenAccounts, getRelationshipBetweenAccountsQueryOptions, getRewardedCommunitiesQueryOptions, getSavingsWithdrawFromQueryOptions, getSchedulesQueryOptions, getSearchAccountQueryOptions, getSearchAccountsByUsernameQueryOptions, getSearchApiInfiniteQueryOptions, getSearchFriendsQueryOptions, getSearchPathQueryOptions, getSearchTopicsQueryOptions, getSimilarEntriesQueryOptions, getSpkMarkets, getSpkWallet, getStatsQueryOptions, getSubscribers, getSubscriptions, getTradeHistoryQueryOptions, getTransactionsInfiniteQueryOptions, getTrendingTagsQueryOptions, getTrendingTagsWithStatsQueryOptions, 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 };
|
|
5406
|
+
export { ACCOUNT_OPERATION_GROUPS, ALL_ACCOUNT_OPERATIONS, ALL_NOTIFY_TYPES, CONFIG, ConfigManager, mutations_exports as EcencyAnalytics, EcencyQueriesManager, HiveSignerIntegration, NaiMap, NotificationFilter, NotificationViewType, NotifyTypes, ROLES, SortOrder, Symbol2 as Symbol, ThreeSpeakIntegration, addDraft, addImage, addSchedule, bridgeApiCall, broadcastJson, buildProfileMetadata, checkUsernameWalletsPendingQueryOptions, decodeObj, dedupeAndSortKeyAuths, deleteDraft, deleteImage, deleteSchedule, downVotingPower, encodeObj, extractAccountProfile, getAccountFullQueryOptions, getAccountNotificationsInfiniteQueryOptions, getAccountPendingRecoveryQueryOptions, getAccountPosts, getAccountPostsInfiniteQueryOptions, getAccountPostsQueryOptions, getAccountRcQueryOptions, getAccountRecoveriesQueryOptions, getAccountReputationsQueryOptions, getAccountSubscriptionsQueryOptions, getAccountVoteHistoryInfiniteQueryOptions, getAccountsQueryOptions, getActiveAccountBookmarksInfiniteQueryOptions, getActiveAccountBookmarksQueryOptions, getActiveAccountFavouritesInfiniteQueryOptions, 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, getDraftsInfiniteQueryOptions, getDraftsQueryOptions, getDynamicPropsQueryOptions, getEntryActiveVotesQueryOptions, getFollowCountQueryOptions, getFollowingQueryOptions, getFragmentsInfiniteQueryOptions, getFragmentsQueryOptions, getFriendsInfiniteQueryOptions, getGalleryImagesQueryOptions, getGameStatusCheckQueryOptions, getHiveEngineMetrics, getHiveEngineOpenOrders, getHiveEngineOrderBook, getHiveEngineTokenMetrics, getHiveEngineTokenTransactions, getHiveEngineTokensBalances, getHiveEngineTokensMarket, getHiveEngineTokensMetadata, getHiveEngineTradeHistory, getHiveEngineUnclaimedRewards, getHiveHbdStatsQueryOptions, getHivePoshLinksQueryOptions, getHivePrice, getImagesInfiniteQueryOptions, getImagesQueryOptions, getIncomingRcQueryOptions, getMarketData, getMarketDataQueryOptions, getMarketHistoryQueryOptions, getMarketStatisticsQueryOptions, getMutedUsersQueryOptions, getNormalizePostQueryOptions, getNotificationSetting, getNotifications, getNotificationsInfiniteQueryOptions, getNotificationsSettingsQueryOptions, getNotificationsUnreadCountQueryOptions, getOpenOrdersQueryOptions, getOrderBookQueryOptions, getOutgoingRcDelegationsInfiniteQueryOptions, getPageStatsQueryOptions, getPointsQueryOptions, getPost, getPostHeader, getPostHeaderQueryOptions, getPostQueryOptions, getPostTipsQueryOptions, getPostsRanked, getPostsRankedInfiniteQueryOptions, getPostsRankedQueryOptions, getProfiles, getProfilesQueryOptions, getPromotePriceQueryOptions, getPromotedPost, getPromotedPostsQuery, getProposalQueryOptions, getProposalVotesInfiniteQueryOptions, getProposalsQueryOptions, getQueryClient, getRcStatsQueryOptions, getReblogsQueryOptions, getReceivedVestingSharesQueryOptions, getReferralsInfiniteQueryOptions, getReferralsStatsQueryOptions, getRelationshipBetweenAccounts, getRelationshipBetweenAccountsQueryOptions, getRewardedCommunitiesQueryOptions, getSavingsWithdrawFromQueryOptions, getSchedulesInfiniteQueryOptions, getSchedulesQueryOptions, getSearchAccountQueryOptions, getSearchAccountsByUsernameQueryOptions, getSearchApiInfiniteQueryOptions, getSearchFriendsQueryOptions, getSearchPathQueryOptions, getSearchTopicsQueryOptions, getSimilarEntriesQueryOptions, getSpkMarkets, getSpkWallet, getStatsQueryOptions, getSubscribers, getSubscriptions, getTradeHistoryQueryOptions, getTransactionsInfiniteQueryOptions, getTrendingTagsQueryOptions, getTrendingTagsWithStatsQueryOptions, 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 };
|
|
5142
5407
|
//# sourceMappingURL=index.js.map
|
|
5143
5408
|
//# sourceMappingURL=index.js.map
|