@fabrix/spool-cart
Version:
Spool - eCommerce Spool for Fabrix
87 lines (86 loc) • 1.96 kB
TypeScript
import { FabrixModel as Model } from '@fabrix/fabrix/dist/common';
import { SequelizeResolver } from '@fabrix/spool-sequelize';
export declare class OrderUploadResolver extends SequelizeResolver {
batch(options: any, batch: any): any;
}
export declare class OrderUpload extends Model {
static readonly resolver: typeof OrderUploadResolver;
static config(app: any, Sequelize: any): {
options: {
underscored: boolean;
};
};
static schema(app: any, Sequelize: any): {
upload_id: {
type: any;
};
customer: {
type: any;
};
email: {
type: any;
};
status: {
type: any;
};
order_items: {
type: any;
defaultValue: any[];
};
shipping_address_1: {
type: any;
};
shipping_address_2: {
type: any;
};
shipping_address_3: {
type: any;
};
shipping_company: {
type: any;
};
shipping_city: {
type: any;
};
shipping_province: {
type: any;
};
shipping_country: {
type: any;
};
shipping_postal_code: {
type: any;
};
billing_address_1: {
type: any;
};
billing_address_2: {
type: any;
};
billing_address_3: {
type: any;
};
billing_company: {
type: any;
};
billing_city: {
type: any;
};
billing_province: {
type: any;
};
billing_country: {
type: any;
};
billing_postal_code: {
type: any;
};
tags: {
type: any;
defaultValue: any[];
};
note: {
type: any;
};
};
}