UNPKG

@vendasta/store

Version:

Components and data for Store

23 lines (22 loc) 634 B
import { Sellable } from '../shared/sellable'; import { AddonKey } from '@vendasta/marketplace-packages'; export declare class Package extends Sellable { solution_id: string; partner_id: string; market_id: string; name: string; icon: string; status: string; tagline: string; header_image_url: string; content: string; products: string[]; addon_keys: AddonKey[]; hide_product_icons_and_names: boolean; hide_product_details: boolean; createdDate: Date; updatedDate: Date; productOrder: string[]; static fromApi(data: any): Package; get isPackageFree(): boolean; }