UNPKG

@pfantato/printful-ts

Version:

Typescript SDK to integrate with Printful

11 lines (10 loc) 295 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ExternalIdParam = void 0; const zod_1 = require("zod"); exports.ExternalIdParam = zod_1.z .string() .regex(/^@.*$/, { message: "External Order ID must start with '@'", }) .or(zod_1.z.number());