randmarcomps 1.574.0 → 1.576.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.
@@ -56,6 +56,11 @@ export declare const AccordionItem: React_2.ForwardRefExoticComponent<Omit<Accor
56
56
 
57
57
  export declare const AccordionTrigger: React_2.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionTriggerProps & React_2.RefAttributes<HTMLButtonElement>, "ref"> & React_2.RefAttributes<HTMLButtonElement>>;
58
58
 
59
+ declare type AccountWithShopifyStore = Account & {
60
+ HasShopifyStore?: boolean | null;
61
+ IsVendor?: boolean | null;
62
+ };
63
+
59
64
  export declare function ActiveOrdersCard({ orders, loading }: ActiveOrdersCardProps): JSX.Element;
60
65
 
61
66
  declare interface ActiveOrdersCardProps {
@@ -720,7 +725,7 @@ export declare interface PartnerActionsProps {
720
725
  export declare function PartnerCard({ account, action, loading, className, withAbout, withVoice }: PartnerCardProps): JSX.Element;
721
726
 
722
727
  declare interface PartnerCardProps {
723
- account?: Account;
728
+ account?: AccountWithShopifyStore;
724
729
  action?: ReactNode;
725
730
  loading?: boolean;
726
731
  className?: string;