From 7d6edb49bb721606f09c6b78f21666cfa6a6500b Mon Sep 17 00:00:00 2001 From: Swimburger <3382717+Swimburger@users.noreply.github.com> Date: Mon, 15 Sep 2025 21:19:24 +0000 Subject: [PATCH] update changelogs --- .../typescript/changelog/{2025-09-08.mdx => 2025-09-15.mdx} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename fern/products/sdks/overview/typescript/changelog/{2025-09-08.mdx => 2025-09-15.mdx} (85%) diff --git a/fern/products/sdks/overview/typescript/changelog/2025-09-08.mdx b/fern/products/sdks/overview/typescript/changelog/2025-09-15.mdx similarity index 85% rename from fern/products/sdks/overview/typescript/changelog/2025-09-08.mdx rename to fern/products/sdks/overview/typescript/changelog/2025-09-15.mdx index 384724d11..d47979379 100644 --- a/fern/products/sdks/overview/typescript/changelog/2025-09-08.mdx +++ b/fern/products/sdks/overview/typescript/changelog/2025-09-15.mdx @@ -7,7 +7,7 @@ This prevents compilation errors in the TypeScript SDK. **`(feat):`** Generate `Request` and `Response` types variations for types that have readonly and/or writeonly properties. For example, a type `User` will have a `User.Request` type that omits readonly properties and a `User.Response` type that omits writeonly properties. -Set `generateReadWriteOnlyTypes` to `true` in the `config` of your generator configuration to enable this feature. +Set `experimentalGenerateReadWriteOnlyTypes` to `true` in the `config` of your generator configuration to enable this feature. ```ts import { User, FooClient } from "foo";