@dokploy/trpc-openapi 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -397,7 +397,6 @@ const postsRouter = t.router({
397
397
  .output(z.null())
398
398
  .mutation(({ input, ctx }) => {
399
399
  const post = database.posts.find((_post) => _post.id === input.id);
400
- console.log(post);
401
400
  if (!post) {
402
401
  throw new TRPCError({
403
402
  message: "Post not found",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dokploy/trpc-openapi",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "tRPC OpenAPI",
5
5
  "author": "Mauricio Siu <siumauricio@hotmail.com>",
6
6
  "private": false,