From 0b46c701cc7104d2ef07672657b0493b09319e59 Mon Sep 17 00:00:00 2001 From: sksadjad Date: Thu, 4 Jul 2024 10:29:32 +0200 Subject: [PATCH] feat: added branding as an optional parameter to the party --- packages/data-store/src/types/contact/contact.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/data-store/src/types/contact/contact.ts b/packages/data-store/src/types/contact/contact.ts index b8bd8aa28..be2e51252 100644 --- a/packages/data-store/src/types/contact/contact.ts +++ b/packages/data-store/src/types/contact/contact.ts @@ -1,4 +1,5 @@ import { IIdentifier } from '@veramo/core' +import {ILocaleBranding} from "../issuanceBranding/issuanceBranding"; export type MetadataTypes = string | number | Date | boolean | undefined @@ -13,6 +14,8 @@ export type Party = { physicalAddresses: Array contact: Contact partyType: PartyType + //todo: add logic for integrating branding in here. for now we're just using the type + branding?: ILocaleBranding relationships: Array createdAt: Date lastUpdatedAt: Date