v0.2.1
New Features
External ID Support - Link Commet customers with your internal user IDs:
const customer = await commet.customers.create({
legalName: "Acme Corp",
externalId: "user_12345"
})Optional Address - Create customers without address for progressive onboarding:
// Create immediately, add address later
const customer = await commet.customers.create({
legalName: "Acme Corp"
})Type-Safe Tax Configuration - TypeScript enforces address requirement when taxStatus: "TAXED"
Changes
- Default
taxStatuschanged fromTAXEDtoNOT_APPLICABLE