change give provider to a single value

This commit is contained in:
2024-09-30 18:33:15 -06:00
parent 9925800fbd
commit 1fccf0fa92
2 changed files with 3 additions and 4 deletions

View File

@@ -142,7 +142,7 @@ export interface GiveVerifiableCredential extends GenericVerifiableCredential {
identifier?: string;
image?: string;
object?: { amountOfThisGood: number; unitCode: string };
provider?: Array<GenericVerifiableCredential>; // typically @type & identifier
provider?: GenericVerifiableCredential; // typically @type & identifier
recipient?: { identifier: string };
}
@@ -654,7 +654,7 @@ export function hydrateGive(
vcClaim.image = imageUrl || undefined;
vcClaim.provider = providerPlanHandleId
? [{ "@type": "PlanAction", identifier: providerPlanHandleId }]
? { "@type": "PlanAction", identifier: providerPlanHandleId }
: undefined;
return vcClaim;

View File

@@ -362,8 +362,7 @@ export default class QuickActionBvcBeginView extends Vue {
query: {
description: this.description,
destinationPathAfter: "/",
providerProjectId:
"https://endorser.ch/entity/01J8XW5SE5NJZ34TQCC10FC18B", //BVC_MEETUPS_PROJECT_CLAIM_ID,
providerProjectId: BVC_MEETUPS_PROJECT_CLAIM_ID,
recipientDid: this.activeDid,
},
});