;\r\n};\r\nexport default FeedPage;\r\n```\r\n\r\n### Additional information\r\n\r\nRelated PR: https://github.com/trpc/trpc/pull/2233\r\n\r\nReason I would like to do this is to use Next.js's ISR and fetch the feed on the server at some intervals.\r\n\r\n### 👨👧👦 Contributing\r\n\r\n- [ ] 🙋♂️ Yes, I'd be down to file a PR fixing this bug!",[],2440,"bug: server side calls not serializing non-json types","2022-10-04T00:18:19Z","https://github.com/trpc/trpc/issues/2440",0.66464716,{"description":3102,"labels":3103,"number":3105,"owner":3027,"repository":3027,"state":3046,"title":3106,"updated_at":3107,"url":3108,"score":3109},"### Provide environment information\r\n\r\n```\r\n System:\r\n OS: macOS 13.4\r\n CPU: (16) x64 Intel(R) Core(TM) i9-9980HK CPU @ 2.40GHz\r\n Memory: 2.55 GB / 32.00 GB\r\n Shell: 5.9 - /bin/zsh\r\n Binaries:\r\n Node: 16.19.1 - ~/Library/Caches/fnm_multishells/55125_1686318295579/bin/node\r\n npm: 8.19.3 - ~/Library/Caches/fnm_multishells/55125_1686318295579/bin/npm\r\n Browsers:\r\n Chrome: 114.0.5735.106\r\n Firefox: 113.0.2\r\n Safari: 16.5\r\n npmPackages:\r\n @tanstack/react-query: 4.29.12 => 4.29.12 \r\n @trpc/client: 10.29.1 => 10.29.1 \r\n @trpc/react-query: 10.29.1 => 10.29.1 \r\n @trpc/server: 10.29.1 => 10.29.1 \r\n react: 18.2.0 => 18.2.0 \r\n typescript: 5.1.3 => 5.1.3 \r\n```\r\n\r\n### Describe the bug\r\n\r\nSome kind of type conflict between `undici` `fetch` implementation and the latest `trpc` versions.\r\n\r\nEverything worked on v10.28.2. Breaking thereafter.\r\n\r\n\r\n\r\n### Link to reproduction\r\n\r\nhttps://stackblitz.com/edit/github-6ymtpz?file=src%2Fserver%2Ftrpc.ts\r\n\r\n### To reproduce\r\n\r\nSee stackblitz link for repro.\r\n\r\n### Additional information\r\n\r\n```\r\nArgument of type '(input: RequestInfo, init?: RequestInit | undefined) => Promise\u003CResponse>' is not assignable to parameter of type 'FetchEsque | NativeFetchEsque | undefined'.\r\n Type '(input: RequestInfo, init?: RequestInit | undefined) => Promise\u003CResponse>' is not assignable to type 'FetchEsque'.\r\n Types of parameters 'input' and 'input' are incompatible.\r\n Type 'RequestInfo | URL' is not assignable to type 'RequestInfo'.\r\n Type 'Request' is not assignable to type 'RequestInfo'.\r\n Property 'duplex' is missing in type 'Request' but required in type 'import(\"stackblitz:/node_modules/undici/types/fetch\").Request'.(2345)\r\n```\r\n\r\n### 👨👧👦 Contributing\r\n\r\n- [ ] 🙋♂️ Yes, I'd be down to file a PR fixing this bug!",[3104],{"name":3055,"color":3056},4504,"bug: Type 'Request' is not assignable to type 'RequestInfo', Property 'duplex' is missing in type 'Request'","2025-03-20T15:41:42Z","https://github.com/trpc/trpc/issues/4504",0.66941124,{"description":3111,"labels":3112,"number":3114,"owner":3027,"repository":3027,"state":3046,"title":3115,"updated_at":3116,"url":3117,"score":3118},"### Provide environment information\r\n\r\n System:\r\n OS: Linux 5.10 Ubuntu 20.04.4 LTS (Focal Fossa)\r\n CPU: (16) x64 AMD Ryzen 7 5800X 8-Core Processor\r\n Memory: 22.88 GB / 24.99 GB\r\n Container: Yes\r\n Shell: 5.8 - /usr/bin/zsh\r\n Binaries:\r\n Node: 16.16.0 - ~/.local/state/fnm_multishells/51_1669587048149/bin/node\r\n Yarn: 1.22.19 - ~/.local/state/fnm_multishells/51_1669587048149/bin/yarn\r\n npm: 8.11.0 - ~/.local/state/fnm_multishells/51_1669587048149/bin/npm\r\n npmPackages:\r\n @tanstack/react-query: ^4.18.0 => 4.18.0\r\n @trpc/client: ^10.4.0 => 10.4.0\r\n @trpc/next: ^10.4.0 => 10.4.0\r\n @trpc/react-query: ^10.4.0 => 10.4.0\r\n @trpc/server: ^10.4.0 => 10.4.0\r\n next: 12.3.1 => 12.3.1\r\n react: 18.2.0 => 18.2.0\r\n typescript: 4.7.4 => 4.7.4\r\n\r\n### Describe the bug\r\n\r\nTS infers the wrong type on serializable fields on v9 queries.\r\n\r\nIG: if a query returns a `Date` field. A client call to `trpc.useQuery` for that query the corresponding field in `data` is inferred as string rather than Date.\r\n\r\n### Link to reproduction\r\n\r\nhttps://github.com/lakardion/trpc-v9-v10\r\n\r\n### To reproduce\r\n\r\nCheck on https://github.com/lakardion/trpc-v9-v10/blob/642c9042e140cf6d2e769885680d13339c7bd2d7/src/pages/index.tsx#L21\r\n\r\n`hello.myDate` should be of type `Date | undefined` instead, it is inferred as `string`.\r\n\r\nIf you run the project you can see that the serialization is actually occurring since the type of `hello.myDate` is object\r\n\r\n### Additional information\r\n\r\n_No response_\r\n\r\n### 👨👧👦 Contributing\r\n\r\n- [ ] 🙋♂️ Yes, I'd be down to file a PR fixing this bug!",[3113],{"name":3055,"color":3056},3303,"bug: v9-v10 interop TS does not consider superjson's serialization when using v9 query in client","2022-12-08T12:31:05Z","https://github.com/trpc/trpc/issues/3303",0.67360306,["Reactive",3120],{},["Set"],["ShallowReactive",3123],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fdtWc-dYYJGSD2UOlBdYZIVgnYgaTkBSaRHpXsV1Owl0":-1},"/trpc/trpc/3307"]