Skip to content

Commit b4a22d2

Browse files
Merge branch 'dev' into fix-env-caching-12698
2 parents 044bfc8 + 61eabfc commit b4a22d2

118 files changed

Lines changed: 5032 additions & 1085 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/VOUCHED.td

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@ adamdotdevin
1212
ariane-emory
1313
-atharvau AI review spamming literally every PR
1414
-borealbytes
15+
-carycooper777
1516
-danieljoshuanazareth
1617
-danieljoshuanazareth
18+
-davidbernat looks to be a clawdbot that spams team and sends super weird emails, doesnt appear to be a real person
1719
edemaine
1820
-florianleibert
1921
fwang
@@ -33,4 +35,3 @@ simonklee
3335
-spider-yamet clawdbot/llm psychosis, spam pinging the team
3436
thdxr
3537
-toastythebot
36-
-davidbernat looks to be a clawdbot that spams team and sends super weird emails, doesnt appear to be a real person

bun.lock

Lines changed: 28 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

infra/console.ts

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,27 @@ const zenLiteCouponFirstMonth100 = new stripe.Coupon("ZenLiteCouponFirstMonth100
115115
appliesToProducts: [zenLiteProduct.id],
116116
duration: "once",
117117
})
118+
const zenLiteCouponThreeMonths100 = new stripe.Coupon("ZenLiteCoupon3Months100", {
119+
name: "3 months 100% off",
120+
percentOff: 100,
121+
appliesToProducts: [zenLiteProduct.id],
122+
duration: "repeating",
123+
durationInMonths: 3,
124+
})
125+
const zenLiteCouponSixMonths100 = new stripe.Coupon("ZenLiteCoupon6Months100", {
126+
name: "6 months 100% off",
127+
percentOff: 100,
128+
appliesToProducts: [zenLiteProduct.id],
129+
duration: "repeating",
130+
durationInMonths: 6,
131+
})
132+
const zenLiteCouponTwelveMonths100 = new stripe.Coupon("ZenLiteCoupon12Months100", {
133+
name: "12 months 100% off",
134+
percentOff: 100,
135+
appliesToProducts: [zenLiteProduct.id],
136+
duration: "repeating",
137+
durationInMonths: 12,
138+
})
118139
const zenLitePrice = new stripe.Price("ZenLitePrice", {
119140
product: zenLiteProduct.id,
120141
currency: "usd",
@@ -131,6 +152,9 @@ const ZEN_LITE_PRICE = new sst.Linkable("ZEN_LITE_PRICE", {
131152
priceInr: 92900,
132153
firstMonth50Coupon: zenLiteCouponFirstMonth50.id,
133154
firstMonth100Coupon: zenLiteCouponFirstMonth100.id,
155+
threeMonths100Coupon: zenLiteCouponThreeMonths100.id,
156+
sixMonths100Coupon: zenLiteCouponSixMonths100.id,
157+
twelveMonths100Coupon: zenLiteCouponTwelveMonths100.id,
134158
},
135159
})
136160

nix/hashes.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"nodeModules": {
3-
"x86_64-linux": "sha256-I5qF+zaPXIXlPWjI54XlsZ42E5EgUWbo74/ClaoJnNY=",
4-
"aarch64-linux": "sha256-2yqFliYylXy3Lnf95nO/enefCrmP8GOfqKjnstdaMu4=",
5-
"aarch64-darwin": "sha256-/Rk2Q6bPxOzD24HPQOe/EXlcEb7eGLGHi3P3iSqHaTU=",
6-
"x86_64-darwin": "sha256-sKyoY9Z7858S0KG/mDhuGZLR2P7AdK+zy0xUVEJ3bt0="
3+
"x86_64-linux": "sha256-U/LZx/D+5JTT1LHSyZkEuqXP/ky7LkHrEYBW5pcVArk=",
4+
"aarch64-linux": "sha256-nGZa04h4y3jbdmf87IRrlQm/E5qYR8lj5OxKgQSR2XU=",
5+
"aarch64-darwin": "sha256-GD8pCHWMBppDaIfRKxhY2m4xWo1OrY3wOmGw+EC71mw=",
6+
"x86_64-darwin": "sha256-KOH1ZB8pdpF7Xer6QIH7rrr9fwF/BZkCTJndPe0wypg="
77
}
88
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
"@types/cross-spawn": "6.0.6",
3535
"@octokit/rest": "22.0.0",
3636
"@hono/zod-validator": "0.4.2",
37-
"@opentui/core": "0.1.103",
38-
"@opentui/solid": "0.1.103",
37+
"@opentui/core": "0.1.105",
38+
"@opentui/solid": "0.1.105",
3939
"ulid": "3.0.1",
4040
"@kobalte/core": "0.13.11",
4141
"@types/luxon": "3.7.1",

packages/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opencode-ai/app",
3-
"version": "1.14.25",
3+
"version": "1.14.28",
44
"description": "",
55
"type": "module",
66
"exports": {

0 commit comments

Comments
 (0)