@fabrix/spool-cart
Version:
Spool - eCommerce Spool for Fabrix
23 lines (22 loc) • 678 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const joi = require("joi");
const address_1 = require("../address/address");
exports.shop = joi.object().keys({
address: address_1.address,
currency: joi.string(),
host: joi.string(),
handle: joi.string(),
name: joi.string(),
phone: joi.string(),
primary_locale: joi.string(),
email: joi.string(),
money_format: joi.string(),
money_with_currency_format: joi.string(),
tax_shipping: joi.string(),
taxes_included: joi.string(),
county_taxes: joi.string(),
timezone: joi.string(),
iana_timezone: joi.string(),
weight_unit: joi.string()
});