Tom Sherman
Tom Sherman
The docs mention forking as the way to add custom plugins. Has you considered publishing conductor as a crate so that custom plugins can be configured that way? It seems...
# Feature Request ## Description Allow me to render async components so that I can compose data loading like with server components. ## Additional Context This will allow me to...
## Summary https://stackblitz.com/edit/vitejs-vite-kbccdh?file=src%2FApp.tsx ```tsx import { use, useState } from 'react'; export default function App() { const [p] = useState(() => new Promise((res) => setTimeout(res, 500))); use(p); return 'hello!'; }...
Version: v0.0.0-20241004163428-2e5d3d7efe62 ``` goat record create record.json ``` record.json: ```json { "collection": "app.bsky.feed.post", "repo": "did:plc:2xau7wbgdq4phuou2ypwuen7", "record": { "text": "test", "langs": ["en"], "createdAt": "2024-01-01T10:21:30.965Z", "$type": "app.bsky.feed.post" } } ``` Expected: record...
The goal here is mainly to reduce cache reads. All of the reads that I'm reducing should be happening in parallel pretty much (either via `.map()` or suspense or both....
**Is your feature request related to a problem? Please describe.** The PDS packages makes many assumptions about it's execution environment: - Node.js runtime (eg. req/res) and standard library - Redis...
**Describe the bug** Methods like `create` that accept an `InputSchema` lose their type safety and accept any object value. **To Reproduce** Steps to reproduce the behavior: ```ts client.app.bsky.feed.post.create( // @ts-expect-error...