@pfantato/printful-ts
Version:
Typescript SDK to integrate with Printful
20 lines (19 loc) • 582 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Address = void 0;
const zod_1 = require("zod");
exports.Address = zod_1.z.object({
name: zod_1.z.string(),
company: zod_1.z.string(),
address1: zod_1.z.string(),
address2: zod_1.z.string(),
city: zod_1.z.string(),
state_code: zod_1.z.string(),
state_name: zod_1.z.string(),
country_code: zod_1.z.string(),
country_name: zod_1.z.string(),
zip: zod_1.z.string(),
phone: zod_1.z.string(),
email: zod_1.z.string(),
tax_number: zod_1.z.string(),
});