Skip to content

v0.2.1

Choose a tag to compare

@decker-dev decker-dev released this 08 Oct 13:32
· 774 commits to main since this release

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 taxStatus changed from TAXED to NOT_APPLICABLE