@pfantato/printful-ts
Version:
Typescript SDK to integrate with Printful
19 lines (18 loc) • 492 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ProductOptions = exports.ProductOptionsName = void 0;
const zod_1 = require("zod");
exports.ProductOptionsName = zod_1.z.enum([
'inside_pocket',
'stitch_color',
'notes',
'lifelike',
'custom_border_color',
'base_color',
'trim_color',
'color_reduction_mode',
]);
exports.ProductOptions = zod_1.z.object({
name: exports.ProductOptionsName,
value: zod_1.z.boolean(),
});