feat: add first cut at emojis in feed (incomplete because it doesn't detect user's emojis correctly)
This commit is contained in:
@@ -80,7 +80,7 @@ export interface UserInfo {
|
||||
}
|
||||
|
||||
export interface CreateAndSubmitClaimResult {
|
||||
success: boolean;
|
||||
success: boolean | { embeddedRecordError?: string; claimId?: string };
|
||||
error?: string;
|
||||
handleId?: string;
|
||||
}
|
||||
|
||||
@@ -9,6 +9,7 @@ export interface GiveSummaryRecord {
|
||||
amount: number;
|
||||
amountConfirmed: number;
|
||||
description: string;
|
||||
emojiCount: Record<string, number>; // Map of emoji character to count
|
||||
fullClaim: GiveActionClaim;
|
||||
fulfillsHandleId: string;
|
||||
fulfillsPlanHandleId?: string;
|
||||
|
||||
Reference in New Issue
Block a user