forked from jsnbuchanan/crowd-funder-for-time-pwa
- Update import path for GiveRecordWithContactInfo to use relative path - Add --host flag to dev script for network access during development
26 lines
587 B
TypeScript
26 lines
587 B
TypeScript
import { GiveSummaryRecord, GiveVerifiableCredential } from "../interfaces";
|
|
|
|
export interface GiveRecordWithContactInfo extends GiveSummaryRecord {
|
|
jwtId: string;
|
|
fullClaim: GiveVerifiableCredential;
|
|
giver: {
|
|
known: boolean;
|
|
displayName: string;
|
|
profileImageUrl?: string;
|
|
};
|
|
issuer: {
|
|
known: boolean;
|
|
displayName: string;
|
|
profileImageUrl?: string;
|
|
};
|
|
receiver: {
|
|
known: boolean;
|
|
displayName: string;
|
|
profileImageUrl?: string;
|
|
};
|
|
providerPlanName?: string;
|
|
recipientProjectName?: string;
|
|
description: string;
|
|
image?: string;
|
|
}
|