feat(api): redefine openapi for user
Some checks failed
Build and Push Docker Image / build (push) Failing after 39s

This commit is contained in:
Lars Hampe 2024-09-28 21:53:42 +02:00
parent 1276ca6938
commit d7c1b0525a
3 changed files with 37 additions and 29 deletions

View File

@ -1,4 +1,4 @@
import { db, user as userDb } from '@boring.tools/database'
import { db, user } from '@boring.tools/database'
import { UserOutput, UserWebhookInput } from '@boring.tools/schema'
import { createRoute, type z } from '@hono/zod-openapi'
import { HTTPException } from 'hono/http-exception'
@ -41,12 +41,12 @@ const userCreate = async ({
}
try {
await db
.insert(userDb)
.insert(user)
.values({
...data,
})
.onConflictDoUpdate({
target: userDb.id,
target: user.id,
set: data,
})

View File

@ -1,11 +1,9 @@
import { z } from '@hono/zod-openapi'
export const UserOutput = z
.object({
id: z.string().openapi({
example: 'user_2metCkqOhUhHN1jEhLyh8wMODu7',
}),
name: z.string(),
email: z.string().email(),
})
.openapi('User')
export const UserOutput = z.object({
id: z.string().openapi({
example: 'user_2metCkqOhUhHN1jEhLyh8wMODu7',
}),
name: z.string(),
email: z.string().email(),
})

View File

@ -1,20 +1,30 @@
import { z } from '@hono/zod-openapi'
export const UserWebhookInput = z.object({
data: z.object({
id: z.string(),
first_name: z.string(),
last_name: z.string(),
email_addresses: z.array(
z.object({
email_address: z.string(),
id: z.string(),
verification: z.object({
status: z.string(),
}),
export const UserWebhookInput = z
.object({
data: z.object({
id: z.string().openapi({
example: 'user_2metCkqOhUhHN1jEhLyh8wMODu7',
}),
),
image_url: z.string(),
}),
type: z.string(),
})
first_name: z.string().openapi({
example: 'Jane',
}),
last_name: z.string().openapi({
example: 'Doe',
}),
email_addresses: z.array(
z.object({
email_address: z.string().openapi({
example: 'jane@doe.com',
}),
}),
),
image_url: z.string().openapi({
example: 'https://example.com/image.png',
}),
}),
type: z.string().openapi({
examples: ['user.created', 'user.updated'],
}),
})
.openapi('User')