Skip to content

Commit 5a002d3

Browse files
authored
Update @convex-dev/eslint-plugin (#923)
1 parent 7c7695f commit 5a002d3

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

convex/dev.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ export const deleteFromTable = internalMutation({
1515
});
1616

1717
export const clearAll = internalAction({
18+
args: {},
1819
handler: async (ctx) => {
1920
// Get all table names from the schema
2021
const tableNames = Object.keys(schema.tables);

convex/openaiProxy.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ export const openaiProxy = httpAction(async (ctx, req) => {
9999
});
100100

101101
export const issueOpenAIToken = mutation({
102+
args: {},
102103
handler: async (ctx) => {
103104
if (!openaiProxyEnabled()) {
104105
return null;

convex/resendProxy.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ export const decrementToken = internalMutation({
130130
});
131131

132132
export const issueResendToken = mutation({
133+
args: {},
133134
handler: async (ctx) => {
134135
if (!resendProxyEnabled()) {
135136
return null;

convex/sessions.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,7 @@ async function getOrCreateCurrentMember(ctx: MutationCtx) {
192192
}
193193

194194
export const convexMemberId = query({
195+
args: {},
195196
handler: async (ctx) => {
196197
const identity = await ctx.auth.getUserIdentity();
197198
if (!identity) {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"@codemirror/view": "^6.35.0",
6060
"@convex-dev/ai-sdk-google": "1.2.17",
6161
"@convex-dev/design-system": "0.1.11",
62-
"@convex-dev/eslint-plugin": "0.0.1-alpha.4",
62+
"@convex-dev/eslint-plugin": "^1.0.0",
6363
"@convex-dev/migrations": "^0.2.8",
6464
"@convex-dev/rate-limiter": "^0.2.9",
6565
"@convex-dev/workos": "^0.0.1",

pnpm-lock.yaml

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

0 commit comments

Comments
 (0)