Source Intelligence

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

All of v2.0.2 Home All releases olderv2.0.1 v2.0.3newer
Claude Code v2.0.2

AWS Marketplace Billing Detection

What: Added support for detecting AWS Marketplace billing and restricting features accordingly

How it works:

  • The OAuth profile API now returns an organization.billing_type field
  • This value is stored as organizationBillingType in the user's config
  • When billing type is "aws_marketplace", certain features are restricted

Details:

  • AWS Marketplace customers are excluded from Opus model access, regardless of subscription tier
  • The VD() function at line 438734 implements the gating logic
  • Billing type is fetched from /api/oauth/profile and persisted across sessions
  • Evidence: Field extraction at pC0() at line 397362, feature gating at VD() at line 438734

Limitations: AWS Marketplace customers cannot select the Opus model even with Pro/Max/Enterprise subscriptions.

See this entry in the whole of v2.0.2 →