randmarcomps 1.439.0 → 1.441.0

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.
@@ -584,6 +584,7 @@ declare interface IProps_2 {
584
584
  userEmail: string;
585
585
  isSuperAdmin: boolean;
586
586
  reseller?: Reseller;
587
+ withPromptButtons?: boolean;
587
588
  withoutReports?: boolean;
588
589
  }
589
590
 
@@ -625,12 +626,13 @@ declare interface ManufacturerGetStartedButtonProps {
625
626
  manufacturer: Manufacturer;
626
627
  }
627
628
 
628
- export declare function ManufacturerOverviewPage({ applicationId, readonly, withReports, manufacturer, userEmail, }: ManufacturerOverviewPageProps): JSX.Element;
629
+ export declare function ManufacturerOverviewPage({ applicationId, readonly, withReports, withPromptButtons, manufacturer, userEmail, }: ManufacturerOverviewPageProps): JSX.Element;
629
630
 
630
631
  declare interface ManufacturerOverviewPageProps {
631
632
  applicationId: string;
632
633
  readonly: boolean;
633
634
  withReports?: boolean;
635
+ withPromptButtons?: boolean;
634
636
  userEmail?: string;
635
637
  manufacturer?: Manufacturer;
636
638
  }
@@ -810,7 +812,7 @@ export declare interface ResellerCardProps {
810
812
  loading?: boolean;
811
813
  }
812
814
 
813
- export declare function ResellerOverview({ appID, reseller, readonly, userEmail, isSuperAdmin, withoutReports }: IProps_2): JSX.Element;
815
+ export declare function ResellerOverview({ appID, reseller, readonly, userEmail, isSuperAdmin, withPromptButtons, withoutReports }: IProps_2): JSX.Element;
814
816
 
815
817
  export declare function ResellerQualificationsCard({ qualifications, loading }: ResellerQualificationsCardProps): JSX.Element;
816
818