mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-03-29 21:33:54 +00:00
OpenCode Black
This commit is contained in:
parent
3049ac576a
commit
5fc4472921
@ -97,6 +97,19 @@ export const stripeWebhook = new stripe.WebhookEndpoint("StripeWebhookEndpoint",
|
|||||||
],
|
],
|
||||||
})
|
})
|
||||||
|
|
||||||
|
const zenProduct = new stripe.Product("ZenBlack", {
|
||||||
|
name: "OpenCode Black",
|
||||||
|
})
|
||||||
|
const zenPrice = new stripe.Price("ZenBlackPrice", {
|
||||||
|
product: zenProduct.id,
|
||||||
|
unitAmount: 20000,
|
||||||
|
currency: "usd",
|
||||||
|
recurring: {
|
||||||
|
interval: "month",
|
||||||
|
intervalCount: 1,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
const ZEN_MODELS = [
|
const ZEN_MODELS = [
|
||||||
new sst.Secret("ZEN_MODELS1"),
|
new sst.Secret("ZEN_MODELS1"),
|
||||||
new sst.Secret("ZEN_MODELS2"),
|
new sst.Secret("ZEN_MODELS2"),
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user