@pfantato/printful-ts
Version:
Typescript SDK to integrate with Printful
12 lines (11 loc) • 366 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PrintfulResponseError = void 0;
const zod_1 = require("zod");
exports.PrintfulResponseError = zod_1.z.object({
type: zod_1.z.string().url(),
status: zod_1.z.number(),
title: zod_1.z.string(),
detail: zod_1.z.string(),
instance: zod_1.z.string().optional(),
});