@pfantato/printful-ts
Version:
Typescript SDK to integrate with Printful
12 lines (11 loc) • 408 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CatalogOption = void 0;
const zod_1 = require("zod");
const technique_schema_1 = require("./technique.schema");
exports.CatalogOption = zod_1.z.object({
name: zod_1.z.string(),
techniques: zod_1.z.array(technique_schema_1.TechniqueKey),
type: zod_1.z.string(),
values: zod_1.z.array(zod_1.z.unknown()),
});