UNPKG

@selldone/sdk-storefront

Version:

A TypeScript SDK to connect to your shop and build a fully functional storefront and website by simply developing a frontend web application. All backend operations are seamlessly managed by the serverless Selldone solution.

22 lines (21 loc) 468 B
export interface AgencyPlan { /** * Unique identifier for the client. */ id: number; /** * Identifier for the associated agency. */ agency_id: number; staff: number; domains: number; /** * Timestamp indicating when the entity was last updated. */ updated_at: string; /** * Timestamp indicating when the entity was created. */ created_at: string; } export declare namespace AgencyPlan { }