feat: add first cut at emojis in feed (incomplete because it doesn't detect user's emojis correctly)

This commit is contained in:
2025-10-18 17:18:02 -06:00
parent b0d13b3cd4
commit 9ac9f1d4a3
6 changed files with 226 additions and 15 deletions

View File

@@ -80,7 +80,7 @@ export interface UserInfo {
}
export interface CreateAndSubmitClaimResult {
success: boolean;
success: boolean | { embeddedRecordError?: string; claimId?: string };
error?: string;
handleId?: string;
}

View File

@@ -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;