@pfantato/printful-ts
Version:
Typescript SDK to integrate with Printful
46 lines (45 loc) • 976 B
TypeScript
import { z } from 'zod';
export declare const CatalogCategory: z.ZodObject<{
id: z.ZodNumber;
parent_id: z.ZodNullable<z.ZodNumber>;
image_url: z.ZodString;
title: z.ZodString;
_links: z.ZodObject<{
self: z.ZodObject<{
href: z.ZodString;
}, "strip", z.ZodTypeAny, {
href?: string;
}, {
href?: string;
}>;
}, "strip", z.ZodTypeAny, {
self?: {
href?: string;
};
}, {
self?: {
href?: string;
};
}>;
}, "strip", z.ZodTypeAny, {
title?: string;
id?: number;
parent_id?: number;
image_url?: string;
_links?: {
self?: {
href?: string;
};
};
}, {
title?: string;
id?: number;
parent_id?: number;
image_url?: string;
_links?: {
self?: {
href?: string;
};
};
}>;
export type CatalogCategory = z.infer<typeof CatalogCategory>;