fluent-convex 0.12.2 → 0.12.3

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.
Files changed (2) hide show
  1. package/README.md +0 -17
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -357,23 +357,6 @@ When a function calls other functions via `api.*` in the same file, and those fu
357
357
  2. Move the calling function to a separate file
358
358
  3. Use `internal.*` from a different module
359
359
 
360
- ## Documentation
361
-
362
- The **[live docs site](https://friendly-zebra-716.convex.site)** is an interactive showcase that demonstrates every feature with working live demos. The code snippets shown on the docs site are the actual source code powering the app -- imported via Vite `?raw` imports, so what you see is what runs.
363
-
364
- Sections:
365
- - [Getting Started](https://friendly-zebra-716.convex.site/) -- builder setup and overview
366
- - [Basics](https://friendly-zebra-716.convex.site/basics) -- queries, mutations, and the fluent chain
367
- - [Validation](https://friendly-zebra-716.convex.site/validation) -- property validators, object validators, and Zod schemas
368
- - [Middleware](https://friendly-zebra-716.convex.site/middleware) -- context-enrichment and onion middleware
369
- - [Reusable Chains](https://friendly-zebra-716.convex.site/reusable-chains) -- callable syntax and composability
370
- - [Zod Plugin](https://friendly-zebra-716.convex.site/zod-plugin) -- runtime refinement validation
371
- - [Custom Plugins](https://friendly-zebra-716.convex.site/custom-plugins) -- building your own plugins with `.extend()`
372
-
373
-
374
-
375
- The docs source lives in [`/apps/docs`](./apps/docs) and is auto-deployed on every push to `main`.
376
-
377
360
  ## Development
378
361
 
379
362
  This is a monorepo using npm workspaces:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fluent-convex",
3
- "version": "0.12.2",
3
+ "version": "0.12.3",
4
4
  "description": "A fluent API builder for Convex functions with middleware support, inspired by oRPC",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -44,6 +44,7 @@
44
44
  "publishConfig": {
45
45
  "access": "public"
46
46
  },
47
+ "homepage": "https://friendly-zebra-716.convex.site/",
47
48
  "repository": {
48
49
  "type": "git",
49
50
  "url": "git+https://github.com/mikecann/fluent-convex.git"