UNPKG
@pfantato/printful-ts
Version:
latest (0.0.1)
0.0.1
Typescript SDK to integrate with Printful
github.com/pfantato/printful-ts
pfantato/printful-ts
@pfantato/printful-ts
/
lib
/
schemas
/
entities
/
order-status.schema.d.ts
4 lines
(3 loc)
•
216 B
TypeScript
View Raw
1
2
3
4
import
{ z }
from
'zod'
;
export
declare
const
OrderStatus
: z.
ZodEnum
<[
"draft"
,
"failed"
,
"pending"
,
"canceled"
,
"onhold"
,
"inprocess"
,
"partial"
,
"fulfilled"
]>;
export
type
OrderStatus
= z.
infer
<
typeof
OrderStatus
>;