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.js
15 lines
(14 loc)
•
299 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
OrderStatus
=
void
0
;
const
zod_1 =
require
(
"zod"
);
exports
.
OrderStatus
= zod_1.
z
.
enum
([
'draft'
,
'failed'
,
'pending'
,
'canceled'
,
'onhold'
,
'inprocess'
,
'partial'
,
'fulfilled'
, ]);