@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.
86 lines (85 loc) • 1.72 kB
TypeScript
export declare const CustomersCsvHeaders: string[];
export declare const CustomersCsvStyler: {
Name: {
type: string;
required_product: boolean;
};
Email: {
type: string;
};
Phone: {
type: string;
};
Level: {
type: string;
list: ({
code: string;
name: string;
icon: string;
icon_outline: string;
} | {
code: string;
name: string;
icon: string;
icon_outline: string;
} | {
code: string;
name: string;
icon: string;
icon_outline: string;
} | {
code: string;
name: string;
icon: string;
icon_outline: string;
} | {
code: string;
name: string;
icon: string;
icon_outline: string;
})[];
nullable: boolean;
};
Segments: {
type: string;
};
Birthday: {
type: string;
};
Sex: {
type: string;
list: {
code: string;
name: string;
}[];
nullable: boolean;
};
Currency: {
type: string;
list: import("../../enums/payment/Currency").ICurrency[];
};
Country: {
type: string;
};
State: {
type: string;
};
City: {
type: string;
};
Address: {
type: string;
};
No: {
type: string;
};
Unit: {
type: string;
};
Postal: {
type: string;
};
};
export declare class CustomersCsvFormat {
static CheckValidFile(headers: string[]): boolean;
}