feat: add a notification for changes to starred projects

This commit is contained in:
2025-08-29 17:31:00 -06:00
parent da0621c09a
commit 24a7cf5eb6
6 changed files with 267 additions and 4 deletions

View File

@@ -1,4 +1,5 @@
import { GiveActionClaim, OfferClaim } from "./claims";
import { ClaimObject } from "./common";
// a summary record; the VC is found the fullClaim field
export interface GiveSummaryRecord {
@@ -61,6 +62,11 @@ export interface PlanSummaryRecord {
jwtId?: string;
}
export interface PlanSummaryAndPreviousClaim {
plan: PlanSummaryRecord;
wrappedClaimBefore: ClaimObject;
}
/**
* Represents data about a project
*