@pfantato/printful-ts
Version:
Typescript SDK to integrate with Printful
10 lines (9 loc) • 320 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.WithStoreId = exports.StoreId = void 0;
const zod_1 = require("zod");
exports.StoreId = zod_1.z.number().optional();
const WithStoreId = (schema) => schema.extend({
store_id: exports.StoreId,
});
exports.WithStoreId = WithStoreId;