Make products table more consistent with other tables

This commit is contained in:
Dominic Ferrando
2026-07-17 15:41:04 -04:00
parent fdbfbb125d
commit 25d8f549ec
7 changed files with 171 additions and 115 deletions
+9
View File
@@ -9,6 +9,15 @@ import zipcodesUs from "zipcodes-us";
import { secToMs } from "@blade-and-brawn/domain";
import { EventsService } from "./events";
export const WOrderStatusSchema = t.Union([
t.Literal("pending"),
t.Literal("unfulfilled"),
t.Literal("fulfilled"),
t.Literal("disputed"),
t.Literal("dispute-lost"),
t.Literal("refunded"),
]);
export class CommerceService {
readonly Printful = new PrintfulClient({
token: env.PRINTFUL_AUTH,