|
|
@@ -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 = [
|
|
|
new sst.Secret("ZEN_MODELS1"),
|
|
|
new sst.Secret("ZEN_MODELS2"),
|