player-map 2.0.26 → 2.0.27
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/PlayerCreationProgress.d.ts +1 -0
- package/dist/api/fetchFollowsAndFollowers.d.ts +2 -1
- package/dist/api/fetchTriplesByTermIds.d.ts +1 -0
- package/dist/components/RightPanel.d.ts +10 -0
- package/dist/components/TopNavBar.d.ts +1 -1
- package/dist/components/graph/AtomDetailsSection.d.ts +1 -0
- package/dist/components/graph/ClaimActionRow.d.ts +14 -0
- package/dist/components/graph/ClaimsSection.d.ts +1 -0
- package/dist/components/graph/FollowButton.d.ts +13 -0
- package/dist/components/vote/TransactionStatus.d.ts +1 -0
- package/dist/hooks/useBatchCreateTriple.d.ts +5 -1
- package/dist/hooks/useFollowPlayer.d.ts +22 -0
- package/dist/hooks/useOtherPlayerProfile.d.ts +20 -0
- package/dist/hooks/useVoteItemsManagement.d.ts +6 -2
- package/dist/index.es.js +15985 -15080
- package/dist/index.umd.js +523 -406
- package/dist/types/alias.d.ts +1 -1
- package/dist/types/vote.d.ts +3 -0
- package/dist/utils/constants.d.ts +2 -1
- package/package.json +1 -1
package/dist/types/alias.d.ts
CHANGED
|
@@ -30,7 +30,7 @@ export interface InitItem {
|
|
|
30
30
|
type: 'atom' | 'triple' | 'nested-triple';
|
|
31
31
|
label: string;
|
|
32
32
|
description: string;
|
|
33
|
-
status: 'existing' | 'to-create' | 'creating' | 'created' | 'error';
|
|
33
|
+
status: 'existing' | 'to-create' | 'creating' | 'created' | 'error' | 'to-deposit' | 'depositing' | 'deposited';
|
|
34
34
|
subjectId?: string;
|
|
35
35
|
predicateId?: string;
|
|
36
36
|
objectId?: string;
|
package/dist/types/vote.d.ts
CHANGED
|
@@ -18,6 +18,9 @@ export interface VoteItem extends Claim {
|
|
|
18
18
|
counter_term_position_count?: number;
|
|
19
19
|
userHasPosition?: boolean;
|
|
20
20
|
userPositionDirection?: VoteDirection;
|
|
21
|
+
userPositionTermId?: string;
|
|
22
|
+
userShares?: bigint;
|
|
23
|
+
userCurveId?: bigint;
|
|
21
24
|
subject_image?: string | null;
|
|
22
25
|
object_image?: string | null;
|
|
23
26
|
}
|
|
@@ -9,7 +9,7 @@ export declare const PREDICATES: {
|
|
|
9
9
|
readonly IS_MEMBER_OF: "0xe489948c4bd4fa6f50f402434996b90942ab67585a71c71d81dff8e624f661d4";
|
|
10
10
|
readonly IN: "0xb0d3de9abeebc79e74504814f69d38eae809410c9759678855f79d1b4c7405cb";
|
|
11
11
|
readonly ACCEPTED: "0x69b32b0ec575de94fea50d8ed84f198d46ab1590b6ec10d6527a1cc93c2c2dc1";
|
|
12
|
-
readonly FOLLOWS: "
|
|
12
|
+
readonly FOLLOWS: "0xffd07650dc7ab341184362461ebf52144bf8bcac5a19ef714571de15f1319260";
|
|
13
13
|
readonly CREATED_BY: "0xf08c4615f44c4700519ec874b6d72e4bd990beea9fc301325c91b650784ee971";
|
|
14
14
|
};
|
|
15
15
|
/**
|
|
@@ -19,5 +19,6 @@ export declare const PREDICATES: {
|
|
|
19
19
|
*/
|
|
20
20
|
export declare const ATOMS: {
|
|
21
21
|
readonly FAIRPLAY: "0xe8c70540064241818928054f9d655b79a9fc06fad93967db766347d9ed678795";
|
|
22
|
+
readonly I: "0x7ab197b346d386cd5926dbfeeb85dade42f113c7ed99ff2046a5123bb5cd016b";
|
|
22
23
|
};
|
|
23
24
|
export declare const UNIT_VALUE = 10000000000000000n;
|