dfh-ui-library 1.12.1 → 1.12.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -720,9 +720,10 @@ export interface TimelineEventProps {
720
720
  export interface IVariant {
721
721
  pdfMetaData?: PDFMeta;
722
722
  referralData?: ReferralMeta;
723
+ solutionVariantName?: string;
723
724
  }
724
725
  export interface PDFMeta {
725
- resourceLink: string;
726
+ resourceLink?: string;
726
727
  }
727
728
  export interface ReferralMeta {
728
729
  email: string;
@@ -800,8 +801,8 @@ export interface SignatureProps {
800
801
  }
801
802
  export interface SolutionItem {
802
803
  solution: ISolutionvalues;
803
- _id: string;
804
- createdDate: string;
804
+ _id?: string;
805
+ createdDate?: string;
805
806
  note?: NoteProps;
806
807
  variant?: IVariant;
807
808
  }