UNPKG

bananas-commerce-admin

Version:

What's this, an admin for apes?

51 lines (46 loc) 978 B
export enum CustomerType { PRIVATE = "PRIVATE", COMPANY = "COMPANY", } export interface MemberList { id: number; number: number; customer_type: CustomerType; is_valid_customer: boolean; company_name: string; given_name: string; family_name: string; email: string; phone?: string; site_code: string; } export interface MemberDetail { id: number; number: number; customer_type: CustomerType; is_valid_customer: boolean; company_name: string; identification_number: string | null; given_name: string; family_name: string; email: string; phone: string; billing_address: BillingAddress; origin: string; site_code: string; locale: string; date_verified: string; date_created: string; } export interface BillingAddress { street_address: string; street_address2: string; postal_code: string; city: string; country_code: string; region: string; care_of: string; } export interface MemberCreated { id: number; }