Fix monthly price if billed annually for AI Assist (#25297)

* Fix monthly price if billed annually for AI Assist

* update script

* show annual price

* fix formatting

GitOrigin-RevId: e50493fa2176e6c8acb476a01a393eb940a3f1a2
This commit is contained in:
Domagoj Kriskovic
2025-05-13 08:06:39 +00:00
committed by Copybot
parent c1f3758aa2
commit b99a81cb25
5 changed files with 16 additions and 2 deletions
@@ -37,6 +37,8 @@ async function main() {
localizedAddOnsPricing[currency] = { [ADD_ON_CODE]: {} }
}
localizedAddOnsPricing[currency][ADD_ON_CODE].annual = unitAmount
localizedAddOnsPricing[currency][ADD_ON_CODE].annualDividedByTwelve =
(unitAmount || 0) / 12
}
console.log(JSON.stringify({ localizedAddOnsPricing }, null, 2))