@pfantato/printful-ts
Version:
Typescript SDK to integrate with Printful
19 lines (18 loc) • 445 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Technique = exports.TechniqueKey = void 0;
const zod_1 = require("zod");
exports.TechniqueKey = zod_1.z.enum([
'dtg',
'digital',
'cut-sew',
'uv',
'embroidery',
'sublimation',
'dtfilm',
]);
exports.Technique = zod_1.z.object({
key: exports.TechniqueKey,
display_name: zod_1.z.string(),
is_default: zod_1.z.boolean(),
});