Files
worldmonitor/pro-test/tsconfig.json
Elie Habib 8fb8714ba6 refactor(payments): product catalog single source of truth + API annual + live IDs (#2649)
* fix(payments): add API Starter annual product, simplify /pro page

- Added API Starter Annual product ID (pdt_0Nbu2lawHYE3dv2THgSEV)
- API card now supports annual toggle matching Pro card
- Removed Enterprise and API Business from /pro page (not self-serve)
- Added api_starter_annual to entitlements and seedProductPlans
- Rebuilt /pro bundle

Requires npx convex deploy + seedProductPlans after merge.

* fix(pro): restore Enterprise card, fix API to 1,000 requests/day

Enterprise card back with "Contact Sales" mailto (no Dodo link, no
price). API Starter feature list corrected from 10,000 to 1,000
requests/day.

* refactor(payments): single source of truth product catalog

Canonical catalog in convex/config/productCatalog.ts owns all product
IDs, prices, features, and marketing copy. Build script generates
src/config/products.generated.ts and pro-test/src/generated/tiers.json.

To update prices: edit catalog, run generator, rebuild /pro, deploy Convex + seed.

* test(catalog): add bidirectional reverse assertions

- every currentForCheckout catalog entry must appear in products.generated.ts
- every publicVisible tier group must appear in tiers.json

* fix(payments): restore .unique() for productPlans lookup

Accidentally changed to .first() when adding legacy fallback. Duplicates
should fail loudly, not silently pick one row.

* fix(catalog): restore billing-distinct displayNames (Pro Monthly, API Starter Monthly)

displayName is used by seedProductPlans → billing UI. Collapsing to
marketing names ("Pro") lost the monthly/annual distinction. Tests
expect "Pro Monthly". Marketing /pro page unaffected (generator uses
tier group names).
2026-04-03 22:44:03 +04:00

28 lines
539 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"experimentalDecorators": true,
"useDefineForClassFields": false,
"module": "ESNext",
"lib": [
"ES2022",
"DOM",
"DOM.Iterable"
],
"skipLibCheck": true,
"moduleResolution": "bundler",
"isolatedModules": true,
"moduleDetection": "force",
"allowJs": true,
"jsx": "react-jsx",
"paths": {
"@/*": [
"./*"
]
},
"resolveJsonModule": true,
"allowImportingTsExtensions": true,
"noEmit": true
}
}