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
/
common
/
sort.schemas.js
7 lines
(6 loc)
•
300 B
JavaScript
View Raw
1
2
3
4
5
6
7
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
SortType
=
exports
.
SortDirection
=
void
0
;
const
zod_1 =
require
(
"zod"
);
exports
.
SortDirection
= zod_1.
z
.
enum
([
'ascending'
,
'descending'
]);
exports
.
SortType
= zod_1.
z
.
enum
([
'new'
,
'rating'
,
'price'
,
'bestseller'
]);