feat: Add Draft Order plugin (#13291)

* feat: Add draft order plugin

* version draft order plugin

* update readme

* chore: Update scripts

* Create purple-dolls-cheer.md

* port over latest changes

* chore: Make package public
This commit is contained in:
Oli Juhl
2025-08-27 10:14:17 +02:00
committed by GitHub
parent 7c96bc4376
commit a0fca16570
93 changed files with 14526 additions and 4 deletions

View File

@@ -0,0 +1,14 @@
import { z } from "zod"
export const addressSchema = z.object({
country_code: z.string().min(1),
first_name: z.string().min(1),
last_name: z.string().min(1),
address_1: z.string().min(1),
address_2: z.string().optional(),
company: z.string().optional(),
city: z.string().min(1),
province: z.string().optional(),
postal_code: z.string().min(1),
phone: z.string().optional(),
})